cancel
Showing results for 
Search instead for 
Did you mean: 

Dynmaic smartform subject

Former Member
0 Kudos

Hello all,

I am working with a HTML smartform and am kinda new.

From what I have seen, the subject of the mail sent from my smartform is taken from the Description field of the smartform.

Is there a way to do something like a dynamic subject ? Maybe programatically ?

Thank you in advance.

Thomas

Accepted Solutions (1)

Accepted Solutions (1)

naimesh_patel
Active Contributor
0 Kudos

You should set the TDTITLE in the Options of the Smartfroms.

Like:


  DATA: L_SSFCOMPOP TYPE SSFCOMPOP.

  L_SSFCOMPOP-TDTITLE    = 'Test Title'.

  CALL FUNCTION W_FM_NAME
    EXPORTING
      OUTPUT_OPTIONS   = L_SSFCOMPOP
...

Regards,

Naimesh Patel

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello,

If I understand correctly, this must be done in the code that calls the smartform Function Module.

The problem is that the smartform I use is called by a standard program, so I cannot do it like that (unless I do a repair, and I do not want to).

Is there a way to control the title from the smartform, and not from the code calling the smartform ?

Thanks,

Thomas