List of Responsibilities - Menu - Functions.

Hi,
In Oracle E-Business Suite, how I can get a list of responsibilities - Menu - Functions? Is release 11i.
Thanks!

In Oracle E-Business Suite, how I can get a list of responsibilitiesSystem Administrator responsibility > Security > Responsibility > Define, then query all responsibilities.
Or, submit "Active Responsibilities" concurrent program.
Or, run any of the queries in this link https://forums.oracle.com/forums/search.jspa?threadID=&q=Query+AND+Responsibilities&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Menu System Administrator responsibility > Application > Menu, then query all menus.
Or, run any of the queries in this link https://forums.oracle.com/forums/search.jspa?threadID=&q=Query+AND+Menus&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Functions? System Administrator responsibility > Application > Function, then query all functions.
Or, run any of the queries in this link https://forums.oracle.com/forums/search.jspa?threadID=&q=Query+AND+Functions&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Is release 11i.The above is applicable to 11i and R12
Thanks,
Hussein

Similar Messages

  • List / Pull Down Menu set LIST_ITEM_ID and PARENT_LIST_ITEM_ID

    Hi all
    APEX has "Pull Down Menu" template for navigation list control where used variables #PARENT_LIST_ITEM_ID# and #LIST_ITEM_ID# but their values can't be specified SELECT, all my tries failed
    btw doc says
    Enter a list SQL Query or Function returning a SQL Query to generate a dynamic list.
    SQL Query Syntax:
    select level, labelValue label,
           [targetValue]            target,
           [is_current]             is_current_list_entry,
           [imageValue]             image,
           [imageAttributeValue]    image_attribute,
           [imageAltValue]          image_alt_attribute,
           [attribute1]             attribute1,
           [attribute2]             attribute2,
           [attribute3]             attribute3,
           [attribute4]             attribute4,
           [attribute5]             attribute5,
           [attribute6]             attribute6,
           [attribute7]             attribute7,
           [attribute8]             attribute8,
           [attribute9]             attribute9,
           [attribute10]            attribute10
    from ...
    where ...
    order by ...
    Thanks

    If you're trying to build a hierarchy then it's the first column - level - that defines it.
    You'll find an example of a query that builds a menu hierarchy here
    Grassroots Oracle: CSS pull down menu using APEX List

  • Role Menu/Function using BAPI

    In an effort to integrate a customers two products, I am trying to list out all of the roles and menus assigned to a role using JAVA/JCO and BAPI.
    Is this relationship well defined enough to use RFC_GET_TABLE_ENTRIES?  I can get a list of the role names from AGR_DEFINE (or V_AGR_SINGL, V_AGR_COLL) , but the menu/function table is not as obvious.   I noticed the ARG_HIERT table, which look like it has the textual names of the menus. I was thinking I'd get back an ID of a object instead of the textual representation. Or is this not recommended? 
    Additionally, is there any iterative approach that can be used when listing objects (like roles) where the number of objects is in the 10's of thousands?  The only way I can see now is to fetch all of the names from a view that has only the names, then for each one make a separate call to get the details.
    I see there are some nice APis in the com.sap.security.api package, but those will require I have an application living on the J2EE side of SAP and I would like to prevent that if at all possible.
    Thanks,
    Donny

    Thanks for your help.
    PRGN_ACTIVITY_GROUPS_LOAD_RFC has some good data in it I can use, however the one piece of information that I am after is the TCODES assigned to a role.
    The information that is contained in the AGR_TCODES table. 
    Is there a remote function/program I can call that given the name of the role will return all of the tcodes assigned to the role?
    PRGN_READ_TRANSACTIONS_ONE_AGR
    and
    PRGN_1221_READ_TRANSACTIONS
    Are exactly they type of thing am after, but they cannot be used for 'remote' calls.
    Thanks again,
    Donny Smith

  • How to find out list of procedures and functions inside a package

    How I can find out the list of Procedures and Functions inside a Package.

    Look at ALL_PROCEDURES and ALL_ARGUMENTS.

  • Command is not showing in to the list on pressing menu button on the device

    Hi Everyone,
    I have developed a midlet in which I have designed buttons or links using Custom Items. Command associated with the custom item is not showing in to the list on pressing menu button on the device 8300 Curve.
    For example - My login screen have SUBMIT and RESET custom items. I have designed them to be appear like links [no matter how I design them]. I have also added a command and listener to it like as below:
    CMD_SUBMIT = new Command(text, Command.ITEM, 1);
    setDefaultCommand(CMD_SUBMIT);
    setItemCommandListener(this);
    On running the midlet, my login screen appears. But when I travarse to the SUBMIT item, and press the menu button, my command doesnt appear in the list of commands. It shows only the Close command. I am not getting why this is happening.
    Please do me a favour and help me to sort out this. On other phones like 8520 curve the command is appearing in to the list when I press the menu button.
    Regards

    Is there any way to sort out this issue? I am not getting the cause
    behind this, and I am observing this only on 8300 Curve. On most of
    there phones [though not tested on every one] it is working as expected.
    Please guide me to proceed further. I am desperately waiting for the
    response. Regards.

  • The InitCVIRTE function is not listed in the NIDAQ function reference online help? Why? and where can I find a description of this function?

    the InitCVIRTE function is not listed in the NIDAQ function reference online help? Why? and what does she do?and where can I find a description of this function? Can i use this function with visualc++ 6.0?

    The InitCVIRTE function is in the CVI run time engine (cvirte.dll)..not part of NI-DAQ.
    Applications written or using CVI may call this function..
    How are you running into this ?
    From the CVI help...
    This function performs initialization of the CVI Run-Time Engine. It is needed only in executables or DLLs that are linked using an external compiler. Otherwise, it is harmless.
    It should be called in your main, WinMain, or DllMain, function. The parameter values you should pass depend on which of these three functions you are calling InitCVIRTE from. The following examples show how to use InitCVIRTE in each case.
    If you are using main, your code should be as follows.
    int main (int argc, char *argv[])
    if (InitCVIRTE (0, argv, 0) == 0)
    return -1; /* out of memory */
    /* your other code */
    return 0;
    If you are using WinMain, your code should be as follows.
    int __stdcall WinMain (HINSTANCE hInstance,
    HINSTANCE hPrevInstance,
    LPSTR lpszCmdLine,
    int nCmdShow)
    if (InitCVIRTE (hInstance, 0, 0) == 0)
    return -1; /* out of memory */
    /* your other code */
    return 0;
    If you are creating a DLL, you must call InitCVIRTE and CloseCVIRTE in your DllMain function, as in the following.
    int __stdcall DllMain (void *hinstDLL, int fdwReason,
    void *lpvReserved)
    if (fdwReason == DLL_PROCESS_ATTACH)
    if (InitCVIRTE (hinstDLL, 0, 0) == 0)
    return 0; /* out of memory */
    /* your other ATTACH code */
    else if (fdwReason == DLL_PROCESS_DETACH)
    /* your other DETACH code */
    CloseCVIRTE ();
    return 1;
    NOTE: The prototype for InitCVIRTE is in cvirte.h, not
    utility.h.
    NOTE: In CVI 4.0.1, this function was expanded from one to
    three parameters. Executables and DLLs that were
    created using the one-parameter version of the function
    will continue to work properly.
    /*-------------------- Prototype ---------------------*/
    int InitCVIRTE (void *HInstance, char *Argv[], void *Reserved);
    Nandan Dharwadker
    Staff Software Engineer
    Measurement Studio Hardware Team

  • List of built-in Functions in SAP system

    Hi,
    I am trying to find the complete list of built-in function available in SAP system. I searched in SAP help but could not find a comprehensive list at all. I am wondering if anyone can help me locate the list.
    Thank you in advance,
    Sunny

    Hi Sunny,
    in my system are already 77.197 transaction codes defined. OK, some are customer development, but on the other hand we are fare away from having all modules installed.
    I'm not sure, if you are looking for all transactions, all function modules, all BAPIs, all interfaces...
    ...but be sure, no one can EVER go through a whole list.
    You have to restrict your search: to a specific topic (e.g. only material master), specific technics (e.g. only IDOCs) - then you can successfully browse through the possibilities.
    Regards,
    Christian

  • Menu Functions at user/reponsibility level - URGENT

    I need to query Menu functions for the particular user/ Reponsibility. User and Reponsibility are the two input parameter for the reports. I'm selecting the values for the menu from the Fnd_Menu_entries for a particular responsibility.
    I need to filter for user also. Kindly let me know how to and which table to join to get the menu functions for particular user.

    Hi,
    Assign ECC connector to SAP_ECCS_LG group.
    Run the programs GRAC_PFCG_AUTHORIZATION_SYNCand GRAC_REPOSITORY_OBJECT_SYNC) in full synch mode(this might take time so better do this in background). Better do it sequentially.Check the logs of the jobs in SLG1 just to ensure everythings fine.
    Run ARA for a specific user and mention the connector for faster output. Ensure this user has the role with risks.Also as explained earlier check the GUID against user id in table GRACUSERROLE and using GRACROLE you can find out the technical name of the role updated in the table. This should be same as the backend role.
    Then run ARA and while doing so please ensure the selection screen doesnt have any unwanted default inputs. If followed correctly , this should be of help.  I am assuming the role analysis yielded correct risks as configured since this would mean that connector have correct actions and basic config is in place.
    Regards,
    Vivek

  • How do I execute a menu function programatically?

    I'd like to execute the menu function "Operate>reinitialize all to default" at end of a simple loop but cant find a method of doing so. Can someone point me in the right direction?
    Labview Express 7.0

    hope this help.
    regards
    Neona
    Attachments:
    Default.vi ‏6 KB

  • How to make an account in Country Such As Iraq While It's Not Listed In The Menu Of Country?

    how to make an account in Country Such As Iraq While It's Not Listed In The Menu Of Country?

    You cannot. Sorry.

  • What are the responsibilities of Functional consultant in Upgradation?

    hai friends
    What are the responsibilities of Functional consultant in an Upgradation Project
    Are the responsibilites similar to implementation project.if no  How does it differ.
    Thanks
    regards
    Krishna

    Krishna,
    Responsibities for the functional consultant will be differ based on the upgrade which is Technical upgrade and Functional upgrade.
    Resp for Technical upgrade: If its a technical upgared your roll will be limited and your involvement will required only for testing ( unit test and Integration testing) . So most of the effort is required only for BASIS consultant.
    Resp for Functional upgrade: If there is any add in with your business process (any new functionalites and enhancements) you need to involve for functional design for the new process additionally with the testing.
    Cheers!!!
    NMK
    Please give the point for the useful reply.

  • How to create menu function for link to open file

    Hi,
    I need help how to create menu function for link to access file and allow user to save the file when click on it.
    The file will keep inside server.
    Thank you.
    Regards,
    Wilson

    I need help how to create menu function for link to access file and allow user to save the file when click on it.
    The file will keep inside server.AFAIK, you have to write a custom code to achieve this and Oracle does not provide this functionality.
    If you want to store the file as an attachment, please see (How to Store Image/PDF Attachments on the File System in 11i and R12 (like Attachment File Directory) [ID 294525.1]).
    Thanks,
    Hussein

  • How can i see my skype contacts?  how can i see the contact list or a menu bar to search for contacts?

    i downloaded skype and couldn't see contacts or menu bar.  downloaded a NEW account, put in separate credit, and still can't see contacts or find new ones.  there doesn't seem to be that feature.  a contact list and/or menu bar.  please help????

    Arlene
    Here is a link to a demonstration of Skype on You Tube. This might be of some help?
    http://m.youtube.com/index?desktop_uri=%2F&gl=GB#/watch?v=Umnc02vTDOg
    Have you signed into Skype with your Skype name and password? Do you have an interface similar to that shown in the video? Incidentally, the video demonstrates an iPad in landscape orientation.

  • DVD Menu Functions in iTunes and on iPad?

    I'm trying to create the functionality of a DVD menu but in a format supported in iTunes, and further, on the iPad.
    I've got a project that I'd like to format that requires me to have a menu of tracks (different content) and I'd like to be able to use my iPad to access and view it. For  example: the opening menu would have different titles that if selected would take you to the connected assets (Content). Once the content is done playing it takes you back to the main menu. This would be much the same way DVDs include extra scenes and what not...
    Anyone now what software I could use to create functionality. I've built all the menus in Apple Motion, and A. Photoshop. The DVD export/formatting makes everything look like crap as a result of the rendering and codec and just overall poop that happens between content creation, rendering, and final output.
    I'm wondering if I can have the clean lines I see in Apple Motion and QuickTime, but with the menu functions with connected assets, but do it all through iTunes, iPad, or ATV.
    Any thoughts? Pardon the double post if this has been asked before. I've looked and can't find anything.

    Try this...
    http://www.apple.com/itunes/lp-and-extras/
    Might not be the answer you want, but it is probably the one you need.
    Good luck!!
    CaptM

  • Search menu function is not working

    Hi
    Search menu function is not working in one of my HRMS 9.1 (PT: 8.52.09 application.
    Verity installed and executed the build registry search index aswell.
    Please let me know if I miss something on configuring the search menu function.
    Thanks
    Soundappan

    Personally I did not have to make any psappsrv.cfg changes for this particular 9.1 env or any other changes that I can remember. Is PS_HOME = PS_CFG_HOME though?
    If you didn't specifically set PS_CFG_HOME to PS_HOME it defaults to something like $HOME/psft and the files would need to be there instead.
    If you run psadmin what's it show as the Config Home?
    If I unset PS_CFG_HOME i get
    PSADMIN -- Tools Release: 8.52.07
    Copyright (c) 1996, 2011, Oracle. All rights reserved.
    PeopleSoft Server Administration
      Config Home:  /home/psoft/psft/pt/8.52And the files would need to be there rather than $PS_HOME/data/....
    Now you could override that in your psappsrv.cfg file with
    EMPLOYEE=PS_HOME/data/search PS_HOME I dont think can be used here as a variable... it needs to be the full path. the location here must lead directly to the EMPLOYEE directory
    In 8.52 there are also some alternatives to this older style above.
    See this peoplebook for 8.52 http://docs.oracle.com/cd/E28394_01/pt852pbh1/eng/psbooks/tsvt/book.htm?File=tsvt/htm/tsvt10.htm%23g037ee99c9453fb39_ef90c_10c791ddc07_102b for details.
    In the past I've used shares or nfs mounts to have the process scheduler write directly to the appserver. But you could check out the new search server option too.
    Let me know.

Maybe you are looking for