‎2007 Feb 07 4:13 PM
Hi Friends,
Is it possible to check the value of a Parameter ID in debug mode? System: 4.6C
Regards,
Nathan.
‎2007 Feb 07 4:15 PM
‎2007 Feb 07 4:19 PM
Hi,
I am trying to debug a standard transaction. Is there a way out to directly find out the value the parameter ID holds at runtime?
Regards,
Nathan.
‎2007 Feb 07 4:21 PM
‎2007 Feb 07 4:18 PM
Hi nathan,
try this:
DATA: PARA TYPE TPARA-PARAMID VALUE 'WRK',
WRK(4).
GET PARAMETER ID PARA FIELD WRK.
IF SY-SUBRC <> 0.
MESSAGE 'Parameter not found' TYPE 'I'.
ELSE.
WRITE: / WRK.
ENDIF.
Its from the Docu of get parametar id.
Regards, Dieter
regards, Dieter
‎2007 Feb 07 6:44 PM
Hi Nathan,
if you use the Classic Debugger you can try the following (the new Degugger does not yet provide this feature):
From the menue select Goto->System-Areas->SAP-Memory
In this Area (SMEM) you can see the list of SPA-GPA-IDs with corresponding Values.
Martin