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

Issue in vendor outbound interface

Former Member
0 Likes
473

Hi All,

My requirement is 1. When ever a new  vendor is created(XK01) the complete vendor data should be sent to the file(AL11). 2. When ever an vendor changes also the particular changed vendor information should send to the file(AL11).

I am able to send the newly created vendor master data using open dataset, transfer and close dataset. I have an selection option date range. But the issue i am facing is how to read the changed vendors since i can't use the CDHDR and CDPOS tables(low performance).

Can any body please suggest that how to overcome this issue.

Is the above requirement can be achieved through file interface techinque?

Thanks,

Nagendra

Hi All,

My requirement is 1. When ever a new  vendor is created(XK01) the complete vendor data should be sent to the file(AL11). 2. When ever an vendor changes also the particular changed vendor information should send to the file(AL11).

I am able to send the newly created vendor master data using open dataset, transfer and close dataset. I have an selection option date range. But the issue i am facing is how to read the changed vendors since i can't use the CDHDR and CDPOS tables(low performance).

Can any body please suggest that how to overcome this issue.

Is the above requirement can be achieved through file interface techinque?

Thanks,

Nagendra

1 REPLY 1
Read only

Former Member
0 Likes
417

Hi,

If you dont want use CDHDR and CDPOS, try using BDCP2 table.

BDCP2 is the table for change pointers. You can get the restrict the entries by fields CRETIME. But CRETIME is concatenation of date and time.

Change a vendor in your system and check whether there is a entry in BDCP2 for the vendor.

In BDCP2, give TABNAME = LFA1, CDOBJCL = KRED, USRNAME = <user id> and CDCHGID = 'U"

Cheers

~Niranjan