InterviewSolution
| 1. |
You Have Created A Smartform In Development Server. Then You Transported The Smartform To Production Server. Will The Name Of The Function Module Be Same In Both The Servers? |
|
Answer» The Smart Form 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. DATA: fm_name TYPE rs38l_fnam. Once you transport the Smartform from Development to Production server, a NEW function module name for the Smartform in generated in the Production server. For a particular Smartform , generated function module names are different in different systems. The Smart Form 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. DATA: fm_name TYPE rs38l_fnam. Once you transport the Smartform from Development to Production server, a new function module name for the Smartform in generated in the Production server. For a particular Smartform , generated function module names are different in different systems. |
|