Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Smartforms

Former Member
0 Likes
406

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
381

Hi,

Use the following link for detailed Smartform development.

help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf

Thanks & Regards,

Amey

3 REPLIES 3
Read only

Former Member
0 Likes
382

Hi,

Use the following link for detailed Smartform development.

help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf

Thanks & Regards,

Amey

Read only

Former Member
0 Likes
381

<a href="http://help.sap.com/saphelp_46c/helpdata/en/4b/83fb42df8f11d3969700a0c930660b/frameset.htm">Smartforms on HELP SAP</a>

Greetings,

Blag.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
381

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.

PRINT

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