‎2012 Feb 15 2:44 PM
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.
‎2012 Feb 15 11:51 PM
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
‎2012 Feb 15 11:51 PM
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
‎2012 Feb 16 8:36 AM
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.
‎2012 Feb 16 8:59 AM
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
‎2012 Feb 22 7:24 AM
Configurations in SCDO was correct. Just missed to do the settings in BD64. After doing settings in BD64, IDOCS for BOMMAT are generating.
‎2012 Feb 22 7:29 AM
Hi
Did this solve the dump / update termination that you were getting ?