<?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: ABAP Program to upload accrual object using ACAC_OBJECT_MODIFY_EXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-to-upload-accrual-object-using-acac-object-modify-ext/m-p/10064779#M1811327</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your suggestion, but when I remove the &lt;STRONG&gt;with header line, &lt;/STRONG&gt;it also shows that table does not have header line. P|ease I would like a simple program that uses this FM passing all its parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Feb 2014 09:55:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-02-12T09:55:36Z</dc:date>
    <item>
      <title>ABAP Program to upload accrual object using ACAC_OBJECT_MODIFY_EXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-to-upload-accrual-object-using-acac-object-modify-ext/m-p/10064777#M1811325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: 'andale mono', times;"&gt;I have a requirement to develop an RFC to call the &lt;STRONG&gt;ACAC_OBJECT_MODIFY_EXT &lt;/STRONG&gt;function module for accrual upload. I have created the BAPI / ALE interface for it to be used in LSMW. However the program returns a DUMP when calling the function module because of the parameter passed. I need help with this. &lt;STRONG&gt;A program using this function module would do it for me&lt;/STRONG&gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is the interface for the&amp;nbsp; FM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ACAC_OBJECT_MODIFY_EXT' "&lt;/P&gt;&lt;P&gt;* EXPORTING&lt;/P&gt;&lt;P&gt;* is_assignments = " ace_assignments&lt;/P&gt;&lt;P&gt;* it_accounts = " aceds_accounts_t&lt;/P&gt;&lt;P&gt;* it_params = " aceds_param_t&lt;/P&gt;&lt;P&gt;* id_effdate = " ace_effdate&lt;/P&gt;&lt;P&gt;* is_post_params = " aceps_manual_posting_params&lt;/P&gt;&lt;P&gt;* id_testrun = 'X' " ace_testrun&lt;/P&gt;&lt;P&gt;&amp;nbsp; IMPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp; ed_data_created = " flag&lt;/P&gt;&lt;P&gt;&amp;nbsp; ed_data_changed = " flag&lt;/P&gt;&lt;P&gt;&amp;nbsp; et_docitems = " aceps_ace_doc_extended_t&lt;/P&gt;&lt;P&gt;&amp;nbsp; et_return = " bapiret2_t&lt;/P&gt;&lt;P&gt;&amp;nbsp; et_accdoc_return = " ace_accdoc_return_t&lt;/P&gt;&lt;P&gt;&amp;nbsp; CHANGING&lt;/P&gt;&lt;P&gt;&amp;nbsp; cs_object = " acac_object_header_ext&lt;/P&gt;&lt;P&gt;&amp;nbsp; ct_object_items = " aceds_items_t&lt;/P&gt;&lt;P&gt;&amp;nbsp; . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Typical error: &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; An exception occurred that is explained in detail below.&lt;/P&gt;&lt;P&gt; The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was&lt;/P&gt;&lt;P&gt;&amp;nbsp; not caught in&lt;/P&gt;&lt;P&gt; procedure "ZBAPIACCRUALUPLOAD" "(FUNCTION)", nor was it propagated by a RAISING&lt;/P&gt;&lt;P&gt;&amp;nbsp; clause.&lt;/P&gt;&lt;P&gt; Since the caller of the procedure could not have anticipated that the&lt;/P&gt;&lt;P&gt; exception would occur, the current program is terminated.&lt;/P&gt;&lt;P&gt; The reason for the exception is:&lt;/P&gt;&lt;P&gt; The call to the function module "ACAC_OBJECT_MODIFY_EXT" is incorrect:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The function module interface allows you to specify only&lt;/P&gt;&lt;P&gt; fields of a particular type under "IT_ACCOUNTS".&lt;/P&gt;&lt;P&gt; The field "ACCOUNTS" specified here is a different&lt;/P&gt;&lt;P&gt; field type&lt;/P&gt;&lt;P&gt; .&lt;/P&gt;&lt;P&gt;Attached to the file is the source code of the rfc i am trying to create( &lt;STRONG&gt;ZBAPIACCRUALUPLOAD)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 21:28:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-to-upload-accrual-object-using-acac-object-modify-ext/m-p/10064777#M1811325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-11T21:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Program to upload accrual object using ACAC_OBJECT_MODIFY_EXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-to-upload-accrual-object-using-acac-object-modify-ext/m-p/10064778#M1811326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Can you declare like below , hopefully with header line is not required.&lt;/P&gt;&lt;P&gt;DATA : ACCOUNTS TYPE &lt;SPAN class="L0S52"&gt; &lt;/SPAN&gt;ACEDS_ACCOUNTS_T&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;refer this include ACAC_GENERIC_DATA_TRANSF_F10&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 04:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-to-upload-accrual-object-using-acac-object-modify-ext/m-p/10064778#M1811326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-12T04:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Program to upload accrual object using ACAC_OBJECT_MODIFY_EXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-to-upload-accrual-object-using-acac-object-modify-ext/m-p/10064779#M1811327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your suggestion, but when I remove the &lt;STRONG&gt;with header line, &lt;/STRONG&gt;it also shows that table does not have header line. P|ease I would like a simple program that uses this FM passing all its parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 09:55:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-to-upload-accrual-object-using-acac-object-modify-ext/m-p/10064779#M1811327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-12T09:55:36Z</dc:date>
    </item>
  </channel>
</rss>

