‎2007 Jan 26 9:22 AM
I would like to append structure KOMV with my structure , for this method is impact sap standard or not? this method can be implement in sap? Please advise me.
Thank you so much.
‎2007 Jan 26 9:24 AM
Hi,
Use INCLUDE STRUCTURE KOMV. inside your structure definition.
Reward points if found useful...!
Cheers
Abhishek
‎2007 Jan 26 9:28 AM
Could you tell me? If you append structure sap standard already, I would like to know impact after I append it already.
‎2007 Jan 26 9:39 AM
Hi Veeraphol,
There wont be any impact if u use an existing include in your structure declaration.Its just like you are adding those additional fields in your declaration.
Pls reward if found useful.
Thanks
Shyam
‎2007 Jan 26 9:39 AM
Hi,
You can use Append structures to add your own structure to KOMV. it should not have any other impact, since SAP does not use the fields that you are inserting.
Reward points if found useful...!
Cheers
Abhishek
‎2007 Jan 26 9:43 AM
‎2007 Mar 02 5:10 AM
hi,
you can include any predefined structures in your field string by using the statement
INCLUDE { {TYPE struc_type} | {STRUCTURE struc} }
[AS name [RENAMING WITH SUFFIX suffix]].
tables: komv.
data:
begin of fs_STRUCTURE .
include structure komv .
data:
carrid type spfli-carrid,
end of fs_STRUCTURE .
in the above example komv structure is included in the structure fs_structure even fields of any other table or structure can be included. this declaration doesnt have any affect on the structures defined in se11.
regards,
kiran kumar