‎2007 May 22 10:51 AM
Hi guys.
I am using Call Transaction. In that I will be passing the MODE, right. I want to declare this field on the selection screen which will show
'A' for All Screen Mode
'N' for No Screen Mode
'E' for Error Screen Mode
Can you tell me, what will be the type of this parameter
Parameters: p_mode type ??
Thanks in advance,
Ishaq.
‎2007 May 22 10:55 AM
Hi.
You can use a normal character field.
PARAMETERS: p_mode TYPE c.
Regards,
Timo.
‎2007 May 22 10:54 AM
Hi,
you can use this
PARAMETERS: P_MODE LIKE CTU_PARAMS-DISMODE AS LISTBOX
VISIBLE LENGTH 35 DEFAULT 'N' OBLIGATORY.
Kostas
‎2007 May 22 10:55 AM
Hi,
You can user char1 directly.
Thanks
sandeep
Reward if helpful:)
‎2007 May 22 10:55 AM
Hi.
You can use a normal character field.
PARAMETERS: p_mode TYPE c.
Regards,
Timo.
‎2007 May 22 11:02 AM
No Friends,
There is come field in some sap table if we give
Parameters: p_mode type <sap_table>-<sap_field>, we will directly get the f4 help. This is what I need.
Regards,
Ishaq.
‎2007 May 22 11:06 AM
Please see my reply, if you dont want it as a listbox you can ommit the listbox addition.
Kostas
Message was edited by:
Kostas Tsioubris
‎2007 May 22 11:26 AM
Thanks Kostas.
I was looking for this only. Initially I didnot try your solution due to listbox. I thought I have to do something after that.
Thanks again.
‎2007 May 22 10:55 AM
‎2007 May 22 11:11 AM
‎2007 May 22 11:15 AM
hi,
just go for normal character mode
parameters : p_para(1) like c.