How to approve the transaction adjustment

Dear all,
I was doing an adjustment to a transaction of the AR, but once I finished it, activity showed as "pending approval". How do I know who is approving and how?

The following is taken from the minutes of adjustment approval
----------------------------------------


Customer name: Business World customer number: 1608

11774 Bill June 20, 10 Ap line attr pending 501537830 16 June 10 < 50.00 >

: -----------------
Sum of USD for approval pending in a < 50.00 > currency
=================


Thank you and best regards,
Jerome

Hello Jerome. Answer your questions:

1. any user, whose approval limited against my activity amount and the currency may approve?
Yes

2. where we can make the approval for the wait for the approval activity?
Access/Control/Adjustments/Approve adjustments.

I hope this helps.

Octavio

Tags: Oracle Applications

Similar Questions

  • Hi I need to know how to expand the curves adjustment Panel. For example, the curves that I need to enlarge the graphic part, so I could show on a screen at the school. Thanks, Phil

    Hi I need to know how to expand the curves adjustment Panel. For example, I need to enlarge the graphic part so that I can view on a screen at the school and work from this Panel to expand. Thanks, Phil

    You can not. At least, not directly Ben Photoshop. For example, this can be done in Gimp and Photoline, and I had hoped that developers of Photoshop team would have done this allowance now. But no, we're still stuck with a tiny curved panel, which is a real shame, because in other applications, the user can be more precise with the curves.

    If you don't need to show close-ups during class time, use Zoomit in Windows, or turn on the Magnifier in the accessibility on a Mac option.

    https://TechNet.Microsoft.com/en-us/Sysinternals/Zoomit.aspx

  • How to stop the transaction rollback

    Hello

    I created a bpel process that will make the PB data insertion, but I get the below error while inserting data. can someone please resolve this problem:

    Error log:

    faultName: {{http://schemas.oracle.com/bpel/extension} remoteFault} messageType: parts of {{http://schemas.oracle.com/bpel/extension} RuntimeFaultMessage}: {{summary = < summary > Exception is is produced when the link has been invoked. Exception occurred during invocation of the JCA binding: "JCA binding run reference"insert"operations have to: DBWriteInteractionSpec Execute Failed Exception." insertion failed. The descriptor name: [AddMoreBikes.Bikes]. Caused by java.sql.SQLException: cannot call Connection.commit in the distributed transaction. Transaction manager will commit the resource manager when the distributed transaction is committed... Check the logs for the record output full DBAdapter before this exception. This exception is considered as reproducible, probably due to a communication failure. To be classified as not reproducible instead, add property nonRetriableErrorCodes with the value '0' for the deployment descriptor (i.e. weblogic - RA.Xml). Auto retry a reproducible fault set composite.xml for this invoke these properties: jca.retry.interval, jca.retry.count and jca.retry.backoff. All properties are integers. ". The called JCA adapter threw an exception of resource. Please review the error message above carefully to determine a resolution. < / Summary >, detail = < detail > cannot call Connection.commit in the distributed transaction. Transaction manager will commit the resource manager when the distributed transaction is posted. {< / detail >, code = < code > < code > 0}

    Published by: Ajay8706 on February 19, 2013 22:44

    Hello

    To resolve this issue, go to the deployments on the weblogic console and open DBAdapter. Go to the Connection - Pool of outbound connections where the jndi is configured to talk to the jdbc data source.
    Expand the javax.resource.cci.ConnectionFactory, and then select the case of connection.
    There you can see that the name of data source is configured in the dataSourceName row while it must be configured in the xaDataSourceName line. This is because the data source, you must have defined as XA (confirmed by going on the transaction tab in jdbc configuration)

    Thank you
    Durga

    -It is considered good etiquette to the answerers rewards with points (as "useful" - 5 pts - or 'correct' - 10pts).

  • How to print the transaction validation sql?

    All,

    With the help of Studio Edition Version 11.1.1.3.0.

    I got a violation of primary key constraint that I can't quite understand. I can insert fine lines and everything looks very much like the page refreshes, but when I sign, I get the error. I would like to know what is committed to the database. I understand the problems normal display when your association is not composite: http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcadveo.htm#CEGJAFCF, but in my case, this one is.

    How to print the SQL that is generated when getDBtransaction.commit () is called?

    That should tell me why I get a command validation error (if that is what it is).

    Thank you
    Will be

    Add - Djbo.debugoutput = console for the properties of the project

  • How to hold the Transaction BPEL

    I need to hold the transaction flow bpel until the date stated in the XSD application. is it possible.
    It should be like a dynamic wait until time.it is possible with the waiting activity but there are options

    use choose the activity and onalarm management, or create a human task and wait until the task expires and then start the treatment

  • How to complete the transaction id?

    I have this request:
    SELECT accountid,documentid
    FROM int_invoice_refund_dp_vw 
    WHERE 
    accountid  IN (
    SELECT customer_id FROM deactive_customer)   
    AND invamt &lt;0  
    AND documentid IN (
    SELECT doc_id FROM(
    SELECT (CASE id_type
    WHEN 4 THEN companyid
    ELSE nric
    END) AS doc_id
    FROM customer_all)
    GROUP BY doc_id HAVING COUNT (doc_id) &gt; 1)
    
    {code}It retrieve the following values:
    {code:java}
    _ACCOUNTID_     _DOCUMENTID_
    1              S1111111B
    2              S2222222G
    3              S3333333Z
    4              S3333333Z
    4              S3333333Z
    5              S4444444B
    6              S4444444B
    7              S4444444B      
    {code}How do I actually populate my transaction ID as follows using SQL or PL/SQL code?
    {code:java}
    _ACCOUNTID_     _DOCUMENTID_  _TRANS_ID_
    1              S1111111B       1
    2              S2222222G       2
    3              S3333333Z       3    
    4              S3333333Z       3
    4              S3333333Z       3
    5              S4444444B       4
    6              S4444444B       4
    7              S4444444B       4
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    Try the following:

    SELECT
    accountid,
    documentid,
    dense_rank() over (PARTITION by 1 order by documentid) transaction_id,
    count(documentid) over  (PARTITION by documentid order by documentid) count_no,
    row_number() over  (PARTITION by documentid order by documentid) seq_no
    FROM int_invoice_refund_dp_vw
    WHERE
    accountid  IN (
    SELECT customer_id FROM deactive_customer)
    AND invamt <0
    AND documentid IN (
    SELECT doc_id FROM(
    SELECT (CASE id_type
    WHEN 4 THEN companyid
    ELSE nric
    END) AS doc_id
    FROM customer_all)
    GROUP BY doc_id HAVING COUNT (doc_id) > 1)
    
  • How to recognize the transaction update/correct in the assignment table

    Hi experts,
    all by looking at the data in the PER_ALL_ASSIGNMENTS_F table, how can we know which recording has been corrected and updated? I mean on the attribution of the screen if change us something, then click on 'save' button system give us 2 options (update/Correction). How can we know only at the database level?

    Correct me if I'm wrong, when we "Update", then the system will insert the new record in the assignment table. When we do the '' Correction '', just update of system-changed column in the assignment table. However, if the assignment table, we wonder, how can we know which record was of "Correction", whose recording was "updated"?


    Oracle Application: 11.5.10.2
    Database: 9.2.

    Thanks in advance
    Hieu

    Published by: user122479 on May 30, 2013 10:51

    Dear Hieu,

    There is a feature seeded for follow-up date of audit audit trail tables.

    You can google a few details: http://apps2fusion.com/apps/oracle-hrms/oracle-hr/hrms/82-audit-trail-in-oracle-hrms

    Basically, you can choose the table and the columns that you want to audit, and then submit a competitor who tells you that - update of the line, previus and current value and so on.

    concerning
    Giuseppe

  • How to propagate the transaction display full size?

    Hi Experts

    When I create my file InDesign on MAC OS, it is not full size.

    I want to put it at its actual size by using script in sight.

    I'm trying

    indesign #target

    myDocument var = app.activeDocument;

    var MyLayout = myDocument.layoutWindows ();

    var MylayoutWindow = MyLayout.lastItem ();

    MylayoutWindow.zoom = 2053206906;

    But not to Document in real size.

    How to pay with script?

    Thank you

    In the real CS6 size is 100%:

    app.activeWindow.zoomPercentage = 100;

  • How to stop the "Auto adjustment in progress" message at startup

    Hello

    I use a HP 2311 x monitor and when I run the "Automatic current setting" message flashes twice until my desktop appears.  I can't stop this message from appearing?

    Thank you and best regards,

    2harts4ever

    "... enough Said." Keep smiling because I'm smiling too! »

    Hi Mister_Do,

    Just, I solved my problem by running the HP Support Assistant, then his program of troubleshooting for monitors.  After that he did test my monitor and its settings everything seems to be back to normal... that is to say, no more messages "automatic current setting.

    Thank you and best regards,

    2harts4ever

  • How to use the linear adjustment

    can you suggest vi that can be used for linear editing

    Keep it all in one place: http://forums.ni.com/ni/board/message?board.id=170&thread.id=419887&jump=true

  • How to estimate the disk space?

    Oracle 10.2.0.4.
    In order to build the new database on Solaris server, I need estimating disk space so that I can ask disk space. How to estimate it? Based on the current transaction? How to find the transaction under current database?

    Help, please.

    Thank you

    S.

    ski123 wrote:
    Oracle 10.2.0.4.
    In order to build the new database on Solaris server, I need estimating disk space so that I can ask disk space. How to estimate it? Based on the current transaction? How to find the transaction under current database?

    Help, please.

    Thank you

    S.

    First of all, you must know the structure of your tables. Using the table definition, you can quite easily calclulate the average row size. Then multiply by the expected number of rows. Do this for all tables. Factor in the fact that the space allocated by degrees. So, if you have a measurement of 10 MB size, the first line you insert will cause 10 MB drive to eat, but then the "n" next lines will cause no additional disk consumption (up until the 10 MB is consumed) because there is already a 10 MB preallocated in the scope. Factor in the use of the pct adversely affect use of the measure. Factor to a value of loot to take account the fact that everything is a riddle. Some people recommend a haul of 100%.

    And all this is just for the data files for the tables. Go through the same exercise for the index. Add the backupsets and archivelog files.

    Published by: EdStevens on October 27, 2010 17:11

  • Activate the transaction log for isqlplus sessions?

    Hello

    How to enable the transaction log for isqlplus sessions.

    IM using oracle 9i. I want to know what are all the sql statements executed through plu isql.

    Good help will be appreiciated.

    Concerning
    SankarMN

    SankarMCA wrote:
    Hello

    How to enable the transaction log for isqlplus sessions.

    IM using oracle 9i. I want to know what are all the sql statements executed through plu isql.

    Good help will be appreiciated.

    Concerning
    SankarMN

    You can enable auditing or go with LOGON trigger. LOGON trigger must check if the session is from isqlplus. If so, then enable tracing for this session.

  • How to set the pressure necessary for the keys on the keyboard? I adjusted it 2 years when I had my Macbook Air, but I forgot how I did it. In my opinion, only a touch of F has been used.

    How to address the need to pressure for keys? I've adjusted it 2 years ago when I got my Macbook, but I forgot how. In my opinion, only a touch of F has been used.

    I don't know what you are referring. You can't 'adjust the need to pressure for the keys. The keyboard is what it is. The key must be pressed far enough for electric contact in key switches. The keys are not adjustable in this way.

  • How to access the tab 'Save all' when I close several jpeg files that have been adjusted with the "color adjust tool? He is currently making me close and save one at a time. Thanks for any help :)

    How to access the tab 'Save all' when I close several jpeg files that have been adjusted with the "color adjust tool? He is currently making me close and save one at a time.  I've just upgraded to El Capitan.  Thanks for any help :)

    I assume that you use the application overview.

    I can't find an answer to back up everything, but a workaround could be while the file menu options are visible, press the option key

    and the point of the window will become close, if you click on that dialogue will ask you if you want to restore the changes or save

    pressing Save will close the image with the changes and then move to the next image and so on.

  • How to calculate the polynomial graphic adjustment of waveform

    Hi all

    I am new to lab - view so would need a little assistance in one of the problem I have right now.

    My problem is: how to calculate the polynomial graph of waveform data adjustment? I need to convert the waveform to XY graph data, and then use the polynomial vi made integrated to calculate the fitting?

    Detail: My problem is that I have waveform graph, I calculate the vertices and the Valley, but because of the noise, my peaks and Valley detection is sometimes not exact, so to smooth the chart that I must apply the polynomial fit.

    If anyone can help me in this, I'll be very grateful.

    Thanks in advance

    Hi Omar,.

    have you seen the suggestion of Lynn above?

    You already have the values of Y (your table). Now, you need build the table of X as indicated, only to replace the value of dt with your spacing from point to point. Somewhere in your code, you know that the value that you have an x-axis indicated in milliseconds...

Maybe you are looking for