Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
Ajit_K_Panda
Product and Topic Expert
Product and Topic Expert

Many abap developers may not have authorization to use many of the transactions. E.g.

There is a way to use any transaction even though you don't have access. The Function module C14Z_TRANSACTION_CALL can be used.

Steps:

1. Go to transaction se37:

2. Give the FM "C14Z_TRANSACTION_CALL" and click 'Display'

3. Put a debugger at line no 44

4. Execute(F8) and give the Tcode that you want to use.

5. Then Execute. It will open a debugger session. double click on SY-SUBRC and see the value equal to 2.


6. Go to edit mode and make the SY-SUBRC value equal to 1.

7. Execute and enjoy

It is not recommended to use the transaction which you are not authorized to view.

37 Comments