hi friends,
i migrated PO form MEDRUCK into Smartforms....but i'm getting only the layouts(Windows) but there is no text or no data in any of the window... i read from a book if we migrate there will be text files which was there in SAPScript. Is it true..? or any config have to be done?
please send me the answer......
Request clarification before answering.
Hi,
1.when ever u r changing the form u have to call the smartform form u r driver program..
2.u have to configue the output type in NACe if u r usng message control.
3. check in NACe whether u have configured or not.
to call the smartform u have to use like this..
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = fp_c_formname
IMPORTING
fm_name = fp_v_fm_name
EXCEPTIONS
no_form = 1
no_function_module = 2
OTHERS = 3.
IF sy-subrc <> 0.
MESSAGE e107 WITH fp_c_formname.
ENDIF.
CALL FUNCTION fp_v_fm_name
EXPORTING
archive_index = toa_dara
archive_parameters = arc_params
control_parameters = fp_st_control_parameters
user_settings = space
output_options = fp_st_output_options
wa_vbdkr = fp_st_vbdkr
IMPORTING
job_output_info = l_it_ssfcrescl
job_output_options = l_it_ssfcresop
TABLES
it_item = fp_it_item_final
EXCEPTIONS
formatting_error = 1
internal_error = 2
send_error = 3
user_canceled = 4
OTHERS = 5.
IF sy-subrc <> 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.