cancel
Showing results for 
Search instead for 
Did you mean: 

Calling SAP standard WD appl. from customized WD appl.

Former Member
0 Kudos

Hello All,

I am able to call the custom web dynpro application from another customized WD application, both within the same package. However, when I try to call SAP Standard WD Appl. (/SAPSRM/WDA_L_FPM_GAF), it gives me the error below:

The following error text was processed in the system EBD : The current application triggered a termination with a short dump.

The error occurred on the application server j603a000_EBD_12 and in the work process 0 .

The termination type was: RABAX_STATE

The ABAP call stack was:

Method: ADD_COMPONENT of program CL_FPM_COMPONENT_MANAGER======CP

Method: ATTACH_COMPONENT_TO_USAGE of program CL_FPM_COMPONENT_MANAGER======CP

Method: PROCESS_EVENT of program CL_FPM========================CP

Method: RUN_EVENT_LOOP of program CL_FPM========================CP

Method: IF_FPM~RAISE_EVENT of program CL_FPM========================CP

Method: IF_FPM~RAISE_EVENT_BY_ID of program CL_FPM========================CP

Method: HANDLEDEFAULT of program /1BCWDY/EKBPL5L8LRCJSV0Z8932==CP

Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/EKBPL5L8LRCJSV0Z8932==CP

Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_IF_VIEW=====CP

Method: DISPLAY_TOPLEVEL_COMPONENT of program CL_WDR_CLIENT_COMPONENT=======CP

I don't get error when I use below code: (this calls another Z program)

DATA:

STR TYPE STRING, "STRING TO STORE URL

l_window1 TYPE REF TO if_wd_window_manager,

l_cmp_api TYPE REF TO if_wd_component,

result TYPE REF TO if_wd_window.

CALL METHOD cl_wd_utilities=>construct_wd_url

EXPORTING

application_name = 'ZAP_PORTAL_APP' //when I put '/SAPSRM/WDA_L_FPM_GAF' I get the above error.

IMPORTING

out_absolute_url = str.

l_cmp_api = wd_comp_controller->wd_get_api( ).

l_window1 = l_cmp_api->get_window_manager( ).

result = l_window1->create_external_window(

url = str ).

result->open( ).

Shall appreciate if someone can tell me the solution to the above issue.

Thks & Rgds,

Hemal

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Didn't get any reply. Closing the thread