FB05 Batch Input / Call Transaction - Does not select amount for payment

Hi,
When I launch the FBWD transaction (returned bills of exchange), the call transaction for G/L account postings is in error. So the FBWD automatically creates a batch input, but when I tried to launch the batch input, it remains unsuccessful.
So I launched the BI in foreground, I can see that the first steps of the account postings are OK, but the BI stops when assigning the payment amounts : the BI found the different postings to clear, but it waits to enter the payment amount.
Manually, I just have to click on 'Accept' or enter the payment amount and click on 'Continue'.
=> Is there anything to do so that there is no payment amount to fill? (there should be something because the FBWD is a standard transaction, so it should work!!)
Can you help me on this?
Thx

Hi.
Yes the issue has been resolved.
You just have to configure your master record (FS00) by ticking the box 'relevant to cash flow' (XGKON).
Hope it will help you.
Bernard.

Similar Messages

  • Batch-Input/CALL TRANSACTION FB01: Trading Partner cannot be filled in

    Dear experts,
    I have the following problem with performing an FB01 booking on the basis of
    CALL TRANSACTION USING:
    In the customizing of the FI document type you can mark several fields that
    are supposed to appear when you perform an FB01 posting, among them
    the "Trading partner". But this field only seems to show in Non-BTCI-mode.
    There are SAP Notes treating the phenomenon of the additional COBL-data
    screen being always brought up with all available fields in BTCI mode
    (which is fine for me, since I actually want to fill in some fields there, too),
    but this screen does not contain the trading partner and I can't find any hint
    why fields like BSEG-VBUND (trading partner) apparently cannot be reached
    at all in BTCI-Mode.
    Does anybody know this problem, or better yet: have a solution ?
    Thanks in advance
    Andreas

    Hello Akanksha,
    I suppose you're interested in how you make the fields available/visible
    in the posting transactions ?
    BSEG-VBUND/Trading partner for instance belongs to the
    supposed-to-be-available checkbox-selection in customizing of the
    document type you are going to use for your posting.
    The availability of the additional controlling fields (cost center, order no. etc.)
    depends on the cost accounting being active and on the field status group
    that is chosen for your account.
    In the booking/posting transactions you reach the fields with the button
    "further data".
    Best regards
    Andreas

  • Error in Batch input : Call Transaction

    Hi Gurus,
    I have written a BDC for tcode "S_ALR_87013620" to send the report output to spool.
    When I recrod from menu Report->Print i get the dialog box to to enter the printer name.
    and then i get a popup box saying "Format is X_65_132" then i press Yes button this pop up.
    This popup box is not getting recorded in BDC, when i execute the report it is failinng.
    Call Transaction is returing sy-subrc eq 1001.
    how can i avoid this popup box.

    hi
    in window <background print parameters> press button <properties> and then
    in next window <spool request attributes> select "general attributes->format"
    here press button <settings> and in next window for field <PAART Format> select
    function <Copy settings>
    now, this popup should not appears....
    regards,darek

  • Batch input / call transaction

    hi,
    happy new year to everybody.
    in the table whcih contains errors messages in call transaction (BDCMSGCOLL).  the message, which has MSGTYP = 'S' and MSGNR = '100', is a message of succes or not?.

    I would like to say yes, which many people will. But I ran a call transaction some time ago and had an issue with using the MSGTYP field.
    Use SE91 using the Message ID to get a description of the actual message.

  • BATCH-INPUT On transaction VT02 does not work.

    Greetings, colleagues!!!
    I have written BATCH-INPUT on transaction VT02. I try to remove delivery from transportation. But for me does not work BATCH-INPUT because function of "Positioning" does not work in BATCH-INPUT. Prompt please. How I can remove delivery from transportation in my program using functionality of transaction VT02?
    Thanks for the help.
    Sergey Kozymaev.

    I used this in a program a while ago, worked like a charm.
    s_header-shipment_num = <shipment #>.
      i_item-delivery = <delivery #>.
      APPEND i_item.
      i_itemaction-delivery = 'D'.
      i_itemaction-itenerary = 'D'.
      APPEND i_itemaction.
      CALL FUNCTION 'BAPI_SHIPMENT_CHANGE'
        EXPORTING
          headerdata       = s_header
          headerdataaction = s_headeraction
        TABLES
          itemdata         = i_item
          itemdataaction   = i_itemaction
          return           = i_return.

  • Type Tool does not select type by double clicking or click and drag. (Windows CS 5 V15.1)

    Hi,
    My Type Tool does not select type by double clicking or click and drag. (Windows CS 5 V15.1). This is what I have tried so far and the problem still exists.
    Check preferences for "Text": "Select text-object by path only" should be off. Checked. It was off. Didn't fix it.
    Check the toggle for Show/Hide Edges in the View menu. Cmd(Ctrl)-H. Checked. Edges Showing. Didn't fix it.
    Trashed my Prefeerences. Didn't fix it.
    Any other suggestions out there?
    Thank you!!!

    I figured it out! I feel pretty silly, but I will share this in hopes of helping the next person :/ Here goes. Don;t laugh to hard!
    It was the leading! The space between the two lines of text was less than half of the point size of the actual text. So it looked like two lines but there was actually 3.
    Geeze, I'm embarrassed! Thank you for suggesting that I may not need to recreate the entire document, but start with the text, input manually again (even on a new layer, to match the original), which lead to a fix!
    Thank you!!!

  • Batch Input at transaction AS02

    When I try to do a batch input on transaction AS02,
    it returns to me an error:
    Runtime error GETWA_NOT_ASSIGNED has occurred.
    someone knows what is happening?
    thanks!
    Ricardo

    Hi Rob.
    This note has been applied. We have this package here:
    EA-APPL          600       0010     SAPKGPAD10  SAP R/3 Enterprise Extension PLM, SCM, Financials
    Thanks!
    Ricardo

  • "An autonomous transaction does not see any changes made by main transact"

    Hi,
    I'm trying to reproduce the "An autonomous transaction does not see any changes made by main transaction" reffered on :
    Oracle® Database Application Developer's Guide - Fundamentals
    10g Release 2 (10.2)
    Part Number B14251-01
    chapter 2 SQL Processing for Application Developers
    Paragraph : Autonomous TransactionsI set up a simple case...
    create table emp_ as select * from emp
    begin
      update emp_ set hiredate=hiredate+100 where empno=7934;
    end;
    create or replace trigger trg_emp_
    after insert or update on emp_
    for each row
    declare
        pragma autonomous_transaction;
        emp_var emp.hiredate%type;
      begin
        select hiredate
          into emp_var
          from emp_
        where empno=:new.empno;
        dbms_output.put_line('empno: '||:new.empno);
        dbms_output.put_line('old hiredate: '||:old.hiredate);
        dbms_output.put_line('new hiredate: '||:new.hiredate);
      end;Prior to any change...
    SQL> select empno,hiredate from emp_;
    EMPNO HIREDATE
    5498 21/4/1982
    5499 11/10/1981
    5411 10/10/1981
    5410 10/10/1982
    7369 17/12/1980
    7499 20/2/1981
    7521 22/2/1981
    7566 2/4/1981
    7654 28/9/1981
    7698 1/5/1981
    7782 9/6/1981
    7788 19/4/1987
    7839 17/11/1981
    7844 8/9/1981
    7876 23/5/1987
    7900 3/12/1981
    7902 3/12/1981
    7934 23/1/1982After the change...
    SQL> begin
      2    update emp_ set hiredate=hiredate+100 where empno=7934;
      3  end;
      4  /
    empno: 7934
    old hiredate: 23/01/82
    new hiredate: 03/05/82
    PL/SQL procedure successfully completedAccording to the Oracle doc the select of the autonomous transaction should not see the change made to the hiredate column of the table in the main transaction(in the anonymous block)....
    What may i do wrong..????
    Thank you,
    Sim

    Simon:
    As Tubby pointed out, your dbms_output commands do not display the value you selected in the trigger. Your trigger based demonstration needs to be more like:
    SQL> SELECT * FROM t;
            ID DT
             1 05-SEP-2009
             2 17-JUL-2009
    SQL> CREATE TRIGGER t_ai
      2     AFTER INSERT OR UPDATE ON t
      3     FOR EACH ROW
      4  DECLARE
      5     PRAGMA AUTONOMOUS_TRANSACTION;
      6     l_dt t.dt%TYPE;
      7  BEGIN
      8     SELECT dt INTO l_dt
      9     FROM t
    10     WHERE id = :new.id;
    11     DBMS_OUTPUT.Put_Line ('ID: '||:new.id);
    12     DBMS_OUTPUT.Put_Line ('Old dt: '||:old.dt);
    13     DBMS_OUTPUT.Put_Line ('New dt: '||:new.dt);
    14     DBMS_OUTPUT.Put_Line ('Aut dt: '||l_dt);
    15  END;
    16  /
    Trigger created.
    SQL> UPDATE t SET dt = sysdate WHERE id = 2;
    ID: 2
    Old dt: 17-JUL-2009
    New dt: 25-OCT-2009
    Aut dt: 17-JUL-2009
    1 row updated.So, the automomous transaction select did not see the changed value of dt.
    I know you are just trying to understand automomous transactions here and would never do sometihg like this in production right? :-)
    Your trigger, as written, has some interesting side effects because of the automomous transaction. For example:
    SQL> INSERT INTO t VALUES(3, sysdate - 25);
    INSERT INTO t VALUES(3, sysdate - 25)
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'
    SQL> UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy');
    UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy')
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'John

  • Batch input call transcation performance

    Hi ,
    We built a tool to generate production versions and recipes via batch input call transcation method .
    We did test to generate PVs and recipes for 3500 items (each item have 6 pvs and recipes) and it took 65 hours
    the performance is not so good , could give some suggestion to improve the performance ?
    Thanks !

    hi
    Create PVs separately & recipies separately
    Regards
    S

  • How do you select and move more than one bookmark at a time? Shift+Click does not select multiple items that are next to one another in a list because the item

    How do you select and move more than one bookmark at a time?
    Shift+Click does not select multiple items that are next to one another in a list because the items open in firefox before this happens.

    Use the bookmarks library. You may use Shift +Click, and Ctrl + Click to create groupings of selected bookmarks to drag and drop.
    * one method of opening the bookmarks library is keyboard shortcut <br /> Ctrl+Shift+B (Windows)
    *see also [[How to use bookmarks to save and organize your favorite websites]]
    *and [[Use bookmark folders to organize your bookmarks]]

  • Adobe Acrobat X Pro on Mac does not select duplex print by default

    I have Adobe Acrobat X Pro 10.1.8 for Mac. When I print a document, Acrobat does not select duplex print (i.e. "Print on both sides") by default. While I can manually select duplex print, I don't understand why this isn't the default option here as in every other application. Just for reference, here is a screen shot of my default print screen:
    I have played around with duplex printing in the advanced properties of PDF's. I have also played around with the DuplexMode property in the com.adobe.Acrobat.Pro.plist file. Actually, there is no DuplexMode property in the file, but I tried making one, which didn't solve the problem. There is a printBookletDuplexMode property but that doesn't seem to make a different. In any case, nothing has worked.
    There are some similar questions on the forums, but they are either slightly different or haven't been answered. Is this such a difficult issue?
    Thanks for any help,
    Jonathan
    Message was edited by: jondaman21. Small clarification to what I've tried.

    I agree with your statement; even for a particular document, if I choose to "Print on both sides" and then print again immediately after, "Print on both sides" will be deselected.
    However, I'm not sure what you're implying by you're statement. I'm asking precisely why this setting isn't sticky. Acrobat uses a non-standard printer dialog; in the usual dialog I can easily set a defualt duplex setting. I almost always want to print duplex. Why can't I do this by default in Acrobat?

  • Call Blocking does not. Is this just a scam too?

    Verizon call blocking is a useless 'service', dozens of calls come through with no phone number at all on the caller ID, something Verizon specifically states it will NOT DO.  Any ideas?
    Verizon call blocking does not address scammers and money-seekers who have caller ID of "Not-Available' -- honestly my dog could figure out how to block these but Verizon cannot. Besides paying more money to someone else, is there any hope for the people who expected the Verizon service would work?

    Scam no.  A service that needs to be update to the 21th Century, yes.  Still based on early callerid tecnhnology which is easily bypassed by all those so called "telemarketers" .   You should have now trouble with ligitimate callers, but lots of illegal calls come in.

  • Batch input to transaction VG01

    hi abapers
    i want to do a batch input to transaction VG01, the problem is that when i have  more than the rows
    on screen (and this is according to user screen resulotion)  i need  to use page down button how can i avoid this.
    thanks
    Amit

    Hi,
    Check this link..may be it will help u..
    http://www.sapfans.com/sapfans/repos/comelite.htm
    Regards,
    JOy.

  • Statement "CALL TRANSACTION" is not allowed in this form.

    Hi
    I have a form in which i want to call a transaction:
      CALL TRANSACTION 'VL32N'  USING bdc_tab
                                                       MODE    'E'
                                                       UPDATE  'S'
                                                       MESSAGES INTO mestab.
    I call this report from within a message and when reaching this statement it fails.
    Now i get this error in ST22:
    POSTING_ILLEGAL_STATEMENT
    Statement "CALL TRANSACTION" is not allowed in this form.
    and afterwards this error:
    DYNPRO_SEND_IN_BACKGROUND
    Screen output without connection to user.
    As i read,it is not allowed to call this kind of statement from within a form and we should use something like:
    RECEIVE RESULTS FROM FUNCTION but i do not know how because i have never before used such call statements.
    thanks

    Hi,
    The bdc table is filled correctly but the CALL TRANSACTION is not alllowed.I think it is because of the call from the Form ENTRY which is called when issuing an message from my transaction.I have read that it is not allowed to have any call transaction,submit or any other statements like these in a function call,and i think that my form ENTRY is seen as a sort of function module.
    Any other opinions?
    With my "call transaction" statement i wanted to open the VL32N Transaction and post a goods receipt.Is there any other way to do this?
    I get this message in the ST22 Transaction:
    This program is triggered in the update task. There, the   
    following ABAP/4 statements are not allowed:                                                                               
    -  CALL SCREEN                                             
    -  CALL DIALOG                                             
    -  CALL TRANSACTION                                        
    -  SUBMIT                                                  
    But i do not know what is ment by update task.All i use are some "export to memory"  statements and this is all.
    Any ideas?
    thanks.
    Edited by: seba seba on Jul 28, 2009 11:22 AM

  • ST06N transaction does not exist

    Hi
       We have upgraded the SAP NetWeaver 2004s support package stack level from 23 to 26, after that when we are executing the transaction ST06N - we are getting error message below the screen "ST06N transaction does not exist"
    for that the program name we can able to execute in T code SA38 Program name RSHOST1N
    thru the T code its showing the Message ST06N transaction does not exist,
    Could pls guide us
    Regards
    Sriram

    Hi Rupali
    Thanks for your support as per your advice we can do that with help of Abaper
    As of now we have upgraded the Support package 26 in Dev & QA. in the Production still i can able to execute the T code ST06N, My query's are Is this any bug or ST06N Tcode obsolete?
    is this any one face the same issue ?
    Regards
    Sriram

Maybe you are looking for

  • How do I move my songs from Ipod to a new I tunes account

    I had to create a new I tunes account on my laptop windows 7. I want to load my songs from my Ipod Touch (old I tunes account) on a computer I no longer have access to. Is this possible?

  • Why can't I download large files on Windows 7 in Bootcamp?

    I am running Bootcamp on a New iMac running Lion. Everything on the Apple side of my partition works brilliantly. I need Windows to run some old programs which are not available to Mac. I successfully loaded Windows 7 on Bootcamp after many attempts

  • Most of the triggers in my composition are not showing there active state

    I have a composition with 18 triggers. Each trigger has a b/w image that should turn to a colour image when active or rolled over but only the two on the 3rd row work correctly. The others do change when rolled over but when I roll off, even when sti

  • Retrieve and display info from 3 tables

    Been struggling with this for some days now. Setting up a calendar with football fixtures. For some reason, the team names do not appear in the table and this is really killing me. I thought I knew something about sql and php, guess not. So for build

  • Where is the instalapse app? I paid for it

    Anybody knows where is the app instalapse for iphone please? I paid for it and there isn´t available in the app store. I would like to retrieve the app or my money.