-2

I have created 5 UDF fields in item master using SAP Business One as you can see in the below picture:

SAP Business One - Item Master Data

Now I want to fetch those 5 UDF value in Bill of material (BOM)'s header level UDF field 'Drawing no' as you can see in the below picture:

SAP Business One - Bill of Material

As of now only one value is coming from list of 5 UDF fields i.e 'abc' as you can see in the second picture.

Could you please help me to populate all 5 UDF field in 'Drawing no' in picture 2?

Suncatcher
  • 10,355
  • 10
  • 52
  • 90

1 Answers1

1

Using a User Defined Query you should be able to Concatenate your multiple fields

Choose " Search in Existing User-Defined Values According to Saved Query " Formatted Search Option

The Query Should look similar to this:

SELECT T0.[myUdf1] + T0.[myUdf2]  FROM OITM T0 WHERE T0.[ItemCode] = $[$4.0.0]
Praxiom
  • 578
  • 1
  • 8
  • 21