2008 Feb 19 1:02 PM
HI All,
I need find last bp Number that is created.Is there any function module or table available to get this.
2008 Feb 20 3:18 AM
Use CHANGEDOCUMENT_READ function module based on OBJECTCLASS = BUPA_BUP. Delete all the records where CHNGIND <> 'I' and then sort by udate and utime descending.
You have to do this for each day, so that you don't run into multiple records.
Or simply go to BUT000 and get the latest CRDAT, CRTIM record.
2008 Feb 20 3:18 AM
Use CHANGEDOCUMENT_READ function module based on OBJECTCLASS = BUPA_BUP. Delete all the records where CHNGIND <> 'I' and then sort by udate and utime descending.
You have to do this for each day, so that you don't run into multiple records.
Or simply go to BUT000 and get the latest CRDAT, CRTIM record.
2008 Feb 21 9:50 AM
Hi,
Use the following to get the last partner created.
data: partner type but000-partner.
get PARAMETER ID 'BPA' FIELD partner .
But this will only give the one's created by UI.
Thanks and warm regards,
Smita.