Field status for bank account ID

Hi experts,
I have an issue with field status during customer/vendor invoice posting using enjoy screen.
I need to have house bank account ID (HKTID) ready for input. In IDES the field appears in FB70 or FB60 under "payment" tab, but when I try to reproduce it in my development client, the field is not there anymore.
I tried to configure in field status group and posting key, but what can I find is only house bank field status, but not the account ID.
Any configuration I missed to make the field ready for input?
Appreciate any feedback
Thank you very much

Yes I thought of that one too..
I have 2 account ID in FI12 and also in FBZP bank determination.

Similar Messages

  • Can we make as P.center as required field for Bank accounts

    hi friends,
    can we make as profit center as required field for bank accounts in field status group.
    If we make as required, what are the impact /consequences will happen. We are drawing Financial statements at profit center level.
    We are using ECC 6.0 with document splitting.
    Regards,
    Suresh

    Hi,
    If you have document splitting active, where profit center is mandatory, do not make profit center mandatory at the field status group level as this will not allow the documents to split where there are more than one profit center in a document.
    The bank line item gets automatically split in the ratio of liability or Assets line items profit center. And if you make Profit center mandatory in Bank line item then this splitting will not take place. Moreover you will not be able to post any document having more than one profit center.
    You can test this out all by yourself in a test system. Post an Invoice(FB60) as foolows:-
    Expense -Dr.(P.C.-A)- 100
    Expense -Dr.(P.C.-B)-200
       To vendor - 300
    This entry will show in general ledger view as :-
    Expense -Dr.(P.C.-A) - 100
    Expense -Dr.(P.C.-B) - 200
       To vendor .(P.C.-A) - 100
       To vendor .(P.C.-B) - 100
    Now go to F-53 and post payment:-
    Enter Bank Account no., amount, and also enter profit center on the first screen as u hv made P.C. mandatory, and select the above document no. and try posting it. You will get error in this case.
    Do let me know if it is of any help to you.
    Regards,
    SAPFICO

  • Field Status for Vendor Line item or Customer line item

    Hi
    Can i need to check the Field status for Vendor or Customer Line item when i use the transaction codes F-43 or F-22. This is very urgent.
    Regards

    Hi Vinay,
    You cannot check the Field Status directly when posting a document. The Field Status is controlled by the Field Status group. This is controlled at 3 levels, the company code level, G/L Master level and at the Posting key level. Field status at the posting key level overwrites other groups. It is basically to control which fiedls need to be supressed, which are required and which are optional.
    In FS00 under the create/bank/interest tab you will find the field group. Check the Recon account assigned to your vendor/customer master and check the field status in FS00.
    Regards
    Sridhar

  • Additional field in FI12 (Bank Accounts)

    Hi folks,
      I am editing bank details and entering the "Bank Accounts" I have a pseudo account (consider it a text field for simplicity) that I need to enter in this screen. Each bank account has a corresponding pseudo account.
    I remember that there is a way to add a custom text field on the Bank Account entry screen (FI12) where we can enter any text. Does anyone recall what field it is and how it can be added?
    Any help is appreciated.
    Thanks.
    PS: I think its called Reference field
    Edited by: kashif jawed on Nov 6, 2009 6:19 PM

    Hi,
      I looked into it but it is for each house bank, I am looking for a field for each account. There could be multiple accounts under each house bank. Another option I am considering is using "Short Info" field while maintaining the cheque lot for that particular bank account under FCHI

  • How to create Charge indicator for Bank account

    Dear SAP Gurus,
    Please advice how to create charge indicator for bank account under - Set Up Bank Determination for Payment Transactions - activity in automatic outgoing payment configuration.
    There is no customizing option in F1 help option. I also try to search in IMG there is also no link for the same.
    Early reply would be appreciated.
    Regards,
    Prafful Kansal
    9910432881

    Dear,
    Charge Indicator is freely definable field, you can put any value you want.....
    Regards
    Chintan Joshi

  • Document Sequence Information Does not Exist for Bank Account

    Hello,
    Oracle E-Bus Suite: 11.5.10.2
    OS: Windows 2003
    We are facing the problem while executing the ARPLABIM - Bank Statement Import program, 'Document Sequence Information Does not Exist for Bank Account'.
    We have already reviewed Oracle Metalink Document: Document Sequence Information Does not Exist for Bank Account: Doc ID: Note:147773.1.
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:3345134018905587318::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,147773.1,1,1,1,helvetica
    But the profile option Sequential Numbering cannot be set to Not Used due to certain funcational limitations. Please advise any other workaround.
    Thank you

    Adith,
    There are only two options:
    1. Setup document Sequence. OR
    2. Change the profile either the user level who runs this program (assuming a batch user name) or at the resp or application level. Not necessarily at the site level.
    Thanks
    Nagamohan

  • Basic process flow for bank account assignment to customers

    Hi ,
    please help,
    I want to know the basic process flow for customer bank account creation and assignment process. I.e I had pass the customer details ,credit card information throw the oe_order_pub.proces_order() API .after this process ,how the bank account creation and updation process works?.
    Give me the steps and API name for bank account creation.
    Thanks
    prabu

    hi mnr,
    this is my manual process flow.
    BEGIN
    l_header_rec := OE_ORDER_PUB.G_MISS_HEADER_REC;
    l_header_rec.header_id := '100192';
    l_header_rec.credit_card_holder_name := 'myname';
    l_header_rec.credit_card_number := 'xxxxxxxxxxxxxxxx1111';
    l_header_rec.credit_card_expiration_date := '1-Jan-28';
    l_header_rec.credit_card_code := 'VISA';
    l_header_rec.payment_type_code := 'CREDIT_CARD';
    l_header_rec.sold_to_org_id := '17118';
    l_header_rec.credit_card_approval_code := '34545656676';
    l_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
    OE_ORDER_PUB.process_order (p_api_version_number => 1.0
    , p_init_msg_list => fnd_api.g_false
    , p_return_values => fnd_api.g_false
    , p_action_commit => fnd_api.g_false
    , x_return_status => l_return_status
    , x_msg_count => l_msg_count
    , x_msg_data => l_msg_data
    , p_header_rec => l_header_rec
    , p_line_tbl => l_line_tbl
    , p_action_request_tbl => l_action_request_tbl
    x_header_rec => l_header_rec
    , x_header_val_rec => x_header_val_rec
    , x_Header_Adj_tbl => x_Header_Adj_tbl
    , x_Header_Adj_val_tbl => x_Header_Adj_val_tbl
    , x_Header_price_Att_tbl => x_Header_price_Att_tbl
    , x_Header_Adj_Att_tbl => x_Header_Adj_Att_tbl
    , x_Header_Adj_Assoc_tbl => x_Header_Adj_Assoc_tb
    ............etc );
    after this process,i found duplicate customer bank account records in bank account screen .if am uses same values in two process. And it will never updates the exiting bank account . it is the standard oracle process or my mistake.
    Thanks
    prabu
    Edited by: 861876 on Jun 21, 2011 11:06 PM

  • Field status for document entry

    Hi Friends,
    Please suggest what are the different ways we can control the field status in a document entry.
    Thanks, Ashok

    Hello
    Field status are defined outside the master record.
    Mark each field as optional or Required or supressed.
    Now assign in master record.
    Each company code can have only one FSG variant
    If we don't maintain FSG all the fields by default would be supressed
    Different GL accounts would have different FSG assigned to them. Say, all material accounts , bank accounts, reconciliation account would have typical FSG for specific purpose.
    Reg
    *assign points if useful

  • Authorization checks for bank account number in vendor master

    I am trying to find a way to set up authorization checks for specific fields in the vendor master: LFBK-BANKL, LFBK-BANKN, LFBK-EBPP_ACCNAME and LFBK-EBPP_ACCNAME. I am tring to set ip up so that if you have access to transactions FK03 or XK03, you can view vendor master data except for the above fields.
    Does anyone know of a way to accomplish this? Your help will be greatly appreciated.
    Thanks
    -Peru

    HI Peru,
    To supress a field in FK03 u will have to check
    Financial Accounting (New)>Accounts Receivable and Accounts Payable>Vendor Accounts>Master Data>Preparations for Creating Vendor Master Data-->Define Screen Layout per Activity (Vendors)
    in that Display Vendor (Accounting) for FK03 and Display vendor (centrally) for Xk03
    But there bank account no is not there.
    Moreover there r no authorization objects for all the fields that u gave.
    So try creating screen variant/ transaction variant in SHD0.
    Regards,
    Kiran

  • Alv Grid to Excel Sheet Downloading problem for Bank account Number(CHAR18)

    Hi every one,
                 I am downloading  Alv grid to excel using local file---> spreadsheet
    but,  the bank account no is populating as like ''11+E213". When press F2 in that column then only its showing the correct value.
    If i do download directly from  ctrlshiftF7 , its down loading perfectly but my user Needs the Header of the ALV also, Buecause HEader Consists of Payment Date and all details.
    I have checked the same from the Satandard table also its also populating in the same way as in the report,
    So if any body have valueble suggestions, Please reply soon,
    Thanks & Regards,
    Raj S

    Hi Lalit,
             Thanks for Ur promt reply,
    I ahve alraedy Changed the lenght to 25 but it doesnot effect,
    But when i concatenate the same number with any one character in front of the A/C No. Its generating perfectly,
    But i cant do so as its an account No.
    Thanks,
    Raj S

  • Clearing accounts for Bank account

    I understand the concept of maintaining clearing accounts for Bank a/cs. But i dont know how to create them. Is there any spl procedure for that or is it similar to GL creation using FS00. Please guide me...
    Thanks in advance
    Choudary KV

    Hi,
    it is just like anyother account. please don't forget to create it as an open item managed account
    Assign points if useful
    Sunoj

  • FBCJ For Bank Account???

    I'm trying to set up the Cash Book for a new business unit (FBCJ).  My initial assumption with this was its 1 transaction for both Cash & Bank account cash books, with each being on its own page per currency/account.
    I've now found an official SAP doc on best practice use of the cash book, and it says its for CASH only...and indeed, I get get it to go negative for an overdraft.
    What are people using as the Cash Book for their bank account?  Can this only be done outside SAP and journelled into SAP?
    I can't see an obvious equivalent for a bank account?
    If this transaction is just for "Cash", why does it have a "Check" tab?
    Any advice greatly appreciated?

    I mean the Cash book for the Bank Account
    When ever you make a posting, for example  a customer bacs receipt.  The double entry is CR the Cust a/c, Dr the Bank a/c Suspense Account.  This will come from the std sap transaction for whatever you doing.
    Currently, we then record this offline as a bank posting and do a summary journal at the end of the month.  For the above example, we would Cr the suspense a/c, and Dr the appropriate Bank account.
    For a none subledger posting, such as a dividend, we would simply record this in the s/sheet, and CR the bank a/c, DR the dividend GL at the month end.
    My assumption was that there was an equivalent of FBCJ for each bank account, where you enter each payment or receipt (equiv of our excel s/sheet).  If you enter a receipt, its cofigured to go the appropriate GLs or subledger accounts, and tracks on a daily basis you Bank balance
    In other words, exactly the same as the "Cash Journal FBCJ", but can potentially go negative if you go overdrawn.  You would have a seperate page per bank account e.g. sterling bank account, Euro bank account etc.
    I want to know if there is an equivalent to that, and if not, how they post amounts going in and out of the bank account?

  • Field status for procurement indicator.

    Hi Experts
    I have several procurement types created.
    But for some time i wish to have one indicator as default. This has been set. However i wish to have the field status 'display'.
    It means, while creating component, the procurement indictor field should not be editable and will have a default.
    Is the field selection possible for component detail screen?
    Warm regards
    ramSiva

    Field selection for Material Components. is available in EHP3.  The path is
    SPRO -> PS ->Material -> Procurement -> Field selection for components ->Material Overview , If you are in EHP3 then check it..

  • Field status for  T-code : CK91

    Hi All,
    I am trying to load data into CK91 through LSMW.
    Can somebody help me to suppress some of the fields in CK91 since I don’t have data for those fields.
    I basically want to know where the <b>field status has been maintained for the Transaction code CK91.</b>
    All help will be appreciated.

    Dear KALAM,
    1.After entering into LSM Workbench,check in the third step - Manitain Source
    fields.Select the field for which you dont have any data and delete it.
    2.In the 5th step Field Mapping & Conversion rules,you can select the field for
    which you want to maintain default values,and click on constant and assign the
    value.For Eg if you are always going to enter the datas for plant 1000,then for field
    WERKS,we make the value as contact 1000.
    Check & Revert.
    Regards
    Mangal

  • Cheque Range for bank account

    Hi,
    Could anyone point me to the Tcode where we enter new cheque rangefor the existing bank account..?
    thanx

    Hi,
    Yes, the Transaction code FCHI is common for manual as well as automatic cheque payments.
    Cheque lots contain the numbers of the cheques (cheque range) which are available in that particular lot.
    These cheque lots can be maintained in the variant which is assigned to the print program for automatic payment.Thus,only cheques from this lot will be used for payment. If the entire cheque lot is exhausted you have to change the lot number in your variant.
    Regards
    Sonali T
    Edited by: Sonali A Tambat on Jul 28, 2009 10:31 AM

Maybe you are looking for

  • HP LaserJet CP1518 only printing black and white!

    Here is a weird issue. Today, my HP color LaserJet will only print Pages documents in B&W! The document in question printed in color yesterday. I tried a new document, and that one printed B&W! I 'printed' to a PDF and in Preview it was color, but pr

  • Zenworks 7 Agent Upgrade Breaks Windows XP User Profiles

    We have been having an intermittent problem since upgrading from the Zenworks 4 agent to Zenworks 7 on our XP desktops. Users have been reporting that their profiles are not loading on login and the error message appears: "Windows cannot load the loc

  • How do I get a film back

    I am on holiday in Tenerife and a movie I downloaded from iTunes has gone from my ipadhow do iget it back..........?.......

  • Oracle Headstart Designer 2.1.2 Utilities - Database Auth Scheme DB.030

    I'm trying to use the Database Auth Scheme DB.030, but without much success. I've created roles and users, granted system priviliges and run the .sql file. I added a role to a module under its Security tab, open Headstart Utilities and select my data

  • Uninstall itunes without losing the settings

    Hi guys, I want to re-install my iTunes, but how can I make sure that the settings (for example the folders my iPhone syncs with) stay and don't ddisappear/delete. Thank you, YoYo