‎2007 Apr 03 1:21 PM
I have to create the table with these fields,
t005-land1,
kna1-kunnr.
Please help me,what is the process
‎2007 Apr 03 1:24 PM
Go to se11.
Give a name to your table which starts with a Z or a Y.
Click Create Button.
Give a decsription to your table.
Chose the Delivery Class as: A.
Go to the Fields tab.
Give a name to your field and typethe data element that underlies the t005-land1 and KUNNR.
Save the definition.
Click on the Technicals settings and save them too.
Then activate the table.
Regards,
Ravi
‎2007 Apr 03 1:24 PM
Go to se11.
Give a name to your table which starts with a Z or a Y.
Click Create Button.
Give a decsription to your table.
Chose the Delivery Class as: A.
Go to the Fields tab.
Give a name to your field and typethe data element that underlies the t005-land1 and KUNNR.
Save the definition.
Click on the Technicals settings and save them too.
Then activate the table.
Regards,
Ravi
‎2007 Apr 03 1:25 PM
‎2007 Apr 03 1:26 PM
‎2007 Apr 03 1:27 PM
Go to se11.
Give a name to your table which starts with a Z or a Y.
Click Create Button.
Give a decsription to your table.
Chose the Delivery Class as: A.
Go to the Fields tab.
Give a name to your field and typethe data element that underlies the t005-land1 and KUNNR.
Save the definition.
Click on the Technicals settings and save them too.
Then activate the table.
Regards,
Ravi
‎2007 Apr 03 1:28 PM
Ali,
I didn't get what you mean.I will answer what I understood from you question.
1.If you have to declare an internal table of that kind of structure follow this.
data:begin of itab occurs 0,
land1 like t005-land1,
kunnr like kna1-kunnr,
end of itab.
2.If you want to create a ztable then go to se11 and create a table and given the fields as zland1 with data element land1 and zkunnr with data element kunnr.In this way both the land1 and kunnr fields will take the attributes of the actual land1 and kunnr fields.
If it is not what you want then revert it with more details.
Reward points if found helpful.
K.Kiran.