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

Problem with Char Data Type in Parameters

Former Member
0 Likes
439

Hi,

I declared some parameters with char data type.

PARAMETERS: PRNO LIKE EBAN-BANFN OBLIGATORY,

TEXT1(100) LOWER CASE,

TEXT2(100) LOWER CASE,

TEXT3(100) LOWER CASE,

TEXT4(600) LOWER CASE,

TEXT5(50) LOWER CASE,

TEXT6(50) LOWER CASE.

But when i give text during execution it accepts only 132 characters.How to overcome this?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
400

hi,

Delcare as string,..

PARAMETERS: PRNO LIKE EBAN-BANFN OBLIGATORY,

TEXT1 type string LOWER CASE,

TEXT2 type string LOWER CASE,

TEXT3 type string LOWER CASE,

TEXT4 type string LOWER CASE,

TEXT5(50) LOWER CASE,

TEXT6(50) type string LOWER CASE.

1 REPLY 1
Read only

Former Member
0 Likes
401

hi,

Delcare as string,..

PARAMETERS: PRNO LIKE EBAN-BANFN OBLIGATORY,

TEXT1 type string LOWER CASE,

TEXT2 type string LOWER CASE,

TEXT3 type string LOWER CASE,

TEXT4 type string LOWER CASE,

TEXT5(50) LOWER CASE,

TEXT6(50) type string LOWER CASE.