<?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 Regarding BAPI_NETWORK_CONF_ADD . in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217047#M767156</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 using the BAPI 'BAPI_NETWORK_CONF_ADD' for confirming the network in a report pgm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF I_CONFIRMATION OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE BAPI_NETWORK_CONF_ADD.&lt;/P&gt;&lt;P&gt;  DATA: END OF I_CONFIRMATION.&lt;/P&gt;&lt;P&gt;  data: RETURN_MSG like BAPIRET2.&lt;/P&gt;&lt;P&gt;    DATA: BEGIN OF MESSAGE_TAB OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE BAPI_CONF_RETURN.&lt;/P&gt;&lt;P&gt;  DATA: END OF MESSAGE_TAB.&lt;/P&gt;&lt;P&gt;  data: rnplnr type BAPI_NETWORK_LIST-NETWORK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACTIVITY = '0010'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-PERS_NO =  '44106'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-WORK_CNTR = 'TESTSBIR'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACT_TYPE = 'HLABOR'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACT_WORK = '10'.&lt;/P&gt;&lt;P&gt;append i_confirmation.&lt;/P&gt;&lt;P&gt;       rnplnr = '000001000715'.&lt;/P&gt;&lt;P&gt;       CALL FUNCTION 'BAPI_NETWORK_CONF_ADD'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            NUMBER                   = rnplnr&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          POST_WRONG_ENTRIES       = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          TESTRUN                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;           RETURN                   = RETURN_MSG&lt;/P&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            I_CONFIRMATIONS          = I_CONFIRMATION&lt;/P&gt;&lt;P&gt;           E_MESSAGE_TABLE          = MESSAGE_TAB&lt;/P&gt;&lt;P&gt;                  .&lt;/P&gt;&lt;P&gt;      IF RETURN_MSG IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      COMMIT WORK.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly I run the pgm as it is. Second time I run it in debugging mode and change the activity field to '0020' instead of '0010'.&lt;/P&gt;&lt;P&gt;After running it for the first time i checked the confirmation for the particular network in CN28 transaction and it is displaying the confirmation properly. But after i ran it for the second time using the activity '0020', the transaction CN28 is dumping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jan 2008 06:47:38 GMT</pubDate>
    <dc:creator>soumya_jose3</dc:creator>
    <dc:date>2008-01-15T06:47:38Z</dc:date>
    <item>
      <title>Regarding BAPI_NETWORK_CONF_ADD .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217047#M767156</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 using the BAPI 'BAPI_NETWORK_CONF_ADD' for confirming the network in a report pgm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF I_CONFIRMATION OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE BAPI_NETWORK_CONF_ADD.&lt;/P&gt;&lt;P&gt;  DATA: END OF I_CONFIRMATION.&lt;/P&gt;&lt;P&gt;  data: RETURN_MSG like BAPIRET2.&lt;/P&gt;&lt;P&gt;    DATA: BEGIN OF MESSAGE_TAB OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE BAPI_CONF_RETURN.&lt;/P&gt;&lt;P&gt;  DATA: END OF MESSAGE_TAB.&lt;/P&gt;&lt;P&gt;  data: rnplnr type BAPI_NETWORK_LIST-NETWORK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACTIVITY = '0010'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-PERS_NO =  '44106'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-WORK_CNTR = 'TESTSBIR'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACT_TYPE = 'HLABOR'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACT_WORK = '10'.&lt;/P&gt;&lt;P&gt;append i_confirmation.&lt;/P&gt;&lt;P&gt;       rnplnr = '000001000715'.&lt;/P&gt;&lt;P&gt;       CALL FUNCTION 'BAPI_NETWORK_CONF_ADD'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            NUMBER                   = rnplnr&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          POST_WRONG_ENTRIES       = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          TESTRUN                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;           RETURN                   = RETURN_MSG&lt;/P&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            I_CONFIRMATIONS          = I_CONFIRMATION&lt;/P&gt;&lt;P&gt;           E_MESSAGE_TABLE          = MESSAGE_TAB&lt;/P&gt;&lt;P&gt;                  .&lt;/P&gt;&lt;P&gt;      IF RETURN_MSG IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      COMMIT WORK.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly I run the pgm as it is. Second time I run it in debugging mode and change the activity field to '0020' instead of '0010'.&lt;/P&gt;&lt;P&gt;After running it for the first time i checked the confirmation for the particular network in CN28 transaction and it is displaying the confirmation properly. But after i ran it for the second time using the activity '0020', the transaction CN28 is dumping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 06:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217047#M767156</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2008-01-15T06:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BAPI_NETWORK_CONF_ADD .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217048#M767157</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;Instead of COMMIT WORK use BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 10:02:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217048#M767157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T10:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BAPI_NETWORK_CONF_ADD .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217049#M767158</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 tried that also but still the situation is same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 10:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217049#M767158</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2008-01-15T10:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BAPI_NETWORK_CONF_ADD .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217050#M767159</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;Have you mentioned all the attributes properly when giving 0020 according to that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACTIVITY = '0010'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-PERS_NO = '44106'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-WORK_CNTR = 'TESTSBIR'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACT_TYPE = 'HLABOR'.&lt;/P&gt;&lt;P&gt;I_CONFIRMATION-ACT_WORK = '10'.&lt;/P&gt;&lt;P&gt;append i_confirmation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;also clear i_confirmation.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also check whether 0020 activity exists..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 10:14:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217050#M767159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T10:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BAPI_NETWORK_CONF_ADD .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217051#M767160</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;The activity '0020' exists and i cleared i_confirmation, but the error is still there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 10:38:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217051#M767160</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2008-01-15T10:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BAPI_NETWORK_CONF_ADD .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217052#M767161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved on my own&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217052#M767161</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2008-02-01T06:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BAPI_NETWORK_CONF_ADD .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217053#M767162</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;If you don't mind, pls share the logic you used, here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217053#M767162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T06:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BAPI_NETWORK_CONF_ADD .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217054#M767163</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; In ECC 6.0 it was happening. Actually the activity was getting confirmed properly but it was not displaying in CN28.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I needed only was the proper confirmation of the activity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:58:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi-network-conf-add/m-p/3217054#M767163</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2008-02-01T06:58:23Z</dc:date>
    </item>
  </channel>
</rss>

