cancel
Showing results for 
Search instead for 
Did you mean: 

Can we transport a smartform between IDES and DEV

Former Member
0 Kudos

Hi experts ,

as we got a problem in Dev syst , i had developed a samrtform in IDES. Can any one tell me tht ...Is there any way to transport a smartform from IDES TO DEV system or should i develop from scratch in DEV.

regards,

shashank

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

Create a Transport request for that Smartform in SE09/SE10 tcode and release that request

and take the request related DAT and CO files from the system into an external disc or pendrive and you can incorporate the same CO and DAT files in any system you want so that the same request data will be availbale in that new system and you can use that.

<b>Reward points for useful Answers</b>

Regards

Anji

Answers (1)

Answers (1)

Former Member
0 Kudos

Smartforms Name are system dependant !

They are dynamically generated.

You have to use :

data : function_name type rs38l_fnam.

call function 'SSF_FUNCTION_MODULE_NAME'

exporting

formname = 'ZFORM_NAME' "Smartform name

direct_call = 'X'

importing

fm_name = function_name

exceptions

no_form = 1

no_function_module = 2

others = 3.

if sy-subrc <> 0.

  • erreur.

endif.

and then, you call your smartform with :

call function function_name

exporting

  • ARCHIVE_INDEX =

  • ARCHIVE_INDEX_TAB =

  • ARCHIVE_PARAMETERS =

control_parameters = st_ssfctrlop

  • MAIL_APPL_OBJ =

  • MAIL_RECIPIENT =

  • MAIL_SENDER =

output_options = st_ssfcompop

user_settings = ' '

....

Regards