cancel
Showing results for 
Search instead for 
Did you mean: 

Error when running the Webdynpro Application

Former Member
0 Kudos

Hi All,

I am getting the following error when testing the WDA Application. Please let me know what can I do to resolve the error. I appreciate the help. Thanks

The following error text was processed in the system DRD : Screen output without connection to user.

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

The termination type was: RABAX_STATE

The ABAP call stack was:

SYSTEM-EXIT of program SAPLSTRD

Function: TRINT_POPUP_EDIT_CANCEL_SHOW of program SAPLSTRD

Form: RAISE_ERROR of program SAPLSTRD

Function: TRINT_OBJECTS_CHECK_AND_INSERT of program SAPLSTRD

Function: TR_OBJECTS_CHECK of program SAPLSTRD

Function: RH_HRPOBJECT_CORR_AT_SAVE of program SAPLRHWM

Form: UPDATE_PLOG of program SAPLRHAP

Function: RH_UPDATE_DATABASE of program SAPLRHAP

Form: UPDATE_DATABASE of program MP100100

Form: LEAVE_ACTUAL_DYNPRO of program MP100100

Thanks

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

you are trying to call a SAP gui screen (or a non-webdynpro output) from your webdynpro application....if you can paste your code here or tell us what exactly you are trying to do then it will be easier to pinpoint the problem

0 Kudos

I have the same problem.

I'm trying to open up excel (Bex Analyzer) using the following code:

call function 'RSAH_LAUNCH_EXCEL'

exporting

i_genuniid = '4AW30ILXE3NN5MQTO3SW0GUY0'

  • i_workbookid =

i_hide_sapgui = 'X'

importing

e_log_handle = l_log_handle

exceptions

excel_wrong_version = 1

excel_viewer_not_installed = 2

bexanalyzer_not_installed = 3

others = 4.

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

That function module obviously has functionality hooks into the SAPGUI - likely opening Excel via the OLE Automation or Office Integration interfaces of the SAPGUI. Since Web Dynpro runs in a browser and not in SAPGUI, this funciton module won't work.

former_member131774
Contributor
0 Kudos

use T-Code ST22 , will help you to locate which line raise error

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

You are calling an object that wasn't designed for usage within Web Dynpro. It has a CALL SCREEN or some other SAPGUI/Classic Dynpro mechanism that can't be used within Web Dynpro.