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: 

Purchase Requision History Table

Former Member
0 Kudos

Can anyone tell me the name of the table in which revision history of Purchase requisition is maintained?

Like PO you have ekbe.

But for PR which is the revision history table??

8 REPLIES 8

Former Member
0 Kudos

Hi!

I don't think there's such table, but you might go through the MM tables here:

http://www.sap-img.com/materials/common-tables-used-by-sap-mm.htm

Regards

Tamá

kesavadas_thekkillath
Active Contributor
0 Kudos

What do you mean by PR history ????

is it change documents ?

Former Member
0 Kudos

Hi,

You have to look in EBAN table only. It has a revision level REVLV field.

Hope it helps.

Sujay

Former Member
0 Kudos

Hi

Check below link has a program which is used to display Purchase Req. History.

[http://www.sapnet.ru/viewtopic.php?t=62&start=0&postdays=0&postorder=asc&highlight=]

Regards

Abhii

Former Member
0 Kudos

Hi try this way...



SELECT COUNT(*) FROM cdhdr INTO t_output-w_poc
                                  WHERE objectclas IN ('EINKBELEG',
                                  'BANF' , 'COND_A' , 'VERKBELEG' ,
                                  'INFOSATZ' , 'MM_SERVICE' , 'VBEX' )
                                  AND udate IN r_date
                                AND tcode IN ('ME22' , 'ME22N','ME23N').
      IF sy-subrc EQ 0.
"Join with table CDPOS where table name is EBAN
      ENDIF.

Prabhudas

Former Member
0 Kudos

i´m not sure but are you refering to table EKBE?

0 Kudos

Hi Florian,

EKBE is for Purchase Document History not for Purchase requisition.

@Devendra, Just refer the link which I have given you will get an idea.

Regards

Abhii

Edited by: Abhii on Sep 7, 2010 2:06 PM

Former Member
0 Kudos

Thanks Abhii and Prabhu Das

Your answers were very helpful.

Thanks