‎2007 Mar 29 8:08 PM
Hi,
can anybody provide the step by step procedure for developing a smartform.
i Know A function module is created as soon as a smartform is created.
I know how to
Create a new smartform in t_code smartforms.
create page
create window
create text
create table
What I want is
how & where to define the internal table.
how to pass the values from database table( From my query ) to internal table.
how to print the internal table values in the form.
How to pass the parameters form selection screen ex. Doc no or doc Date to the query.
Help is highly appriciated.
Thanks in Advance
Sheethal.
‎2007 Mar 29 8:11 PM
Hi,
Use the following link for detailed Smartform development.
help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf
Thanks & Regards,
Amey
‎2007 Mar 29 8:11 PM
Hi,
Use the following link for detailed Smartform development.
help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf
Thanks & Regards,
Amey
‎2007 Mar 29 8:12 PM
<a href="http://help.sap.com/saphelp_46c/helpdata/en/4b/83fb42df8f11d3969700a0c930660b/frameset.htm">Smartforms on HELP SAP</a>
Greetings,
Blag.
‎2007 Mar 29 8:22 PM
LOAD
Create a program that fill an internal table (or some internal tables and parameters)
create the form using those defined.
INTERFACE
Create this table (or tables and parameter) in the adequate tab of the form header. So they become parameter of the generated function module.
You can put more code in the initialization tab of the header of the form and in any part of the form.
In your form you can print the data of the internal table parameter using table nodes.
For documentation, look at <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf">SAP Smart Forms (BC-SRV-SCR)</a>
Regards