Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
shanthi_bhaskar
Active Contributor

This many years i came across lot of instances where I need to find what is the package number I am in so that I can place special piece of code for meeting business requirements. In the past i used to do lot of work around to get the package number.

Recently I had same scenario where I need to a Delete operation on my Source Package at First Data package, I debugged entire Generated Transformation program then i identified very simple way of getting the Package number, which is very cool and Simple

Put this code in your in the main code section of the Transformation.

     DATA: LV_DATAPAKID TYPE RSDATAPID.

     CLEAR: LV_DATAPAKID.

*&GettheDatapackagenumber

       LV_DATAPAKID = DATAPACKID.

LV_DATAPAKID will have Data Package Number.

Hope this document will be helpful.

Thanks for Reading,

Shanthi Bhaskar.

3 Comments
Labels in this area