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
0 Kudos

Hi Shakshi,

I have one query.

When my BURKS is on master page and I am trying to display logo in subform of Child page and i am trying to change the presence of logo than it is not working.

writing below script on initialize event of logo #child page.

data.Main.child_page.Logo_110::initialize - (JavaScript, client)

if(data.Main.master_page..BUKRS.rawValue != 110)  "taking full path of text field.

     this.presence = "hidden";  


Can you please tell what wrong thing i am doing?


-Sunny

prajeshdesai
Contributor
0 Kudos

You can try Accessing Master Page Field on Body Page this document. In this document i covered and explained that how to access master page field on body page.

Hope this helps.

Former Member
0 Kudos
Hi ,

Is there possible to change the Logo base the URL name too? Im Using different Logo address in Quality and Production systems and would like to find the correct Photo address in both systems. Could you please provice Formcalc or Javascrpt code for this issue ? Thanks alot

 

 
0 Kudos
hey hi prajeshdesai,

this tutorial is very good . but i am facing problem with image with text field its not showing any image only showing text.
sakshi_sawhney
Participant
0 Kudos
Hello sumit ,

Could you confirm if image is visible like in my example in form builder or no ?

If possible please could u share the screen shots.

Thank you
0 Kudos
sorry for late reply...yes its visible in form builder. But when i execute my form its only showing text showing nothing.. Please check attachment.

 
0 Kudos


I need to show both logo conditional Plant wise.





 





 

 
pravin_1717
Member
0 Kudos
Hi Expert,

can i use the same to display watermark in adobe form
Suying
Explorer
0 Kudos
I cannot see WERKS in the subform.
Labels in this area