2008 Dec 12 4:03 AM
Hi all,
How can i call my application form from within my se38 program?
is there any way then please tell me?
and how to pass input parameters to application form through se38 program?
Thanks and Regards,
Arpita.
2008 Dec 12 4:05 AM
Hi all,
How can i call my application form from within my se38 program?
is there any way then please tell me?
and how to pass input parameters to application form through se38 program?
Thanks and Regards,
Arpita.
2008 Dec 12 4:05 AM
2008 Dec 12 4:08 AM
2008 Dec 12 4:43 AM
2008 Dec 12 4:53 AM
Hi,
I am using smartform in my PWB Application form.
For this i want one input parameter to pass through application form to smart form.
for example i want to give MARA-MATNR as input to application form.
Is there any way to pass this parameter through se38 program or how should i link
my application form to se38 program?
Thanks and Regards,
Arpita.
2008 Dec 12 5:23 AM
Hi you can pass the parameter using application program. You can pass the value using the interface of the function module given below.
parameter p_matnr type mara-matnr.
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = gc_smart_form 'Name of ur smart form
variant = ' '
direct_call = ' '
IMPORTING
fm_name = lv_fmname
EXCEPTIONS
no_form = 1
no_function_module = 2
OTHERS = 3.
IF sy-subrc NE 0.
MESSAGE ID sy-msgid TYPE 'E'
NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
CALL FUNCTION lv_fmname
EXPORTING
control_parameters = gs_ssfctrlop
output_options = gs_ssfcompop
user_settings = ' X'
**---This is where u can pass ur paramter to the smart form*
matnr = p_matnr.
called from batch job
EXCEPTIONS
formatting_error = 1
internal_error = 2
send_error = 3
user_canceled = 4
OTHERS = 5 .
Thanx and hope this would help.
Regards,
Aruna
Edited by: Aruna Kumari Chekka on Dec 12, 2008 6:24 AM
Edited by: Aruna Kumari Chekka on Dec 12, 2008 6:29 AM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |