‎2007 Jul 03 9:48 AM
Hi,
Is it possible to create database table/ transparent table dynamically using abap code or any other means using program? if so how?
regards,
Naveenan.
‎2007 Jul 03 9:55 AM
Hi,
As far I know, we can create table dynamically using native SQL.
exec sql.
create table stu_det ( regno char(10) primary key,
name char(20) not null,
total number(3) )
endexec.
But this table will not be available in ABAP(Data Dictionary).
‎2007 Jul 03 9:53 AM
Hi
I think so, try to check the trx V/03, it's the trx to create condition table for pricing dynamically.
Max
‎2007 Jul 06 1:03 PM
Hi max,
Tried debugging the transaction.
Is there any FM or any command that can do the same...
regards,
Naveenan.
‎2007 Jul 06 1:09 PM
Hi,
Yes you can...But it would a be a long time to work...You need to fill every table with all the fields and technical details...Look for these tables...
DD03P,DD02V,DD02L,DD09L
also, this FM DDIF_TABL_PUT,RPY_DOMAIN_INSERT,
RPY_DATAELEMENT_INSERT
<b>Reward points</b>
Regards
‎2007 Jul 06 2:02 PM
‎2007 Jul 03 9:55 AM
Hi,
As far I know, we can create table dynamically using native SQL.
exec sql.
create table stu_det ( regno char(10) primary key,
name char(20) not null,
total number(3) )
endexec.
But this table will not be available in ABAP(Data Dictionary).