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: 

dout in append structure

Former Member
0 Kudos

Hi

good day to all experts

how to find values from appen structure

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Append structure is added to standard SAP database tables as an enhancement to them. This is done if a customer wants to modify some standard sap objects.These append structures belong to one SAP DDIC table only.

Now to fetch data from these table a simple select is to be made to the standard table.

For example: Add an append structure to KNA1 table.

- Now to fetch the data stored in the append structure, make a select on kna1.

data: ls_kna1 type kna1,

lv_kunnr type kunnr.

select single *

from kna1

into ls_kna1

where kunnr = lv_kunnr.

ls_kna1 would have all the fields of the append structure.

Hope that does answer your question.

Reward points if found useful.

Regards.

Ashish.

8 REPLIES 8

b_deterd2
Active Contributor
0 Kudos

If you have an append structure on a SAPtable you can just refer to that table in your abap statement.

So if you have an append structure on the VBAK table for instance you can just do a select statement on VBAK and retrieve the values from the append structure.

Regards,

Bert

venkat_o
Active Contributor
0 Kudos

Suresh Naidu, Append structure is part of the database table for which table is appended. Structures defined in Dictionary dont contain any records. So if you have appended the structure, if you want to see the values of the fields of the structure, just check the table values Regards, Venkat.O

Former Member
0 Kudos

Hi Structure Does not contain any records .

Former Member
0 Kudos

Hi,

Basically when u ues append structure it doesn't hold any records.

With append structure u can add the fields to the standard database tables.

After adding new fields u can save data in respective fields from there onwards. but ucan't add field values for existing records.

After adding values to ur fields u can see table contents directle from ur table in normal way

Former Member
0 Kudos

Hi,

Structure does not hold any data.

Data will be in the database in which you are appending the structure.

Regards

Sourabh

former_member184119
Active Contributor
0 Kudos

The values that are avialable in database table itself is the values in append structure..no other special values are stores in append structure..

it seems u not gone perfect documentation of append strcutute..keep on looking i will just have a look..

Reawrd points if usefull

Please check this document perhaps it may help.

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1570a990-0201-0010-1280-bcc...

http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ebc9446011d189700000e8322d00/content.htm

Regards,

Regards

sas

Edited by: saslove sap on Apr 7, 2008 7:49 AM

Former Member
0 Kudos

Hi,

Append structure is added to standard SAP database tables as an enhancement to them. This is done if a customer wants to modify some standard sap objects.These append structures belong to one SAP DDIC table only.

Now to fetch data from these table a simple select is to be made to the standard table.

For example: Add an append structure to KNA1 table.

- Now to fetch the data stored in the append structure, make a select on kna1.

data: ls_kna1 type kna1,

lv_kunnr type kunnr.

select single *

from kna1

into ls_kna1

where kunnr = lv_kunnr.

ls_kna1 would have all the fields of the append structure.

Hope that does answer your question.

Reward points if found useful.

Regards.

Ashish.

Former Member
0 Kudos

thanks to all