cancel
Showing results for 
Search instead for 
Did you mean: 

All P-table number of entries in single table ?

naveenreddy
Explorer
0 Kudos

Hi All,

is there any table where we can see all the P-table "number of entries"

for example

1) 0material

2) 0customer

if i want to see the above infoobject number of entries i need to go to each of them sperately and see the number of entires... instead is there any table that we input these infoobjects in single shot and get the "nuumber of entries"..

let me know

Accepted Solutions (1)

Accepted Solutions (1)

RamanKorrapati
Active Contributor
0 Kudos

Nope.

You need to go with individual P table of each object and see at SE11.

Other wise create one custom program and use selections on info object based.

It may pull records count from P table. Mean need to write logic in such say that.

naveenreddy
Explorer
0 Kudos

Thanks could you please help me with logic

RamanKorrapati
Active Contributor
0 Kudos

Sorry Naveen. am not familiar with ABAP. Take ABAP expert help and try it out.

naveenreddy
Explorer
0 Kudos

its ok Raman Np let me try it

Answers (1)

Answers (1)

former_member183519
Contributor
0 Kudos

Hi Naveen,

for this you need a code.

steps for code:

1) take number of info object list from using select-options.

2) make a loop...endloop on this info-objects , and concatenate /BIC/P(if onfo object is custom) &

    /BI0/P(if info object is SAP delivered)

3) pass this name (ex. /BI0/P0material) to table RSTABLESIZE and get no of entries inside table  and add that total number of entry numeric value  to any numeric variable inside loop.

4) display o/p (numeric variable value)

code is will very small. give a try !!!

Regards,

Hitesh