Application Development 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: 

Output required in following format " Sold-to: Address: GRIMES, IA 50111"

Former Member
0 Kudos

Hi

Sold-to: Address: GRIMES, IA 50111

need help how to join 3 field information in one row

city, region and pin.

i am using

Perform add_to_extract Using label_sold_address2 it_data-ort01.

I need to add the following fields to sold_address2 - " it_data-regio it_data-pstlz.

FORM add_to_extract USING p_label

p_value.

CLEAR it_extract.

it_extract-label = p_label.

it_extract-value = p_value. "

APPEND it_extract.

CLEAR it_extract.

ENDFORM.

can someone suggest a way to add it.

"

1 ACCEPTED SOLUTION

Former Member
0 Kudos

use

data : v_address(40).

concatenate 'Sold-to: Address:' it_data-city ',' it_data-regio it_data-pstlz into v_address.

write v_address.

Thanks

Mahesh

2 REPLIES 2

Former Member
0 Kudos

use

data : v_address(40).

concatenate 'Sold-to: Address:' it_data-city ',' it_data-regio it_data-pstlz into v_address.

write v_address.

Thanks

Mahesh

0 Kudos

thanx alot.

u have a gud day.