What's the query to find all requests' name of all modules EBS R12.1.3??

What's the query to find all requests' name of all modules EBS R12.1.3??
Regards:
Shahzad M. Saleem

Dear rioman !!!
Thanks!!
Regards:
Shahzad M. Saleem

Similar Messages

  • What is the query for Accounts Payable Trial Balance (APXTRBAL) in 11.5.10?

    Hi Guys,
    What is the query for Accounts Payable Trial Balance (APXTRBAL) in 11.5.10?
    I have to write an AP Invoice Aging Report in Discoverer to show all unpaid invoices that have been transferred into GL... Business wants it to match one-to-one with the AP Trial Balance standard report...
    Business wants to run the report for any date in a past...
    The report has two parameters:
    As Of Date - the same as As of Date for the AP Trial Report
    Trial Balance Run Date - the date when Trial Balance was run...
    Conditions are:
    TRUNC(Invoice Date) <=TRUNC(NVL(TO_DATE(:As Of Date),SYSDATE))
    TRUNC(NVL(Payment Date,'01-JAN-5000')) > TRUNC(NVL(TO_DATE(:As Of Date),SYSDATE))
    TRUNC(Invoice Creation Date) <= TRUNC(NVL(TO_DATE(:Trial Balance Run Date),SYSDATE))
    Distr Accounting Date <= TRUNC(NVL(TO_DATE(:As Of Date),SYSDATE))
    NVL(Distr Creation Date,Invoice Creation Date) <= TRUNC(NVL(TO_DATE(:Trial Balance Run Date),SYSDATE))
    Show_Flag = 'YES', where:
    Show_Flag = CASE WHEN ( NVL(Cancelled Date,'01-JAN-1901') > NVL(:As Of Date,SYSDATE) AND NVL(Inv Amount Aud,0) = 0 ) THEN 'YES' ELSE ( CASE WHEN NVL(Inv Amount Aud,0) = 0 THEN 'NO' ELSE 'YES' END ) END
    There is a difference between the logic of my report, and the logic of AP Trial Balance...
    Could you please advise what I'm missing?
    Thanks,
    Iana

    What is the query for Accounts Payable Trial Balance (APXTRBAL) in 11.5.10? You can get the code by opening the report in Reports Builder and get the query.
    Or, enable trace/debug as per (FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]).
    Thanks,
    Hussein

  • What is the query to update table in ejb3.0

    Hi Friends,
    I am developing one application using ejb3.0 in Netbeans IDE 6.7.1 with Glassfish Application server.
    To insert data we use "entitymanager.persist(Insert insert);"
    To retrieve all data from table "entitymanager.createQuery("")'
    In the same way what is the query for update?
    Could you please help me.
    Thanks in advance.

    [the answer|http://lmgtfy.com/?q=java+jpa+udpate+query]

  • Query to find Concurrent requests executed on each db node in RAC from in last 24 Hours

    Hi
    Could you please help me in getting the query to find total number of concurrent requests executed on each db node in Two DB Node RAC with PCP ( Two CM Nodes) in last 24 hours.

    c2670397-8171-480e-b9f8-8874e77ee0b4 wrote:
    Hi
    Could you please help me in getting the query to find total number of concurrent requests executed on each db node in Two DB Node RAC with PCP ( Two CM Nodes) in last 24 hours.
    Query FND_CONCURRENT_REQUESTS table (ACTUAL_START_DATE and ACTUAL_COMPLETION_DATE columns) -- http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=FND_CONCURRENT_REQUESTS&c_owner=APPLSYS&c_type=TABLE
    https://community.oracle.com/message/10780262#10780262
    https://community.oracle.com/message/10589420#10589420
    Thanks,
    Hussein

  • Please advise what is the query to identify a SQL executed time

    Hi all
    Please advise what is the query to identify a SQL executed time.
    eg, a DML executed at 16-Apr-2013 11:45hrs

    Try like..
    select LAST_LOAD_TIME, ELAPSED_TIME, MODULE, SQL_TEXT elasped from v$sql order by LAST_LOAD_TIME desc

  • What is the difference between "new meeting request with" and "new meeting request"

    Hi all,Can anyone tell me that what is the different between "new meeting request with" and "new meeting request" on Outlook?Please help me...Thanks!Tony

    Are you using Outlook 2003? The option “new meeting request with” is only available when it is a public folder or shared calendar in OL2003.
    Tony Chen
    TechNet Community Support

  • What is the process to reauthorize a single computer once all 5 have been deauthorized?  Say I have 1000 songs.  Is it a few simple steps or do I have to reauthorize each song individually?

    What is the process to reauthorize a single computer once all 5 have been deauthorized?  Say I have 1000 songs.  Is it a few simple steps or do I have to reauthorize each song individually?

    akovash wrote:
    But there's no where where it says "Authorize this computer"  Now what?
    Have you read the article that Rysz posted a link to? It explains it there!
    The only thing you may need is to display the menubar at the top of the iTunes window. Use the CTRL button, CTRL+B and Store is on that menu.

  • What's the best duplicates finder application for Mac OS X?

    What's the best duplicates finder application for Mac OS X?

    Thank you both!  I ended up going for DupeGuru because it was free and it worked well.   Easy Duplicate Finder baited me with the promise of free download then when the search was over I got the "buy the software" if I wanted to delete more than 10 files.
    DupeGuru worked well and so far I have not been asked for money.
    This solves my question.

  • Please give the query to find out primary key in table in Sql plus

    Dear friends,
    Please give me the query to find out the primary key in Sql plus.

    hi
    SQL> DESC user_constraints
    Name                                                                                                  
    OWNER                                                                                                 
    CONSTRAINT_NAME                                                                                       
    CONSTRAINT_TYPE                                                                                       
    TABLE_NAME                                                                                            
    SEARCH_CONDITION                                                                                      
    R_OWNER                                                                                               
    R_CONSTRAINT_NAME                                                                                     
    DELETE_RULE                                                                                           
    STATUS                                                                                                
    DEFERRABLE                                                                                            
    DEFERRED                                                                                              
    VALIDATED                                                                                             
    GENERATED                                                                                             
    BAD                                                                                                   
    RELY                                                                                                  
    LAST_CHANGE                                                                                           
    INDEX_OWNER                                                                                           
    INDEX_NAME                                                                                            
    INVALID                                                                                               
    VIEW_RELATED                                                                                          
    SQL> SELECT constraint_name,table_name,r_constraint_name,status
      2  FROM user_constraints WHERE constraint_type='P';
    CONSTRAINT_NAME                TABLE_NAME                     R_CONSTRAINT_NAME              STATUS
    SYS_C003141                    CUSTOMERS                                                     ENABLED
    PK_DEPT                        DEPT                                                          ENABLED
    SYS_C003139                    SALESREPS                                                     ENABLEDKhurram

  • What are the query types,Objects CRM provides for third party

    What are the query types,Objects provided by the CRM so that it can be called by third party for integartion pupose.

    First, that statement - and those materials - refer to the "legacy" StreamInsight query/adapter model. They do not refer to how things work with the Reactive model introduced in version 2.1. Specifically, it talks about Dynamic Query Composition (DQC).
    You cannot use a deployed Observable in another instance of StreamInsight. You may be able to use them across applications in the same instance - off the top of my head, I'm not sure. I'm getting ready to get on a plane but will take a look at it later.
    Typically, however, applications act as containers (comparable to .NET AppDomains) so I don't think that you'd be able to do this easily. That said, the code and assemblies
    can be reused across multiple instances/applications. You would have separate instances of the classes involved but you would be able to reuse the query logic. That's a common use case.
    Can you be more specific about your use case and what you are trying to accomplish here? It's possible that there are alternative ways to do what you are trying to do.
    DevBiker (aka J Sawyer)
    Microsoft MVP - Sql Server (StreamInsight)
    If I answered your question, please mark as answer.
    If my post was helpful, please mark as helpful.

  • I canno't see the menu:file;help;tools;downloads,they dessapear,how to show them back?Also,what's the tastature tab for forward/back and minimizing all pages at once?I am speaking for mozilla latest version under win 7

    I canno't see the menu:file;help;tools;downloads,they dessapear,how to show them back?Also,what's the tastature tab for forward/back and minimizing all pages at once?I am speaking for mozilla latest version under win 7

    I canno't see the menu:file;help;tools;downloads,they dessapear,how to show them back?Also,what's the tastature tab for forward/back and minimizing all pages at once?I am speaking for mozilla latest version under win 7

  • What is the range for Find my iPhone

    What is the range for Find my iPhone

    Both devices have to be connected to either WiFi or Cellular and have location services enabled. Find My iPhone does not require that you be close to the phone you're trying to find. If it's connected to a network thousands of miles away, it should still work.

  • What is the website to find my ipad

    what is the website to find my ipad

    icloud.com.  See http://help.apple.com/icloud/#mmfc0f2442.  Note: this requires Find My iPad to already be enablied on your iPad (you can't enable it remotely), and it has to be turned and have an internet connection to be located.

  • What is the exception for finding more than one row?

    What is the exception if you do a select and get more than one row? no_data_found is the exception for not finding any, what is the exception for finding "too much". Thx

    Funnily enough there is a complete list of predefined exceptions in the documentation .
    Cheers, APC

  • What is the default passcode of iphone 4 for reset all settings

    what is the default passcode of iphone 4 for reset all settings ?

    Should just be 0000, as with most things with a passcode, until you change it.

Maybe you are looking for

  • Select Checked Out Files Within Folder

    So if I right-click on a folder and choose Select->Checked Out Files it looks on the whole site for files that are checked out. The same is true if I have it look for files modified in the last x days. Is it possible to select only the files checked

  • Adobe bridges crashes when opening a video file

    Adobe bridges crashes when opening a video file. i can open and view photos  but not .mov files or any other video file

  • I've LOST my "add to bookmarks" setting and cannot put additional items in my bookmarks

    When I have an item that I want to bookmark, I press "Bookmarks" on my toolbar. The first item used to say "add to bookmarks" Now it just lists my bookmark items so I can't add any additional items to my bookmark pages

  • OAF Advance Table

    Hi, My requirement is: There is a search page based on advance table. New record can be created in advance table using add another row button and there is save button for saving the record to database. In advance table there is one column Detail of i

  • JPEG upload problem

    Last night, I tried to post some bird pics to the Bird Forum website in hopes of id'ing the birds. But when I uploaded the JPEGS I had exported to my desktop from Aperture they could not be read. I tried several times to upload them, all to no avail.