2012 Apr 11 9:14 AM
Hi ,
I need to change the output of existing standard SAP report VL06IF, by adding a new colon. The iternal output table is created after the table LIPOV
in a standard SAP program. The table LIPOV has include LIPOVZ and in include I found .APPEND ZALIPOVZ.
The colon to be added will retrieve the data from field BOLNR that I had to add in ZALIPOVZ structure .
something like this
LIPOVZ
.include LIPOVZ
.append ZALIPOVZ
-field1
-field2
-BOLNR
I user exit I have to select from DB table values into internal - output table field BOLNR.
Do you know how I can visualize this field in debugger ? I tried like it_output-zalipovz-bolnr and it_output_zalipovz-blurb but it doesn't work
How to access this field and pass to it the values selected from db .
Thanks
Chris
.
Hi ,
I need to change the output of existing standard SAP report VL06IF, by adding a new colon. The iternal output table is created after the table LIPOV
in a standard SAP program. The table LIPOV has include LIPOVZ and in include I found .APPEND ZALIPOVZ.
The colon to be added will retrieve the data from field BOLNR that I had to add in ZALIPOVZ structure .
something like this
LIPOVZ
.include LIPOVZ
.append ZALIPOVZ
-field1
-field2
-BOLNR
I user exit I have to select from DB table values into internal - output table field BOLNR.
Do you know how I can visualize this field in debugger ? I tried like it_output-zalipovz-bolnr and it_output_zalipovz-blurb but it doesn't work
How to access this field and pass to it the values selected from db .
Thanks
Chris
.
2012 Apr 11 9:27 AM
it_output-bolnr as the name of the structure that you append is not taken into account
2012 Apr 11 9:28 AM
Not sure if I followed you. But, you cannot try with it_output-* directly to see fields. Instead, you can try what is there in that table by looking at it_output[] in debugging. Or you can find a loop or read where it_output passed into work area and you can access field of it.
Regards,
Naveen.I