cancel
Showing results for 
Search instead for 
Did you mean: 

Relationship between Node Number and operation Number

Former Member
0 Kudos

Dear friends,

In an inspection plan, I have four inspection operations.

When I record the results and see data in result recording tables like QASR etc, for each operation there is a node number.

I want to know in which table I can see the relationship between this node number (of QASR table) and the operation number in inspection plan.

Warm Regards,

Avinash

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member198406
Contributor
0 Kudos

Hi,

You can use the following logic to get relation between Inspection operation and node number

1. fetch AUFPL from QALS using the inspection lot number

SELECT SINGLE AUFPL

INTO LV_AUFPL

FROM QALS

WHERE PRUEFLOS = inspection lot.

2. Use function module  QEEA_OPERATIONS_READING

     in export parameter

       I_ARBPLATZ_LESEN = 'X'

       I_AUFPL                    = LV_AUFPL

       I_MANDT                   = SY-MANDT

       I_PLNTY                    = 'Q'

       I_PRUEFLOS             = inspection lot

       I_VORNR_BIS            = '9999'

     get the table QAPO_TAB in to internal table

in this table you get all the operation(VORNR) and node (VORGLFNR) relation.

Regards,

Dipeshkumar Bhavsar

Former Member
0 Kudos

check table PLPO

Regards

Sujit