how to find the print/driver prg of smartform.I used FM SSF_FUNCTION_MODULE_NAME in driver prg.
Answer Posted / abaprajaram
Smartform - activate it and then generate the FM with
fallowing simple steps to get the print program
ALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = 'ZTACA_SMFORM2'
IMPORTING
FM_NAME = fm_name
EXCEPTIONS
NO_FORM = 1
NO_FUNCTION_MODULE = 2
OTHERS = 3.
call function fm_name
Exporting
salary = g_salary
TABLES
it_flttab = it_flttab
EXCEPTIONS
FORMATTING_ERROR = 1
INTERNAL_ERROR = 2
SEND_ERROR = 3
USER_CANCELED = 4
OTHERS = 5
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what are the two methods of modifying sap standard tables? : abap data dictionary
While using extract datasets it is required to have a special workarea for interface. State true or false. : abap modularization
What is alv programming in abap?
What is going life actually? What is the role of a functional consultant in it? : sap abap hr
How do you Export a session ?
Explain how do you get output from idoc?
Explain the differences between sap memory and abap memory?
How to determine the attributes of an internal table?
How collect statement is different from append?
What are the different types of views and their definition?
What is your approach for writing a bdc program? : abap bdc
What is meant by hide area?
What are the three hierarchical levels of data types and objects?
How are BAPI different from Normal function modules ?
What are the different methods of passing data? : abap modularization