<?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: Two transactions, 1 program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446908#M1248778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One question about this approach.  Why would my initialization event not work properly for selection screen 200?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Apr 2009 17:40:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-02T17:40:36Z</dc:date>
    <item>
      <title>Two transactions, 1 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446903#M1248773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there, I am trying to figure out the best way to so this.  I need to have 2 different selection screens for the same program.  Can I use START_REPORT to accomplish this?  If so, I know it is done with a parameter transaction, but I'm just not sure how to code it.  Can someone help?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 18:30:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446903#M1248773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-01T18:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Two transactions, 1 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446904#M1248774</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;You can define the different selection screens like below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF SCREEN 100.
PARAMETERS: cityfr TYPE spfli-cityfrom,
            cityto TYPE spfli-cityto.
SELECTION-SCREEN END OF SCREEN 100..

SELECTION-SCREEN BEGIN OF SCREEN 500 .


PARAMETERS: airpfr TYPE spfli-airpfrom,
            airpto TYPE spfli-airpto.

SELECTION-SCREEN END OF SCREEN 500.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And create different transaction codes for each screen (100 , 500).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 18:43:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446904#M1248774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-01T18:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: Two transactions, 1 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446905#M1248775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 18:45:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446905#M1248775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-01T18:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Two transactions, 1 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446906#M1248776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Possible options are&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create a single selection screen with all the fields in it and while calling the START_REPORT use different variants for execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Use SHD0 and create different transaction variants&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/transaction+variant+-+a+step+by+step+guide+for+creation"&gt;How to create Transaction Variant&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 18:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446906#M1248776</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-04-01T18:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Two transactions, 1 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446907#M1248777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Question on this - I tried to do this with a custom report and it doesn't give the pop up.  Can this only be done on SAP transactions or on custom screens?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 13:14:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446907#M1248777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T13:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Two transactions, 1 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446908#M1248778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One question about this approach.  Why would my initialization event not work properly for selection screen 200?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 17:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-transactions-1-program/m-p/5446908#M1248778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T17:40:36Z</dc:date>
    </item>
  </channel>
</rss>

