Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

calling standard transaction from ABAP program

Former Member
0 Likes
2,625

Is it possible to call standard transaction like 'se80 'from ABAP program?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,593

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?

8 REPLIES 8
Read only

Former Member
0 Likes
1,593

Hi,

Yes...Its possible

Use:

Call transaction 'XX'.

Regards,

Gurpreet

Read only

0 Likes
1,593

I tried that but it is giving error.

Read only

0 Likes
1,593

It works

CALL TRANSACTION 'SE80' AND SKIP FIRST SCREEN.

Read only

matt
Active Contributor
0 Likes
1,593

Yes - see the ABAP keywords "CALL TRANSACTION"

Read only

Former Member
0 Likes
1,593

HI,

OPEN A NEW PROGRAM JUST TYPE THESE CODES AND CHECK:

REPORT ZTEST.

CALL TRANSACTION 'SE80'.

REGARDS,

GP

Read only

Former Member
0 Likes
1,594

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?

Read only

0 Likes
1,593

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'

Read only

0 Likes
1,593

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