BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
RaulValderrama
Calcite | Level 5

Hello,

 

I´m trying to declare a new Analysis task into SAS Risk Management for Banking User Interface, I followed these instructions http://support.sas.com/kb/55/229.html but it does not work. Does somebody know what I should do?

 

Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions
SASJodi
SAS Employee
Hi,

Could you answer a few questions:

Is the problem that you can't see the items in the editors? If so, did you try clearing the browser's cache? See Step 4.

Or are you having issues with the analytics because of the errors in the log?

Thank you.

View solution in original post

4 REPLIES 4
SASJodi
SAS Employee
Hi,

We need more information. Could you provide the STP log?

Thank you.
RaulValderrama
Calcite | Level 5

Hi,

 

As I said before, I´m trying to declare a new Analysis Task into SAS Risk Management For Banking User Interface.

Following the instructions I created a stored process for credit component, the code was located in {SASConfig}/Applications/SASRiskManagementForBanking/3.3/source/credit/sasstp.

 

I declared a new analysis project in {SASConfig}/Applications/SASRiskManagementForBanking/3.3/source/credit/solution_data_mart/env_cra/rmbc_create_env.sas as follows:

     curexposure port_cur_exposure;

 

     filter propia LABEL = "Filter Exercise"
     where "upcase(INSTTYPE) eq 'CREDIT_CASH'";

 

    project PL_EXP_C LABEL="Exposure Project2"
     Data = (Current_market_data Historical_data_for_lagged_rfs)
     rftrans = (All_risk_factor_transformations)
     projectmethod=( rsk_project_method )
     Portfolio=RMB_PORT
     filter = propia
     Analysis=(MTM_PL_EXP PL_EXP_FSCEN PL_EXP_COVSIM_STD_MONTHLY)
     Crossclass = CC_PRODUCT
     Numeraire = EUR
     options = ( OUTALL ALLSCORE INSTARRAYS)
     ;

 

I associated the analysis task with the project in {SASConfig}/Applications/SASRiskManagementForBanking/3.3/source/common/ucmacros/rmb_get_projids_by_atype.sas as follows:

     outer union corr
     select RD_PROJECT_ID, "PORTFOLIO_SEGMENTATION" as CONFIGURATION_TYPE_CD
     from RD_CONF.PORTFOLIO_SEGMENT_CONFIG
     outer union corr
     select RD_PROJECT_ID, "EXPOSURE_PRUEBA" as CONFIGURATION_TYPE_CD
     from RD_CONF.EXP_CONFIGURATION

 

finally I added editors for the analysis task in {SASConfig}/Web/WebAppServer/SASServer8_1/sas_webapps/sas.solutions.risk.rmb.war/taskDescriptor.xml as follows:

     <task id = "EXPOSURE_PRUEBA" type = "analysis">
        <editors>
           <editor ref = "analysisSpecificationEditor"/>
           <editor ref = "crossClassificationEditor"/>
           <editor ref = "portfolioFilterEditor"/>
           <editor ref = "portfolioFileEditor"/>
        </editors>
     </task>

 

I expected to see editors for the analysis task, however those did not appear.

Do you know the correct way to solve this problem?

 

I add STP log, thank you.

SASJodi
SAS Employee
Hi,

Could you answer a few questions:

Is the problem that you can't see the items in the editors? If so, did you try clearing the browser's cache? See Step 4.

Or are you having issues with the analytics because of the errors in the log?

Thank you.
RaulValderrama
Calcite | Level 5

Hi, 

 

the problem was the browser´s cache, editors already appear! 

 

Thanks for your help!