cancel
Showing results for 
Search instead for 
Did you mean: 

parameters : abc type string

Former Member
0 Kudos

Hi all

Is it possible to get the string whcih have more than 500 chare through parameters .

Parameters: aba type string.

this above statement cannot works.

Accepted Solutions (0)

Answers (6)

Answers (6)

former_member705122
Active Contributor
0 Kudos
DATA:
  w_test TYPE string,
  w_len TYPE i.
PARAMETERS: 
  p_test LIKE w_test VISIBLE LENGTH 150.

n = STRLEN( p_test ).
WRITE: / p_test, w_len.
Former Member
0 Kudos

>

>

DATA:
>   w_test TYPE string,
>   w_len TYPE i.
> PARAMETERS: 
>   p_test LIKE w_test VISIBLE LENGTH 150.
> 
> n = STRLEN( p_test ).
> WRITE: / p_test, w_len.

Hi Syed ,

My Version is 4.7, Is there any difference using 4.7 & EEC

Former Member
0 Kudos

hi ,

go to se11, in domain field give as char* and press f4 .

see what domains are there.....

we have a domain with char300 and char3000.

if u have so , then use where used list to find data element..

hope this will solve ur problem.

Rgds.,

subash

Former Member
0 Kudos

Hi,

You can try creating a domain of length 500 and use in the parameters.

Thanks,

Sriram Ponna.

Former Member
0 Kudos

HI Sri ,

I tried it , but it won't work.

my data element name :zbarcodefont

Data element properties :

data type: Rawstring

length : 500

program

PARAMETERS: temp TYPE zbarcodefont.

write : / temp.

Error :

The deep data type "ZBARCODEFONT" is not allowed.

Edited by: JJ on Sep 25, 2008 6:09 PM

Former Member
0 Kudos

Hi,

We can do one thing we can search for it.

Goto SE11 then put char500 in Domian then in latter screen we check the where-used list for CHAR500 we mark the data elements and we get the data elements that have CHAR500 as domain.

In this way we can search the required type.

thanx.

Former Member
0 Kudos

Hi,

Use the data type LCHR and try it will work.

Cheers!!

Former Member
0 Kudos

HI

I GOT THIS MESSAGE.

The type "LCHR is unknown.

former_member181995
Active Contributor
0 Kudos

yes it's possible.

try with this:

PARAMETERS:temp TYPE PARAM_PAY.

Former Member
0 Kudos

HI

my program cannot activate . it show fololwing message.

The type "PARAM_PAY" is unknown.

former_member181995
Active Contributor
0 Kudos

Sorry i think you are in 4.6 version.

PARAM_PAY is not exsist in 4.6.

Just try with PARAMETERS:temp TYPE OFX_LINE.

Edited by: Ámit Güjärgoüd on Sep 25, 2008 6:44 AM

Former Member
0 Kudos

HI AMIT,

The bellow is my code .ofx_line also cannot work. it took only 132 char.

REPORT Z_HYPIX NO STANDARD PAGE HEADING LINE-SIZE 600.

PARAMETERS: temp TYPE OFX_LINE.

write : / temp.

*SAMPLE DATA :

*'[)><RS>06<GS>P<GS>1PTMS3705ADR<GS>6P<GS>2PB<GS>Q2500<GS>V0033317<GS>1T

*3346243Z49<GS>4WTKY<GS>D0810<GS>31T8357096WD7<GS>20LDLN<GS>21LUSA<GS>22

*LTAI<GS>23LTWN<GS>E<GS>3Z3/235C/168HR;//;032108<GS>L1310<RS><EOT>'.

asik_shameem
Active Contributor
0 Kudos

Hi

Use data element SELSTRING_WAO

PARAMETERS: P_ORDER TYPE SELSTRING_WAO .

Former Member
0 Kudos

>

> Hi

>

> Use data element SELSTRING_WAO

>

>

PARAMETERS: P_ORDER TYPE SELSTRING_WAO .

Hi Asik,

we don't have SELSTRING_WAO.

Former Member
0 Kudos

any body able to solve my issue

Former Member
0 Kudos

Hi,

Can you try this -

Parameters: param type CHAR512.

Former Member
0 Kudos

Hi Sujit

this is my program

data: n type i.

PARAMETERS : temp type char512.

n = strlen( temp ).

write : / temp,n.

My parameter in

[)><RS>06<GS>P<GS>1POPA547FKTWT<GS>6P<GS>2PE0<GS>Q20<GS>V0033317<GS>1TL34fy62Mk2<GS>4WTKY<GS>D0759<GS>31T8024995WER<GS>20LTID<GS>21LDEU<GS>22LHIJ<GS>23LJPN<GS>EG1<GS>3Z1/260C/UNLIM;//;041208<GS>L1520<RS><EOT>

but my output was only 132 char

[)><RS>06<GS>P<GS>1POPA547FKTWT<GS>6P<GS>2PE0<GS>Q20<GS>V0033317<GS>1TL34fy62Mk2<GS>4WTKY<GS>D0759<GS>31T8024995WER<GS>20LTID<GS>21L

u try my code and sample input