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

Regarding change document generation

Former Member
0 Likes
1,307

Hi,

In t-code SCDO, for one object class STUE_V I have added one new table MAST and generated the same. But while I execute my t-code CS01, the same is not appearing in exporting parameters in the standard program where it is calling my generated fucntion module.

Hence it is giving dump. This is part of BOMMAT idoc change pointer creation.

Could someone shed some light on this as I am really stuck here.

1 ACCEPTED SOLUTION
Read only

vijaymanikandan
Contributor
0 Likes
1,043

Hi

Have you tried generating after adding the table in the class ? This is more a generation issue. Might be the include LCSVBF30 has not got properly generated.

What I feel is if you are adding a table to a standard class then you must also change the code yourself and SAP is not changing the where used list of the update function calls.

Refer

http://www.scribd.com/doc/12627676/Logging-Using-Change-Document

http://help.sap.com/saphelp_nw04/helpdata/en/2a/fa015b493111d182b70000e829fbfe/frameset.htm

http://wiki.sdn.sap.com/wiki/display/ABAP/Change+Document

note - 0000391833 - No change documents for object dependencies change

Regards

Vijay

5 REPLIES 5
Read only

vijaymanikandan
Contributor
0 Likes
1,044

Hi

Have you tried generating after adding the table in the class ? This is more a generation issue. Might be the include LCSVBF30 has not got properly generated.

What I feel is if you are adding a table to a standard class then you must also change the code yourself and SAP is not changing the where used list of the update function calls.

Refer

http://www.scribd.com/doc/12627676/Logging-Using-Change-Document

http://help.sap.com/saphelp_nw04/helpdata/en/2a/fa015b493111d182b70000e829fbfe/frameset.htm

http://wiki.sdn.sap.com/wiki/display/ABAP/Change+Document

note - 0000391833 - No change documents for object dependencies change

Regards

Vijay

Read only

0 Likes
1,043

Hi,

Thanks for the same.

Yes the issue with the include LCSVBF30 only.

What I feel is if you are adding a table to a standard class then you must also change the code yourself and SAP is not changing the where used list of the update function calls.

Could you please eloborate this? Which code you are pointing to? I am not aware as I am doing this for first time.

Read only

0 Likes
1,043

Hi

When we add a new object in SCDO the FM related to this update FM is updated / Generated. You can check the Generation Information and see the programs that get changed. This is not updating the where used list of the objects and mainly the update function module which in this case is basically the include LCSVBF30.

In this include we have to write the code for the new object MAST.

Example you have to change the parameters of the function module 'STUE_V_WRITE_DOCUMENT' in the include LCSVBF30 including the new parameters for MAST.

But this will be a standard modification which I personally will not recommend.

Alternatively you can create a new Class object in SCDO for MAST or use STUE which has MAST in it if it satisfies your purpose.

Regards,

Vijay V

Read only

Former Member
0 Likes
1,043

Configurations in SCDO was correct. Just missed to do the settings in BD64. After doing settings in BD64, IDOCS for BOMMAT are generating.

Read only

0 Likes
1,043

Hi

Did this solve the dump / update termination that you were getting ?