Application Development and Automation 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: 
Read only

access to field in nested structure

Former Member
0 Likes
978

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

.

2 REPLIES 2
Read only

franois_henrotte
Active Contributor
0 Likes
601

it_output-bolnr as the name of the structure that you append is not taken into account

Read only

naveen_inuganti2
Active Contributor
0 Likes
601

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