3

[Adobe Form]: Centre Alignment of BARCODE 128 with XML Schema

 1 year ago
source link: https://blogs.sap.com/2023/03/16/adobe-form-centre-alignment-of-barcode-128-with-xml-schema/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
March 16, 2023 1 minute read

[Adobe Form]: Centre Alignment of BARCODE 128 with XML Schema

INTRODUCTION:

As you could see in my previous blog Use DDIC Interface based Regular Custom Adobe Form

We have generated a barcode for MATNR with data length of 40 CHAR.

Challenge: The value is generally coming in 10 CHAR or 18 CHAR (ECC length of MATNR) and as per that BARCODE generation covers the provided width, in layout having no option to auto-expand, making it visible as left/not-center aligned.

Solution: We need to handle the barcode appearing the whole width:

  1. Apply conversion approaches on MATNR value in the interface – it failed
  2. Change the data length of BARCODE in XML schema through scripting – worked, explained below:

In this blog post, we will cover the coding to Dynamically change the data length of UI variables as per the STRLEN of variable:

MAIN CONTENT:

  1. Wrap the Barcode variable in a sub-form name ‘Barcode’.
  2. Go to Palletes -> Script Editor. opt for Form: Ready, Language: FormCalc and write below code
var strlen = len($.GV_MATNR_BAR.rawValue)
$.GV_MATNR_BAR.ui.#barcode.dataLength = strlen

Here, GV_MATNR_BAR is the variable name. Firstly, we will fetch the string length  ‘rawValue’ of the variable and then update the UI property ‘dataLength’.

Barcode%20Center%20Alignment%20Logic

Barcode Center Alignment Logic

  1. So, it will change the data length of the Barcode, and the assigned width will be fully covered with the generated code.

Outcome:

GR_LABEL_FINAL_OUTPUT-1.png

Topic page:

ABAP Topic: https://community.sap.com/topics/abap,

Do give your comments and feedback.
Follow for more: Robin Thakral


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK