2007 Oct 13 12:28 AM
I was looking at the table I_THX_VAR using the Debugger from executing an exit like:
READ TABLE I_THX_VAR WITH TABLE KEY VNAM = '0P_KEYDT' INTO L_THX_VAR
The problem is I didnt see anything in the table I_THX_VAR.
Can anyone give me a better understanding of what that table is? How is it loaded? Does it need to be loaded when the exit executes?
Any help appreciated .... points rewarded.
Mike
I was looking at the table I_THX_VAR using the Debugger from executing an exit like:
READ TABLE I_THX_VAR WITH TABLE KEY VNAM = '0P_KEYDT' INTO L_THX_VAR
The problem is I didnt see anything in the table I_THX_VAR.
Can anyone give me a better understanding of what that table is? How is it loaded? Does it need to be loaded when the exit executes?
Any help appreciated .... points rewarded.
Mike
2007 Oct 13 12:58 AM
Michael,
Is it sap standard table? or it is internal table declare in code...
Can you please provide more details.
Nilesh
2007 Oct 13 1:01 AM
I have it in my Import tab declared like this:
*"----
""Local Interface:
*" IMPORTING
*" REFERENCE(I_VNAM) TYPE RSZGLOBV-VNAM OPTIONAL
*" REFERENCE(I_T_VAR_RANGE) TYPE RRS0_T_VAR_RANGE OPTIONAL
*" REFERENCE(I_VARTYP) TYPE RSZGLOBV-VARTYP OPTIONAL
*" REFERENCE(I_IOBJNM) TYPE RSZGLOBV-IOBJNM OPTIONAL
*" REFERENCE(I_S_COB_PRO) TYPE RSD_S_COB_PRO OPTIONAL
*" REFERENCE(I_S_RKB1D) TYPE RSR_S_RKB1D OPTIONAL
*" REFERENCE(I_S_RKB1F) TYPE RRO01_S_RKB1F OPTIONAL
*" REFERENCE(I_THX_VAR) TYPE RRO01_THX_VAR OPTIONAL
*" EXPORTING
*" VALUE(E_T_RANGE) TYPE RSR_T_RANGESID
*" EXCEPTIONS
*" UNKNOWN_VARIABLE
*" UNEXPECTED_VARTYPE
*" INVALID_PERIV
*" VARIABLE_INITIAL
*" NO_REPLACEMENT
*" NO_PROCESSING
*"----
2009 Jul 01 12:12 AM