cancel
Showing results for 
Search instead for 
Did you mean: 

plz send me some sample prgms with scrren shots

Former Member
0 Kudos

hi guys,

i am new to smartforms and plz send me some snaps hots

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Check Standard INVOICE Smartform LB_BIL_INVOICE .

And the driver program RLB_INVOICE.

Hope it helps.

Thanks.

Answers (2)

Answers (2)

Former Member
0 Kudos

ok solved my probs

Former Member
0 Kudos

REPORT ZBABUSMORTFORMS2 .

tables kna1.

Data : it_tab like table of kna1,

FM_NAME TYPE RS38L_FNAM.

select-options kunnr for kna1-kunnr.

select * from kna1 into table it_tab where kunnr in kunnr.

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

FORMNAME = 'ZBABU_SMARTFORM2'

IMPORTING

FM_NAME = fm_name

EXCEPTIONS

NO_FORM = 1

NO_FUNCTION_MODULE = 2

OTHERS = 3.

CALL FUNCTION fm_name

TABLES

IT_KNA1 = it_tab

EXCEPTIONS

FORMATTING_ERROR = 1

INTERNAL_ERROR = 2

SEND_ERROR = 3

USER_CANCELED = 4

OTHERS = 5 .