‎2007 Jun 15 5:36 AM
Hi Experts,
How to call up table maintainence of a table via Transaction.
call transaction 'SM30' .
But I want to specify the name of the table in the statement.
Then I will attach this report to a transaction.
Is there any better way.
Thanks In Advance.
Regards,
IFF
‎2007 Jun 15 5:38 AM
1. Go to transaction SE93 ,
2.Give the name of ur tcode say zxxxx, for maintaining your ztable.
3. Click on create button,now a page opens.
4. Choose the radio button Transaction with parameters (PARAMETER TRANSACTION) .
5. In the next screen enter transaction as : SM30
7. Also check allthe three check boxes for the GUI support.
8. Scroll down you will find a table control for default values
Name of the screen field | value
___________________________________
VIEWNAME | your ztable name
UPDATE | X
Save & Activate
Regards
Gopi
‎2007 Jun 15 5:37 AM
Hi,
Check this link
http://www.sap-img.com/abap/create-a-table-maintance-program-for-a-z-table.htm
Thanks
Naren
‎2007 Jun 15 5:38 AM
1. Go to transaction SE93 ,
2.Give the name of ur tcode say zxxxx, for maintaining your ztable.
3. Click on create button,now a page opens.
4. Choose the radio button Transaction with parameters (PARAMETER TRANSACTION) .
5. In the next screen enter transaction as : SM30
7. Also check allthe three check boxes for the GUI support.
8. Scroll down you will find a table control for default values
Name of the screen field | value
___________________________________
VIEWNAME | your ztable name
UPDATE | X
Save & Activate
Regards
Gopi
‎2007 Jun 15 5:40 AM
Hi,
Try using CALL-TRANSACTION using BDC_DATA and in the BDC_DATA you can mention the table name and also the function code weather to maintain or display.
You need to give
VIEWNAME = your table or view name.
and
FCODE as 'UPD' for update.
Regards,
Sesh
.
‎2007 Jun 15 5:48 AM