cancel
Showing results for 
Search instead for 
Did you mean: 

Small ISSUe with ITCSY?

Former Member
0 Kudos

HI all,

I have a variable type DMBTR and populating some PRICE value into this.

I need to move this value to ITCSY_OUT_TAB-VALUE field(ITCSY is a structure we used to send value from sub routine program to scripts).

When i try to use MOVE stmt its not moving the value,

Can anybody help me reg this?

Sachin.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

ITCSY structure can accepts only character type values. In your case may be you are trying to push value which is of type other than char please check, it may be of type I or Numc. if that is the case change that value into char type and then push into itcsy-value field.

Hope this will work.

Regards,

Aswini.

Former Member
0 Kudos

HI Ashwini,

How can i get COMMA seperators in my OUT_TAB-VALUE..in script print out.

Sachin.

Former Member
0 Kudos

Hi,

Please try this, Just before pushing into itcsy-value take some intermediate variable which is of type char and then push into itcsy-value.

Hope this will work.

Regards,

Aswini.

Former Member
0 Kudos

Hi sachin,

For this scenario,You should move the vale like this.

DATA: v_dmbtr type Dmbtr .

variable is ,where you are getting the value.

Move variable to v_dmbtr.

move v_dmbtr to outtab-field.

Regards,

Shiva Kumar

Former Member
0 Kudos

Hi KODIYALA<

Exactly i have written the same code....but the value not getting updated in OUT_TAB table.

SAchin.

Former Member
0 Kudos

Hi,

try this,

data: v_dbmtr of character type and then

v_dbmtr = OUT_TAB-VALUE

and then pass this value

REWARD IF HELPFUL

Former Member
0 Kudos

Hi,

I think , r u modified the outtab table.Please check once.

Regards,

Shiva Kumar

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

For filed C_DMBTR type DMBTR and

For in OUT_TAB table field VALUE you will take same as DMBTR

may it will work

Regards,

Bhupal

Former Member
0 Kudos

Hi,

Is there any error or warning message?May be it is type conflict?

First Move the DMBTR value into the Char field and then Assign that value to the Out tab.May it works.

Regards,

Shiva Kumar

Former Member
0 Kudos

Hi,

My actual problem is i am getting some price value in subroutine pool.i am not able to print it in my script with comma seperators.

Like 23456.00...i have display it like 23,456.00

For this i have taken a filed type DMBTR and trying to move that value to OUT_TAB-VALUE...

but its not working..

Sachin.