Advances Validation in Payables

Hi There
We are implementing Oracle R12 and have been informed by our solution implementer that there is no validation between the advance entered on the invoice and the advance amount on the associated purchase order. Hence we could pay more than the advance documented on the purchase order unless it is checked manually.
Can someone confirm if this is true i.e. that there is no standard functionality to validate the advance between the invoice and purchase order. If not do you know the logic behind this?
Thanks
Philip

Prepayments (Advances) are created in Payables only when there is no Invoice data or Purchase order data available to create in Invoice. Once the Invoice is created (may be from a PO) later on, the prepayments would be applied to the Invoice.
So while creating a Prepayment, you'll not have a PO at that point. And if you have a PO at that point, you create in Invoice and not a Prepayment.
Also, a Prepayment can be applied to multiple Invoices. The prepayment is open an available until all of the amount is applied to one or more invoices.

Similar Messages

  • Advance validation during order or billing

    Hi,
    If customer have given Advance ,i want to get validation i.e indication during doing sales order or billing for that Customer.
    thr should be some Pop during order or billing
    what is the process for such scenario
    Thanks

    Hi Prasad
    If you create a  Down payment sales order and then if you create the billing in between then you will get the warning message . But if you need a Popup message means then you should go with the User exit
    Check the following link for you information
    [http://help.sap.com/saphelp_46c/helpdata/en/59/ac922bcb0411d2acbe0000e8a5bd28/frameset.htm]
    Source : SAP library
    Regards
    Srinath

  • Invoice Validations in Payables?

    Hi,
    We have a requirement in which we need to export the validated invoices and send that file to a different server. So, I was preparing a query for that, but i did not find a data base column in any table ap_invoices_all or ap_invoice_distributions_all where can i find the invoice status. As this "Invoics Status" reflects on Invoice Form (APXINWKB) and shows the value as either "Validated" or "Never Validated". How will I get to know that my invoice is validated or not thru backend? Any suggestions on this will be highly appreciated.
    Thanks,
    Sumir

    you an use select AP_INVOICES_PKG.GET_APPROVAL_STATUS(INVOICE_ID,INVOICE_AMOUNT, PAYMENT_STATUS_FLAG, INVOICE_TYPE_LOOKUP_CODE) from ap_invoices
    where invoice_id = <your invoice id>
    The values returned could be APPROVED i.e. Validated, NEEDS REAPPROVAL - Needs Revalidation or NEVER APPROVED - Never Validated
    ensure that you set the org context before running this query

  • Struts client side validation....

    Hello all,
    I am using struts client and server validation but only the server validation works. I tired looking around the forum but wouldnt find any similar problem.
    I am getting value from the previous action class and i am able to successfully retrieve and display the value. I inserted the value in a object and pass over to my jsp. When i try inserting the validation, the server side works fine but i get nth on the client side. I viewed the source code of my jsp and the JAVASCRIPT is successfully inserted but no pop up when i leave the fill blank. Please advise mi..
    1)update.jsp will retrieve data from a object and display them in text box
    struts config file**
    <form-bean name="UpdateMarks" type="fypms.form.UpdateMarksForm" />
    <action name="UpdateMarks"
    path="/updateMarks"
    type="fypms.action.UpdateStudentMarks"
    scope="request"
    validate="true"
    input="/pages/UpdateStudentMarks.jsp" >
    <forward name="successfulUpdate" path="/pages/successfulUpdate.jsp" />
    <forward name="wrongHelloId" path="/pages/wrongHelloWorld.jsp" />
    </action>
    <message-resources parameter="MessageResources"/>
    <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
    <set-property
    property="pathnames"
    value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/>
    </plug-in>
    validation.xml**
    <!-- javascript validation for Update Presentation marks page -->
    <form name="UpdateMarks">
    <field property="first_Present"
    depends="creditCard">
    <arg key="prompt.firstPresent" />
    </field>
    <field property="final_Present"
    depends="creditCard">
    <arg key="prompt.finalPresent" />
    </field>
    </form>
    updatemarksform.java**
    private String adminNo[];
         private String first_Present[];
         private String final_Present[];
         private String batchNumber;
         //private String batchNumber;
         public ActionErrors validate( ActionMapping mapping, HttpServletRequest request)
              ActionErrors errors = new ActionErrors();
              List testing = new ArrayList();
              System.out.println("out");
              for(int x=0; x < first_Present.length;x++)
                   System.out.println("firsT" + first_Present[x].length());
                   if (first_Present[x].length()<1)
                        System.out.println("a");
                        //userId not entered
                        errors.add("marks.firstPresentation", new ActionMessage("marks.firstPresentation"));
                   if (final_Present[x].length()<1)
                        //password not entered
                        errors.add("marks.finalPresentation", new ActionMessage("marks.finalPresentation"));
              request.setAttribute("StudentList", testing);
              return errors;
    update.jsp**
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ page import="fypms.model.*" %>
    <link href="/FYPMS/css/style.css" rel="stylesheet" type="text/css">
    <!--Can contains: JSP -->
    <html:html locale="true">
    <html:form action="/updateMarks" method="post" onsubmit="return validateUpdateMarks(this);">
    <html:errors/>
         <table>
    <tr>
    <td>Name</td>
    <td>Admin Number</td>
    <td>First Presentation</td>
    <td>Final Presentation</td>
    </tr>
    <logic:iterate id="myCollectionElement" name="StudentList">
    <tr>
    <td> <bean:write name="myCollectionElement" property="name"/><html:hidden name="hiddenBatch" property="batchNumber"/></td>
    <td> <bean:write name="myCollectionElement" property="adminNo"/><html:hidden name="myCollectionElement" property="adminNo"/></td>
    <td> <html:text name="myCollectionElement" property="first_Present" /></td>
    <td> <html:text name="myCollectionElement" property="final_Present" /> </td>
    </tr>
    </logic:iterate>
    >
    <tr><td colspan="4"><html:submit value="enter"/></td></tr>
         </table>
    <!-- Begin Validator Javascript Function-->
    <html:javascript formName="UpdateMarks" staticJavascript="true" />
    <!-- End of Validator Javascript Function-->
    </html:form>
    </html:html>
    thank in advance

    # -- validation text(display text) for login page --
    valid.title=Simple Validation Test Form
    prompt.username=Username
    prompt.password=Password
    prompt.phone=Phone Number
    prompt.email=E-Mail Address
    prompt.url=URL (Website Address)
    login.userid = Username is required
    login.password = Password is required
    #-- validation text(display text) for Update presentation marks page --
    prompt.firstPresent=first_Present
    prompt.finalPresent=final_Present
    marks.firstPresentation=First Presentation marks is required
    marks.finalPresentation=Final Presentation marks is required
    thx for ur help ^^
    Message was edited by:
    fatmond

  • UCM11g: Workflow approve validation

    Hi everybody,
    I need to validate a custom metadate during the approving. If I click on the Approve link I would like to start "validation code". How?
    My Ideas:
    1. run Filter....... Which Filter?
    2. run Javascript ....... Which javascript? Where can I find javascript code/resource?
    Thank you
    Martin

    Is there any reason not to validate mandatory field on checkin operation, and is this only validation type? If not, why not to mark invoice number field, on the corresponding Rule, as required and supply desired message that will appear if this field is blank?
    If validation rules are complex and you have to validate against some database table or some more advanced validation logic, then filter and java could be the only way. There are two filter events that can be used:
    advanceDocumentStateStart
    Executed at each step in a workflow (check in, check out, approve)to enable the storage of extra data, or the complete overriding of core workflow behavior.
    Cached Objects: intradoc.server.workflow.WorkflowStates WorkflowStates, boolean WorkflowUseLocal
    workflowComputeDocStepInfo
    Executed each time a the state of an item in workflow is calculated for display purposes.
    Cached Objects: intradoc.shared.workflow.WfStepData WfStepData
    To give you a starting point, here's example of validation against database table: http://www.klsoftware.com/blog/2010/04/how-to-validate-against/
    Hope this helps.
    Boris
    Edited by: tombo on 2012.01.26 11:03

  • Valid Acrobat Pro XI says Activation Required after 30 days

    Hello!
    We have made an enterprise deployment of Acrobat Pro XI using the Adobe Customization Wizard XI. Since our environment is 100% offline, we added the Serial Number (that we in advance validated online) during the Customization Wizard, so that the application can install silently without any online validation needed.
    Our problem now is that Acrobat still after 30 days says that it is not activated. Can this problem have come from the fact that at one time, after the deployment configuration was made, we remade/edited the configuration with the Customization Wizard, and used the same serial code as before?
    Bottom line: Do we need to revalidate online and get a new serial number every time we make a change with the Customization Wizard?
    If not, what else can cause Acrobat to believe that it is not activated, even though we are using a valid key?
    Error message:
    Activation Required.
    Please connect to the internet. Activating Acrobat XI Pro is required today otherwise it will stop working.
    Thank you in advance!

    No, it's not a part of Creative Cloud. It's just a standalone Acrobat Pro XI.
    What I meant about "using the mst wrong" was that we run setup.exe, which i guess uses setup.ini. and in setup.ini under [product] "CmdLine=TRANSFORMS="AcroPro.mst" is added (the mst includes the ISX_SERIALNUMBER), but maybe we should try running the AcroPro.msi directly and apply the transform directly in the command line.
    I know we could just try this, but it's essential that we are 100% sure that our solution works before sending it out to thousands of users.
    I was in contact with someone from Adobe Support earlier who said to run this command: msiexec /i acropro.msi TRANSFORMS=AcroPro.mst /qn and "then you can check in TASK manager , you will see 4 MSiexec processes running."
    That was kind of confusing. Exactly which processes they meant and how that proves that the activation was successful, I don't know.
    The support guy told me that the only thing needed for the offline activation to work was to add the ISX_SERIALNUMBER to the mst, which we have. But then what does the "Grant Offline Exception" button in the Adobe Customization Wizard XI do? There must be some kind of magic that this button does that i can verify in the mst.
    Also, I see the recommendations about posting this in the enterprise deployment forum, and I guess it could've been moved there, but I don't think it would make much difference since this problem remains the same whether it's deployed to lots of users or just one.
    Thank you so much for any further help.

  • How to permanently remove "This Connection is Untrusted" notification for all future websites everywhere forever?

    Dear Mod/Helper/Whoever
    Please read this entire post before answering since it addresses virtually all the most popular "solutions" for this problem and they DON'T WORK.
    I've already found this and it was of no use: https://support.mozilla.org/en-US/questions/1015256?esab=a&as=aaq
    The moderator's blatant copy-paste response was an insult and not helpful at all.
    My system date is ok and the cause of invalid certificate is the LEAST of my concerns. I just want to browse the website and not get ANY warnings about ANY invalid certificates or ANY risks involved, period. All popular workarounds with settings/advanced/validity properties have been tried but none of them fix this for me. I want FF to accept all invalid certificates instantly without notification or warning, no matter what.
    I want to remove the warning screen "This Connection is Untrusted" permanently for all future references, so that I don't even see any errors related to it when I browse a website.
    I'm not here to argue the merits or lack thereof for this action, I just want to get rid of it.
    I'm running a lot of custom software on my comp and I have 3 LAN cards connecting me to 3 different networks with varying degrees of security and this notification is a huge pain in the... back, because it eats my time every day.
    I've been using Firefox for years exactly because it didn't have stuff like this in the past - I could visit all the funny/suspicious/malicious websites without problems, where IE would have died 10 times over. Sadly that FF feature began changing to the worse in the past years, an ever-increasing slope downwards for this once great web browser.
    I KNOW all the risks involved and I don't care. In fact I encourage websites to try and install "stuff" on my computer because as I mentioned, this is a special computer. I'm visiting 40-50 websites with that prompt DAILY because that's what I do for a living. Every time I have to add an exception is a wasted effort and time. I'm running other browsers as well but FF is my focus due to its popularity.
    Please for the love of all that is sacred, provide some sort of workaround for this without the need to install an addon or click "I understand the risks" a gazillion times. An "about:config" variable would be nice but apparently it's not there, I looked.

    That is not possible as that would expose you and other Firefox users to unacceptable security vulnerabilities.
    The normal procedure is to contact the website maintainer and ask them to fix the certificate chain or install missing root certificates in Firefox and set the trust bits accordingly.
    If you do not care about certificates then why don't you install proxy software and use that proxy and let it handle the certificates and import the root certificate of that proxy in Firefox?

  • Idoc file to create master data in APO

    Hi Experts,
    I will be getting an idoc file let say zmatmas02 its extended idoc type with extended segments
    i need to upload this file into an APO system
    can i use the program RSEINB00 to upload the idoc file , if so what are the steps i need to do,
    or do i need to write a custom program with bapi BAPI_PRDSRVAPS_SAVEMULTI2 that can upload the data to material master .
    I would like to know how to read the idoc file and split and post to the above bapi is my question.
    can you pls give me a sample program in both cases .
    thank you very much in advance
    valid answers surly be rewarded .
    Thanks,
    Srini.

    Hello,
    BOM means BIll of Materials you should create materials first and then you have to create BOM where for a finished material you will have set of semi finished or Raw materials as components.
    Example: If you are material of finished is CAR then you will have different components for the same like Engine,Tyers etc.
    Means your Header material is CAR and component materials are Engine.
    Below are the transactions for creation of the same.
    Step 1: Material Master
    Logistics > Production > Master Data > Material Master > Material > Create General > Immediately MM01
    Step 2: BOM creation
    Logistics > Production > Master Data > Bills of Material > Bills of Material > Material BOM > Create CS01
    Step 3: Work Center creation
    Logistics > Production > Master Data > Work Center > ( New Screen ) Work Center > Create CR01
    Step 4: Route creation
    Logistics > Production > Master Data > Routings > Routings > Routing > Create CA01
    For Routing you need to have a work center defined as Routing is set of operations that you perform on the material to obtain the finished material.
    Hope the information is useful
    Regards

  • Internet Explorer Problems with Behaviors

    Hi,
    I am new to designing web pages and have researched all day trying to find this solution.  Currently I have images and text tagged with an "onload" behavior.  Everything works fine in every browser except IE.  It seems as though some images become pixelated, the fadein/out effect does not apply to text, and the text that it does apply to - it looks as though the font has changed (becomes skinnier) for some reason.  I would appreciate any advise as this is a time sensitive issue.  Thanks for all your help in advance.

    Validation errors.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.cavallinollc.com%2FTESTENVIRO NMENT%2FTestSiteF%2F
    On lines 115 and 117 you have some semi-colons that don't belong.
    Try fixing the code errors and see where you land.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Format Payment Instructions with Text Output issue

    Hi All,
    We have requirement like don't want print checks in oracle, just process the payment, generate the document number(check number) in oracle and send the data file to third party system. It takes care the check printing.
    For this I developed e-text xml template, created the payment format of type Disbursement Payment Instruction, attached to bank account and Payment process profile.
    When I am processing payment it is submitting 'Format Payment Instructions with Text Output' instead of 'Format Payment Instructions' but that program extracting the previous check information which not related to supplier and as well as payments batch.
    Please let me know what would be the issue?
    Thanks
    Praveen

    Hi Javvaji,
    Please check the following steps,
    1) Created XML Pubblisher template and attached the .rtf (Type - eText-Outbound, Default Output Type - eText)
    2) In Payable Manager responsibility Create a Payment Format ->
    Setup-> Payment Administrator-> Formats (Add XML Publisher Template created in step1)
    3) Setup-> Payments -> check existing Bank & Bank Branches
    4) Setup-> Payments -> Bank Accounts -> Create the payment Document Number
    5) Attach the Bank account to a valid supplier: Payables – Suppliers -> Entry
    6) Now to create the payment Process Profile (PPP)
    Navigation : go to Payables -> Setup-> Payment Administrator
    7) Now to attach everything (PPP,format,document etc.) to the Template
    First step to Create a “Template”
    Navigation: Payables,Vision Operations -> Payments -> Entry -> Payments Manager
    8) Then go to Tab “Payment Process Requests” Then click on “Submit Single Request”
    9) Check View -> Requests
    No output generated in 'Format Payment Instruction' program.
    which program I can get the eText output?
    Please suggest.
    Thanks & Regards,
    Sagarika

  • Issues loading the login site of my ISP

    When I first power on my modem, I must log into the ISPs page before I can surf the net. This has worked fine for me up until about 2 months ago. Since then, when I get redirected to the login page, it either fails to load, or takes an age to do so (3-5mins).
    This happened around the time 3.6.2 was released, but I'm unsure if it was exactly after I upgraded.
    Firefox on the mac, and PC, on multiple machines exhibit the issue. Running Safari, Chrome or IE, the page loads instantly. Once logged in I can use Firefox without an issue, even loading the login page again should I choose, it loads the page instantly.
    Finally the ISP came back to me, requesting me to disable the validation of certificates (under tools, options, advanced, validation, uncheck all), and re-enabling it after I've logged in.
    This does appear to resolve the issue, but I'm wondering why this is the case, and why only Firefox is affected.
    It's a right PITA to have to launch another browser to log in, then switch back to FF. It's even worse having to disable the validation check and re-enable it afterwards.
    Any ideas what could be causing this behaviour?
    == URL of affected sites ==
    https://broadband.mobileone.net.sg/login/

    * "Clear the Cache": Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Real time scenarios...

    hello ther ....i am simi .. iam new to sdn...i have my interview in sem bps..in a couple of days time..iam through with the theoritical bit ...my concerns are related to the questions that may arise about project scenarios....would be much obliged if someone could help me thru by providing some real time planning scenarios ....or may be some help with the tech specs,,.....thanx....favour will be returned....
    regards,
    simi..

    I have mentioned couple of real time scenario I know.
    [1] Down payment :
    When PO gets created and vendor asks for some portion of PO as an advance payment, accounts payable department creates down payment request for the purchase order using F-47 and enters PO number in it.automatic payment program pays for the down payment request made.
    <b>When automatic payment program makes payment, PO gets updated with Down payment amount, and purchasing department gets visibility against that PO and knows that certain amopunt has been paid as an advance payment.</b>
    When Goods is received and invoice is entered using MIRO for that PO accounts payable department gets notification that down payment exists towards  PO.
    and they clear down payment made for the PO againt the invoice.
    [2] AR/AP netting :
    Some times in business some customers are also vendors.
    SAP has given the functionality to set the Customer as a vendor scenario.
    it requires two settings in customer-vendor master record.
    For customer who is also vendor, cendor master record is created , in control tab customer number is entered in vendor master, same time in customer master record in control tab vendor number is entered for that customer.
    Check clear agaist customer-vendor in both master record.
    when payment is made to this vendor/customer another master record gets updated automatically.
    Assign points if helpful

  • Big error after run Validate Application Accounting Definitions

    Dear all
    i have face big problem, after upgrading from R11I to R12.1.3 on linux, i have run Validate Application Accounting Definitions an i found all valid except in payables some of them valid and other invalid, that is the output
    i need any help to solve this issue
    that is the error text
    The following journal line types assigned to the journal Error
    lines definition have an invalid accounting class. Please
    use the Subledger Accounting Lookups window to define the
    accounting class, or select a different accounting class for
    the journal line type.
    Subledger Accounting Application Report Date: 01-NOV-12
    Application Accounting Definition Validation Report Page: 1
    Application Application Accounting Definition Owner Event Class Status
    Payables Accrual Basis Oracle Credit Memos Invalid
    Payables Accrual Basis Oracle Debit Memos Invalid
    Payables Accrual Basis Oracle Future Dated Payments Valid
    Payables Accrual Basis Oracle Invoices Invalid
    Payables Accrual Basis Oracle Payments Valid
    Payables Accrual Basis Oracle Prepayment Valid
    Applications
    Payables Accrual Basis Oracle Prepayments Invalid
    Payables Accrual Basis Oracle Reconciled Payments Valid
    Payables Accrual Basis Oracle Refunds Valid
    Payables Cash Basis Oracle Credit Memos Valid
    Payables Cash Basis Oracle Debit Memos Valid
    Payables Cash Basis Oracle Future Dated Payments Valid
    Payables Cash Basis Oracle Invoices Valid
    Payables Cash Basis Oracle Payments Valid
    Payables Cash Basis Oracle Prepayment Valid
    Applications
    Payables Cash Basis Oracle Prepayments Valid
    Payables Cash Basis Oracle Reconciled Payments Valid
    Payables Cash Basis Oracle Refunds Valid
    Payables China Accrual Basis Oracle Credit Memos Invalid
    Payables China Accrual Basis Oracle Debit Memos Invalid
    Payables China Accrual Basis Oracle Future Dated Payments Valid
    Payables China Accrual Basis Oracle Invoices Invalid
    Payables China Accrual Basis Oracle Payments Valid
    Payables China Accrual Basis Oracle Prepayment Valid
    Applications
    Payables China Accrual Basis Oracle Prepayments Invalid
    Payables China Accrual Basis Oracle Reconciled Payments Valid
    Payables China Accrual Basis Oracle Refunds Valid
    Payables Encumbrance Accrual Oracle Burden for Invoices Valid
    Payables Encumbrance Accrual Oracle Burden for Prepayment Valid
    Applications
    Payables Encumbrance Accrual Oracle Burden for Valid
    Prepayments
    Payables Encumbrance Accrual Oracle Credit Memos Invalid
    Payables Encumbrance Accrual Oracle Debit Memos Invalid
    Payables Encumbrance Accrual Oracle Future Dated Payments Valid
    Payables Encumbrance Accrual Oracle Invoices Invalid
    Payables Encumbrance Accrual Oracle Payments Valid
    Payables Encumbrance Accrual Oracle Prepayment Valid
    Applications
    Payables Encumbrance Accrual Oracle Prepayments Invalid
    Payables Encumbrance Accrual Oracle Reconciled Payments Valid
    Payables Encumbrance Accrual Oracle Refunds Valid
    Payables Encumbrance Cash Oracle Burden for Invoices Valid
    Payables Encumbrance Cash Oracle Burden for Prepayment Valid
    Applications
    Payables Encumbrance Cash Oracle Burden for Valid
    Prepayments
    Payables Encumbrance Cash Oracle Credit Memos Valid
    Payables Encumbrance Cash Oracle Debit Memos Valid
    Payables Encumbrance Cash Oracle Future Dated Payments Valid
    Payables Encumbrance Cash Oracle Invoices Valid
    Payables Encumbrance Cash Oracle Payments Valid
    Subledger Accounting Application Report Date: 01-NOV-12
    Application Accounting Definition Validation Report Page: 2
    Application Application Accounting Definition Owner Event Class Status
    Payables Encumbrance Cash Oracle Prepayment Valid
    Applications
    Payables Encumbrance Cash Oracle Prepayments Valid
    Payables Encumbrance Cash Oracle Reconciled Payments Valid
    Payables Encumbrance Cash Oracle Refunds Valid
    Payables Federal Payables AAD Oracle Credit Memos Invalid
    Payables Federal Payables AAD Oracle Debit Memos Invalid
    Payables Federal Payables AAD Oracle Future Dated Payments Invalid
    Payables Federal Payables AAD Oracle Invoices Invalid
    Payables Federal Payables AAD Oracle Payments Invalid
    Payables Federal Payables AAD Oracle Prepayment Invalid
    Applications
    Payables Federal Payables AAD Oracle Prepayments Invalid
    Payables Federal Payables AAD Oracle Reconciled Payments Invalid
    Payables Federal Payables AAD Oracle Refunds Invalid
    Application: Payables
    Context: Default
    Application Accounting Definition: Federal Payables AAD
    Application Accounting Definition Owner: Oracle
    Error Category: Application Accounting Definition
    Error Number Error Text Error Type
    95617 The validation process has encountered an internal error. Error
    Please enable the FND: Log Enabled profile option,revalidate
    the application accounting definition, and review the log
    for more information.
    Error Category: Source Assignments
    Error Number Error Text Error Type
    95459 The following sources have been assigned to the event class Error
    but do not have corresponding columns in any of the
    transaction objects for the transaction object type and
    event class. Please use the source assignments window to
    unassign these sources from the event class, or inform your
    system administrator or support representative that:
    Columns for the sources are missing from the transaction
    objects for the transaction object type and event class.
    Event Class Source Name Transaction Object Name Transaction Object Type
    Payments Line
    Payments Line
    Payments Line
    Payments Line
    Payments Line
    Payments Line
    Payments Line
    Payments Line
    Payments Line
    Application: Payables
    Subledger Accounting Application Report Date: 01-NOV-12
    Application Accounting Definition Validation Report Page: 3
    Application: Payables
    Context: Default
    Journal Lines Definition: Accrual, Credit Memos All
    Journal Lines Definition Owner: Oracle
    Error Category: Journal Line Types
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid accounting class. Please
    use the Subledger Accounting Lookups window to define the
    accounting class, or select a different accounting class for
    the journal line type.
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Credit Memos All Accrual, Oracl Self-Assessed Oracle
    Credit Memos e Recoverable
    All Tax
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid rounding class. Please use
    the Subledger Accounting Lookups window to define the
    rounding class, or select a different rounding class for the
    journal line type.
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Credit Memos All Accrual, Oracl Self-Assessed Oracle
    Credit Memos e Recoverable
    All Tax
    Application: Payables
    Context: Default
    Journal Lines Definition: Accrual, Debit Memos All
    Journal Lines Definition Owner: Oracle
    Error Category: Journal Line Types
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid accounting class. Please
    use the Subledger Accounting Lookups window to define the
    accounting class, or select a different accounting class for
    the journal line type.
    Subledger Accounting Application Report Date: 01-NOV-12
    Application Accounting Definition Validation Report Page: 4
    Application: Payables
    Context: Default
    Journal Lines Definition: Accrual, Debit Memos All
    Journal Lines Definition Owner: Oracle
    Error Category: Journal Line Types
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Debit Memos All Accrual, Oracl Self-Assessed Oracle
    Debit Memos e Recoverable
    All Tax
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid rounding class. Please use
    the Subledger Accounting Lookups window to define the
    rounding class, or select a different rounding class for the
    journal line type.
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Debit Memos All Accrual, Oracl Self-Assessed Oracle
    Debit Memos e Recoverable
    All Tax
    Application: Payables
    Context: Default
    Journal Lines Definition: Accrual, Invoices All
    Journal Lines Definition Owner: Oracle
    Error Category: Journal Line Types
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid accounting class. Please
    use the Subledger Accounting Lookups window to define the
    accounting class, or select a different accounting class for
    the journal line type.
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Invoices All Accrual, Oracl Self-Assessed Oracle
    Invoices All e Recoverable
    Tax
    Error Number Error Text Error Type
    Subledger Accounting Application Report Date: 01-NOV-12
    Application Accounting Definition Validation Report Page: 5
    Application: Payables
    Context: Default
    Journal Lines Definition: Accrual, Invoices All
    Journal Lines Definition Owner: Oracle
    Error Category: Journal Line Types
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid rounding class. Please use
    the Subledger Accounting Lookups window to define the
    rounding class, or select a different rounding class for the
    journal line type.
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Invoices All Accrual, Oracl Self-Assessed Oracle
    Invoices All e Recoverable
    Tax
    Application: Payables
    Context: Default
    Journal Lines Definition: Accrual, Prepayments All
    Journal Lines Definition Owner: Oracle
    Error Category: Journal Line Types
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid accounting class. Please
    use the Subledger Accounting Lookups window to define the
    accounting class, or select a different accounting class for
    the journal line type.
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Prepayments All Accrual, Oracl Self-Assessed Oracle
    Prepayments e Recoverable
    All Tax
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid rounding class. Please use
    the Subledger Accounting Lookups window to define the
    rounding class, or select a different rounding class for the
    journal line type.
    Subledger Accounting Application Report Date: 01-NOV-12
    Application Accounting Definition Validation Report Page: 6
    Application: Payables
    Context: Default
    Journal Lines Definition: Accrual, Prepayments All
    Journal Lines Definition Owner: Oracle
    Error Category: Journal Line Types
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Prepayments All Accrual, Oracl Self-Assessed Oracle
    Prepayments e Recoverable
    All Tax
    Application: Payables
    Context: Default
    Journal Lines Definition: China Accrual, Credit Memos All
    Journal Lines Definition Owner: Oracle
    Error Category: Journal Line Types
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid accounting class. Please
    use the Subledger Accounting Lookups window to define the
    accounting class, or select a different accounting class for
    the journal line type.
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Credit Memos All China Oracl Self-Assessed Oracle
    Accrual, e Recoverable
    Credit Memos Tax
    All
    Error Number Error Text Error Type
    The following journal line types assigned to the journal Error
    lines definition have an invalid rounding class. Please use
    the Subledger Accounting Lookups window to define the
    rounding class, or select a different rounding class for the
    journal line type.
    Journal Accounting Accounting
    Lines Line Type Source Source Attribute Attribute
    Event Class Event Type Definition Owner Name Owner Name Type Name Group
    Credit Memos All China Oracl Self-Assessed Oracle
    Accrual, e Recoverable
    Credit Memos Tax
    All
    Edited by: 969289 on Nov 2, 2012 10:41 PM

    Hi Raju,
    Did you get any solution for this problem?
    Regards,
    Natesh

  • APEX vs Access

    I have been an Access developer for over 6 years. Just beggining to learn APEX (installed it, and trying to read the tutorials from Oracle). Can I do with APEX everything that I could do with Access? For example, I have created Forms with advanced validations, calculations, etc., using VBA Code, nested subforms, nested subreports, user/role authentication access for Forms/Reports, etc. The fact that I can intervene before/after many events (Update, Load, Error, Current, etc.) gives me a great deal of flexitbility. Does APEX allow similar opportinities to use custom code before/after certain events? Thanks a lot for your suggestions and advice.

    Well, let me start by saying that it is good to see a fellow "Boricua" in the forum :).
    I can help you with most of your questions. Lets break them down, shall we?
    Q: "Can I do with APEX everything that I could do with Access? For example, I have created Forms with advanced validations, calculations..."
    A: Very much so, yes. I may not have as much experience as you do in terms of Access, but I sure noticed a lot of improvement in certain things like validations.
    Q. "...using VBA Code, nested subforms, nested subreports..."
    A: In my experience, in Apex, depending on the functionality you want to achieve, you may have to use PL/SQL, javascript, SQL. About nested subforms and nested subreports, I have seen some implementations of that in the forums. I can probably refer to you Denes Kubicek (he has done a lot of custom implementations) and you can find posts by Carll Backstrom. Both of these guys have been kind enough to provide proof on concepts that can be found throughout this forum site.
    Q. "...user/role authentication access for Forms/Reports, etc..."
    A: Well, APEX can provide different modes of authentication, depending on your organizational needs. If there is an existing LDAP configuration, there are ways to integrate authentication (custom authentication). You can also configure within the application different authorization schemes, which are used mostly to determine the level of access to certain regions, items, pages within an application. About Forms and Reports integration, I have not really seen much use other than accessing the data used in those tools with APEX.
    Q. "...The fact that I can intervene before/after many events (Update, Load, Error, Current, etc.) gives me a great deal of flexitbility. Does APEX allow similar opportinities to use custom code before/after certain events? Thanks a lot for your suggestions and advice."
    A: Indeed. You will find that APEX has opportunities to code for these events and at certain times during the process and loading of a page. There are many more features (including a port from access to APEX) that you may want to try out. Also, the prepackaged applications are a good source of examples of what the application capabilities are.
    Thanks for your time and I hope you have fun with the tool! Feel free to contact me for any information you need.

  • Only firefox is reporting my SSL certificate as revoked. How can I fix this issue?

    I have recently re-keyed and re-installed an SSL certificate on my server (https://beta.alicorsolutions.com:2087) running WHM on linux.
    The SSL certificate is passing all the 3rd party SSL tests (https://www.ssllabs.com/ssltest/analyze.html?d=beta.alicorsolutions.com) and works perfectly fine in Chrome and IE. However, in Firefox I get an error page that says: "Peer's Certificate has been revoked. Error code: sec_error_revoked_certificate".
    After doing some searching, I can see that the problem is specific to firefox and the only way everyone else seems to be fixing the problem is by turning off OCSP under Preferences > Advanced > Validation.
    This of course is not an acceptable long-term solution. I need to fix this issue as quickly as possible, ay help at all would be appreciated. Please let me know if there's any other information I can provide that would assist you in solving this issue.

    hello jcsarda, it's only working in chrome because its security settings are more relaxed per default (when you set chrome to check for certificate revokation in settings > advanced > HTTPS/SSL it shows the same error for me). i don't know about IE...

Maybe you are looking for