While Transporting Smartform form Dev to Test to
Production, it is possible that Name of the Function Module
change, Why? In which case it changes and in which case it
remains same?
Answers were Sorted based on User's Feedback
Answer / amitesh jaiswal
Once you have activated the smartform, go to the environment
-> function module name. There you can get the name of
funtion module name.
The key thing is the program that calls it. for instance,
the invoice SMARTFORM LB_BIL_INVOICE is ran by the program
RLB_INVOICE.
This program uses another FM to determine the name of the FM
to use itself. The key thing is that when it calls this FM
(using a variable to store the actual name), that the
parameters match the paramters in your smartform.
Another thing to note is that the FM name will change
wherever the SF is transported to.
So you need to use the FM to determine the name of the SF.
Here is the code that can be use to determine the internal
name of the function module:
Code:
if sf_label(1) <> '/'. " need to resolve by name
move sf_label to externalname.
call function 'SSF_FUNCTION_MODULE_NAME'
exporting
formname = externalname
importing
fm_name = internalname
exceptions
no_form = 1
no_function_module = 2
others = 3.
if sy-subrc <> 0.
message 'e427'.
endif.
move internalname to sf_label.
endif.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nitin gautam
See, Whenever we transport SF from one server to another, the Function module no chages, because every time , a new FM NO will be generated while activating smartform on different servers...
Please, correct me or suggest me some more points.. to it..
Is This Answer Correct ? | 1 Yes | 0 No |
How will you add colour in a row using ALV ?
Suppose we are transfer data through BDC from legacy to SAP and their is some duplicate data in legacy system but we don’t want this in SAP system .So how can we check that this data is already exist ?
What are two methods of modifying sap standard tables? : abap data dictionary
Are their any types in LSMW?If yes then what are they?`
What is the difference between domain and data element? What are aggregate object?
what is Primary key and unique key and what is the Difference?
Describe the difference between macro and subroutine?
what is call back in alv?
Which objects are independent transport objects? : abap data dictionary
identify valid statement when coding a field exit ? a) submit RSCA101X b)MESSAGE E101 C)MESSAGE I101 d)BREASK-POINT
In ALV reporting when u execute your report which event gets triggered.
how many types of idoc'c?