‎2011 Jul 26 10:31 AM
Hi,
It's possible to add a row to a table in an ABAP program ?
Like an ALTER TABLE or what ? or the user must go to SE11 ?
Thanks !
‎2011 Jul 26 10:36 AM
Hi,
You can use INSERT statement inside ABAP program to add a new row in table.
‎2011 Jul 26 10:39 AM
‎2011 Jul 26 10:48 AM
Hi
Do you mean to change the structure of a table programmacally?
If it's so I suppose it can do it, but it needs to use the suitable fm, anyway why do you need to do it?
It should be better to do it manually in development enviroment
Max
‎2011 Jul 26 10:49 AM
Add a
New Field in an internal table - Yes
New filed in a Z table -Yes,using SE11
New field in a SAP Standard table - Yes but requires a ACCESS key and the requirement should be justified enough.
Thanks,
K.Kiran.
‎2011 Jul 26 10:56 AM
You can append a field to the standard table by appending a structure...
There is a append button on top of the table. you need no access key for that
Thank you,
Pradeep
‎2011 Jul 26 10:56 AM
Yes,
To avoid the user to go to SE11 and do it automatically.
But not a big deal, if he needs to go to SE11
‎2011 Jul 26 11:03 AM
Hi
I don't know your issue, but it doesn't seem to be a good idea to do it, you risk to have misalignments between development, quality and production system.
A table should be created by a developer only, not a user
Why the user doesn't have to use SE11?
Max
‎2011 Jul 26 11:12 AM