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: 

Filling internal table with a sequence of another

0 Kudos

Hi everyone,

I am facing an issue with my development. Kindly please advise on below scenario:

I have an internal table GT_FINAL with entries:

MATNR LGNUM LGTYP LGPLA

11234 101 425 08-21-1

11234 101 450 17-19-3

11234 101 315 17-52-3

11234 101 300 36-93-1

and i also get the sequence in which storage type should be filled from T344T table as:

LGNUM KZEAR LGTKZ BWREF LGTY0 LGTY1 LGTY2 LGTY3

101 E 112 921 300 450 425 315

LGTY0,LGTY1,LGTY2,LGTY3 is the sequence of storage type(LGTYP) in which they should be filled.

For my case if i am looping the first internal table(GT_FINAL) then it will take the first entry with LGTYP = 425 and try to search sequence in T334T by first compairing to LGTY0 ,then LGTY1 till LGTY3. as it finds the same storage type in LGTY2.it will start filling the bins.

But i don't want this.I want 300 storage type to be filled first as this is first in sequence(LGTY0) and also present in internal table.

How to achieve this?

Thanks in advance.

2 REPLIES 2

Sandra_Rossi
Active Contributor
0 Kudos

Formatted lists:

GT_FINAL:

MATNR  LGNUM  LGTYP  LGPLA
11234  101    425    08-21-1
11234  101    450    17-19-3
11234  101    315    17-52-3
11234  101    300    36-93-1

T344T:

LGNUM  KZEAR  LGTKZ  BWREF  LGTY0  LGTY1  LGTY2  LGTY3
101    E      112    921    300    450    425    315

Sandra_Rossi
Active Contributor
0 Kudos
  1. Get distinct values of MATNR/LGNUM (11234/101, 11234/102, ...)
  2. For each couple of distinct values MATNR/LGNUM
    2-a. Read unique row of table T344T for LGNUM
    2-b. Read GT_FINAL for MATNR/LGNUM and LGTYP = T344T-LGTY0, and process it
    2-c. Read GT_FINAL for MATNR/LGNUM and LGTYP = T344T-LGTY1, and process it
    2-d. Read GT_FINAL for MATNR/LGNUM and LGTYP = T344T-LGTY2, and process it
    2-e. Read GT_FINAL for MATNR/LGNUM and LGTYP = T344T-LGTY3, and process it