‎2007 Nov 29 2:36 PM
Hi experts:
I've got a question about some standar code in the BDT. This is the code
IF SY-SUBRC = 0.
*----- ... Zeitpunktfunktionsbausteine aufrufen ------------------------
LOOP AT LT_TBZ1F ASSIGNING <TBZ1F> WHERE ZTPKT = 'APPLC'
AND NOT XAKTV IS INITIAL.
CALL FUNCTION <TBZ1F>-FNAME
CHANGING
CT_TBZ0A = LT_TBZ0A.
ENDLOOP.
gv_applc_has_run = 'X'.
ENDIF.
LT_TBZ0A is defined this way:
DATA LT_TBZ0A TYPE TABLE OF TBZ0A. I've created a function module and set in the export section the next parameter declaration:
CT_TBZ0A TYPE TBZ0A Aplicaciones BDT
As you can suppose, I'm recieving only the header of LT_TBZ0A in the function and i need all the itable. What am i doing something wrong ? Is it possible that SAP's mistaken the code ?
There is an OSS Note about that, but i've already aplicate it. This is part of the BDT, event APPLC.
Thank you very much.
‎2007 Nov 29 2:38 PM
Chagne the CT_TBZ0A definition to table type fo the TBZ0A in the Import parameter.
CT_TBZ0A TYPE TY_TBZ0A Aplicaciones BDT " << TY_TBZ0ARegards,
Naimesh Patel
‎2007 Nov 29 2:38 PM
Chagne the CT_TBZ0A definition to table type fo the TBZ0A in the Import parameter.
CT_TBZ0A TYPE TY_TBZ0A Aplicaciones BDT " << TY_TBZ0ARegards,
Naimesh Patel