creating table dynamically

prajapati.puru

New Member
i am trying to create a new record or update table by taking table name from user. But i couldn't able to do that, how can i create a new record or update table dynamically?
 
check out dynamic queries and buffer handle object in documentation... start with 'create buffer' statement and there are methods in buffer handle object that allows you to create a new record and/or assign new field values (buffer field handle).
 
and / or search through this forum.. there are examples that can give you direction....
 
Do you really want to depend on the user to know your schema? Shouldn't that be abstracted away to some business function like "add a customer" or "ship an order", or is this something that is not an LOB app, like an internal utility?
 
Back
Top