<?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 Specific message when starting a transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397170#M1546366</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;our customer would like to post transaction specific messages in a popup when a user is starting a transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;- they want to tell the user, that for transaction VA01 a special field has to be maintained. if the user hits VA01, he will get this information by a popup. &lt;/P&gt;&lt;P&gt;-  at the same time there sould be other informations for other transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does anybody knows if there is something like an user-exit or BADI to implement such a function when starting a transaction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot &lt;/P&gt;&lt;P&gt;Jürg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Nov 2010 16:43:57 GMT</pubDate>
    <dc:creator>florgodi</dc:creator>
    <dc:date>2010-11-01T16:43:57Z</dc:date>
    <item>
      <title>Specific message when starting a transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397170#M1546366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;our customer would like to post transaction specific messages in a popup when a user is starting a transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;- they want to tell the user, that for transaction VA01 a special field has to be maintained. if the user hits VA01, he will get this information by a popup. &lt;/P&gt;&lt;P&gt;-  at the same time there sould be other informations for other transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does anybody knows if there is something like an user-exit or BADI to implement such a function when starting a transaction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot &lt;/P&gt;&lt;P&gt;Jürg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 16:43:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397170#M1546366</guid>
      <dc:creator>florgodi</dc:creator>
      <dc:date>2010-11-01T16:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Specific message when starting a transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397171#M1546367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jürg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am aware of only 2 transactions which show popups at the beginning: LSMW and SE80 (if you start it for the very first time).&lt;/P&gt;&lt;P&gt;Perhaps there is a general popup mechanism behind this but I doubt.&lt;/P&gt;&lt;P&gt;Have you thought about creating user-specific transaction variants? Changing optional to mandatory fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 20:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397171#M1546367</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2010-11-01T20:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Specific message when starting a transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397172#M1546368</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 don't believe there's a generic exit valid for all transaction, but in generally I don't think there's an exit in the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some transactions (just as VA01) have an exit triggered at the beggining, but this is an excpetion and it should means to change every transaction where u need to show a popup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably a good solution can be to create a function where all messages to be displayed for every transactions are managed and call this function before calling the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The transaction should be called by the fm NAVIGATION_EXECUTE_OBJECT_HELP:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;      IF NEW_WINDOW = 'X'.
         .................
      ELSE.
        IF SY-DATAR = 'X' AND READ_SY_DATAR = 'X'.
          CALL TRANSACTION OBJECT_NAME AND SKIP FIRST SCREEN.
        ELSE.
          CALL TRANSACTION OBJECT_NAME.
        ENDIF.
      ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this means to change a standard program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 21:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397172#M1546368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-01T21:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Specific message when starting a transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397173#M1546369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if you are looking for an add-on. There is a SAP partner RWD technologies that could be used for providing such pop-ups. Looks like it has transferred to a new ownership.&lt;/P&gt;&lt;P&gt;[http://www.sap.com/services/education/softwareproducts/rwd.epx]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 21:20:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/specific-message-when-starting-a-transaction/m-p/7397173#M1546369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-01T21:20:41Z</dc:date>
    </item>
  </channel>
</rss>

