Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Call Transaction Mode.

Former Member
0 Likes
3,757

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,611

Hi.

You can use a normal character field.

PARAMETERS: p_mode TYPE c.

Regards,

Timo.

9 REPLIES 9
Read only

kostas_tsioubris
Contributor
0 Likes
1,611

Hi,

you can use this

PARAMETERS: P_MODE LIKE CTU_PARAMS-DISMODE AS LISTBOX

VISIBLE LENGTH 35 DEFAULT 'N' OBLIGATORY.

Kostas

Read only

Former Member
0 Likes
1,611

Hi,

You can user char1 directly.

Thanks

sandeep

Reward if helpful:)

Read only

Former Member
0 Likes
1,612

Hi.

You can use a normal character field.

PARAMETERS: p_mode TYPE c.

Regards,

Timo.

Read only

0 Likes
1,611

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.

Read only

0 Likes
1,611

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

Read only

0 Likes
1,611

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.

Read only

Former Member
0 Likes
1,611

A-Asyncronous,

S-Synchronous,

L-Local

Regards

Suresh.D

Read only

Former Member
0 Likes
1,611

PARAMETERS: mode(1) TYPE c DEFAULT 'N' OBLIGATORY.

Read only

Former Member
0 Likes
1,611

hi,

just go for normal character mode

parameters : p_para(1) like c.