cancel
Showing results for 
Search instead for 
Did you mean: 

Concatenate field and use in smartform

Former Member
0 Kudos

Hello,

I have generated a form .In a program ,i have used a CONCATENATE IT_OUT1-BSCHL UMSKZ INTO temp1.

and IT_OUT1-BSCHL = temp1.

temp1 is a variable type c.when i called it in smartform i.e.WA_IT_OUT-BSCHL.it does not shows both field data in print preview.

Please give me the solution.

Its an urgent.........

Awaitng reply.

Thanks

Suchita

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

hi

in global Definition u can define variable , then in ur driver prg.

add that fields name and assign value to it of that fields of internal table.

like this :

netpr = itab_ekpo-netpr

  • TOTAL_VALUE = ITAB_TOTAL-TOTAL_VALUE

importing

Note : netpe is variable u define in SF and itab_ekpo-netpe value ur passing to it. add before importing

OR

add a new field in ur intarnal table and assign value to it and call it in SF.

rewaed if helpful.

Former Member
0 Kudos

Hello,

I got it....................its done..

Thanks a lot.

Suchita

Former Member
0 Kudos

CONCATENATE IT_OUT1-BSCHL UMSKZ INTO temp1.

You are passing temp1 to it_out1.

IT_OUT1-BSCHL = temp1.

but you are displaying WA_IT_OUT-BSCHL.

That's why it is not displaying the value.

you can do as below

CONCATENATE IT_OUT1-BSCHL UMSKZ INTO WA_IT_OUT-BSCHL.

Former Member
0 Kudos

Hello,

yes.............its done.

thanks a lot.

Rgrds

Suchita