<?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: creating a hyperlink in screen painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766648#M644439</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;i guess this is simple .. u can create a button in ut screen and when that button is pressed then u can write command call transaction va01 . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;rohit &lt;/P&gt;&lt;P&gt;rewARD IF HELPFUL ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Sep 2007 07:08:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-10T07:08:15Z</dc:date>
    <item>
      <title>creating a hyperlink in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766647#M644438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may you please tell me how i can create a hyperlink in screen painter. when i click on the hyperlink i should be able to call a transaction, say VA01.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2007 06:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766647#M644438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-10T06:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: creating a hyperlink in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766648#M644439</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;i guess this is simple .. u can create a button in ut screen and when that button is pressed then u can write command call transaction va01 . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;rohit &lt;/P&gt;&lt;P&gt;rewARD IF HELPFUL ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2007 07:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766648#M644439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-10T07:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: creating a hyperlink in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766649#M644440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Timothy, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the screen painter- Choose the field you want to make appear like Hyper link( double click)  - it opens the attributes window of the screen element. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now at the bottom there is a block - Attrbutes. Go to the Display tab of that Attribute. You will find a Checkbox "Responds to Doube click". You just need to check it. Thats it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rest in the PF-STATUS u need to create a command for the same and then handle it accordingly, For more help u can refer to VA02 where clicking on the Customer takes you to customer Master screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2007 11:58:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766649#M644440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-10T11:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: creating a hyperlink in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766650#M644441</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;in screen create a label and in PAI module code like this.&lt;/P&gt;&lt;P&gt;declare that label in flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION SCEREEN ON label.&lt;/P&gt;&lt;P&gt;     CALL TRANSACTION VA01 SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt; when ' lablel'.&lt;/P&gt;&lt;P&gt;     CALL TRANSACTION VA01 SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;..............&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2007 12:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766650#M644441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-10T12:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: creating a hyperlink in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766651#M644442</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;can u explain in detail what to do after select Checkbox "Responds to Doube click".&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, 10 Sep 2007 12:05:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-hyperlink-in-screen-painter/m-p/2766651#M644442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-10T12:05:18Z</dc:date>
    </item>
  </channel>
</rss>

