<?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: Using BAPI_PO_CREATE1 : Linking service, and account assignment in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020392#M81022</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 am facing the same problems as yours.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After looking around on SAP Service, I found that is a program error (at least as SAP says so). The solution they provide is to implement correction instructions).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take a look at the following SAP Notes for your reference:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;767284&lt;/STRONG&gt; - SE518 occurs although account assignment is supplied to BAPI (this requires Note 552114 must be applied as a prerequisite)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Symptom
When BAPI_PO_CREATE1 is used to create a purchase order 
with only limits or unplanned services although the account 
assignment is supplied to the BAPI Interface the error message 
SE 518 No account assignment exists for service line occurs.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;552114&lt;/STRONG&gt; - Repeat Account Assignment data for a service release order&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*Symptom*
You have a service contract without accounting data. 
When you create a new release order referenced to this contract 
you select services from this contract and that enter accounting information 
and work with the function repeat accounting information. For this first item
in the release order if you maintain a contract limit the accounting data will
be correct suggested from the system. But if you add a new item at this 
document referenced also to the same contract and repeat the above scenario,
the system will no be able to suggest the accounting data saved with the
function repeat accounting information when you maintain for this new item
the contract limit.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;376424&lt;/STRONG&gt; - BAPI_PO_CREATE1: Error messages for parked POs&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*Symptom*
If purchase orders are held via BAPI_PO_CREATE1, error messages
 are not stored with the application object.As a result, in some cases these 
documents cannot be processed correctly.
or
When you create a service item using BAPI_PO_CREATE1, the system
 displays error message SE518.
SE 518: 'No account assignment exists for service line 0000000000'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will ask the Basis team to see if they can help to implement this or not. I will be back right after the correction is done. &lt;SUP&gt;.&lt;/SUP&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Dec 2008 16:42:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-29T16:42:25Z</dc:date>
    <item>
      <title>Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020384#M81014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have trouble when using BAPI_PO_CREATE1. When creating PO using BAPI_PO_CREATE1, I need to input service for each po item and the service itself need to have account assignment. I simplify the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
**PO item
t_poitem-po_item        = '10'. "for item 10
t_poitem-PCKG_NO        = '20'. "link with service
...

t_poitemx-po_item        = 'X'.
t_poitemx-PCKG_NO       = 'X'.
...

**Account Assignment
t_poaccount-po_item    = '10'. "link with PO Item
t_poaccount-SERIAL_NO  = '01'. 
t_poaccount-DISTR_PERC = 1.
...
t_poaccountx-po_item    = '10'.
t_poaccountx-SERIAL_NO  =  '01'.
t_poaccountx-po_itemx    = 'X'.
t_poaccountx-SERIAL_NOx  = 'X'.
t_poaccountx-DISTR_PERC = 'X'.
...

**PO Services
**1st row
t_poservices-PCKG_NO = '20'.
t_poservices-LINE_NO = '0000000001'.
t_poservices-SUBPCKG_NO  = '21'.
APPEND t_poservices.
clear t_poservices.

**2nd row
t_poservices-PCKG_NO = '21'.
t_poservices-LINE_NO = '0000000002'.
t_poservices-EXT_LINE = '0000000010'.
...

**fill account assignment for services
t_POSRVACCESSVALUES-pckg_no = '21'.
t_POSRVACCESSVALUES-LINE_NO = '0000000002'.
T_POSRVACCESSVALUES-SERNO_LINE = '01'.
t_POSRVACCESSVALUES-SERIAL_NO = '01'. "acct. assign. link
t_POSRVACCESSVALUES-PERCENTAGE = '100'.
...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every time i execute BAPI_PO_CREATE1 using entry similar like above, i always found error message in t_return like this:&lt;/P&gt;&lt;P&gt;No account assignment exists for service line 0000000010&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel sure that i have fill every field needed to link services and account assignment which is using serial_no, but somehow it does not link correctly. Can anyone advise me if there is some thing missing or incorrect with my ABAP code above? Thank you in advance for your help. For sure, first helpful answer will receive my rewards point. &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 12:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020384#M81014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-28T12:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020385#M81015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think you are doing wrong with assigning package numbers.&lt;/P&gt;&lt;P&gt;now i am in home, no R/3 system . i will give reply tomorrow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 15:45:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020385#M81015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-28T15:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020386#M81016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Narasimh,&lt;/P&gt;&lt;P&gt;Thank you for your reply. Package numbers was assigned to link between PO Item and services. I assume this link was success since the error message show that service line 0000000010 has been created but without account assignment. Thus, i assume missing link are between service and account assignment. If you can provide me correct sample to link service item and account assignment while using BAPI_PO_CREATE1, it will be very helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2005 02:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020386#M81016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-29T02:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020387#M81017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;You are missing so many mandatary fields.&lt;/P&gt;&lt;P&gt;here i am providing the fields which are mendatary.&lt;/P&gt;&lt;P&gt;through this values you can create the po.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POHEADER:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PO_NUMBER :4100000001&lt;/P&gt;&lt;P&gt;COMP_CODE :3000&lt;/P&gt;&lt;P&gt;DOC_TYPE  :NB&lt;/P&gt;&lt;P&gt;VENDOR    :146&lt;/P&gt;&lt;P&gt;PURCH_ORG   :3000&lt;/P&gt;&lt;P&gt;PUR_GROUP:300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POHEADERX: you have to mantain 'X' values for enetred POHEADER values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POITEM:::Structure&lt;/P&gt;&lt;P&gt;PO_ITEM :10&lt;/P&gt;&lt;P&gt;SHORT_TEXT:SERVICE&lt;/P&gt;&lt;P&gt;PLANT  :3000&lt;/P&gt;&lt;P&gt;ITEM_CAT   :9&lt;/P&gt;&lt;P&gt;ACCTASSCAT :F&lt;/P&gt;&lt;P&gt;PCKG_NO :0000000001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POITEMX: you have to mantain 'X' values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POSCHEDULE : structure name&lt;/P&gt;&lt;P&gt;PO_ITEM    : 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POSCHEDULEX : you have to mantain 'X' values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POACCOUNT: structure name&lt;/P&gt;&lt;P&gt;PO_ITEM     :10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POACCOUNTX: you have to mantain 'X' values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POSERVICES:structure&lt;/P&gt;&lt;P&gt;PCKG_NO    : 0000000001&lt;/P&gt;&lt;P&gt;LINE_NO    :0000000001&lt;/P&gt;&lt;P&gt;SUBPCKG_NO : 0000000002&lt;/P&gt;&lt;P&gt;SERVICE    :3000000000017&lt;/P&gt;&lt;P&gt;QUANTITY   :5&lt;/P&gt;&lt;P&gt;BASE_UOM   :AU&lt;/P&gt;&lt;P&gt;GR_PRICE   :20000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POSRVACCESSVALUES: structure name&lt;/P&gt;&lt;P&gt;PCKG_NO   :0000000002&lt;/P&gt;&lt;P&gt;LINE_NO   :0000000002&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the above values i have created po for sertvice in my R/3 4.7c system.&lt;/P&gt;&lt;P&gt;if you are not able to cretae let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2005 03:48:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020387#M81017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-29T03:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020388#M81018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the code. Actually i have fill the required field as you told but i did not put it in my code here to focus the problem on service and account assignment. After checking out your code, i found that the different between your code and mine is in services table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;your code :&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;POSERVICES:structure&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PCKG_NO : 0000000001
LINE_NO :0000000001
SUBPCKG_NO : 0000000002
SERVICE :3000000000017
QUANTITY :5
BASE_UOM :AU
GR_PRICE :20000&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;POSRVACCESSVALUES: structure name&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PCKG_NO :0000000002
LINE_NO :0000000002&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;my code are:&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;POSERVICES:structure&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;PCKG_NO : 0000000001&lt;/P&gt;&lt;P&gt;LINE_NO :0000000001&lt;/P&gt;&lt;P&gt;SUBPCKG_NO : 0000000002&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PCKG_NO : 0000000002&lt;/P&gt;&lt;P&gt;LINE_NO :0000000002&lt;/P&gt;&lt;P&gt;SERVICE :3000000000017&lt;/P&gt;&lt;P&gt;QUANTITY :5&lt;/P&gt;&lt;P&gt;BASE_UOM :AU&lt;/P&gt;&lt;P&gt;GR_PRICE :20000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;POSRVACCESSVALUES: structure name&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PCKG_NO :0000000002
LINE_NO :0000000002
SERIAL_NO :0000000001&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other difference are in account assignment table, you didn't fill SERIAL_NO field. &lt;/P&gt;&lt;P&gt;my code will be like below:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;POACCOUNT: structure name&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PO_ITEM :10
SERIAL_NO : 0000000001&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If using your version, the error message will be:&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;In case of account assignment, please enter acc. assignment data for item&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;If using my version, the error message will be:&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;No account assignment exists for service line 0000000010&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise what was wrong with my code. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2005 05:56:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020388#M81018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-29T05:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020389#M81019</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'm having the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try with the 2 versions and get the same 2 errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you solve the problem?&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;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 20:06:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020389#M81019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T20:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020390#M81020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any update on this issue raised by Mr. Bukit ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Dec 2007 13:01:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020390#M81020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-25T13:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020391#M81021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This question should be unanswered because until know I can not use the Bapi for that requirement. In the end I mixed BAPI and BDC in that project with unexpected result which is inconsistent data in SAP database. Finally we have to fix hundreds of unusable PO manually.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 10:01:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020391#M81021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T10:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020392#M81022</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 am facing the same problems as yours.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After looking around on SAP Service, I found that is a program error (at least as SAP says so). The solution they provide is to implement correction instructions).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take a look at the following SAP Notes for your reference:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;767284&lt;/STRONG&gt; - SE518 occurs although account assignment is supplied to BAPI (this requires Note 552114 must be applied as a prerequisite)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Symptom
When BAPI_PO_CREATE1 is used to create a purchase order 
with only limits or unplanned services although the account 
assignment is supplied to the BAPI Interface the error message 
SE 518 No account assignment exists for service line occurs.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;552114&lt;/STRONG&gt; - Repeat Account Assignment data for a service release order&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*Symptom*
You have a service contract without accounting data. 
When you create a new release order referenced to this contract 
you select services from this contract and that enter accounting information 
and work with the function repeat accounting information. For this first item
in the release order if you maintain a contract limit the accounting data will
be correct suggested from the system. But if you add a new item at this 
document referenced also to the same contract and repeat the above scenario,
the system will no be able to suggest the accounting data saved with the
function repeat accounting information when you maintain for this new item
the contract limit.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;376424&lt;/STRONG&gt; - BAPI_PO_CREATE1: Error messages for parked POs&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*Symptom*
If purchase orders are held via BAPI_PO_CREATE1, error messages
 are not stored with the application object.As a result, in some cases these 
documents cannot be processed correctly.
or
When you create a service item using BAPI_PO_CREATE1, the system
 displays error message SE518.
SE 518: 'No account assignment exists for service line 0000000000'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will ask the Basis team to see if they can help to implement this or not. I will be back right after the correction is done. &lt;SUP&gt;.&lt;/SUP&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 16:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020392#M81022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-29T16:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020393#M81023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had the same issue and tried tons of different variants of data. In the end SAP connected to system and said that LINE_NO in POSRVACCESSVALUES should be 0, it does not make much sense, but it works just fine! After all the contracts are being created, hope this helps someone in future &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POSERVICES:structure&lt;/P&gt;&lt;P&gt;PCKG_NO : 0000000001&lt;/P&gt;&lt;P&gt;LINE_NO :0000000001&lt;/P&gt;&lt;P&gt;SUBPCKG_NO : 0000000002&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PCKG_NO : 0000000002&lt;/P&gt;&lt;P&gt;LINE_NO :0000000002&lt;/P&gt;&lt;P&gt;SERVICE :3000000000017&lt;/P&gt;&lt;P&gt;QUANTITY :5&lt;/P&gt;&lt;P&gt;BASE_UOM :AU&lt;/P&gt;&lt;P&gt;GR_PRICE :20000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POSRVACCESSVALUES: structure name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PCKG_NO :0000000002&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LINE_NO :0000000002&lt;/STRONG&gt; -&amp;gt; LINE_NO:000000000&lt;/P&gt;&lt;P&gt;SERIAL_NO :0000000001&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 07:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020393#M81023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-12T07:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI_PO_CREATE1 : Linking service, and account assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020394#M81024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 10.8px; color: #333333; background: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="379734" data-username="v.stefanovic" href="https://answers.sap.com/people/v.stefanovic" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #3778c7; background: transparent;"&gt;Stefanovic&lt;/A&gt;&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have faced d same pblm, that worked for me also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank U...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 04:19:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-po-create1-linking-service-and-account-assignment/m-p/1020394#M81024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-27T04:19:08Z</dc:date>
    </item>
  </channel>
</rss>

