Application Development 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: 

SD Consolidated Invoice Custome Routine

Former Member
0 Kudos

Hi Experts,

I have a requirement for some consolidated invoice billing though implementing Data Transfer routines in SD Module.

as per requirement I need to pass Container from VTTP Table . However, VTTP table is not getting populated in any routine.

VBAK, LIPS tables are populating. To achieve my reqirement container is must. How can I retrive required data from VTTP and populate to routine element through user_exits or any other way. Can you please adive.

Thanks,

Prasad

1 ACCEPTED SOLUTION

brad_bohn
Active Contributor
0 Kudos

A simple select inside your data transfer routine will do the trick...

3 REPLIES 3

brad_bohn
Active Contributor
0 Kudos

A simple select inside your data transfer routine will do the trick...

Former Member
0 Kudos

Hi,

If we use select statement it will trigger number of times based on number or records. So we can do this in another way to improve performance

brad_bohn
Active Contributor
0 Kudos

I wouldn't exactly call that a performance hit. Even if you have a hundred items, the accumulated access time will be very small with the direct read(s). You can store the data in memory on first access though.