<?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: Call transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741899#M322260</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answer but I think u miss the point.&lt;/P&gt;&lt;P&gt;These are SAP transactions that I'm calling and I do not handle any screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Jan 2007 12:33:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-01T12:33:15Z</dc:date>
    <item>
      <title>Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741897#M322258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I created a simple program that runs 3 transactions CC01, CC02 and CC03.&lt;/P&gt;&lt;P&gt;The program runs the transactions sequentially at the same order above.&lt;/P&gt;&lt;P&gt;When the program run transaction CC02 the field "Change number" is close for input the same for transaction CC03. &lt;/P&gt;&lt;P&gt;But in case I run transaction CC02 before running CC01 the field "Change number" is open for input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any clue why?&lt;/P&gt;&lt;P&gt;How to solve this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program looks like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction 'CC01'.&lt;/P&gt;&lt;P&gt;Call transaction 'CC02'.&lt;/P&gt;&lt;P&gt;Call transaction 'CC03'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jan 2007 10:25:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741897#M322258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-01T10:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741898#M322259</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;When you loop the screen for changing the screen attributes, you can check for transaction code by sy-tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you execute CC01, enable the field for input and when you execute CC02, disable it for input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;if sy-tcode EQ 'CC01'.&lt;/P&gt;&lt;P&gt;screen-input = '1'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;elseif sy-tcode EQ 'CC02'.&lt;/P&gt;&lt;P&gt;screen-input = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Navneet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jan 2007 11:06:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741898#M322259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-01T11:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741899#M322260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answer but I think u miss the point.&lt;/P&gt;&lt;P&gt;These are SAP transactions that I'm calling and I do not handle any screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jan 2007 12:33:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741899#M322260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-01T12:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741900#M322261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this is because locks are set and checked. Check the locks during the run with transaction SM12 (ST12?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jan 2007 15:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741900#M322261</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-01-01T15:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741901#M322262</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;How you are calling??Are you building BDCDATA to call the transaction..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jan 2007 17:09:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1741901#M322262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-01T17:09:49Z</dc:date>
    </item>
  </channel>
</rss>

