why u can call(r using) ssf_function_module_name in smartforms?
Answers were Sorted based on User's Feedback
Answer / krishnaveni
In General case we can directly call the Function module
into the print Program.
if we transport this SMARTFORM to other System it may
genarate other function module in that system.In this case
miamatch takes place.
That's why we are using 'ssf_function_module_name'
if we give the SAMRTFORM Name to this function module it
automatically generates the FUNCTION MODULE.Call that
function module.
Is This Answer Correct ? | 28 Yes | 1 No |
Answer / smart varghese
By using "ssf_function_module_name " the user can obtain
the function mudule generated by the Smartform. The input
parameter is the SMARTFORM name the output parameter is the
function module generated .It has to be type RS38L_FNAM.
After getting the output parameter . CALL FUNCTION(output
parameter name).
Is This Answer Correct ? | 19 Yes | 1 No |
Answer / itchamps
The Smartform that is created in the Development may not
have the same name in the Production server. So it is
always advised to use the Function Module
SSF_FUNCTION_MODULE_NAME to get the Function Module name by
passing the Smartform name.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sss
A function module is generated whenever a Smart Form is
activated. This Smart Form could be called from the driver
program by calling the function module generated in the
system directly.
But this is not an efficient way of calling Smart Form for
the following reason:
Whenever a Smart Form is generated, a function module is
generated and the naming convention for that Smart Form is
done internally by using Number range object or something
similar. Let us consider the function module name
as /1BCDWB/SF00000359. The function module for the next new
and activated Smart Form would be /1BCDWB/SF00000360, one
more than the previous one.
So when this Smart Form is transported from the development
to Quality or Production system, a new function module name
is generated according to the number series available in
that system. If the above program is transported to either
quality or production system, the program might go for a
dump as the function module is not available in that
system, because the number series generated in the for
example in development system will be different from that
of the quality system . To handle this situation, we use
the function module SSF_FUNCTION_MODULE_NAME to get the
name of the function module for a Smart Form dynamically.
If the form is not active, the function module
SSF_FUNCTION_MODULE_NAME raises the exception NO_FORM.
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / bitbit
Calling SMARTFORMS from your ABAP program.
Collecting all the table data in your program, and pass once
to SMARTFORMS
Is This Answer Correct ? | 8 Yes | 6 No |
Answer / bhavannarayana s
this function module allows us to give name to our smartforms dynamically.. After that, we can call that named function module which is named by us directly
Is This Answer Correct ? | 2 Yes | 0 No |
By using which FM we can upload data into Infotype
What are the abap/4 commands that link to a layout set?
How do we create the Field exits?
In sap script how to print bar code in vertical manner
what is the output of given code? data : f1 type i, f2 type i. write : / f1, f2. do 2 times. perform addfld. enddo. write : / f1, f2. form addfld. data : f1 type i, f2 type i. add 1 to f1. add 1 to f2. write : / f1 , f2. endform. int : f1 , f2.
How can we access the correction and transport system?
1)What is the main difference between Enhancements and BADI?
Have you processed BDCs ?
How do you get the number of lines in an internal table? How to use a specific number occurs statement?
What are the page windows?
in bdc which method is suitable for back ground processing?
4 Answers Bristle Cone, Cap Gemini, HP, Satyam, Wipro,
How do you number pages in Sapscript layout outputs?