2009 Feb 16 3:37 PM
Is it possible to call standard transaction like 'se80 'from ABAP program?
2009 Feb 16 3:54 PM
Thanks for instant replies.
My problem is that i want to call the transaction CG3Z and i need to pass file paths as parameter , how to achive this?
Is it possible to call standard transaction like 'se80 'from ABAP program?
2009 Feb 16 3:39 PM
Hi,
Yes...Its possible
Use:
Call transaction 'XX'.
Regards,
Gurpreet
2009 Feb 16 3:41 PM
2009 Feb 16 3:43 PM
2009 Feb 16 3:39 PM
2009 Feb 16 3:49 PM
HI,
OPEN A NEW PROGRAM JUST TYPE THESE CODES AND CHECK:
REPORT ZTEST.
CALL TRANSACTION 'SE80'.REGARDS,
GP
2009 Feb 16 3:54 PM
Thanks for instant replies.
My problem is that i want to call the transaction CG3Z and i need to pass file paths as parameter , how to achive this?
2009 Feb 16 4:03 PM
Please use the fm instead of call transaction to CG3Z
if file is text file
call function 'C13Z_FILE_UPLOAD_ASCII'
else if binary
call function 'C13Z_FILE_UPLOAD_BINARY'
a®
2009 Feb 16 4:07 PM
Hi,
Use:
EXPORT <FIELDNAME> TO MEMORY ID <XY>.
Call transaction 'XX'.
CALLED TCODE:
IMPORT <FIELDNAME> FROM MEMORY ID <XY>.
OR (USE SET/GET USING PARAMETER ID).
SET PARAMETER ID <XYZ> FOR <FIELD>.
For parameters Id:
1)Select the field in the transaction
2)Press F1.
3) Technical settings.
Regards,
GP
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |