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

Retrieving change number

siddu_ch
Explorer
0 Likes
896

Hi All,

I need to retreive name and address changes based on udate in CDHDR.

Can anybody suggest me how to retrieve address details and bank details (FK03).

Thanks

Hi All,

I need to retreive name and address changes based on udate in CDHDR.

Can anybody suggest me how to retrieve address details and bank details (FK03).

Thanks

3 REPLIES 3
Read only

Former Member
0 Likes
791

Hi,

Take a look at the logic in program MF01AKRD. This is the program that is called by the standard FK02 transaction when change documents are displayed for a vendor.

Function modules 'CHANGEDOCUMENT_READ_HEADERS' and 'CHANGEDOCUMENT_READ_POSITIONS' need to be called using the correct object classes and object id's for specific types of changes (e.g. object class 'ADRESSE' is used to lookup certain types of address changes using object id 'BP ' plus the vendor's address number.). See program MF01AINT form objektid_setzen for some other object classes such as 'BANK'.

The trick for you will be to make sure you find the correct object class and object id's for address changes and bank changes. This is where the logic in MF01AKRD could be useful.

You may also be able to find some other standard function modules or global methods that specifically look for vendor changes, but I wasn't able to find any during my limited searching for you.

Best Regards,

Jamie

Read only

0 Likes
791

Thanks for the reply.

I need to retreive the objectid also using the udate because my program is run daily so using the udate i need to track changes.

How can i get the object id ?

Thanks once again!

Read only

Former Member
0 Likes
791

Hi

LFA1-- Vendor Address Details

LFBK--Vendor Master (Bank Details)

Arunima