<?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 ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184197#M758139</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;A job is schedulded in  3 steps.All 3 steps needed to finish the task.If step 2 fails,will step1 roll back and step 3 does not execute.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;What is F11 in BDC ? and wht is the last in BDC code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt;Protocal used to commincate Webgate and ApplicationGate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;Mandatory syntax in PBO and PAI in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.&lt;/P&gt;&lt;P&gt;You will need a report that will be schedulded.It should retrieve the manager list from orgunit and send the output to thir inbox.&lt;/P&gt;&lt;P&gt;What will be the efficint way to do that ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Venkonk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Dec 2007 07:19:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-28T07:19:20Z</dc:date>
    <item>
      <title>ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184197#M758139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;A job is schedulded in  3 steps.All 3 steps needed to finish the task.If step 2 fails,will step1 roll back and step 3 does not execute.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;What is F11 in BDC ? and wht is the last in BDC code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt;Protocal used to commincate Webgate and ApplicationGate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;Mandatory syntax in PBO and PAI in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.&lt;/P&gt;&lt;P&gt;You will need a report that will be schedulded.It should retrieve the manager list from orgunit and send the output to thir inbox.&lt;/P&gt;&lt;P&gt;What will be the efficint way to do that ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Venkonk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 07:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184197#M758139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T07:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184198#M758140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;The answers are asl follows .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;A job is schedulded in 3 steps.All 3 steps needed to finish the task.If step 2 fails,will step1 roll back and step 3 does not execute.?&lt;/P&gt;&lt;P&gt;I think it won't roll back &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;What is F11 in BDC ? and wht is the last in BDC code? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt;Protocal used to commincate Webgate and ApplicationGate.&lt;/P&gt;&lt;P&gt;ITS ( Internet Transaction Server )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;Mandatory syntax in PBO and PAI in table control.&lt;/P&gt;&lt;P&gt;loop at itab WITH CONTROL TABLE_CONTROL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above statements in PBO &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in pai .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.&lt;/P&gt;&lt;P&gt;You will need a report that will be schedulded.It should retrieve the manager list from orgunit and send the output to thir inbox.&lt;/P&gt;&lt;P&gt;What will be the efficint way to do that ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use workflow or call a fucntion  module to send a mail in ur inbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 08:11:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184198#M758140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T08:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184199#M758141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;3.&lt;/P&gt;&lt;P&gt;Protocal used to commincate Webgate and ApplicationGate.&lt;/P&gt;&lt;P&gt;ITS ( Internet Transaction Server )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wgate and Agate of the ITS is communicated thru which protocol? Hopw it wud be TCP/IP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 08:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184199#M758141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T08:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184200#M758142</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;2.&lt;/P&gt;&lt;P&gt;What is F11 in BDC ? and wht is the last in BDC code?&lt;/P&gt;&lt;P&gt;Ans)     This sample record would execute the save function. It uses the function key assignment of save, which is F11. A function key number must be prefixed with the / (slash) character:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The command field is identified by a special name in batch input, BDC_OKCODE. This name is constant and always identifies the command field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDCDATA-FNAM = 'BDC_OKCODE'.&lt;/P&gt;&lt;P&gt;BDCDATA-FVAL = '/11'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;++++++++++++++++++++&lt;/P&gt;&lt;P&gt;A job is schedulded in 3 steps.All 3 steps needed to finish the task.If step 2 fails,will step1 roll back and step 3 does not execute.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have parameter in Job_submit function module you set that param : EXTPGM_WAIT_FOR_TERMINATION ,so that it will wait for some time.so you have to set time params also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;depending on the task you have to set 3 deoendent tasks while creating bk job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 08:39:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3184200#M758142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T08:39:35Z</dc:date>
    </item>
  </channel>
</rss>

