parameters: p_tgrup LIKE RSEDD0-TYPEGROUP.
data : it_code type table of ABAPTXT255 with header line,
it_tab1 type table of SMODISRC with header line,
it_tab2 type table of SMODILOG with header line,
it_tab3 type table of TRDIR with header line.
CALL FUNCTION 'TYPD_GET_OBJECT'
EXPORTING
typdname = p_tgrup
R3STATE = 'A'
tables
psmodisrc = it_tab1
psmodilog = it_Tab2
psource = it_code
ptrdir = it_Tab3
EXCEPTIONS
VERSION_NOT_FOUND = 1
REPS_NOT_EXIST = 2
OTHERS = 3
.
loop at it_code.
write:/ it_code.
endloop.
ALSO READ:
- Download SAP Data In XML Format.
- Download SAPScript Output To PDF File.
- Download Data From Application Server Files To Presentation Server Using FM C13Z_APPL_TO_FRONT_END.
- Creating A Directory On Presentation Server Using FM GUI_CREATE_DIRECTORY.
- Removing A Directory From Presentation Server Using FM GUI_REMOVE_DIRECTORY.
RETURN TO MAIN INDEX:
- Sample Programs On Uploading & Downloading Files.
- Sample Programs On HR ABAP.
- Sample Report Programs On ALV List/ Grid Display.
- Sample Programs On Selection Screen.
- Sample Programs On BDC.
.....Back To MAIN INDEX.
No comments:
Post a Comment