<?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: How to post clearing with direct input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/13933451#M2037833</link>
    <description>&lt;P&gt;Hi sir,&lt;BR /&gt;It need create posting vendor partial clearing document. Please tell me, I must config how to fill&amp;nbsp;&lt;SPAN&gt;REBZG_CHECK and value for it?&lt;BR /&gt;With my knowlegde i config&amp;nbsp;&amp;nbsp;REBZG, REBZJ, REBZZ and&amp;nbsp; AUGBL in extension 2(item) but i don't know config&amp;nbsp;REBZG_CHECK how?&lt;BR /&gt;Please help me,&lt;BR /&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 10 Nov 2024 16:20:20 GMT</pubDate>
    <dc:creator>trongnghiabui9668</dc:creator>
    <dc:date>2024-11-10T16:20:20Z</dc:date>
    <item>
      <title>How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680875#M1945652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H2&gt;&lt;SPAN style="color: #3366ff; font-size: 12pt;"&gt;Goal&lt;/SPAN&gt;&lt;/H2&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Sometimes you may need create FI documents in your customer ABAP‑programs. Several techniques are useful for this, e.g. batch-input execution, direct accounting document input and so on and also BAPI.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;And sometimes you may need to post FI-document with clearing including partial one. In this case it is not so obvious to use standard programming interface without batch‑input simulation of t-code ‘FB05’, such as function ‘AC_DOCUMENT_DIRECT_INPUT’ or BAPI function ‘BAPI_ACC_DOCUMENT_POST’. The text below explains as to make it for both cases.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H2&gt;&lt;SPAN style="color: #3366ff; font-size: 12pt;"&gt;Solution for AC_DOCUMENT_DIRECT_INPUT&lt;/SPAN&gt;&lt;/H2&gt;&lt;P&gt;The first obstacle for clearing with direct document input is a lack of input parameters with clearing‑info: AUSZ2_TAB and AUSZ_CLR_TAB types. In other words you want to tell FI‑interface that some item should be cleared by your document, but you can’t. You may ask why standard programs as ‘SAPMF05A’ processes a clearing with no problem, well answer is ‘BELEG’ RWIN-process used in that case, not ‘DOCUMENT’.&lt;/P&gt;&lt;P&gt;Key points to receive and handle clearing information with a non‑dialog posting procedure are:&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;function ‘FI_DOCUMENT_PROJECT’: saves clearing info from input parameters for further posting&lt;/LI&gt;&lt;LI&gt;function ‘FI_DOCUMENT_POST’: sends clearing info last saved to the real update module ‘POST_DOCUMENT’&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The first function triggered at DOCUMENT/SPLIT RWIN‑event. So the only you need is to fill clearing info before the one has called. You might use one of 2 techniques to do this, depending on development rules for you project team:&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;make implicit enhancement directly at the beginning of ‘FI_DOCUMENT_PROJECT’&lt;/LI&gt;&lt;LI&gt;or register you own RWIN handler for DOCUMENT/CLOSE event: t-code SM30, view TRWPR; &lt;SPAN __jive_emoticon_name="alert" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/alert.gif"&gt;&lt;/SPAN&gt; take the rule 'SUBNO &amp;gt; 900' into account&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In any case you might use unified ABAP logic (see attached example for RWIN) according to the following restrictions:&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;one item in document you create may clear only one item in other document&lt;/LI&gt;&lt;LI&gt;each item in your document has non-zero amounts&lt;/LI&gt;&lt;LI&gt;full clearing is possible if you explicilty mark it, partial clearing is performed by default&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Short description of ABAP logic attached:&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;Take BUKRS, REBZG, REBZJ, REBZZ from T_ACCI&lt;SPAN style="font-size: 13.3333px;"&gt;T[p]&lt;/SPAN&gt; that should be set there by caller program;&lt;/LI&gt;&lt;LI&gt;Read amounts T_AUSZ_CL&lt;SPAN style="font-size: 13.3333px;"&gt;R[p]&lt;/SPAN&gt;‑WRBTR, -DMBTR from BSEG (or some non‑cleared index table) found by the reference and add new records to itab T_AUSZ_CLR with corresponding BSEG values.&lt;/LI&gt;&lt;LI&gt;Calculate reminder T_AUSZ_CL&lt;SPAN style="font-size: 13.3333px;"&gt;R[p]&lt;/SPAN&gt;‑DIFFW, ‑DIFHW as difference between clearing and cleared amounts&lt;/LI&gt;&lt;LI&gt;Mark T_AUSZ_CL&lt;SPAN style="font-size: 13.3333px;"&gt;R[p] &lt;/SPAN&gt;for partial clearing: CLRIN = ‘2’. But if DIFFW and DIFHW are both zero it is possible to make full clearing by marking T_AUSZ_CLR[p]-CLRIN = SPACE; to control this logic the T_ACCIT&lt;SPAN style="font-size: 13.3333px;"&gt;[p]&lt;/SPAN&gt;-AUGBL value is used: = ‘*’ (full clearing) or = ‘ ’ (partial).&lt;/LI&gt;&lt;LI&gt;For the whole document create single row in T_AUSZ2: fill BUKRS = T_ACCIT[p]-BUKRS. And when full clearing needed you must fill T_AUSZ2‑AUGBL = ‘*’ also.&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;&lt;SPAN style="color: #3366ff; font-size: 12pt;"&gt;Solution for BAPI_ACC_DOCUMENT_POST&lt;/SPAN&gt;&lt;/H2&gt;&lt;P&gt;Well first the most of solution told above is applicable to BAPI also. Because the same function AC_DOCUMENT_CREATE called from AC_DOCUMENT_DIRECT_INPUT as well as from BAPI function.&lt;/P&gt;&lt;P&gt;The specific obstacle for BAPI is a lack of fields where you can pass clearing item reference: REBZG, REBZJ, REBZZ, and also helpful fields REBZG_CHECK and AUGBL. The solution contains 2 steps:&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;At BAPI call point write your clearing reference(s) in you custom structure, or you may find and use some standard one, and serialize it to EXTENSION2 parameter of type BAPIPAREX_TAB. Don’t forget that POSNR field has to be present in the structure along with REBZG, REBZJ and REBZZ fields.&lt;/LI&gt;&lt;LI&gt;Implement BADI ACC_DOCUMENT, or – for new ERP versions – the enhancement spot BADI_ACC_DOCUMENT and create BADI implementation inside it with filter AWTYP = BKPFF:&lt;UL style="list-style-type: circle;"&gt;&lt;LI&gt;Use ABAP logic from sample method CL_EXM_IM_ACC_DOCUMENT-&amp;gt;CHANGE to move you reference into corresponding T_ACCIT[p]-REBZG, -REBZJ and –REBZZ&lt;/LI&gt;&lt;LI&gt;Ensure that document you clear is compatible with FUNCTION ‘FI_DOCUMENT_CHECK’ standard checks. Elsewhere you might set T_ACCIT[p]‑REBZG_CHECK = ‘N’ and skip invoice reference checks&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 17:37:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680875#M1945652</guid>
      <dc:creator>alexander_zelentsov</dc:creator>
      <dc:date>2016-04-25T17:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680876#M1945653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for the excellent post.&lt;/P&gt;&lt;P&gt;I'm very eager to substitute clearing transaction F-32 by&amp;nbsp; BAPI_ACC_DOCUMENT_POST.&lt;/P&gt;&lt;P&gt;In F-32, the clearing information is provided by passing&amp;nbsp; T_AUSZ3 to function FI_DOCUMENT_PROCESS with I_EVENT = 'PROJECT'.&lt;/P&gt;&lt;P&gt;Even in the 'POST' event I have only one line in T_BKPF and for the RW interface just onle line T_ACCIT is created.&lt;/P&gt;&lt;P&gt;Now I have no idea how the clearing items &lt;SPAN style="font-size: 13.3333px;"&gt;T_AUSZ3 may be supplied in &lt;SPAN style="color: #333333; font-size: 12px;"&gt;BADI_ACC_DOCUMENT. Will I create additional &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;C_ACCIT&lt;/P&gt;&lt;P&gt;C_ACCCR&lt;/P&gt;&lt;P&gt;C_ACCWT&lt;/P&gt;&lt;P&gt;C_ACCTX&lt;/P&gt;&lt;P&gt;lines from my extension data here?&lt;/P&gt;&lt;P&gt;Can you give me a hint?&lt;/P&gt;&lt;P&gt;The code in z_rwin_clearing_sample does not really explain it&amp;nbsp; or I do not fully understand&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 17:03:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680876#M1945653</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2016-05-09T17:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680877#M1945654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Clemens.&lt;/P&gt;&lt;P&gt;I think you should create as much items as required for zero-balancing your document.&lt;/P&gt;&lt;P&gt;But I wouldn't recommend you to add items within BADI implementation only to simulate 'F-32' visual behavior in your program internals. It will be much better if you construct all items of your clearing document before you call BAPI_ACC_DOCUMENT_POST. How they looks you might see in&amp;nbsp; clearings that are really made by F-32.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 13:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680877#M1945654</guid>
      <dc:creator>alexander_zelentsov</dc:creator>
      <dc:date>2016-05-10T13:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680878#M1945655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll try to do that:&lt;/P&gt;&lt;P&gt;Because the document created by clearing with F-32 has no items at all but will fill in the clearing data into the cleared items as AUGBL AUGT etc. I'm still in doubt how to convince the BAPI to behave like this.&lt;/P&gt;&lt;P&gt;Where will I supply the document and/or reference number of the items to be cleared?&lt;/P&gt;&lt;P&gt;I'm still in doubt as I do not want to create any new items but clear existing items.&lt;/P&gt;&lt;P&gt;My idea was to fill the &lt;SPAN style="color: #333333; font-size: 13.3333px;"&gt;T_AUSZ3 for further processing, but how?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Can you give any hints?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 11:10:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680878#M1945655</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2016-05-12T11:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680879#M1945656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Clemens.&lt;/P&gt;&lt;P&gt;If you just about full clearing by itemless document then ... to use BAPI_ACC_DOCUMENT_POST whould be excessive I think. And besides, sample code above whouldn't work, it has to be improved for the case of itemless clearing. &lt;/P&gt;&lt;P&gt;To cover your goal you may try:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;specific &lt;A _jive_internal="true" href="https://answers.sap.com/message/8255053#8255053"&gt;BAPI&lt;/A&gt;, and pay attention &lt;A _jive_internal="true" href="https://answers.sap.com/message/8267940#8267940"&gt;to this comment&lt;/A&gt;&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;or FMs 'POSTING_INTERFACE_xxx', &lt;A _jive_internal="true" href="https://answers.sap.com/message/7089665#7089665"&gt;here is the sample&lt;/A&gt;. &lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 08:56:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680879#M1945656</guid>
      <dc:creator>alexander_zelentsov</dc:creator>
      <dc:date>2016-05-13T08:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680880#M1945657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some corrections to the sample ...&lt;/P&gt;&lt;P&gt;1. Now ACCIT-REBZG_CHECK='A' used as a full-clearing indicator, instead of ACCIT-AUGBL='*'. AUGBL only used internally since RWIN-handler has finished.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2. Account types D, K, S are supported&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;3. Itemless clearing is supported&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 16:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680880#M1945657</guid>
      <dc:creator>alexander_zelentsov</dc:creator>
      <dc:date>2016-05-18T16:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680881#M1945658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Clemens.&lt;/P&gt;&lt;P&gt;I've achieved a kind of clearing you told with BAPI_ACC_DOCUMENT_POST purely just for fun.&lt;/P&gt;&lt;P&gt;It was to create enough the document with mirror items to cleared. And use improved RW-handler, see &lt;A _jive_internal="true" href="https://answers.sap.com/message/16725387#16725387"&gt;post below&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2016 08:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680881#M1945658</guid>
      <dc:creator>alexander_zelentsov</dc:creator>
      <dc:date>2016-05-25T08:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680882#M1945659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexander.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to clear open items using bapi BAPI_ACC_DOCUMENT_POST ( and badi BADI_ACC_DOCUMENT enhancement ) but is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In badi implementation i was passing:&lt;/P&gt;&lt;P&gt;REBZG -&amp;gt; invoice reference&lt;/P&gt;&lt;P&gt;REBZJ -&amp;gt; pos invoice&lt;/P&gt;&lt;P&gt;REBZZ -&amp;gt; I tried with A, Z ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this point, i should check tx OB74 ? &lt;SPAN style="font-size: 13.3333px;"&gt;I'm trying &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt; to posting a payment entry for an open invoice.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i´m thinking use FM CLEAR_DOCUMENTS.&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;Any suggest or hint ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&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;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manuel H.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2016 16:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680882#M1945659</guid>
      <dc:creator>manuelhildemaro_ramossanc</dc:creator>
      <dc:date>2016-05-31T16:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680883#M1945660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hint is that REBZZ has to be filled with item position number, not a follow-on document type indicator as you do. And REBZJ to be filled with year, not a position number. Please look attentively the sample before usage. Also fill REBZG_CHECK with: 'A' if you want to perform a full clearing, or 'N' if you don't. &lt;/P&gt;&lt;P&gt;Unfortunately, data from OB74 is not allowed to consider yet. To improve this you might:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;use another special indicator value of REBZG_CHECK, let it be 'X', not 'A', in cases when your items are NOT collapsed according to TF123; use 'A' only if they're ready to be collapsed. &lt;/LI&gt;&lt;LI&gt;insert corrections below into FM&lt;/LI&gt;&lt;LI&gt;enjoy &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Correction 1. Replace:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF t_accit-rebzg_check = 'A'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_ausz2&amp;gt;-augbl = '*'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_ausz2&amp;gt;-aktio = 'A'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;with &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF t_accit-rebzg_check CO 'AX'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_ausz2&amp;gt;-augbl = '*'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_ausz2&amp;gt;-aktio = &lt;SPAN style="font-size: 13.3333px;"&gt;t_accit-rebzg_check&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Correction 2. Replace:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MODIFY t_accit TRANSPORTING rebzg_check WHERE bukrs = &amp;lt;fs_ausz2&amp;gt;-bukrs AND rebzg_check = 'A'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;with&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MODIFY t_accit TRANSPORTING rebzg_check WHERE bukrs = &amp;lt;fs_ausz2&amp;gt;-bukrs AND rebzg_check CO 'AX'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Correction 3. Replace:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF lines( t_ausz_clr[] ) = lines( t_accit[] ).&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t_accit-bstat = 'A'.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MODIFY t_accit TRANSPORTING bstat WHERE bukrs = &amp;lt;fs_ausz2&amp;gt;-bukrs.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;with&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF lines( t_ausz_clr[] ) = lines( t_accit[] ) AND &amp;lt;fs_ausz2&amp;gt;-aktio = 'A'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t_accit-bstat = 'A'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MODIFY t_accit TRANSPORTING bstat WHERE bukrs = &amp;lt;fs_ausz2&amp;gt;-bukrs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ELSE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;&amp;lt;fs_ausz2&amp;gt;-aktio = 'A'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Good luck.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 08:04:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/11680883#M1945660</guid>
      <dc:creator>alexander_zelentsov</dc:creator>
      <dc:date>2016-06-01T08:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to post clearing with direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/13933451#M2037833</link>
      <description>&lt;P&gt;Hi sir,&lt;BR /&gt;It need create posting vendor partial clearing document. Please tell me, I must config how to fill&amp;nbsp;&lt;SPAN&gt;REBZG_CHECK and value for it?&lt;BR /&gt;With my knowlegde i config&amp;nbsp;&amp;nbsp;REBZG, REBZJ, REBZZ and&amp;nbsp; AUGBL in extension 2(item) but i don't know config&amp;nbsp;REBZG_CHECK how?&lt;BR /&gt;Please help me,&lt;BR /&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2024 16:20:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-clearing-with-direct-input/m-p/13933451#M2037833</guid>
      <dc:creator>trongnghiabui9668</dc:creator>
      <dc:date>2024-11-10T16:20:20Z</dc:date>
    </item>
  </channel>
</rss>

