Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
sakshi_sawhney
Participant

Hi All,

Below document provides step by step guideline as to how Script Option can be used to select Logo based on the value of a text field in SAP Adobe forms . Here we will make use of Java Script.

Business Scenario:

Suppose a Client has more than one company code and logo for each Company code is different.

Requirement is to have a Logo on the form based on the Company code.

Example : Company Code Details are as follows:

Company CodeLogo
110
210
310

Steps to be followed are :

  1. Create a Form : Here we have a Form : ZPRMM_LOGO_TEST and respective Form Interface : ZIFMMA_LOGO_TEST .
  2. In the Interface add  im_bukrs as the importing parameter and add the importing parameter to form context.
  3. In the Form Layout : Bind the value of company code (im_bukrs) field to a Text field and set its property to Hidden.
  4. Now Insert 3 Image Fields namely :
    1. Logo_110
    2. Logo_210
    3. Logo_310

within a Sub Form as Shown below.Provide the Image Mapping to the Respective fields

.And Java Script at Event : initialize for each Image field : For this select the image Field : Logo_110 as shown in figure below in Script Editor choose Language as 'Java Script'. In the Script Editor write the code as below :


Pseudo code :

data.Main.Header.General.Info_Left.Company_Logo_Addres.Logo_110::initialize - (JavaScript, client) - " this tells /elementthe position where script is inserted
if(Company_Logo_Addres.BUKRS.rawValue != 110)     "The value to be compared will change for each Image Field 210 or 310
{
this.presence = "hidden";   " Set the property of the Image Field
}

Based on the value of im_bukrs we set the layout property of the Image Fields at runtime. Repeat the Same for other Image Fields :Logo_210 and Logo_310, compare BUKRS value with 210 and 310 respectively. And we are done with our part!

Now run the form provide the company code and see the output for different company codes.

IM_BUKRS (Company Code Value)Output

Any questions or comments are welcome!

9 Comments
Labels in this area