<?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 FB01 Posting with Session Method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716280#M1454636</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to post the data in FB01 transaction code through POSTING_INTERFACE_START, POSTING_INTERFACE_DOCUMENT, AND POSTING_INTERFACE_END and it is working fine with Call Transaction method but I want in Batch input session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone guide me on the same what i have to do for the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajneesh Gupta on Mar 10, 2010 7:19 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajneesh Gupta on Mar 10, 2010 7:20 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Mar 2010 06:19:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-10T06:19:45Z</dc:date>
    <item>
      <title>FB01 Posting with Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716280#M1454636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to post the data in FB01 transaction code through POSTING_INTERFACE_START, POSTING_INTERFACE_DOCUMENT, AND POSTING_INTERFACE_END and it is working fine with Call Transaction method but I want in Batch input session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone guide me on the same what i have to do for the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajneesh Gupta on Mar 10, 2010 7:19 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajneesh Gupta on Mar 10, 2010 7:20 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 06:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716280#M1454636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T06:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: FB01 Posting with Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716281#M1454637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the function module documentation for fm POSTING_INTERFACE_START&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If function 'B' (batch input processing) is required, this function&lt;/P&gt;&lt;P&gt; module opens the batch input session and transfers the necessary&lt;/P&gt;&lt;P&gt; parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass 'B' import parameter I_FUNCTION&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, 10 Mar 2010 06:27:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716281#M1454637</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2010-03-10T06:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: FB01 Posting with Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716282#M1454638</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 am passing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POSTING_INTERFACE_START'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   I_CLIENT                 = SY-MANDT&lt;/P&gt;&lt;P&gt;    i_function               = 'B'&lt;/P&gt;&lt;P&gt;   I_GROUP                  = 'Test1'&lt;/P&gt;&lt;P&gt;   I_KEEP                   = 'X'&lt;/P&gt;&lt;P&gt;   I_USER                   = sy-uname&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_XBDCC                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   CLIENT_INCORRECT         = 1&lt;/P&gt;&lt;P&gt;   FUNCTION_INVALID         = 2&lt;/P&gt;&lt;P&gt;   GROUP_NAME_MISSING       = 3&lt;/P&gt;&lt;P&gt;   MODE_INVALID             = 4&lt;/P&gt;&lt;P&gt;  UPDATE_INVALID           = 5&lt;/P&gt;&lt;P&gt;   OTHERS                   = 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is creating the Session but when i am trying to process i am getting "Processing of batch input session completed", &lt;/P&gt;&lt;P&gt;it is not going for FB01.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 06:33:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716282#M1454638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T06:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: FB01 Posting with Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716283#M1454639</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;is FM: POSTING_INTERFACE_START for T-code FB01?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y con't u create BDC with session method for T-code FB01?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 06:49:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716283#M1454639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T06:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: FB01 Posting with Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716284#M1454640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ans 1: Yes&lt;/P&gt;&lt;P&gt;And 2: I don't want to use BDC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 06:51:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716284#M1454640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T06:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: FB01 Posting with Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716285#M1454641</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;check the following coding in the program: RFBIBL01  Batch Input Documents&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just identify how it is working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM MAPPE_OEFFNEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CHECK FUNCTION NE 'D'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; Interne Buchungsschnittstelle initialisieren&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'POSTING_INTERFACE_START'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      I_FUNCTION = FUNCTION&lt;/P&gt;&lt;P&gt;      I_CLIENT   = BGR00-MANDT&lt;/P&gt;&lt;P&gt;      I_GROUP    = BGR00-GROUP&lt;/P&gt;&lt;P&gt;      I_XBDCC    = XBDCC&lt;/P&gt;&lt;P&gt;      I_HOLDDATE = BGR00-START&lt;/P&gt;&lt;P&gt;      I_KEEP     = BGR00-XKEEP&lt;/P&gt;&lt;P&gt;      I_MODE     = ANZ_MODE&lt;/P&gt;&lt;P&gt;      I_UPDATE   = UPDATE&lt;/P&gt;&lt;P&gt;      I_USER     = BGR00-USNAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF FUNCTION = 'B'.&lt;/P&gt;&lt;P&gt;    PERFORM LOG_MSG USING C_MSGID 'I' '007'&lt;/P&gt;&lt;P&gt;                          GROUP_COUNT BGR00-GROUP SPACE SPACE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  GROUP_OPEN = 'X'.&lt;/P&gt;&lt;P&gt;ENDFORM.                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 07:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fb01-posting-with-session-method/m-p/6716285#M1454641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T07:15:15Z</dc:date>
    </item>
  </channel>
</rss>

