cancel
Showing results for 
Search instead for 
Did you mean: 

Concatenating results

Former Member
0 Kudos

Hi

how can I concatenate the strings from some values to create a Bar Code from all the numbers concatenated in the string. Using the LiveCycle Designer

The values are extracted from sap tables. The values, well the fields where I have to extract the different values are: MSEG-EBELN , MSEG u2013 LFPOS, MSEG-CHARG, > MSEG-VFDAT, MSEG - MATNR

thanks a lot

Accepted Solutions (0)

Answers (2)

Answers (2)

OttoGold
Active Contributor
0 Kudos

concatenate your values in the backend and add an extra node/ field to the interface to expose the concatenated string to the form layout. place a barcode there and bind it to your extra interface node.

Otto

Former Member
0 Kudos

Easiest way I see is to make use of the Code Initialization section of the interface and code it in abap.

Input parameters:

Z_STRUCT_MSEG (Contains:MSEG-EBELN, MSEG u2013 LFPOS, MSEG-CHARG, MSEG-VFDAT, MSEG - MATNR)

Output parameters:

barcode_num (declare in global data I think)

Use the barcode_num to bind with the barcode in the adobe form.