Doing a Trace on the ARXADLMT Approval Limits form No Select statement i

Hi I want to see the all the SQL statements executed when I open the AR Approval Limits form(ARXADLMT). So I enabled the TRACE from the Menu(supplying password) , then opened then form and did a Query-> Execute. (The base table for the block is AR_APPROVAL_USER_LIMITS.Then I turned off the trace exited applications and went to the USER_DUMP_DEST directory of the database. From here tkprofed the latest trace file .When I look at the output file I cant see any Select statements at all. At least I should be seeing a select on the base table AR_APPROVAL_USER_LIMITS. Maybe I havent understood this process well enough- what am I doing wrong.Why is the trace not containing the select statement?
Edited by: [email protected] on 13/06/2010 03:18

>
... From here tkprofed the latest trace file ...
>
Pl post details of your OS and EBS versions. The latest trace file may not be the correct one. Pl search the trace files for "AR_APPROVAL_USER_LIMITS" to find the right trace file.
How To Trace From Form, Report, Program And Others In Oracle Applications (Doc ID 130182.1)
https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=130182.1&h=Y
HTH
Srini

Similar Messages

  • Steady green light on A1084. Airport Utility 5.6 says set up is complete.   Airport Express base station does not appear in the menu bar, so I cannot select it.  Is there a fix?

    Steady green light on A1084. Mac OS X 10.7.5. IMac. Verizon DSL Actiontec GT704-WGB modem. Airport Utility 5.6 says set up is complete.   Airport Express base station does not appear in the menu bar, so I cannot select it and send a signal to airport express to play airtunes through my stereo amplifier.  Is there a fix?

    I plugged a model A1034 Airport Extreme Base Station into the Verizon DSL Actiontec GT704-WGB modem with an ethernet cable and now the AirPlay icon appears in the Itunes window immediately to the right of the volume control and I can select it and play Airtunes wirelessly through the A1038 Airport Express Base Station in another room connected to a stereo amplifier by a Monster mini-to-RCA left/right audio cable running from the output jack on the A1034 Airport Express Base Station into the CD jacks on the amp.  The problem is that I have to select the Apple Network Airport Express Base Station as my network in order to select the Airport Express Base Station when I click the AirPlay icon, which means I have no Internet signal to the Imac. If I select the Airport Extreme Base Station or the Verzion modem as my network, then I have an Internet signal to the Imac, but the Airport Express Base Station is grayed out when I click on the AirPlay icon, so I cannot select the Airport Express Base Station and send tunes to the Airport Express.  It would be nice to play Airtunes while simultaneously accessing the Internet.  I don't understand your question about what program I am using for which I require AirPlay.  I am not learned about computers in general, and even less so about Macs than PCs.  I thought the program I was running was Itunes, and there was no separate program to run to use AirPlay for the purpose of sending a signal from the Itunes on the Imac to the A1084 Airport Express base station in a another room, and then out as described above to the stereo amplifier to listen to Itunes music remotely in the other room, without any kind of cable, wire, etc., connecting the Imac to the stereo amplifier.  I would guess that the most common use for the A1084 is to play Itunes through a stereo in another room without the need to run wires from the computer to the stereo.  I realize it would be easy simply to run a very long mini-to-RCA left/right audio cable across the floor connecting the Imac to the amp without the need to use AirTunes, Airplay or any kind of AirPort, but it would be both unsightly and a tripping hazard.

  • How to find the number of fetched lines from select statement

    Hi Experts,
    Can you tell me how to find the number of fetched lines from select statements..
    and one more thing is can you tell me how to check the written select statement or written statement is correct or not????
    Thanks in advance
    santosh

    Hi,
    Look for the system field SY_TABIX. That will contain the number of records which have been put into an internal table through a select statement.
    For ex:
    data: itab type mara occurs 0 with header line.
    Select * from mara into table itab.
    Write: Sy-tabix.
    This will give you the number of entries that has been selected.
    I am not sure what you mean by the second question. If you can let me know what you need then we might have a solution.
    Hope this helps,
    Sudhi
    Message was edited by:
            Sudhindra Chandrashekar

  • Want to backup my iphoto library to ext. drive, but it does not appear in the picture folder. When I select the picture folder iphoto opens, nothing to drag. Help please? 2013 iMac

    I want to back up my iphoto library to my external drive, but can't find it it in my computer's tree. When I click pictures in the tree, it launches iphoto and there is no file name or icon to drag. What am I missing? I'm sure it is simple what ever it is. Help please?

    now that you have found your iPhoto library you can drag it to the external drive to backup it up
    If you launch iPhoto does it work properly?
    However, when I tried to relocate it to the pictures folder, I get a message that I can't add the library because the folder is defective or damaged.
    Exactly what are you doing? what is the exact error message?
    And as to
    Should I trash the pref file for pictures folder and try again?
    I have no idea what you are speaking of - files and folers do not have Pref files - only applications have Pref files
    LN

  • How can i retrieve the output of procedure using a select statement ?

    Hi every one.
    this mite be dumm ?
    how can i use the output of the a procedure containing multiple rows of data in a select statement ?

    This is not  a SQL Developer question. You should ask it in the SQL and PL/SQL forum.
    The short answer is you can't.  Sounds is if you are trying to use MSSQL techniques in oracle. Learn oracle techniques

  • How imrove the peformance of VBFA table in select statements.

    Hi,
    whenever execute program in production, program execution will taking long time due to below select statement.
    Please help me how we imrove performance?
    SELECT vbelv vbeln posnn vbtyp_v
    FROM vbfa
    INTO TABLE l_i_vbfa
    FOR ALL ENTRIES IN l_i_bill_cs
    WHERE vbeln EQ l_i_bill_cs-vbeln
    AND posnn EQ '000010'
    AND vbtyp_n IN ('K', 'H'). "MOD-024--
    AND vbtyp_v IN ('K', 'H'). "MOD-024++
    SORT l_i_vbfa BY vbeln vbtyp_n.
    Regards,
    Naidu
    Moderator message: third time I have to remind you: for performance problems with VBFA table please search for previous discussions of the same topic
    Edited by: Thomas Zloch on Nov 9, 2010 12:41 PM

    Hi Naidu,
    ranges: r_vbtypv type vbfa-r_vbtyp_v.
      CLEAR r_vbtypv.
      r_vbtypv-option = 'EQ'.
      r_vbtypv-sign   = 'I'.
      r_vbtypv-low    = 'K'.
      APPEND r_vbtypv.
      CLEAR r_vbtypv.
      r_vbtypvl-option = 'EQ'.
      r_vbtypv-sign   = 'I'.
      r_vbtypv-low    = 'H'.
      APPEND r_vbtypv.
    sort l_i_bill_cs by vbenl.
    if not l_i_bill_cs[] is initial.
    SELECT vbelv vbeln posnn vbtyp_v
    FROM vbfa
    INTO TABLE l_i_vbfa
    FOR ALL ENTRIES IN l_i_bill_cs
    WHERE vbeln EQ l_i_bill_cs-vbeln
    AND posnn EQ '000010'
    AND vbtyp_v IN r_anlkl.
    endif.
    SORT l_i_vbfa BY vbeln vbtyp_n.
    Thanks,
    Nelson

  • Integrating the two parts of a union select statement...

    Hi everybody ,
    I have a query such as the one follows...:
    SELECT TMHMA , DATES , COUNT(EXETASI)
    FROM PARAGG_LAB_TESTS_LOCAL_MS PAR_TESTS_MS , PARAGG_LAB_TESTS_LOCAL PAR_TESTS_DET
    WHERE PAR_TESTS_MS.BARCODE=PAR_TESTS_DET.BARCODE
    GROUP BY TMHMA , DATES
    UNION
    SELECT TMHMA , DATES , SUM(NUM_TESTS)
    FROM NUM_TESTS_PROFILE ,
    PARAGG_LAB_PROFILES_LOCAL_MS PAR_PROFILE_MS , PARAGG_LAB_PROFILES_LOCAL PAR_PROFILE_DET
    WHERE PAR_PROFILE_MS.BARCODE=PAR_PROFILE_DET.BARCODE AND
    PAR_PROFILE_DET.PROFILE=NUM_TESTS_PROFILE.CODE_PROFILE
    GROUP BY TMHMA , DATES
    Is this possible to integrate the two parts of the above union sql statement into one (without using union) and compute the result of COUNT(EXETASI)+SUM(NUM_TESTS)..????
    Thanks , a lot
    Simon

    Hi , Jameel
    it is not correct because the columns more than one table has the columns TMHMA and DATES . To indicate this , i rewrite the query...
    SELECT PAR_TESTS_MS.TMHMA , PAR_TESTS_MS.DATES , COUNT(EXETASI)
    FROM PARAGG_LAB_TESTS_LOCAL_MS PAR_TESTS_MS , PARAGG_LAB_TESTS_LOCAL PAR_TESTS_DET
    WHERE PAR_TESTS_MS.BARCODE=PAR_TESTS_DET.BARCODE
    GROUP BY TMHMA , DATES
    UNION
    SELECT PAR_PROFILE_MS.TMHMA , PAR_PROFILE_MS.DATES , SUM(NUM_TESTS)
    FROM NUM_TESTS_PROFILE ,
    PARAGG_LAB_PROFILES_LOCAL_MS PAR_PROFILE_MS , PARAGG_LAB_PROFILES_LOCAL PAR_PROFILE_DET
    WHERE PAR_PROFILE_MS.BARCODE=PAR_PROFILE_DET.BARCODE AND
    PAR_PROFILE_DET.PROFILE=NUM_TESTS_PROFILE.CODE_PROFILE
    GROUP BY TMHMA , DATES
    and the results
    TMHMA DATES COUNT(EXETASI)
    11 19/8/2005 1
    11 15/9/2005 4
    11 15/9/2005 57
    11 16/9/2005 58
    11 10/10/2005 4
    11 10/10/2005 72
    11 14/10/2005 3
    11 14/10/2005 160
    11 7/4/2006 2
    11 7/4/2006 53
    11 8/4/2006 2
    11 8/4/2006 61
    11 9/4/2006 2
    11 9/4/2006 31
    209 30/4/2006 3
    209 30/4/2006 31
    209 8/5/2006 4
    209 8/5/2006 31
    88 20/10/2005 2
    88 20/10/2005 59
    and the expected results.....
    TMHMA DATES COUNT(EXETASI)
    11 19/8/2005 1
    11 15/9/2005 61
    11 16/9/2005 58
    11 10/10/2005 76
    11 14/10/2005 163
    11 7/4/2006 55
    11 8/4/2006 63b]
    11 9/4/2006 [b]33
    209 30/4/2006 34
    209 8/5/2006 35
    88 20/10/2005 61
    Thanks , a lot
    Simon

  • Just updated to 11.1.3.8 and Airplay does not work. The icon is not there to select

    I use a Gear4 series 1 wireless speaker to stream music to my lounge. I have just bought a Gear4 series 3 speaker to do the same to my dining room but after upgrading Itunes the Airplay logo has vanished so nothing works. The series 1 is still connected to my home network but my iphone, ipad and pc cant see it any more

    Hey fred.bloggs,
    Thanks for the question. I understand you are experiencing issues with AirPlay and a third-party device. The following resource may provide a solution:
    iTunes: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/ts5209
    Thanks,
    Matt M.

  • How to get the sum in BSEG table using select statement

    hai all
    i made the internal tale "itab1" .. i want to get the som  feild of  DMBTR in BSG table my code is here but its not working gave som error massage (Aggregate functions and the addition DISTINCT are not supported in field lists for pooled and cluster tables.)  plz tel me how should i do it..... i want to get the som of that feild....          
    loop at itab1
         SELECT sum( DMBTR  ) from bseg INTO itab1-DMBTR141_45
             where GJAHR = itab1-GJAHR
             and   BELNR = itab1-BELNR.
    endloop.
    regard
    nawa

    SELECT BELNR GJAHR SHKZG DMBTR
                 from bseg
                 INTO table it_bseg
                 for all entries in itab1
                 where GJAHR = itab1-GJAHR
                   and BELNR = itab1-BELNR.
    loop at it_bseg.
        IF it_bseg-shkzg = 'H'.
          it_bseg-dmbtr = it_bseg-dmbtr * ( -1 ).
        ELSE.
          it_bseg-dmbtr = it_bseg-dmbtr.
        ENDIF.
        MODIFY it_bseg.
    endloop.
    loop at it_bseg.
    READ TABLE itab1 with key belnr = it_bseg-belnr
                               gjahr = it_bseg-gjahr.
    if sy-subrc = 0.
    collect it_bseg into it_bseg_amount.
    endif.
    endloop.
    U can use the collect statement
    Regards
    Gopi

  • Limiting results for select statement against view in "apps"

    Hello (again),
    Our application queries the 'apps.fnd_concurrent_programs_vl' view in order to retrieve concurrent program names (long names). We also query 'apps.fnd_application' in order to retrieve application names.
    I'm wondering, is there a way to limit the results of these based on security? Maybe, based on responsibility or user...?
    I would think if I had added a new EBS user, it would also add a corresponding DB user, which would only have access to those items that its responsibility allowed it to access, however I suppose this isn't really the case.
    Is there some way?
    EDIT: I would also like to know if there's a similar thing for log files (well, their locations at least), but I suppose if you can answer my previous question, it might also answer this one.
    Edited by: asci on Sep 20, 2012 1:01 PM

    asci wrote:
    Hello (again),
    Our application queries the 'apps.fnd_concurrent_programs_vl' view in order to retrieve concurrent program names (long names). We also query 'apps.fnd_application' in order to retrieve application names.
    I'm wondering, is there a way to limit the results of these based on security? Maybe, based on responsibility or user...?
    I would think if I had added a new EBS user, it would also add a corresponding DB user, which would only have access to those items that its responsibility allowed it to access, however I suppose this isn't really the case.
    Is there some way?
    EDIT: I would also like to know if there's a similar thing for log files (well, their locations at least), but I suppose if you can answer my previous question, it might also answer this one.
    Edited by: asci on Sep 20, 2012 1:01 PMHere is the query you need:
    SQL> SELECT *
    FROM FND_CONCURRENT_PROGRAMS_VL P,
    FND_CONCURRENT_REQUESTS R,
    FND_USER U
    WHERE P.CONCURRENT_PROGRAM_ID = R.CONCURRENT_PROGRAM_ID
    AND P.CREATED_BY = U.USER_ID;Thanks,
    Hussein

  • Picking the right values from tables - SQL (select statement)

    Hi everyone,
    I'm facing the litlle(?) problem in Oracle environment.
    Let me explain:
    I have two tables.
    TABLE 1
    Id1 | Val1 | Id2 | Val2
    A | 44 | B | 36
    B | 36 | A | 44
    TABLE 2
    Id | Name
    A | New York
    B | Seattle
    I need to get from those tables, using SQL statement, result like this:
    Id1 | Val1 | Name1 | Id2 | Val2 | Name2
    A | 44 | New York | B | 36 | Seattle
    NOTE !! Very important!! If in table 1 we have crossed the same values in fields IdX and ValX in two rows (like in example)- just one of them should be presented as a result.
    I'm afraid it's a bit too complex. You, guys are my last hope.
    Looking forward for any solutions.
    Thanks in advance!

    jeneesh wrote:
    This can give you a startJaneesh, the OP specified that the duplication was across the ID and the VAL columns, but your solution only checks the ID's..
    SQL> ed
    Wrote file afiedt.buf
      1  with t1 as (select 'A' as id1, 44 as val1, 'A' as id2, 36 as val2 from dual union all
      2              select 'A', 36, 'A', 36 from dual)
      3      ,t2 as (select 'A' as id, 'New York' as name from dual union all
      4              select 'B', 'Seattle' from dual)
      5  -- END OF TEST DATA
      6  select distinct greatest(id1,id2) id1,
      7         case when id1 > id2 then val1 else val2 end val1,a.name name1,
      8         least(id1,id2) id2,
      9         case when id1 < id2 then val1 else val2 end val2,b.name name2
    10  from t1 t,t2 a,t2 b
    11  where greatest(id1,id2) = a.id
    12* and least(id1,id2) = b.id
    SQL> /
    I       VAL1 NAME1    I       VAL2 NAME2
    A         36 New York A         36 New York
    SQL>With this data I would have expected both rows to be returned as there is a difference in the val columns..
    SQL> ed
    Wrote file afiedt.buf
      1  with t1 as (select 'A' as id1, 44 as val1, 'A' as id2, 36 as val2 from dual union all
      2              select 'A', 36, 'A', 36 from dual)
      3      ,t2 as (select 'A' as id, 'New York' as name from dual union all
      4              select 'B', 'Seattle' from dual)
      5  -- END OF TEST DATA
      6      ,t3 as (select distinct id1, val1, id2, val2
      7              from
      8                (
      9                 select decode(switch,1,id2,id1) as id1
    10                       ,decode(switch,1,val2,val1) as val1
    11                       ,decode(switch,1,id1,id2) as id2
    12                       ,decode(switch,1,val1,val2) as val2
    13                 from (select id1, val1, id2, val2
    14                             ,case when id1||val1 > id2||val2 then 1 else 0 end as switch
    15                       from t1)
    16                )
    17             )
    18  --
    19  select t3.id1, t3.val1, t2_1.name
    20        ,t3.id2, t3.val2, t2_2.name
    21  from   t3 join t2 t2_1 on (t2_1.id = t3.id1)
    22*           join t2 t2_2 on (t2_2.id = t3.id2)
    SQL> /
    I       VAL1 NAME     I       VAL2 NAME
    A         36 New York A         36 New York
    A         36 New York A         44 New York

  • Auditors and PO Approval Limits

    We are in process of an internal audit. One of the advance questions is regarding PO/PR approval limits in Oracle. The auditors have requested an Oracle Report detailing the Buyers Approval limits.
    I have not found a standard report. Would some one be able to advise a method of pulling this data easily, or on demand based on Auditors and Users requests. I would like the ability to view all levels, specific jobs or persons. But any method would be apprciated. (we use employee/supervisor as approval method)
    Is this possible without customizing?
    Tom

    You can obtain some of the data from using the Tools > Export Data option on the Position Hierarchy screen.
    Refer to Metalink note: 280495.1 and Metalink Note: 360105.1.
    Hope this helps,
    Sandeep Gandhi

  • SETTING UP APPROVAL LIMITS IN AR IN VISION OPERATIONS

    Whilst in the AR Corporate Super User responsibility in Vision Operations, I defined approval limits for a an application user with a currency of GBP and an amount ranging from £5000 to£6000 and then saved it. Later, I then decided that I wanted to change the amounts from lets say £10,000 to £20,000. Whwn I call up the user in the Approval limits window in AR and I try to click in the currency filed I get the following message:
    APPS_AR_11290 The approval limit for the user (eg Fred)for the currency GBP already exists. How do I change the amounts
    and what reports can I run to see the various users and their approval limits? please advise me

    you need to use AR approval limits form for the apropriate organization.
    merci,
    iguru

  • Field ZZBUDAT is delta-relevant, but does not exist in the field list

    Hi All,
    I have created a Generic DataSource on a View.Now there is a situation ,i need to add a Date field form some other table.
    So i have enhanced the datasource now that date is coming in my datasource.
    But when i tried to make delta on that date field its showing error-
    Field ZZBUDAT is delta-relevant, but does not exist in the field list
    Message no. R8279
    Diagnosis
    The DataSource uses field ZZBUDAT for specifying the delta. In the DataSource field list, however, the field does not occur
    Now how i can make this field dalta relevant?
    Thanks,
    Piyush

    Piyush,
    I think the message in SAP is quite clear....
    If the field ZZBUDAT does not exist in the view ... how do you expect the datasource to know which records have changed...?
    The delta relevant field SHOULD be in the view - else there is no way the extractor can identify the changed records ...
    Please remember that the Generic extractor is a simple select statement with a where clause on the delta relevant field and nothing else ... if you want the changed on field to come from another table - then you need to write a function module extractor to do this...
    The order of processing is that - the view fields are processed first - then the enhanced fields are processed followed by the user exits...

  • Use of the "updlock" hint with update and insert statements

    I have inherited some stored procedures and am trying to figure out why the developers decided to use the "updlock" hint on many of the update and insert statements. I have looked around everywhere and have found only one explanation of why "update...with
    (updlock)" can be useful, namely when a table has no clustered index:
    http://www.sqlnotes.info/2012/10/10/update-with-updlock/ I have found nothing yet that mentions why "insert into...with (updlock)" might be used. I understand why the hint
    might be useful on select statements in some cases, but if all of the tables have clustered indexes, is there any good reason to use it on update and insert statements?
    Thanks,
    Ron
    Ron Rice

    This form of deadlock error can occur on a table which has a clustered index.
    If you are doing updates on a table which has a clustered index and that table also has a nonclustered index and the nonclustered index is used to find the row to update you can see this type of deadlock.  For example create a table with a clustered
    primary key index and a nonclustered index by running
    Create Table Foo(PK int primary key identity, OtherKey varchar(10), OtherData int);
    go
    Insert Foo Default Values;
    go 10000
    Update Foo Set OtherKey = 'C' + Cast(PK As varchar(10))
    Create Unique Index FooIdx On Foo(OtherKey);
    That creates a table with 10000 rows, a clustered index and a nonclustered index.  Then run
    Begin Transaction
    Update Foo Set OtherData = 1 Where OtherKey = 'C5'
    That will use the FooIdx index to find the row that needs to be updated.  It will get a U lock on the index row in the FooIdx index, then an X lock on the row in the clustered index, update that row, then free the U lock on FooIdx, but keep the X lock
    on the row in the clustered index.  (There is other locking going on, but to simplify things, I'm only showing the locks that lead to the deadlock).
    Then in another window, run
    Begin Transaction
    Update Foo Set OtherData = 2 Where OtherKey = 'C5'
    This will get a U lock on the index row in the FooIdx index, then try to get an X lock on the row in the clustered index.  But that row is already exclusively locked, so this second window will wait holding a U lock on FooIdx row and is waiting for
    an X lock on the clustered index row.
    Now go back to the first window and run
    Update Foo Set OtherData = 3 Where OtherKey = 'C5'
    This will once again try to get the U lock on the FooIdx row, but it is blocked by the U lock the second window holds.  Of course the second window is blocked by the X lock on the clustered index row and you have a deadlock.
    All that said, I certainly do not routinely code my updates with UPDLOCK.  I try to design databases and write code so that deadlocks will be rare without holding excessive locks.  The more locks you hold and the longer you hold them, the more
    blocking you will get and the slower your system will run.  So I write code that if a deadlock exception occurs, it is properly handled.  Then if too many deadlocks occur, that is the time to go back to the code to see what changes are needed to
    decrease the number of deadlocks (one way to do that may be to get locks earlier and/or hold them longer. 
    But I wouldn't worry much about this form of deadlock.  It is, in my experience, vary rare.  I don't recall ever seeing it in a production environment.
    Tom

Maybe you are looking for