2009 Jan 15 5:52 AM
Dear Experts,
As i am new to this area, can any one suggest me how can i design a module screen and also the data entered in the screen should be saved in Ztable.
It would be of great help if any one provides material sort of thing.
Thanks in advance..
Dear Experts,
As i am new to this area, can any one suggest me how can i design a module screen and also the data entered in the screen should be saved in Ztable.
It would be of great help if any one provides material sort of thing.
Thanks in advance..
2009 Jan 15 5:56 AM
Hi Harish,
If later you have plan to upload the data using BDC, i will suggest you not to design your screen using table control. You can go by create text box for each fields.
Thanks,
Victor.
2009 Jan 15 5:58 AM
2009 Jan 15 6:11 AM
Hi Victor,
Ya i am planning to upload the data using BDC,
Plz can u provide me any stuff for creating text box for each fields.
2009 Jan 15 6:14 AM
Hi ...see dis link....
http://saptechnical.com/Tutorials/ABAP/TableControl/Demo.htm
2009 Jan 15 6:19 AM
This link sure will help you:
[http://saptechnical.com/Tutorials/ABAP/ScreenPainter/Page1.htm]
2009 Jan 15 6:21 AM
or else if u r planning for bdc...
get the records from the file....into an internal table of structure 'ztable'.
and insert the records like...
LOOP AT ITAB INTO WA.
INSERT INTO ZTABLE VALUES WA.
ENDLOOP.
2009 Jan 15 4:12 PM
Hi
Goto SE51 and design your screen.
For each control specify the name. For a few controls you need to specify the function codes as well. Until you specify all the mandatory details the controls will remain pink.
When you are done, Save and Activate.
Click on Flow Logic button.
Specify the modules you want to use in PBO and PAI.
In the program declare data objects having same name as your screen fields.
When you enter data in the screen fields, the values are automatically stored in the data objects you declared having the same name.
If you want to insert the details into a ztbl, simply use insert queries and pass data using the data objects you have defined.
If you are going for BDC:
First ensure that your screens and code work correctly. Then do the BDC recording for one value. Modify the recorded program according to your requirement.
Hope this helps
Regards,
Jayanthi.K
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |