Query to get translated seeded prompts for responsibilities

My customer is doing a global EBS R12.1.3 implementation and they are in need of a query that can give all the seeded or custom translated Prompts for the Responsibilities. If any you have developed such query, please share with us and it is much appreciated.

user13380563 wrote:
My customer is doing a global EBS R12.1.3 implementation and they are in need of a query that can give all the seeded or custom translated Prompts for the Responsibilities. If any you have developed such query, please share with us and it is much appreciated.
Please see previous threads.
https://forums.oracle.com/search.jspa?q=Responsibilities+AND+Query+AND+EBS
https://forums.oracle.com/search.jspa?q=Responsibilities+AND+Query
Thanks,
Hussein

Similar Messages

  • How can I get Safari to prompt for cookies?

    I've always used Firefox, but would love to move to Safari for its iCloud integration, but  it's a major frustration and  a deal breaker that it doesn't provide an option to prompt for setting cookies. Every other major browser does. What's the deal?
    Does anyone know of an extension that will prompt me to accept or reject cookies before they're set? Is there a Terminal command I can run? Anything?
    I take my privacy seriously. Unless I am logging into a site, I have no desire to accept a cookie, especially from Google or Facebook who will sell their grandmother if they could make enough money and get away with it.
    I looked at these two based on another thread:
    http://www.macupdate.com/app/mac/31018/safari+cookies
    http://itunes.apple.com/us/app/cookie/id415585910?mt=12&ls=1
    At least in the first one (which is free) all it seems to do is let me delete cookies after the fact or on quitting and manually set cookies as favorites. But not setting something as a favorite doesn't seem to prevent the cookies from getting set, which seems to defeat the whole purpose.
    I don't want some big,  complicated mess or a pile of features that I have to fiddle with in every browser session. I just want this to work like it does in Firefox, or Chrome, or Opera, or any other browser. Prompt when a site tries to set a cookie and let me accept it or reject it. If I reject it, it stays rejected until I reset Safari. Why is that so difficult?
    I wish Apple would get over it's obsessive phobia of anything approaching an advanced feature or interface element and just make things work again.
    Sorry, didn't intend to rant. Just looking for help on this.

    I didn't see it as a rant ... you're justified.
    You can send feedback to Apple >  Apple - Mac OS X - Feedback
    As it is, Safari won't prompt for cookies.
    The settings are available in Safari > Preferences > Privacy

  • Query to get batch GLBATCH name for the invoices of AP and AR

    Please provide a query to get GLBatch name for an invoice of AR and AR.
    From one cursor iam getting invoice number and invoiceID of AP and AR.
    I have written query but it is taking much time
    select distinct gjb.NAME
    from gl_je_headers gjh,
    gl_je_lines gjl,
    gl_je_batches gjb
    where gjl.REFERENCE_2=to_char(:p_invoiceid)
    and gjh.JE_HEADER_ID=gjl.JE_HEADER_ID
    and gjh.JE_BATCH_ID=gjb.JE_BATCH_ID
    so iam getting performance problem.
    Please suggest if iam wrong.
    Waiting for your valuable suggestion.
    Thanks
    ganesh

    Hi,
    the version of Oracle E-Business Suite is R12
    and ORacle Database IS 11I
    Thanks & Regards
    ganesh

  • Query to get all the worksheets for a particular work book

    Hi All,
    I want to get all the associated worksheets for a particular workbook. What query will fetch mne those details. Also, where can find the EUL5 tables documentation
    Regards
    Thomas

    Hi Tamir,
    Thanks so far. I am yet to make the crucial breakthrough as far my application goes. Are you talking about the EUL5_QPP_STATS table? I tried retrieving worksheets even from that table also with the following query
    SELECT DISTINCT Eul5QppStats.QS_DOC_NAME,Eul5QppStats.QS_DOC_DETAILS
    FROM EUL5_QPP_STATS Eul5QppStats,EUL5_DOCUMENTS Eul5Documents
    WHERE Eul5QppStats.QS_DOC_NAME = Eul5Documents.DOC_NAME
    However, the worksheet data retrieved by Discoverer Oracle's product is not matching my dataset for every workbook. Please suggest.
    Reg
    Thomas

  • MI 7.1: Query to get correct child objects for a parent

    I have this problem for both PDA and Laptop apps.
    We have created a Data object with ‘Customer’ as parent and ‘Email’ and ‘addresses’ as child to it. Customer will have basic customer info like his name, nationality etc. email and address will have zero or more emails and addresses of that customer.
    In my application I have written a query to fetch all customers, display it in a table and upon selection of one customer I will fetch the customer id which is the key and will fire one more query with customer id as input which will fetch all his addresses and display it in another table.
    Now look at this scenario: I create a new customer. Then I go on and create a new address for the same customer. The address will also have foreign key customer id as zero. Now I go on and create one more new customer. Now when I select any of there customers their id is zero (since i havent syncd). Hence my second query would fetch the same newly created address for both the customers since both of them have customer id as zero. Now there is a option for adding join in query in PDA app. I added the join like ‘address.psynckey = customer.synckeyMMW’ in my second query to fetch addresses apart from filter ‘address.customerid := custid’ where custid is input parameter. In laptop also I clicked on ‘add join condition by relation’ button which added to existing condition ‘AND (address.psynckey = customer.synckeyMMW)’. Now even after this it is not working correctly i.e. only the relevant childs for a parent record should come. Plz help.

    Hi,
    well, I have a problem in understanding.... If I create an item locally on the device - it immediately has a SyncKEy - this is not empty! Furthermore when I select on the item, I have the Top item as select criteria - aswell at the create process. I need the TOP item to create a child item.
    Do you have a chance to look into any SAP standard app to get an idea how they do it? The ITEMMANAGER should handle the requested create,delete,modify,select handling for TOp to child items - I think there is the issue.
    Regards,
    Oliver

  • Stop and get rid of prompts for upgrading to newer versions of Firefox

    When I start up Firefox, in the upper left-hand corner it keeps prompting me to upgrade to Firefox's latest version. How can I get rid of this prompting permanently.

    Once an item enters the download queue, the user cannot remove it. Contact the iTunes Store customer support department through the Contact page and ask them if they'll remove the item(s) from your queue for you.

  • Query to Get next Highest Value for the given value passed

    Hello Gurus
    i want help with a query that would get me the next highest value from a table for a given value passed. Let say these are the values in col of a table
    col
    6000
    5000
    4000
    3000
    2000
    1000
    if i pass 2000 then the output should be 3000 or if i pass 4000 then query should result 5000. Please help

    May be this:
    WITH t AS (SELECT 6000 val FROM DUAL
               UNION ALL
               SELECT 5000 FROM DUAL
               UNION ALL
               SELECT 4000 FROM DUAL
               UNION ALL
               SELECT 3000 FROM DUAL
               UNION ALL
               SELECT 2000 FROM DUAL
               UNION ALL
               SELECT 1000 FROM DUAL)
    SELECT min(val)
      FROM t
    WHERE val > &YourVal

  • How do styles get translated from Pages for iPad to/from Word?

    I can't seem to get the styles of Pages on the iPad and Word 2004 on the Mac to match up. Can anyone offer advice?
    When I import a Word doc to the iPad, the Normal style does not get converted to a specific Pages style; the Style box in the ruler remains blank. Other styles, such as Headings of various levels, do get converted.
    Reversing the process, when I export a Pages document to Word, the Body style (the Pages equivalent of the Normal style) gets exported as well. A new style with this name is created in Word. If a style already exists with this name, then "Body 1" is created. I can't find a way to match the Body style with some preexisting style within Word.
    This is really inconvenient, because Word relies on consistent use of styles. For instance, if I create an outline in Word, import to iPad, modify, and export to Word, the body-level text is promoted to a heading -- screwing up the outline.
    The problem occurs whether I save as doc or docx.
    I wonder whether there's a workaround, such as using specific style names

    I just did a test and moving a doc back and forth a few times and got even worse confusion than you did.
    There appears to be no clear answer there, just more confusion. It would seem that best practices at the moment are saving your orig document in Word as Word 97 and using Normal or Body Text but not both. This is probably easier said than done since Word tries to slip the unstyled Normal in all the time.
    I guess this hasn't seemed any different than normal to me, since I am used to working with Word docs that move between different versions of Word, different Word formats, different OSs, antiquated OSs and having different fonts installed. I recent years I don't think I have ever had a Word doc open 100% intact.

  • Adobe Premier Elements 13 Win 8.1 64 Will not open. I get the login prompt for editor and sign in but nothing else happens.  I have uninstalled/reinstalled but get the same results.

    Premier elements 13 will not open after logging in.

    donaldc
    Let us go through the typical drill on your Premiere Elements 13 Window 8.1 64 bit issue, and then we can focus in more based on your replies.
    1. Does the problem exist with and without the antivirus and firewall(s) disabled?
    2. Are you using a pen and tablet device or mouse?
    3.According to the Device Manager/Display Adapters, what video card/graphics card does your computer use? How many cards, and is driver version
    up to date?
    5. Are you running the program as Administrator? Do you have the latest version of QuickTime installed on your computer?
    Please look at the following solutions for 12 to determine if they will work for you in 13.
    ATR Premiere Elements Troubleshooting: PE12: Premiere Elements 12 Editor Will Not Open
    Have you tried to open the program by going to the Adobe Premiere Elements.exe file, right clicking it and selecting/applying Run As Administrator, and then double
    clicking that file to open the program?
    If none of the above works, then delete the Adobe Premiere Elements Prefs file in the path
    Local Disk C
    Users
    Owner
    AppData
    Roaming
    Adobe
    Premiere Elements
    13.0
    and in the 13.0 Folder is the Adobe Premiere Elements Prefs file that you delete. If that does not work, then delete the whole 13.0 Folder in which the
    Adobe Premiere Elements Prefs file exists. Be sure to be making with Folder Option Show Hidden Files, Folders, and Drives enabled so that you
    can see the complete path cited.
    We will be watching for your results. Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR

  • Query to get possible values for each segment

    Hi Gurus,
    Give the flex value set id, what is the query to get all possible values for each segment (just like what is shown in the accounting flex window)?
    Thank you,
    Beibei

    Hi Beibei,
    The table FND_FLEX_VALUES_VL can give you details of values available in the Value set i.e. 1 segment at a time.
    If you are looking for a concatenated view of Accounting Flexfield values, that would be available in GL_CODE_COMBINATIONS table.
    Regards,
    Ivruksha

  • Calendar prompt for Date variable from bex

    Hi All,
    I have a Bex query where I have a variable on 0CALDAY
    - Customer exit (i_step = 1 to populate with current date)
    - Single value
    - Mandatory
    I created universe on this query and in webI selection screen i do see the variable prompt.
    I am not able to see the current date populated automatically since exit values are not populated to WebI at runtime.
    My problem is that in WebI selection screen we get list of date values from the info provider instead of Calendar prompt
    where user can enter the values directly.
    I am currently on BO XI 3.1 SP3.
    Is there any specific setting in Universe or bex query which is required to get this Calendar prompt instead of list of values for dates?
    Note: When we were on SP1 the universe created then had same variable from bex and it still shows us Calendar prompt but ever since we upgraded to SP3 for the query splitter functionality we not able to get the calendar prompt for date variable in new universe we create
    Thanks
    Ritesh

    Yep.
    Now tell me how you want to show that Prompt @ WebI report level.
    My problem is that in WebI selection screen we get list of date values from the info provider instead of Calendar prompt
    where user can enter the values directly. Exactly, i didn't get this??
    @Prompt:
    You have flexibility to show options like:
    Mono/Multi: User can select Single value or Multiple.
    BW Variable: Same we have (Single/Multiple)
    Free/Constrained: User can Enter his/her value directly or No change option.
    BW Variable: By defalut you will get this, once you made it to Optional input.
    Persistent/Not_Persistent: Refreshed report has to show last selected value means use Persistent otherwise Not_P.
    By seeing the Prompt syntax , I can say your Variable is after Customer Exit, Correct??
    Workaround for your Problem is:
    <FILTER KEY="ZV_DATE"><CONDITION OPERATORCONDITION="Equal"><CONSTANT TECH_NAME="@Prompt('Date (Previous Day)','A','Date\LovDate (Previous Day)Base',mono,primary_key)"/></CONDITION></FILTER>
    You have to remove that Date class and objects from prompt syntax. Because of that it showing up LOV's not calendar.
    Like:
    <FILTER KEY="ZV_DATE"><CONDITION OPERATORCONDITION="Equal"><CONSTANT TECH_NAME="@Prompt('Date (Previous Day)','A',',mono,primary_key)"/></CONDITION></FILTER>
    Why, It should be blank??
    Because Date needs no class\object to show up, by default you will get Calendar on the fly.
    Hope you got my point.
    Thank You!!

  • Report does not prompt for parameters when SeparatePages=False

    Hi all. We are using CR2008 Basic w/SP1 along with VS2008. Within our application, reports pull up fine and prompt for parameters using the CrystalReportViewer against the web service. SeparatePages is set to True. We want to change SeparatePages to False, but when I do that any report that should prompt for parameters is not.
    The reports were created in CR 8.5. We have upgraded them to CR2008 (open, refresh, save) which has greatly increased performance. With some further testing, I've discovered that if I take a report that doesn't currently have any parameters and add one via VS2008 report designer, it WILL prompt for the parameter when I run it in our application with SeparatePages=False.
    So I'm leaning that the problem has to do with the reports originally being created in 8.5. I've tried modifying an existing report with parameters, deleting parameters and re-adding, but I still can't get these to prompt for parameters with SeparatePages=False.
    Again, these same reports prompt for parms and work fine as long as SeparatePages=True.  I'm hoping someone might be able to shed some light on this. There are over 400 reports so re-creating them from scratch under CR2008 will be a painful option
    If I need to provide any additional information just let me know. Thank you!
    Sheila

    We are still working to resolve this issue. Testing has shown that for reports that don't return a lot of data, the prompt for parameters will display. But for larger reports, we just see the hour glass and the parameter prompt never displays. It's almost like the reports are trying to return the full dataset without any paramters being passed BEFORE it will prompt for parameters. This would explain why smaller reports will prompt and larger reports never will (?). Not sure that is what is happening.  Again, with SeparatePages=True we are immediately given the parameter prompt. With SeparatePages=False we run into the issue of no prompts.
    Here's the code behind if it help:
    ReportDocument report = new ReportDocument();
    try
        String rptFileName = @"App_Data\Reports\" + Request.QueryString.GetValues(0).GetValue(0).ToString();
        log.writeLog("Loading Report: " + rptFileName);
        String rptFile = Server.MapPath(rptFileName);
        report.Load(rptFile);
        report.Refresh();
        ConnectionInfo crConnectionInfo = new ConnectionInfo();
        log.writeDebugLog("ServerName : " + rProperties.ODBCSource);
        crConnectionInfo.ServerName = rProperties.ODBCSource;
        log.writeDebugLog("DatabaseName : " + rProperties.ODBCSource);
        crConnectionInfo.DatabaseName = rProperties.ODBCSource;
        log.writeDebugLog("UserID : " + rProperties.ODBCUser);
        crConnectionInfo.UserID = rProperties.ODBCUser;
        log.writeDebugLog("Password : " + rProperties.ODBCPassword);
        crConnectionInfo.Password = rProperties.ODBCPassword;
        foreach (CrystalDecisions.CrystalReports.Engine.Table table in report.Database.Tables)
            TableLogOnInfo crTableLogOnInfo = new TableLogOnInfo();
            crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
            table.ApplyLogOnInfo(crTableLogOnInfo);
    catch (Exception err)
        log.writeLog("Error Loading Report: " + err.ToString());
        this.lblError.Text = err.ToString();
        this.ErrorTable.Visible = true;
        this.ReportTable.Visible = false;
        return;
    CrystalReportViewer1.HasCrystalLogo = false;
    CrystalReportViewer1.ReportSource = report; // _serverFileReport;

  • Steps of abap query--- to get the reports

    steps of abap query -
    to get the reports

    Hi Deva,
    For step by step procedure to create an ABAP query you can refer to the following links
    http://www.thespot4sap.com/Articles/SAP_ABAP_Queries_Introduction.asp
    http://allaboutsap.blogspot.com/2007/09/sap-query-step-by-step.html

  • Double prompts for Exchange 2013 migrated users: "The microsoft exchange administrator has made a change that requires you to restart outlook"

    I have Exchange 2010 SP3 in my environment and am migrating to Exchange 2013. Whenever a mailbox is migrated, the Outlook 2013 client will prompt the user with a "the exchange administrator has made a change that requires you to restart
    Outlook". When the user does so, he or she is prompted again. After he or she closes and reopens Outlook for the second time, the issue is gone permanently.
    I've seen a number of other posts about repeated prompts like this but I haven't yet found one or someone gets exactly 2 prompts for each client and no more.
    A couple of pieces of information that may be relevant:
    1. On exchange 2013, the authentication method for the internal host name is NTLM
    2. I have not yet migrated public folders from Exchange 2010. I plan to do that after the mailbox migration is complete.
    Thanks in advance for your help.

    Hi,
    From your description, after mailboxes are moved from Exchange 2010 to Exchange 2013, users receive the following prompt when opening Outlook.
    The Microsoft Exchange Administrator has made a change that requires you quit and restart Outlook.
    In order to solve this issue, you need to apply the Outlook update that is described in KB 2863911.
    For your reference:
    Outlook 2013 cannot connect after an Exchange Server 2010 mailbox is moved to Exchange Server 2013
    https://support.microsoft.com/kb/2934750?wa=wsignin1.0
    Hope this can be helpful to you.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Amy Wang
    TechNet Community Support

  • I keep gettin sign in prompts for iCloud since I updated to Yosemite

    I keep getting sign in prompts for iCloud since I updated to Yosemite.  I repeatedly get them for Face Time and iMessage also. Haven't found any way to stop them.  I click cancel on every one and then they show up again about 5 seconds later. I finally have been simply putting the window at the bottom of the screen.  What can I do to stop these password sign in request windows?

    I'd love a solution to this, as well

Maybe you are looking for