<?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: Smart from Dynamic Image issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505101#M1654386</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Feb 2012 05:54:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-02-11T05:54:17Z</dc:date>
    <item>
      <title>Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505090#M1654375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Helllow experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to ABAP , i made one Form (screen Painter) to show the Employe Basic Data like NAME , DEPT ,IMAGE OF EMPLOYEE, From data base. Now i need to print that form with image so i made one smart form and passed the values to smart forms once user hit the PRINT pushbutton.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issue is, How can i get the Image from Form to smartForm , means from screenpainter to smartform, Image is coming form Database, plz help me with suitable simple steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 05:44:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505090#M1654375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-23T05:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505091#M1654376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how have you stored the images?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 05:57:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505091#M1654376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-23T05:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505092#M1654377</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;Better to write your code for image in smart form itself. then no need to pass parameter from form to smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just simply declare image varaible as global variable in smartform and get the image from respect location or table. pass that variable value to respective window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 06:01:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505092#M1654377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-23T06:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505093#M1654378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for quick responce,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but can you please specify you query i did not get se this is my below seniruo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZEMMPIIC   --Progrme&lt;/P&gt;&lt;P&gt;peace of code for displaying image in screenpainter means form not smartform&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM GET_PIC.
DATA: REPID LIKE SY-REPID.
REPID = SY-REPID.
IF PICTURE IS INITIAL.
*Object To Create the Custom Container
CREATE OBJECT PICTURE
EXPORTING
PARENT = DOCKING_CONT.
CHECK SY-SUBRC = 0.
*Method To Set Position of Image
CALL METHOD PICTURE-&amp;gt;SET_POSITION
EXPORTING
HEIGHT = 40
LEFT = 10
TOP = 10
WIDTH = 70.
*Method To Set Display Mode Fit to Container
CALL METHOD PICTURE-&amp;gt;SET_DISPLAY_MODE
EXPORTING
DISPLAY_MODE = CL_GUI_PICTURE=&amp;gt;DISPLAY_MODE_FIT.
ELSE.
*Function Module To Reset Image
CALL FUNCTION 'HR_IMAGE_RESET'
EXPORTING
HANDLE = HANDLE
EXCEPTIONS
INVALID_HANDLE = 1
OTHERS = 2.
IF SY-SUBRC &amp;lt;&amp;gt; 0.
ENDIF.
ENDIF.
ENDFORM. "Get_pic
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Noe please guied me how to do in samrtfrom. its really thankfull to you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 06:06:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505093#M1654378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-23T06:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505094#M1654379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i did not stored images i am calling images from database see my below code you can get the code for displaying image.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 07:07:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505094#M1654379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-23T07:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505095#M1654380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need only to display image which is come from my screen painter plz i realy need badly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 09:28:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505095#M1654380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-23T09:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505096#M1654381</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;Once print button is clicked u r calling form in u r program. So from the screen u r are passing all data to form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Form take one inporting parameter to pass image name from the screen painter. In Form,pass this image name to logo window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 10:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505096#M1654381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-23T10:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505097#M1654382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for response but i did not got your point will you please specify ,&lt;/P&gt;&lt;P&gt;i have following seniro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have scren painter (Input form)&lt;/P&gt;&lt;P&gt;i developed one Zprograme to display image and employe detal on form&lt;/P&gt;&lt;P&gt;i developed one smartform and ,in form interface i decalred the  fielld which i have to pick&lt;/P&gt;&lt;P&gt;but i dont know how to decalre the image field plz help me out for this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 11:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505097#M1654382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-23T11:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505098#M1654383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx for your response Raghavender Momula &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you understand my seniro completley can you tell me how can i take importing paramter, i tried but its showing error that char (20) is unkown i decalre , PICNAME LIKE CHAR(20) in Form Interface Import paramter, plz help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2012 06:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505098#M1654383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-24T06:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505099#M1654384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hellow experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i didnt got any proper soltion , please any body help me on this i really got trouble.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2012 04:30:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505099#M1654384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-25T04:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505100#M1654385</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;If the stored image is of type &lt;STRONG&gt;HRTMC_XSTRING&lt;/STRONG&gt;, then you can directly select this from the table and pass to the form and can print the image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Rinzy Deena Mathews.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2012 10:44:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505100#M1654385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-25T10:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Smart from Dynamic Image issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505101#M1654386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Feb 2012 05:54:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-from-dynamic-image-issue/m-p/8505101#M1654386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-11T05:54:17Z</dc:date>
    </item>
  </channel>
</rss>

