cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Transfer Data from One model to another using runlogic_PH badi

Former Member
0 Likes
174

Hello Team-

Can please someone help on step by step provide how to send data from one model to another using Runlogic_PH badi and sample abap code and script.

Thanks in advance.

Thanks,

Ranjan

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Likes

Hi Ranjan,

RUNLOGIC_PH BADI is created not for that purpose. It allows you to run scripts in a different Model, not to transfer data from one Model to another. Those are two completely different things.

To transfer data from one Model to another please take a look at *DESTINATION_APP key word in script logic *DESTINATION_APP - SAP Business Planning and Consolidation, version for SAP NetWeaver - SAP Library

Regards,

Gersh

Former Member
0 Likes

Hello-

I have done with destination_app and its working fine.

I opened this thread to know is there any other way of doing as destination app takes 20 mins as we have lot of data to transfer.

so i am looking for Runlogic_ph badi option.

Thanks,

Ranjan

Former Member
0 Likes

Hello Ranjan,

I can see 2 options of improving DESTINATION_APP performance:

1. You probably have DIM_NAME. PROP_NAME in your REC statement. Try replacing those with ADD_DIM {dimension name}= {dimension name(source): Property name}. This options works much faster.

2. You can use RUNLOGIC_PH to parallelize your script. For this you need to identify Dimension that's not being aggregated in that data transfer, usually TIME, but can be any other Dimension. Then use CHANGED key word to split data on that Dimension or it's property.

Regards,

Gersh

former_member186338
Active Contributor
0 Likes

By the way, RUNLOGIC_PH is useful to clean data in the target model before you use DESTINATION_APP to transfer data... It's not about performance but about data integrity!