cancel
Showing results for 
Search instead for 
Did you mean: 

SMARTFORMS

Former Member
0 Kudos

Hi,

For single table in Smartforms,we will do...

1)In form Interface,

Parameter_name Type_assignment Associated_type

itab like vbak

2)In Main window ->Table->Data

Loop...

Operand....itab into itab...

3)In Main Area->Row->Text

&itab-vbeln& &itab-ernam&....

It is working well in Abap editor by calling function module...

For Multiple Table fields,How to do in smartforms?

vbak-vbeln,vbap-posnr,kna1-kunnr....

suppose i create one structure....

data : begin of jtab occurs 0,

vbeln like vbak-vbeln,

posnr like vbap-posnr,

kunnr like kna1-kunnr,

end of jtab.

where i will have to call this structure in Smartforms...

In Global Definitions, How to configure this structure...

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear Moorthy

you can create a structure with the fields

and can define it in global definitions

if you have a program and you are using the smartform function module

then form interface contains the tables parameter and assign the structure

if found satisfactory plz reward

regards

samarendra

Former Member
0 Kudos

Hi,

In Global Settings,where i will have to create structure...I tries several times,error comes always

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

you have to create a structure in SE11

give name for structure

Ex. itab_struct

goto extras---->change table category

select the structure radio button

then

declare that structure inthe global settings of the smartform

goto form interface -


> import tab and declare there

ex.

itab type itab_struct

Reward if useful

Thanks

Krushna