‎2009 Aug 19 4:38 PM
Hi,
How to determine how many Unprocessed Change pointers per message type are present in R/3 with respect to IDOC's.
is there any back end programs to conslidate this unproce
regards,
Kishore
‎2009 Aug 19 4:40 PM
‎2009 Aug 19 4:40 PM
‎2009 Aug 19 4:41 PM
Make a select on table BDCPV
where process eq space
You will get all unprocessed CPs
a®
‎2009 Aug 19 5:34 PM
Hi,
To make my point more clear, I have to determine HOW MANY UNPROCESSED change pointers per message type are present?
Could you pls elaborate as to what steps I have to follow like
1) How to select a specific message type from all the entries to have a count
2) After selecting, I have to get the count of the unprocessed change pointers for the above specific message type
New to abap, but was assigned this work so request to give the details.
Thanks in advance.
Kishore
‎2009 Aug 19 5:44 PM
Go to table BDCPS and give MESTYPE and PROCESS <> 'X' and press number of entries. That's the unprocessed count..
‎2009 Aug 19 5:55 PM
select * from bdcpv into table i_bdcpv
where messtype = <your message type>
and process eq space.
you can find multiple entries for same document. if you want to count one entry for one document then
sort i_bdcpv by tabkey.
delete adjacent duplicates from i_bdcpv comparing tabkey
a®
‎2009 Aug 19 6:09 PM
Hello,
BDCPV is a view not a table to write a select query...
‎2009 Aug 19 6:19 PM
Alexander
BDCPV is database view we can write select on this.
a®
‎2009 Aug 19 6:29 PM
‎2009 Aug 19 6:32 PM
There is no difference in select , Its same as select on a table
There is no need for apology.
a®
‎2009 Aug 20 7:07 AM
Why didnt you gave the BD22 a try? You can search fpr obsolete changepointers and processed changepointers and reorgenize them to your needs.