UNABLE TO CREATE ACCOUNTING ENTRIES IN ORACLE PAYABLES

I am unable to create accounting entries in payables-payments.I tried with actions =>create accounting but still
the accounted field is showing as "No".
Please provide a solution for the issue.
Thanks
Guru Prasad.

Thanks for your reply
We are using 11.5.9.i tried with payable accounting process also.its showing no data.
Could you please guide me for the solution?
Thanks
Gur uPrasad.

Similar Messages

  • SolMan 4.0 Solaris / Oracle install: Unable to create account user

    Hi!
    Am I getting this error during step 2 (Create users for SAP System) of the Solution Manager 4.0 installation. This error occurs when SAPinst is trying to create account "orasol" for system "SOL".
    INFO[E] 2007-02-14 13:12:51
    FSH-00006 Return value of function getpwnam(orasol) is NULL
    ERROR 2007-02-14 13:12:51
    FSL-01002 Unable to create account user="soladm". UX: /usr/sbin/useradd: ERROR: Unable to create the home directory: No such file or directory. (return code 12)
    ERROR 2007-02-14 13:12:51
    MUT-03025 Caught ESyException in Modulecall: ESAPinstException: error text undefined.
    Please let me know how I can fix this error!
    Regards,
    Thomas

    Hello Thomas,
    It looks like a Solaris issue. Check if the home directory
    /home is reserved in the Solaris configuration.
    Check if this fix the problem please perform the following steps:
    1. modify /etc/auto_master file to change the entry for '/home' to say
       '/autohome' instead
    2. reboot
    3. rmdir /home
    4. ln -s /export/home /home (make sure /export/home exists)
    Also you could create soladm manually in advance.
    Hope this helps,
    Dolores

  • Unable to create database entry in the directory service. - TNS-04

    We run into this error when we tried to register an Oracle 10.2.0.4 database with OID server (10.1.4.3):
    Unable to create database entry in the directory service. - TNS-04409: Directory service error
    We use Oracle DBCA to register to the OID. Both Oracle database and OID server are all running under Sun Solaris environment.
    In the meantime, I found these errors in the oid logs:
    oidldapd01.log:
    2009/07/13:21:15:47 * DispatcherListener:2 * ERROR : gslsflAcceptConnAndSend : OS 2 : Unable to accept New TCP
    connection
    Any ideas?
    Thanks
    Naiying

    Hi,
    Thanks for update.
    No, didn't find DSCC agent logs get updated when I have the pop up.
    C:\dsee7\var\dcc\agent\logs
    In the glassfish server log, I didn't find new transaction when I hit the issue
    C:\glassfish3\glassfish\domains\domain1\logs

  • Unable to create Accounting document for my Outgoing excise Invoice

    Dear All,
    I am implementing sales from Factory. I am unable to creat accounting document for my Outgoing excise invoice.  When I click the Utilization button, The excise invoice type is selected Deemed.
    1. How to control which Which Excise invoice type should be selected in J1IIN.
    2. For Deemed exports will system not genererate Accounting document for Excise Invoice?
    3. Where to view the excise invoice document types (Like Billing and order types)
    Thanks & Regards

    For deemed export sales,
    -Accounting documents will not get generated. (ref: Excise Acct Determination in CIN settings, you will not find Excise Tranraction type:ARE3 for which G/L account will not be assigned)
    -Excise Invoice type will be automatically triggered based on configuration : Excise Group / Series Group detetermination.
    - For Deemed Exports , only Quantity will get updated in RG1, but not the value. thats the reason, accounting document will not get generated.
    - This excise invoice is created, for - to update the RG1 registry / ARE3 creation.
    hope it clears
    regards,

  • Warning: Unable to create new entry, caught: "javax.ejb.CreateException", message is:

    Warning: Unable to create new entry, caught: "javax.ejb.CreateException", message is: "Error creating EntityBean: Io exception: The Network Adapter could not establish the connection".
    while executing JSP:<%
    * add.jsp
    * Adds a new entry through EmployeeBean. This is a JSP that serves 2
    * functions. First of all, when called with no arguments, it will display a
    * table with a few input fields. The user should enter empNo, empName and
    * salary of the new record to be added. When she submits this
    * information, it is sent to this page again. If it is successful, then the
    * user can continue adding new entries. If it is not, then the old data will
    * be displayed, and a warning message will be shown to her.
    %>
    <%@ page import="com.webstore.*,java.io.*,java.util.*,javax.naming.*" %>
    <%
    // Make sure this page will not be cached by the browser
    response.addHeader("Pragma", "no-cache");
    response.addHeader("Cache-Control", "no-store");
    // We will send error messages to System.err, for verbosity. In a real
    // application you will probably not want this.
    PrintStream errorStream = System.err;
    // If we find any fatal error, we will store it in this variable.
    String error = null;
    // In a moment we will check if all columns were passed to this page
    String param_1 = "";
    String param_2 = "";
    String param_3 = "";
    long dptNo = 0;
    String dptName = null;
    // This variable indicates what function of this page is currently used. If
    // this page is called with parameters, then a new entry should be
    // added. In that case this variable is true.
    boolean submitting = false;
    // We will first attempt to get the reference to EmployeeHome from the
    // session. The "list.jsp" page sets this attribute in the session.
    DepartmentHome home = (DepartmentHome) session.getAttribute("DepartmentHome");
    if (home == null) {
    error = "No previous connection to DepartmentBean.";
    } else {
    // Attempt to get all 3 parameters from the session
    param_1 = request.getParameter("DPTNO");
    param_2 = request.getParameter("DPTNAME");
    // If all 3 parameters are specified, then this is probably a submission by
    // this very page. Note that if the user left one of the fields blank, then
    // the corresponding parameter will be "", not null.
    if (param_1 != null && param_2 != null) {
    param_1 = param_1.trim();
    param_2 = param_2.trim();
    submitting = true;
    // In the following variable we will store a (non-fatal) warning message. This
    // message will be displayed in the page, but so will the submission form.
    String warning = null;
    if (submitting) {
    warning = "";
    // If there is an empty param_1, param_2 and/or param_3, then this will be noted
    // in the warning message.
    if ("".equals(param_1)) {
    warning = "Null param_1 specified. ";
    if ("".equals(param_2)) {
    warning += "Null param_2 specified. ";
    // If we don't have a warning message yet, then we will attempt to create
    // a new record.
    if ("".equals(warning)) {
    try {
    dptNo = (long)Long.parseLong(param_1);
    dptName = new String(param_2);
    Department rec = (Department) home.create(dptNo);
    rec.setDptname(dptName);
    // empty columns after insert for effect
    param_1 = "";
    param_2 = "";
    // If we got this far, then there was no problem detected.
    warning = null;
    } catch (Exception e) {
    // Set the warning variable to indicate a problem.
    warning = "Unable to create new entry, caught: \"" +
    e.getClass().getName() + "\", message is: \"" +
    e.getMessage() + "\".";
    // Decide what the title will be.
    String title;
    if (error != null) {
    title = "Error";
    } else {
    title = "com.webstore | Add entry";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
    <HTML>
    <HEAD>
    <TITLE><%= title %></TITLE>
    </HEAD>
    <BODY bgcolor="#FFFFFF">
    <H1><%= title %></H1>
    <%
    // If there was a fatal error, then display the error message
    if (error != null) {
    %>
    <P><BLOCKQUOTE><%= error %></BLOCKQUOTE>
    <%
    // Otherwise display a table with fields to be filled in.
    } else {
    // If there was a warning, then display it.
    if (warning != null) {
    %>
    <TABLE border="1" bgcolor="#FF2222">
    <TR><TD><FONT color="#FFFFFF"><STRONG>Warning: <%= warning %></STRONG></FONT></TD></TR>
    </TABLE>
    <%
    } /* if */
    // Display the table with fields. There are two columns. The left column
    // contains the names of the fields, while the right column contains the
    // fields.
    %>
    <FORM action="dptadd.jsp" method="GET">
    <P><TABLE border="1">
    <TR>
    <TD><STRONG>DptNo:</STRONG></TD>
    <TD><INPUT type="text" name="DPTNO" value="<%= param_1 %>"></INPUT></TD>
    </TR>
    <TR>
    <TD><STRONG>DptName:</STRONG></TD>
    <TD><INPUT type="text" name="DPTNAME" value="<%= param_2 %>"></INPUT></TD>
    </TR>
    <TR>
    <TD colspan="3" align="center"><INPUT type="submit" value="Add this entry"></INPUT></TD>
    </TR>
    </TABLE>
    </FORM>
    <%
    } /* else */
    %>
    <P><TABLE border="1">
    <TR><TD>Back to list</TD></TR>
    </TABLE>
    </BODY>
    </HTML>
    Please guide me..

    Rajive,
    This is the same problem as in your other post:
    sql is running very slow
    So please refer to my answer there.
    Good Luck,
    Avi.

  • How to create Invoice Approval in oracle Payable R12 ?

    Hi All..
    Can any one let me know how to create Invoice Approval in oracle payable R12?

    pl.go thru following link.
    http://oracleerpfunctional.blogspot.in/2012/08/ap-invoice-approval-workflow-setup-and.html
    http://oracleerpfunctional.blogspot.in/2012/08/oracle-approvals-management-ame-setup.html
    http://www.scribd.com/doc/101107120/Oracle-Payables
    HTH
    Sanjay

  • Can someone tell me how to create accounting entries with the account status as error

    Hi,
    Can someone tell me how to create accounting entries with the
    account status as error?
    Thanks!!
    Danny

    It's call fixed/static background, and it is NOT directly support by iweb, you will need post processing either in html or javascript.
    Varkgirl (you need to search the previous forum) and I did it since iweb1:
    try Safari, and scroll: http://www.geocities.com/[email protected]/Links.html
    invisible link? roddy, fishing for info again?

  • Unable to create account for SAPserviceEC6

    Hi,
    I have the above problem when trying to install  6.0.
    We reformat the server clean few times and still have the same error message.
    happened in step 3: Create user for SAP system,
    Log:
    INFO 2009-08-08 22:45:47.991
    Nothing to do. User privileges are an empty string.
    INFO[E] 2009-08-08 22:45:52.593
    FSL-01027  Account user="PHOENIX\SAPServiceEC6" does not exist.
    WARNING 2009-08-08 22:45:57.179
    Unable to get the name of a domain controller for domain .
    ERROR 2009-08-08 22:46:10.923
    FSL-01002  Unable to create account PHOENIX\SAPServiceEC6. HRESULT=0x80005009
    ERROR 2009-08-08 22:46:10.923
    MUT-03025  Caught ESyException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2009-08-08 22:46:10.923
    FCO-00011  The step createAccounts with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_Users_Create_Do|ind|ind|ind|ind|5|0|createAccounts was executed with status ERROR ( Last error reported by the step :Caught ESyException in Modulecall: ESAPinstException: error text undefined.).
    aditional info: We use the same installer , windows server 2008 64bit.
    Why?
    Regards,
    Andy
    Edited by: Andy Quipit Sayus on Aug 9, 2009 6:18 AM

    Hi all,
    Today I faced the similar problem and I found that it is due to I had joined in domain for my server so that the installation could not create users.
    I changed the domain to local( example : WORKGROUP) and the installation could continue. After that you can  join your server to domain again
    To whom it may be concern

  • Unable to create account SAPServiceJ2E._Sneak Preview

    Dear SDN,
                   While installing Sneakpreview (java Full edition) i get the following error as,
    Unable to create account W4Ixxxxxxxx\SAPServiceJ2E.
    Can anyone help me on this, i have seen some threds on it on SDN But still unable to find the exact solution.
    Regards,
    Suresh.

    Hi Suresh,
    The Installation expects the system have an user by name "SAPServiceJ2E" and "j2eadm".
    You can manually go to Control Panel - Administrative Tools - Computer Management - Users and Groups and create users with the name sapservicej2e, j2eadm and a password. (Note: you need admin rights for this)
    Once this done, try doing the installation. this would work fine..
    Regards,
    venkat.

  • Interfacing Accounting entries to Oracle Financials

    Dear Experts,
    We are implementing an IS-Retail project for a client. The strange part of the implementation is that the client will still be using Oracle Financials as the Finance module and SAP FICO module will be just a facilitator.
    Keeping this in mind we need to do the following:
    1) Send all accounting entries created in SAP related to Vendor invoices/credit memos to Oracle Financials.
    2) Send all accounting entries created in SAP related to Customer Billing / debit notes/credit notes to Oracle Financials.
    3) Send all accounting entries created in SAP related to Stock Movement to Oracle Financials.
    For the purpose we have identified following IDocs:
    ACLPAY01 [Posting in Accounting: Incoming Invoice] for 1) above
    This is essentially an inbound IDoc but can be utilised as an outbound too by doing some sort of customizing. But we do not know exactly how as SAP provides 3 sets of function modules for the purpose.
    IDOC_OUTPUT_ACLPAY_CHECK
    IDOC_OUTPUT_ACLPAY_POST
    IDOC_OUTPUT_ACLPAY_PROJECT
    We dont know exactly how to configure so that the outbound ACLPAY01 can be generated whenever a vendor invoice is created.
    ACPJOU01 [Posting in Accounting from Materials Management] for 3) above.
    This is also an inbound IDoc but can be utilised as an outbound too by doing some sort of customizing. As in case of ACLPAY01, SAP also provides 3 sets of function modules.
    IDOC_OUTPUT_ACPJMM_CHECK
    IDOC_OUTPUT_ACPJMM_POST
    IDOC_OUTPUT_ACPJMM_PROJECT
    We dont know exactly how to configure so that the outbound ACPJOU01 can be generated whenever there is a stock movement.
    This has been hinted in this link http://help.sap.com/erp2005_ehp_04/helpdata/en/6c/089d0656c511d18ef20000e8366fc2/content.htm
    We could not identify any outbound IDoc for the purpose of 2) above.
    Any help in this regard will be appreciated.
    -Pankaj

    Thanks for your reply
    We are using 11.5.9.i tried with payable accounting process also.its showing no data.
    Could you please guide me for the solution?
    Thanks
    Gur uPrasad.

  • *Unable to create Service Entry Sheet.*

    Hi,
    Iu2019m trying to create service entry sheet for a service PO but all the item level fields in ML81N screen are appearing in display mode (non-editable) also I cannot see the u201CService Selectionu201D button. So Iu2019m unable to insert/select the service detail and cannot create the entry sheet. If I use the menu path Edit->Service Selection, still cannot adopt services and system gets busy for a substantial period and eventually timed out.
    Please helpu2026
    Iu2019m using ECC 6.0
    Thanks, Pratap

    Service PO: Intangible good that is the subject of business activity and that can be performed internally or procured externally (outsourced).
    -     Services are regarded as being consumed at the time of their performance. They cannot be stored or transported.
    -     Examples of services include construction work, janitorial/cleaning services, and legal services.
    Steps involved in Service PO:
    1.     Define Organizational Status for Service Categories, in IMG - MM - External Services Management.
    2.     Define Service Category, Enter Service Category, Org. Service Category, External Number Assignment
    Without Validation, Acct. Category Reference & Service Category Description.
    3.     Define Number Ranges for Service Category.
    4.   Create Service Master Record (AC03), SAP Menu u2013 Logistics u2013 MM u2013 Service Master, Enter Service Category,
          Base unit of measure, Mat/srv.grp (007 u2013 Service), Division, Valuation class u2013 3200 & Service type.  
    5.     Create Service PO with Acct. Assignment u2013 Cost Center (K), Item Category u2013 D, Material Short Text, Mat. Group, Plant, Entry for Services in Item Level i.e. Service No., Quantity & Gross Price u2013 Save.
    6.     Maintain Service Entry Sheet u2013 ML81N in SAP Menu u2013 Logistics u2013 MM choose PO in ML81N edit and save.
    7.     Then do MIRO from PO reference u2013 Service Entry sheet.
    8.     Collective Release of Service Entry Sheet u2013 ML85
    Organizational Status for Service Category: The organization status indicates the areas in which service master records are used.
    Service Category: The service category is the most important criterion for structuring service master records. It provides a default value for the valuation classes. Service master records can be assigned to number ranges on the basis of the service category.

  • Are there any APIs to create an Invoice in Oracle Payables?

    Hi,
    We have a requirement to import the invoices from the operational systems. We will be making approximately 7,000 checks a day. We need to import all these payments information into Oracle Payables as Invoices and then process the payments out of Oracle payments module. We are on EBS 12.1.1
    Were there any APIs to create the invoices directly in Payables as it comes from custom application? We could use payables open interface but as we would like to integrate the payables module with custom application it would be nice if invoice creates directly in Payables through APIs.
    Thanks,

    In the enterprise edition I am able to create all the below objects.But The job is not running after file arrival.
    Could you please me in this case also.
    BEGIN
      DBMS_SCHEDULER.create_credential(
        credential_name => 'LOCAL_CREDENTIAL',
        username        => 'upncommon',
        password        => '*******');
    END;
    BEGIN
      DBMS_SCHEDULER.create_file_watcher(
        file_watcher_name => 'test_file_watcher',
        directory_path    => '/home/upncommon/pub',
        file_name         => 'sample2.sh',
        credential_name   => 'LOCAL_CREDENTIAL',
        destination       => NULL,
        enabled           => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.create_program(
        program_name        => 'file_watcher_test_prog',
        program_type        => 'STORED_PROCEDURE',
        program_action      => 'PROC_SCH',
        number_of_arguments => 1,
        enabled             => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.define_metadata_argument(
        program_name       => 'file_watcher_test_prog',
        metadata_attribute => 'event_message',
        argument_position  => 1);
    END;
    BEGIN
      DBMS_SCHEDULER.create_job(
        job_name        => 'file_watcher_test_job',
        program_name    => 'file_watcher_test_prog',
        event_condition => NULL,
        queue_spec      => 'test_file_watcher',
        auto_drop       => FALSE,
        enabled         => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.set_attribute('file_watcher_test_job','parallel_instances',TRUE);
    END;
    EXEC DBMS_SCHEDULER.enable('test_file_watcher');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_prog');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_job');

  • Unable to create new entry in table that has no primary key

    Hi
       I have a table which is required to have no primary key (except mandt). After i generate table maintanance, when I go to create new entries, the table control to enter the new values does not appear. When I click on edit->new entries, it goes back to the fields tab of the table. Same when i check through SM30.
    If i maintain atleast one primary key, I am able to get the table control in new entries screen. However the requirement permits no primary keys except mandt. How can this be resolved?
    Thanks
    NM

    Hi,
    THE PROBLEM WITH UR TABLE IS
    YOU HAD DECLARED MANDT AS THE PRIMARY KEY AND THERE IS NO OTHER KEY IN UR TABLE
    iT'S NOT ALLOWING YOU TO ADD NEW ENTRIES BECAUSE MANDT IS THE ONLY PRIMARY KEY IN YOUR TABLE AND IT WILL HAVE A DEFAULT VALUE BASED ON THE CLIENT. SO  IT'S NOT SHOWING YOU THE CREATE NEW ENTRIES OPTION.
    SO TRY TO PUT ONE MORE FIELD AS THE PRIMARY KEY SO THAT YOUR PROBLEM WILL SOLVE VERY EASILY  ALSO MAKE SURE THAT TABLE IS ACTIVATED.
    REVERT IF U NEED SOME MORE HELP
    Thanks &Regards.
    Pavan.

  • Unable to create account

    Hello
    This is my first BB so here goes
    I got my 8900 band new today from orange,
    I have tried to set my account up with the web address they gave me www.blackberry.orange.co.uk
    when i try an do this the following error message comes up
    Cannot create account: this blackberry device is registered with a different carrier
    it also says how to send a registration message which i have done but no message has been sent back
    does anyone have any ideas
    Thanks Darryl 

    Quite honestly, the error that it is registered with a different carrier bothers me in that normally if it is already registered on YOUR carrier, the error is different, stating only that the PIN has already been registered.
    Since you just got the device, I would call and take it back to Orange immediately.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Unable to create accounting doc from invoice

    HI all,
       In creating an accounting doc from an invoice via VF02, i  got an error message:
    Cost Center SGCA/33150 does not exist on 7/7/2010.
    First of all, we don;t have a cost center 3150. 
    Can anyone suggest why I cannot create an accounting doc ?
    Why the message on cost center ?
    thanks
    Joyce

    Hello Joyce
    Identify  the GL accounts that are likely to be posted ( if the posting were to go through). Typically you will have GL accounts for Trade Sales, Tax payable etc. here.
    While displaying them using T code FSS0, click on the' Edit Cost element' tab and go into 'Display Cost Element: Basic screen". Now click on the tab, 'Default Account Assignment' tab and see if  the cost center tab has been filled with '33150. If so, remove it. after checking with your FI colleague. Repeat this for all the accounts (likely) to be posted. I am guessing that is the reason.
    Let me know how it goes.

Maybe you are looking for

  • How to restart a virtual server in WS7

    Does anybody know host restart a virtual server without restarting the whole instance? Thanks.

  • How to edit frame-by-frame and export results in H264?

    I wish to edit some videos and then export them in H264 so I can use them on a website. I have tried to edit with iMovie 08 but can only edit second-by-second. I want to edit frame-by-frame ie to the millisecond. And it appears that iMovie 08 does no

  • Newbie Library file question

    I have an application that fails 50 -60% of the time. The author wants me too remove the Library file that allows me to see AVI movies from my Casio Elxim digital camera. This call to that file allows the use of Quick time to view my camera avi movie

  • JRadioButton Event Handling Help???

    Hello everyone. I have been working on this program for a while now and it is just bugging me. It is a stoplight in which the lights are turned on by radio buttons. I have all the code but for some reason my radio buttons do not work. I have a listen

  • Transfer files from Windows Media Player

    How do I put songs that are in my Windows Media Player library on my itunes library?