FB01 - Create an outgoing payment with a Bapi

Hi there, I'm trying to simulate outgoing payments with BAPI_ACC_GL_POSTING_POST but I'm finding problems, does someone knows if this is the right bapi ??
I'm finding problems 'cause the bapi needs a gl account but I have to put the vendor code and I don't know if I'm doing right, I'm putting the code for the items (25 and 50) in the accountgl-doc_type field.

You don't need to put posting key ( In fact with the Doc Type and the amount sign +/-, the Bapi deduce posting keys )
For the header you need :
[code]
  documentheader-obj_type = 'BKPFF'.
  documentheader-obj_key = '$'. " If external Num.
  CONCATENATE sy-sysid 'CLNT' sy-mandt INTO documentheader-obj_sys.
  documentheader-username   = sy-uname.
  documentheader-bus_act    = 'RFBU'.
  documentheader-header_txt = s_notilus-header_txt.
  documentheader-comp_code  = s_notilus-comp_code.
  documentheader-fisc_year  = sy-datum(4).
  documentheader-doc_date   = s_notilus-doc_date.
  documentheader-pstng_date = sy-datum.
  documentheader-doc_type   = s_notilus-doc_type.
  documentheader-ref_doc_no = s_notilus-ref_doc_no.
[/code]
Hope it helps
erwan

Similar Messages

  • Problem creating an outgoing payment with DI API

    Hi
    I've created a form that allows a user to select a BP and automatically reconcile the accounts for this BP by creating an Outgoing Payment. It all works fine for Invoices, Credits, Purchase Invoices etc., however if the account balance contains Incoming or outgoing payments I am not sure how to treat these as there is not an invoice type (SAPbobsCOM.BoRcptInvTypes) for these. For the other types of document I simply declare what type of invoice the document to be added to the outgoing payment is by looking at the Transtype field of the record from the JDT1 table. I then use the JDT1.BaseRef field to retrieve the document's DocNum which I use to return the DocEntry by looking in the relevant table e.g. for invoices - OINV. All I then need to do is set the OutgoingPayments.Invoices.DocEntry value to this DocEntry and Add the line.
    I also have the same problem with Opening Balances as I can't seem to figure out what to set the DocEntry value to as this seems to be stored as a Journal Entry which uses the TransId for it's primary key, however this does not seem to work.
    Thanks a lot.
    Steve

    Hello Steven,
    You can use createdby field to determine the docentry of the base document instead of quering docentry by docnum
    select createdby, transtype, baseref from jdt1
    Note: Always set the correct document type for payments: (createdby is ok in integer format)
    Example:
    Opening Balance:  JE # 8 amount 1000, created by Opening balance (not JE)
       vPay.Invoices.DocEntry = 8
       vPay.Invoices.InvoiceType = BoRcptInvTypes.it_OpeningBalance
       vPay.Invoices.SumApplied = 1000
       Call vPay.Invoices.Add
    Opening Balance:  JE # 8 amount 1000, created by Journal Entry
       vPay.Invoices.DocEntry = 8
       vPay.Invoices.InvoiceType = BoRcptInvTypes.it_JournalEntry
       vPay.Invoices.SumApplied = 1000
       Call vPay.Invoices.Add
    Sales Invoice:  DocEntry: 11  amount 1000
       vPay.Invoices.DocEntry = 11
       vPay.Invoices.InvoiceType = BoRcptInvTypes.it_Invoice
       vPay.Invoices.SumApplied = 1000
       Call vPay.Invoices.Add
    Regards,
    J.

  • I encountered an error in the Payment Wizard screen as I was creating an Outgoing Payment for petty cash expenses. On the "Recommendation Report" screen, I clicked "Non-Included Trans." and saw that one of the vendors (Vendor Code: WILCO) has the followi

    Hello,
    I encountered an error in the Payment Wizard screen as I was creating an Outgoing Payment for petty cash expenses. On the “Recommendation Report” screen, I clicked “Non-Included Trans.” and saw that one of the vendors (Vendor Code: WILCO) has the following error:
    “The document amount is greater than the max. amount allowed in the payment methods linked to the BP”
    Upon checking, the “PCF-W” Payment Method linked to WILCO does not have any restrictions, nor does WILCO have any credit/commitment limit set. I have also appropriately defined the Dummy Business Partner Bank (under Payment Terms) as well as checked the “Included” box for PCF-W on the Payment Run-Payment Methods screen.
    Could anyone please help me on this?
    Salamat,
    Cat

    PS - have found other posts indicating that clips smaller than 2s or sometimes 5s, or "short files" can cause this. Modern style editing often uses short takes ! Good grief I cannot believe Apple. Well I deleted a half a dozen short sections and can export, but now of course the video is a ruined piiece of junk and I need to re-do the whole thing, the sound etc. which is basically taking as much time as the original. And each time I re-do it I risk again this lovely error -50 and again trying to figure out what thing bugs it via trial and error instead of a REASONABLE ERROR MESSAGE POINTING TO THE CLIP IT CAN'T PROCESS. What a mess. I HATE this iMovie application - full of BUGS BUGS BUGS which Apple will not fix obviously, since I had this product for a few years and see just hundreds of hits on Google about this error with disappointed users. Such junk I cannot believe I paid money for it and Apple does not support it with fixes !!!
    If anyone knows of a GOOD reasonably priced video editing program NOT from APPLE I am still looking for suggestions. I want to do more video in future, but obviously NOT with iMovie !!!

  • A/R Invoice - Create two outgoing payments

    Hi,
    We have issue here regading A/R Invoice Payment.
    The A/R Invoice is $100, the payment is $200 with Interact card (Direct account payment) with $100 cash return.
    The present does not work in B1; but will be developed in future release.
    The present can be solved according to Peter Dominik, B1 Solution Management as follow:
    Create two outgoing payments:
    - payment to vendor (payment for his bill)
    - payment on account reposting balance from Bank Account to some
    PettyCash account (cash
    withdrawal from bank account)
    Now I need to source code for the present solution; because all SDK is 1 A/R Invoice and 1 Payment. Now we have to do 2 outgoing payments. We need your help for this solution.
    Please find the code for one transaction below; we need 2 payment transactions.
    Thank you,
    Rune
    oPayments = (SAPbobsCOM.Payments)oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oIncomingPayments);
    oPayments.Invoices.DiscountPercent = 0;
    oPayments.Invoices.DocEntry = vmp_DocEntry_Int32;
    oPayments.Invoices.DocLine = 0;
    oPayments.Invoices.InvoiceType = SAPbobsCOM.BoRcptInvTypes.it_Invoice;//13;
    oPayments.Invoices.SumApplied = vmp_Amount_double;
    oPayments.Invoices.Add();
    oPayments.CardCode = vmp_CardCode_string;
    oPayments.DocDate = DateTime.Now;
    oPayments.JournalRemarks = "Incoming - Payment Bank Transfer";
    oPayments.TaxDate = DateTime.Now;
    oPayments.TransferAccount = vmp_BankAccount_string;// "_SYS00000000343";
    oPayments.TransferDate = DateTime.Now;
    oPayments.TransferReference = vmp_CardCode_string;
    oPayments.TransferSum = vmp_Amount_double;
    vc_Message_Result_Int32 = oPayments.Add();
    if (vc_Message_Result_Int32 != 0)

    hi Vitor,
    I need a code sample for Peter's suggestion using the code I provided:
    Create two outgoing payments:
    - payment to vendor (payment for his bill)
    - payment on account reposting balance from Bank Account to some
    PettyCash account (cash
    withdrawal from bank account)
    Thank you,
    Rune

  • Outgoing payment with Zero amount when Full adance is paid

    I am making A/P down payment request based on purchase order, then I make full payment of PO (full advance payment - no amount of payment left with) through "Outgoing payment" which creates negative amount in Business partner balance and shows a negative entry in "outgoing payment" screen. Moving further, I make Goods receipt PO and then I make A/P invoice of regular amount based on goods receipt PO / Purchase order.
    Up till now, the full payment has been made in advance through A/P down payment request and upon receiving goods the A/P invoice of regular amount is received. Now when I go to "outgoing payments" I have no amount left to pay (i.e. It displays 2 entries of same amount, one with positive amount of A/P invoice and the other one with negative amount of A/P down payment request to show the due balance = zero)  So I am trying to clear the vendor "outgoing payments" by paying with Zero amount, but the system shows the error "The confirmation amount should be greater than Zero".
    How can I clear the vendor "Outgoing payments" with zero amount ?? as it's payment has been made in advance.
    Note: Please give me the solution by keeping in mind that I have to pay full amount in advance.
    Solution to this problem would be highly appreciated.
    Thanks and regards,
    Farhan Sufi

    Hi Farhan Sufi,
                  For Cases where full Advance is paid initially, You Follow these procedure, I have tested in my DB its working fine.
    Step 1: Raise a Purchase order Say Rs 1000/-
    Step 2: Raise a GR(PO) of Rs 1000/-
    Step 3: Go To A/P Down Pmt -
    Select the Vendor -
    Say copy from GR(PO), And select te One you wanted. At the bottom in the DPM Field give 100% and Add the Document.
    Step 4: Raise Out Going Payment by linking to the A/P Down Pmt what you have posted. ie., Go To Out Going Pmt Screen---Select the Vendor, This will display all invoices, Down pmts, Credit Memos, and JE's. Select the A/P Down Pmt what you have posted and go to payment means fill in the respective field and add the document.
    Step 5: Go To A/P Invoice Screen, select the vendor. And  click on Copy from GR(PO), Select the respective GR(PO) document.
    And At the Bottom double click on Total Down Payment Button, This will display the list of all Down Payments for which Out going payments are also posted. Here Select the respective Down payment and add the document.
    When you add this A/P Invoice document gets added and the status of the document will be closed. As you have made full payment in the A/P Down Payment Screen.
    And This Invoice will not appear in the Out Going Screen as the document is closed.
    Cheers,
    Sree.

  • Outgoing payment with Payment Wizard with Bank Transfer

    Hello to everyone !!!
    I'm Configuring a Company who want to use the 'Payment Wizard' to make Outgoing Bank Transfers payments with it.
    I did the configuration in 'Payment Methods' of Outgoing Bank Transfers, where I chose a File Format from the list (Even I don't know which one should I choose) and I also chose de 'House bank', bank and account where the Outgoing Bank Transfers will come.
    At the time when I did the payment wizard it suggest me to make an outgoing payment of my due A/P invoice very well. The problem is in the next step (STEP 7) when i run the execution and in STEP 8 it says:
    0 Payments were added
    0 Bank transfers were added
    So, It did not make any bank transfer Transaction!!!! =S
    Someone knows what i'm missing from the configuration???
    Someone knows if this is a bug??
    Thanks for your Help!!!!

    Hi Karina,
    please see the info from SAP Note 725786. The note is currently being updated with the new information relating to system behaviour in version 2007  & should be released again shortly:
    In order for the payment wizard and subsequently the payment engine to
    work properly, SAP Business One must be defined correctly as follows:
    1. Define the House Bank:
    a) Administration -> Setup -> Banking -> House Bank Accounts - Setup.
    b) Choose the Bank Code, Country and Account Number.
    c) If the business partner bank is a postoffice bank, tick the Post Office box.
    d) Update the window.
    e) Enter into the House Bank Account Setup winod again and enter the Branch and the account number of the corresponding G/L Account.
    f) Update the window.
    2. Define Business Partner bank:
    a) Administration -> Setup -> Banking -> Banks.
    b) Choose the Country Code, Bank Code and Bank Name, if necessary Swift number.
    c) If the business partner bank is a postoffice bank, tick the Post Office box.
    d) Update the window.
    3. Define Payment Methods:
    a) Administration -> Setup -> Banking -> Payment Methods.
    b) Enter the Payment Method Code, Description and the Transaction Type.
    c) Select the Payment Type and the Payment Means.
    d) In "File Format" choose the correct plug-in for the transaction (refer to the Payment Engine Online Help for the correct plug-in for the transaction you have defined).
    e) Select your House Bank for this particular payment method.
    f) Select the validation options and remember to tick Post Office Bank, if the bank is a Post Office Bank.
    g) If the outgoing payment is by cheque, restrictions can also be defined here.
    h) Add or update the window.
    4. Set up a Business Partner for the payment wizard:
    a) Business Partner -> Business Partner Master Data.
    b) Under the "Payment Terms" tab, enter the bank country.
    c) Enter the account number and the branch, update to return to Business Partner Master Data.
    d) Under the Tab "Payment system" tab, tick the desired Payment Method to include it in a payment run.
    e) Under the Tab "Payment system", select the house bank that was defined for the desired payment method used for transactions with this business partner.
    f) Update the window.
    5. Generate invoices for this business partner.
    6. Define the standards for the payment run:
    a) Banking -> Payment System -> Define Payment Run Defaults (In 2007 A version the path is: Administration -> Setup -> Banking -> Payment Run Defaults).
    b) Define tolerance days, cash discounts etc as needed.
    c) Define minimum and  maximum payments if necessary.
    d) Tick the box beside "Payment Methods".
    e) Click on the radiobutton beside "Payment Methods" and select the payment method(s) to be executed in this payment run by putting a tick in the tick box.
    f) Update the window.
    7. Open the Payment Wizard (Banking -> Payment System -> Payment Wizard).
    a) Select a new payment run - Step 1.
    b) Click on "Next" and define the Payment Run Name and the Posting Date, the payment type and the payment means - Step 2.
    c) Click on "Next" and select the business partners to be included in this payment run, make sure that the tick box for the relevant Business Partner Name is ticked - Step 3.
    d) Click on "Next" and define the document parameters - Step 4.
    e) Click on "Next" and select the payment method this payment run is applied to by ticking the box to the left of the payment method code - Step 5.
    f) Click on "Next" and tick the payment number for the business partner to be included, individual invoices can be selected by clicking on the "Expand All" button and either selected or deselected. This also applies to Credit Memos (and to manual Journal ENtries in 2007 A). Click on "Non-included Trans." to identify any troublesome transactions - Step 6.
    g) Select to either "Save the selection criteria", or "Mark as recommended" to process at a later point in time or select to "Execute" immediately - Step 7.
    h) In Step 8, you are given the Payments Run Summary.
    i) If you selected to execute the payment run, in Step 9 the Document and Report Printing options will be displayed. To generate the bankfile and any associated documents relevant to your localisation, click on the radiobutton "Bankfile".
    j) A "Browse for Folder" window will pop up where the destination directory of the output files must be selected. Once a folder was selected and "OK" was clicked, the payment engine will take the data out of Business One and create the defined files.
    k) Once the procedure has completed, an information system message will be displayed: Payment Engine run was successful"
    8. Go to the destination folder and check the logfile and the bank file(s).
    All the best,
    kerstin

  • Invalid Account Code when Adding Outgoing payments  with WTholding Tax

    Hello Experts
    I am facing problem when trying to add an outgoing payment (DI) with WTHolding Tax and below is the error message;
    Invalid Account CodeMessage 173-9
    I have checked the WThodling Tax Account in WThodling Tax Setup.
    I am Using SAP 8.8 PL 19
    Please Help Me
    Dixit Patel
    Edited by: Dixit Patel on Mar 25, 2011 1:37 PM

    Hi
    Please Check all G/L Account Determination TAB.  Check all accounts are determined.
    Check this Thread It may help you.
    [Invalid Account Code error when posting AP Credit Note]
    Thanks
    Balaji Sampath

  • Outgoing Payment with Vendor Invoice reference on grid

    For Outgoing Payment has B1 docu. number but like to have Vendor's Invoice # displayed on the grid to know which one is which.  Should I use User Define Value for AP Invoice header to Banking > Outgoing Payment detail column?

    What is your B1 version and PL?  In our version, the Vendor Reference is default setting in the grid.
    Thanks,
    Gordon

  • Outgoing Payment with journal Entry

    Hi guys I need your help
    I need to be able to do an outgoing payment based on a journal entry. This is my code but I get this error:
    "Base document card & target document card do not match"
    The journal is based on an incoming payment that was over paid and has a remaining balance.
    Thanks
                oOutPay.DocTypte = SAPbobsCOM.BoRcptTypes.rCustomer;
                oOutPay.CardCode = "CC0001";
               //oOutPay.Invoices.Add();
                oOutPay.Invoices.DocEntry = 106;
                oOutPay.Invoices.InvoiceType = SAPbobsCOM.BoRcptInvTypes.it_JournalEntry;
                oOutPay.TransferAccount = globals.bankTrAccOP;
                oOutPay.TransferSum = 80;
                int lRetCode;
                lRetCode = oOutPay.Add();

    Hi Costas,
    In order to based the payment on Journal Entry,
    You have to set the docline of the Payment to Journal Entry Line which has the same cardcode as your payment card code like this
    oPay.Invoices.DocLine = oJE.Lines.Line_ID
    What I do is I iterate through the Journal Entry to look for the line like this :
    If .Invoices.InvoiceType = SAPbobsCOM.BoRcptInvTypes.it_JournalEntry _
                                        Or .Invoices.InvoiceType = SAPbobsCOM.BoRcptInvTypes.it_PaymentAdvice Then
        Dim oJE As SAPbobsCOM.JournalEntries
        oJE = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)
        oJE.GetByKey(.Invoices.DocEntry)
        For iLines As Integer = 0 To oJE.Lines.Count - 1
        oJE.Lines.SetCurrentLine(iLines)
        If oJE.Lines.ShortName = .CardCode Then
        'If the line card equal payment card code, then assign the docline id
              oPay.Invoices.DocLine = oJE.Lines.Line_ID
              System.Runtime.InteropServices.Marshal.ReleaseComObject(oJE)
              oJE = Nothing
              Exit For
         End If
        Next
    End If

  • Outgoing Payment with Bank Charges

    Most of the client wants to do payment (in/out) to have more than one charges in the same transaction.
    In SAP B1 2005B can have one bank charges a/c setting from incoming, but how is the process on outgoing. there's no bank charge can be selected.
    If doing payment on a/c and do bank reconciliation, it takes serveral steps to complete operation and not in the related journal entry.
    Any suggestion?

    Hi,
    Maybe you could try to do what I solve that problem in 2005A version.
    I select credit card (from payment means) --> credit card name --> bank charges (click define new (to create bank charges) from vouchers grid/form in the payment means --> credit card --> vouchers) --> select G/L account but you must define bank charges account in liabilities or in other drawer but all depends on your accounting. Consults your accounting staff for best option. This also could be done along with other payment means, for example cash, bank transfer or check.
    Rgds,

  • Create a vendor inquiry with a BAPI or FM like ME41

    Hey Team ABAP,
    i am a bit lost. I am trying to create a vendor inquiry, which you normally do with ME41. Problem is that i Need to do it in via coding.
    Call Transaction or Batch Input are not really chances i can Approach.
    Since they are stored in EKKO/EKPO like purchase orders i tried to use BAPI_PO_CREATE1.
    I fill it with fields where i think ist needed, but as a return message i only get a message like "No instance of object purchase order got created".
    This Kind of message isnt really helpful. Reading through the documentation of said BAPI i am not sure anymore if it can be used at all to create something else than purchase orders.
    Anyone got some expierience with this subject and wants to help me?
    I dont need coding or stuff like that, but if someone knows a BAPI or FM that i can use i´d be greatful.
    Thanks for reading
    Florian Kemmer

    Id don't know such ME41 BAPI, only BAPI_PR_CREATE PurchaseRequisition, BAPI_CONTRACT_CREATE PurchasingContract, BAPI_SAG_CREATE PurchSchedAgreement, BAPI_PO_CREATE1 PurchaseOrder.
    In ECC-DIMP there is a released FM : BS01_MM_QUOTATION_CREATE, but if you don't have DIMP...
    So I can only suggest you look thru SE80 at objects available on your system in application MM-PUR-RFQ.
    Regards,
    Raymond

  • How to Close A/P Invoice in SAP B1 9.0 using SDK without creating an outgoing payment

    Hi Team;
    I have an issue about of how to close an A\P invoice that has two different tax definitions because I have recorded in a sap Business One A\P Invoice that Have Withholding tax (3%) and have Value Added Tax (18%) at once but when doing Payment of those invoices I did it separately without linking A\P  invoice with payment so that I can do a journal entry that credit the VAT Account and debit the Supplier to record that VAT while doing reconciliation I get I message ‘’ Use the same payment category withholding tax code for all transactions during reconciliation  [Message 3821-32]”” I need your help if there is a way that I can close (Changing the status of those invoices because they still open ) invoices without doing A reversal Transaction that affect the accounting  report in SDK.
    Please anyone can help me.

    Hi pallavi p,
    That's good but as I said above when I add the reference of UI API Version 9.0 in the project which has the system form or user form of sap b1 it exactly gives errors in menu.vb of the project.
    So let me give you the way you can try.
    1. Open new project/ visual basic/ sap business one/ sap business one add-on project. and save it any where
    2. Right click on your project
    3. Add new item
    4. Sap Business One
    5. System form (Employee master data) or user form
    6. Add
    And then if your form is opened
    7. Go to add the reference of UI API Version 9.0
    8. Check errors found in menu.vb (or in OutPut)
    So if it's possible try to solve that problem.
    Please anyone can help me.

  • How to create a single outgoing payment?

    Hi All,
    Can any body tell me that how can i create an Outgoing Payment without Invoic references? I can In the BusinessOne UI, but I can't with DI API.
    If any body having the code for creating Outgoing Payment without Invoice reference, please send to me.
    Please Help me!
    Thanks in Advance,
    J

    Hi József,
    Just look at the SDK Helpcenter for the Payment sample,  and don't use the oPayment.Invoice part.
    Hope this helps,
    Ian

  • Creation of EDI 820 for outgoing payments in SAP

    Hi Experts,
    We have a requirement where in we need to create an outgoing  payment file in EDI820 with in SAP.
    We basically need to create specifications in EDI820 format for the bank to print checks and make wires and EFT payments.
    That EDI820 file will be created at the time of Automatic Payment Run(F110).
    Right now our client is sending a flat file to external service provider and they are creating EDI820 files and sending to the banks. Going forward the services of this service provider will be decommissioned and  an EDI820 file is to be generated in SAP and sent to the bank via SWIFT Net.
    Bank has provided us a sample file and file format for EDI820. This file format contains ST, BPR, RMR, REF etc records. There records have different codes and qualifiers.
    As far as we have analyzed, there are no standard SAP programs that can generate flat file in the EDI 820 format. Therefore we are heading towards developing a Z program for creating an EDI820 format.
    We are facing problem in mapping this file with SAP fields. We need to know how exactly we can map this file in SAP so as to create a program to generate EDI820. If anybody has had a similar requirement (for creating outbound EDI820 in SAP) and can provide us some lead, it will be greatly helpful for us.
    Thanks in advance for the help!

    Have you worked on this requirement?
    Could you please provide step by step instructions to configure and the high level process?

  • Creation of EDI 820 fromat for outgoing payments in SAP

    Hi Experts,
    We have a requirement where in we need to create an outgoing  payment file in EDI820 with in SAP.
    We basically need to create specifications in EDI820 format for the bank to print checks and make wires and EFT payments.
    That EDI820 file will be created at the time of Automatic Payment Run(F110).
    Right now our client is sending a flat file to external service provider and they are creating EDI820 files and sending to the banks. Going forward the services of this service provider will be decommissioned and  an EDI820 file is to be generated in SAP and sent to the bank via SWIFT Net.
    Bank has provided us a sample file and file format for EDI820. This file format contains ST, BPR, RMR, REF etc records. There records have different codes and qualifiers.
    As far as we have analyzed, there are no standard SAP programs that can generate flat file in the EDI 820 format. Therefore we are heading towards developing a Z program for creating an EDI820 format.
    We are facing problem in mapping this file with SAP fields. We need to know how exactly we can map this file in SAP so as to create a program to generate EDI820. If anybody has had a similar requirement (for creating outbound EDI820 in SAP) and can provide us some lead, it will be greatly helpful for us.
    Thanks in advance for the help!

    The program that sends the flat file should give you all the necessary fields, selection criteria, etc.  If the third-party constructs EDI820 from it, then there is enough data in that file for you to add steps to create an 820. 
    So, I'd start with the existing program, a particular outbound file and a copy of the 820 file created from it (if that can be obtained) and figure out how the intermediary converted the data to the correct format.  Piece of cake, right?

Maybe you are looking for

  • How to rate my website

    I am working on a website and my client requested that I rate the website as some of his customers can not acess the site due to Internet Filters. Does anyone know where and how I go about this?

  • Oracle 9i AS Portal download questions

    I read the installation guide for Oracle 9iAS (the guide for all of AS, not just the Portal component). I have some questions that were not addressed in the documentation. 1) Do you need to download the entire Oracle9i Application Server in order to

  • Is it possible to use the same Switch for two different clusters.

    I have 10g Rac setup on windows. Now I am planning to install 11gR2 on different servers. Is it possible to use the same Switch for two different clusters.

  • Marking a table as readonly conditionally

    Hi, I have a region with 2 fields. Out of which one is a select list and one text box. This is an MRU. The requirement is when the data review is done, the region should be freezed. So I should show the region with fields as uneditable. I have seen s

  • "Cannot Connect Usine SSL"

    I got the above error when trying to add my gmail account with the new $20 upgrade mail app. I have checked my settings in my gmail account and they have imap and pop enabled. Has anyone else gotten this error? Any fixes? Thanks