cancel
Showing results for 
Search instead for 
Did you mean: 

scripts-two records coming(batch assigned one required)

Former Member
0 Kudos

hi experts,

i am modifying the script PRODUCTION ORDER PRINT.

Presently in the main window records are like this.

item no. material quantity date

340 3EL4167310 0 16.04.2007(not required)

340 3EL4167310 3 16.04.2007(required)

350 4GUA418726 0 16.04.2007(not required)

350 4GUA418726 30 16.04.2007(required)

Coming like this.

presently- 2 records with same item i am getting.

i am using standard sap print progr5am for this one.

i need only one record for each item...how to put the condition.

can u guide me on this...

Message was edited by:

dasr r

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

check qty .

display records where qty ne 0.

loop at itab where qty ne 0.

display.

endloop.

Regards

prabhu

Former Member
0 Kudos

hi prabhu thanks

but where to write this code.

in the script or in print program(standaRD ONE)

.....