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 |
what is use of sap script text file header?
hi friends i am having one doubt. if i have main window in secondpage also in smart form wether it will trigger are not?
what is diffrence between table control and alv grid in dialog programming in abap.
Exception handling and how does it transfer from called method to calling method?
During performance analysis you found one select statement taking long time. How to correct it?
What is the difference between ECC versions and older versions?
What is the syntax for ‘call transaction’?
How to print Back to Back in Scripts?
What is the difference between getting and get late?
Hi, I have 100 records in a table, how to read every 7Th record each in that...
difference between TYPE and LIKE ?
Pls reply me 1)can i debuging the idoc. 2)give some example of pool table and cluster table. 3)what is update module.