‎2007 Jul 20 8:01 AM
‎2007 Jul 20 8:05 AM
Hi ..
To modify DB table you have to code the SQL statements in the module pool.
INSERT <DBTABLE> FROM <WA>.
UPDATE <DBTABLE> SET field = <wa-field>
where <condition>.
here the WA is the work area of the Screen fields.
Hope this helps u.
<b>Reward if so.</b>
‎2007 Jul 20 8:04 AM
hi
once u modufy ur screen... say the user clicks on a check box... then this will be stored in the screen work area... modify the corresponding entry in the internal table... and then finally update ur database table... use lock table concept while doing this
<b>
please reward points if useful</b>
regards,
raksha
‎2007 Jul 20 7:14 PM
‎2007 Jul 21 2:20 AM
the below link can provide you thr concept of locking table
http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eef3446011d189700000e8322d00/frameset.htm
‎2007 Jul 21 7:16 PM
‎2007 Jul 20 8:05 AM
hi ,
Use a table maintenance generator :
Check these threads:
For further help look into these links
http://help.sap.com/saphelp_46c/helpdata/EN/cf/21eb6e446011d189700000e8322d00/frameset.htm
http://help.sap.com/saphelp_bw30b/helpdata/en/69/c2516e4ba111d189750000e8322d00/content.htm
regards,
Ranjita
‎2007 Jul 20 8:05 AM
Hi ..
To modify DB table you have to code the SQL statements in the module pool.
INSERT <DBTABLE> FROM <WA>.
UPDATE <DBTABLE> SET field = <wa-field>
where <condition>.
here the WA is the work area of the Screen fields.
Hope this helps u.
<b>Reward if so.</b>
‎2007 Jul 20 8:05 AM
Refer this link
Regards,
Pavan
This document might help you...
www.bwexpertonline.com/downloads/BW%20EXP%20HetherColeman%20download%20v3.doc
Message was edited by:
Pavan Pachimatla
‎2007 Jul 20 8:05 AM
Hi,
If table maintenace is allowed, use SM30 for that.Otherwise in SE16, select the particular record in output.Double click it and then put /h for debugging.In debugging mode press F7 until it reaches code value = SHOW.Then in debugging change code = EDIT.Then F8, you can change the values.
Hope it helps you and it is not for standard tables.
Kindly reward points by clicking the star on the left of reply,if it helps.
‎2007 Jul 20 8:07 AM
Hi Karthik,
Use Table Maintainance generator.
Go to se11 and display the table .
From the menu --> Utilities --> Table maintainance generator
Regards
Arun
‎2007 Jul 20 8:08 AM
hi
collect data from screen into a work area and den use
modify<table> from wa.
‎2007 Jul 20 8:11 AM
Hi Karthik,
Once you develop Screens using PARAMETERS or SELECT-OPTIONS or through customized SCREENS, you get the data entered by the user and store them in your dta objects.
After that create Internal Tables or a Work Area according to the Row Type of the Database Table and pass the data provided by the user on the screen.
You can use OPEN SQL statements, to update the database.