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: 

How to get Operations In QP02

Former Member
0 Kudos

Dear Friends,

In QP02 if we enter plant, change number, key date & Group counter we can get the no.of operations. Same logic I want to apply in my custom program. I debugged the standard program its very difficult to find. I searched for FMs also . I didn't find any FMs. I checked in PLKO & PLPO tables there is no link with Group Counter. Please suggest me.

Thanks

Arun

5 REPLIES 5

Former Member
0 Kudos

Hi there,

use select query :

SELECT <no. of operations field> from QP02 where plant eq <ur value on selection field>

and <change number> eq..... and so on.

i hope this helps,.

Former Member
0 Kudos

Hi ,

You can use the LDB - 'PNM' for this.

Use the 'GET PLPOD'.

Thanks & Regards,

Bhupal

GauthamV
Active Contributor
0 Kudos

Check this FM.

CP_DT_DIALOGTAB_GET_VAILD_HEAD

Former Member
0 Kudos

Try this way

1. Go to Table MAPL & pass the Material Number , Plant & get Group & Group Counter

2. Then with group & group counter in Table PLPO for operations.

3. You can have the list of groups & group conter plant wise in Table PLKO

Hope this helps...

Former Member
0 Kudos

Hi All,

I got the Solution. I am Using PLAS table to find the no.of operations.

Thank you all for your suggestions.