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 do you create a table?
In se11 -->Tech. settings --> Data class. If I save table as Mater data OR Transaction data, what effect will it has for 'Storage' in Database after activation. or In Database how it will store in both the cases.
How to use messages in lists?
What is the lock object?
What are field symbols and field groups.?
how do u add one more field searchhelp screen ?
What is at exit-command:?
1. If I send 5 entries of table from one system to another system, if the only 4 entries there in the target system what I have to do? 2. If I send the customer master IDOC from one SAP system to another system, if one field is missing in target table what is the steps? 3. If I want to access the 4th row 3rd column in the hashed table how to do it? 4. Whether there is any other statement than MODIFY statement to modify the content of internal table?
How do u handle a button in ALV report. Like in which event?
What are presentation and application servers in SAP?
In what ways we can get the context sensitive f1 help on a field?
WHICH LANGUAGE IS USED TO WRITE ABAP CODING PART?