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: 

SAP report question

Former Member
0 Kudos
148

Hi! all..

Let me know what you guys think about this..

There's this transaction SDO1(O and not zero). It lists the sales docs. within a time frame. If I wanna add a new field to the report, let's say, shipping conditions field can I do that?

It's an SAP deivered report.

If I need that field anyways, what shud I do? Create a new report which is a clone of this???

Thank you all.

-sri.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
94

To the output or the selection screen?

4 REPLIES 4

suresh_datti
Active Contributor
0 Kudos
94

Hi Keyan,

You are right.. you need to clone the report SDORDE01 and add your code to display additionalfields in teh output.

Regards,

Suresh Datti

govind_seenivasan
Participant
0 Kudos
94

Hi,

Try to change/include the new fields to the structure 'VBMTV'. I think this is what the structure used to create the ALV table. So change this structure and see.

Thanks

Former Member
0 Kudos
95

To the output or the selection screen?

0 Kudos
94

If it is in the output that you want to add a field, then you have to follow these steps.

Check if the field is there in the structure VBMTV. If not, then add it to the include structure VBMTVZ(it is a repair and you need access key).

Then add your logic to fill in the new fields in the include SD_REPO_F0Z1 using the form MOVE_USERFIELDS. This is called from within the include SD_REPO_F00V. This is also a repair and you need access key to change it.

After that you should be good to go.

Srinivas

Message was edited by: Srinivas Adavi

Forgot to mention that you also need to maintain V_T180A using SM30 for the structure VBMTV and add the new fields there.