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

append structure komv

0 Likes
1,258

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.

6 REPLIES 6
Read only

Former Member
0 Likes
944

Hi,

Use INCLUDE STRUCTURE KOMV. inside your structure definition.

Reward points if found useful...!

Cheers

Abhishek

Read only

0 Likes
944

Could you tell me? If you append structure sap standard already, I would like to know impact after I append it already.

Read only

0 Likes
944

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

Read only

Former Member
0 Likes
944

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

Read only

Former Member
0 Likes
944

Hi,

Appending a structure to a standard structure doesn't have any impact on the existing system. Know more about appending a structure to a standard table in this link:

Regards,

Ravi

Read only

Former Member
0 Likes
944

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