<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Adding images dynamically to SAPScript in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881723#M51743</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible to use an image of archiving in a form of SAPscript?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Sep 2006 13:47:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-15T13:47:47Z</dc:date>
    <item>
      <title>Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881715#M51735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have got the same form ... but need to have separate images based on company code. Is it possible to add images dynamically to a SAPscript ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2005 16:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881715#M51735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-02T16:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881716#M51736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure,  2 ways of doing this.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)You can handle it in the print program, by doing an if statement and filling a variable which the SAPscript will read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
     
*In your print program,
If company_code = '0010'.
imagename = 'ThisCompany'.
endif.
*In your sapscript,    
BITMAP &amp;amp;IMAGENAME&amp;amp; OBJECT GRAPHICS ID BMAP TYPE BMON DPI 100   
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) You can have the if statements in the SAPscript itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

*In your sapscript,
IF COMPANY_CODE = '0010'    
BITMAP THISCOMPANY OBJECT GRAPHICS ID BMAP TYPE BMON DPI 100  
ELSEIF
BITMAP THATCOMPANY OBJECT GRAPHICS ID BMAP TYPE BMON DPI 100 
ENDIF


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either way you will need to load the images via SE78&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2005 16:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881716#M51736</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-02-02T16:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881717#M51737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Awesome solution............works great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a TON!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2005 18:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881717#M51737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-02T18:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881718#M51738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we also size the image?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2005 18:49:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881718#M51738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-02T18:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881719#M51739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't think that you can change the size of the window dynamically. Sorry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2005 18:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881719#M51739</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-02-02T18:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881720#M51740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had one more question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can the included image be other than bmp..... I had some images in .tif format. Do I need to convert them to bmp?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About the size, I was referring to the size of the image. Sorry for the confusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2005 20:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881720#M51740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-02T20:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881721#M51741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No,  size of the image will be whatever is uploaded thru SE78.  And yes,  you can do other image formats such as .tif, but it must be a certain kind of tiff.  I forget which.  You are better off converting to BMP and being done with it.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2005 20:07:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881721#M51741</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-02-02T20:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881722#M51742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2005 20:41:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881722#M51742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-02T20:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881723#M51743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible to use an image of archiving in a form of SAPscript?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 13:47:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881723#M51743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T13:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Adding images dynamically to SAPScript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881724#M51744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to add an employee photo dynamically to a form WITHOUT uploading it with SE78 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ofer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 13:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-images-dynamically-to-sapscript/m-p/881724#M51744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T13:41:45Z</dc:date>
    </item>
  </channel>
</rss>

