cancel
Showing results for 
Search instead for 
Did you mean: 

Mix up at web dynpro (portal integration) ?

Former Member
0 Kudos

Hi:

1- Web dynpro java app has 4 DropDown and one iframe.“DrillingCombos.ear” is the app’s ear.

When the last DropDown is select the app displays a URL in the iframe. What is display in the iframe depends on a custom URL parameter: “etp”. The Iframe calls other Webdynpro app. Possible URLs values to display at the iframe:

//Ver pozo completo ---> visualizar

final static String URL_PC_V ="/webdynpro/dispatcher/local/DrillingPozo/VerPzCompleto?";

//Equipar Pozo --> Carga manual

final static String URL_EP_CM ="/webdynpro/dispatcher/local/DrillingEquiparPz/CargaManual?";

//Equipar Pozo --> Seleccionar Pozo Tipo

final static String URL_EP_SPT ="/webdynpro/dispatcher/local/DrillingEquiparPz/PzTipo?";

//Equipar Pozo --> Guardar Como

final static String URL_EP_GC ="/webdynpro/dispatcher/local/DrillingEquiparPz/EPGuardarComo?";

//Preparar Locacion --> Carga manual

final static String URL_PL_CM ="/webdynpro/dispatcher/local/DrillingPrepLoc/CargaManual?";

//Preparar Locacion --> Seleccionar Pozo Tipo

final static String URL_PL_SPT ="/webdynpro/dispatcher/local/DrillingPrepLoc/SelectPzTipo?";

//Preparar Locacion --> Guardar Como Pozo Tipo

final static String URL_PL_GC ="/webdynpro/dispatcher/local/DrillingPrepLoc/PLGuardarComo?";

//Perforar Pozo--> Carga manual

final static String URL_PP_CM ="/webdynpro/dispatcher/local/DrillingPerforarPz/PPCargaManual?";

//Perforar Pozo --> Seleccionar Pozo Tipo

final static String URL_PP_SPT ="/webdynpro/dispatcher/local/DrillingPerforarPz/PzTipo?";

//Perforar Pozo --> Guardar Como Pozo Tipo

final static String URL_PP_GC ="/webdynpro/dispatcher/local/DrillingPerforarPz/PPGuardarComo?";

final static String URL_P_CPs ="/webdynpro/dispatcher/local/DrillingPrognosis/CargaPrognosis?";

//Prognosis --> Carga Proyecto

final static String URL_P_CPo ="/webdynpro/dispatcher/local/DrillingPrognosis/CargaProyecto?";

//Prognosis --> Carga Proyecto

final static String URL_P_GC ="/webdynpro/dispatcher/local/DrillingPrognosis/PGuardarComo?";

//Terminar Pozo --> Carga Manual

final static String URL_TP_CM ="/webdynpro/dispatcher/local/DrillingTerminarPz/TPCargaManual?";

//Terminar Pozo --> Seleccionar Pozo Tipo

final static String URL_TP_SPT ="/webdynpro/dispatcher/local/DrillingTerminarPz/PzTipo?";

//Terminar Pozo --> Guardar Como Pozo Tipo

final static String URL_TP_GC ="/webdynpro/dispatcher/local/DrillingTerminarPz/TPGuardarComo?";

2 – The app is display at Portal (portal integration, iview web dynpro JAVA). Let’s call this iview with a generic name:’ Iview A’, there are ‘N’ iviews with the same configuration).

‘Iview A’ at “Application Parameters ” has the ‘etp’ parameter (Ex. etp=11). Every iview has a different ‘etp value’.

Every iview is in a Page (the ‘page A’ has the ‘iview A’……’page N’ has the ‘iview N’).

Every page is display at Detailed Navigation at SAP Portal.

3- After every WAS/SAP Portal reboot the scenario is:

At Detailed Navigation the user calls the link with ‘etp =11’ = the user calls ‘Link A’ (Page A) displays ‘App A’

Link with 'etp =21’: The user calls ‘Link B’ (Page B) displays ‘App A’ (ERROR must display ‘App B’)

Link with ‘etp =31’: The user calls ‘Link C’ (Page C) displays ‘App B’ (ERROR must display ‘App C’)

Link with ‘etp =41’: The user calls ‘Link D’ (Page D) displays ‘App B’ (ERROR must display ‘App D’).

Link with 'etp =51’: The user calls ‘Link E’ (Page E) displays ‘App C’ (ERROR must display ‘App E’)

IMPORTANT:

a) All links were working fine for days until the problem at 3 started. No deploy was made in those days.

b) Every iview has a different ‘etp value’, the value is static as it’s defined as hardcode parameter at portal iview.

c) Tests were performed with “sap.suspendable.application” (WD project level): true/false/ “no application properties”….. not succeed was achieved.

d) If “DrillingCombos.ear” is deploy the scenario gets fix until the next reboot.

Any idea?

Thanks a lot for your time on this thread.

Rocí

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

-