Find Menus & Function In oracle apps

Hello Experts,
I am searching for the menus and function in oracle apps to enable/disabled the functionality for a specific responsibility.
Is there any way through which we can find a function or menus in a effective way.
Thanks,
Atul Ramteke

I am searching for the menus and function in oracle apps to enable/disabled the functionality for a specific responsibility.
Is there any way through which we can find a function or menus in a effective way.What do you mean? You can get the menu attached to the responsibility from query it from System Administrator responsibility and find all the functions/submenus which are attached to it.
If you want to get the same from the backend, please see:
Checking Functions Associated with a User Menu or a Responsibility [ID 948512.1]
https://forums.oracle.com/forums/search.jspa?threadID=&q=Menu+AND+Tree+AND+Query&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • How to create SSWA plsql function in Oracle Apps of HTML call .html

    Hello Team,
    I am working on Oracle Apps 11i (11.5.10.2)
    I want to know , what is the process to create a , "SSWA plsql function" in Oracle Apps of type "HTML" and html call tab.
    How to create that Function and how to attach the PL/SQL code to these functions.
    How it works.
    Please help me to understand this concept from basics.
    Kind Regards

    Hi;
    Please review:
    how to setup a forms function in R12 to launch an URL?
    http://www.trutek.com/serendipity/index.php?/archives/15-An-Example-of-How-to-Create-Custom-Functions,-Menus,-and-Responsibilities.html
    Regard
    Helios

  • List of users who were granted particular function in oracle apps R12 db?

    Hi
    I need to list all users who were granted particular function (suppliers) from oracle apps R12 database. User -->Resp -->Menu --> Submenu/function. I have two queries like the following
    --Below sql query give all users those
    having Purchasing and Payables application access.
    SELECT UNIQUE u.user_id, SUBSTR (u.user_name, 1, 30) user_name,
    SUBSTR (r.responsibility_name, 1, 60) responsiblity,
    SUBSTR (a.application_name, 1, 50) application
    FROM fnd_user u,
    fnd_user_resp_groups g,
    fnd_application_tl a,
    fnd_responsibility_tl r
    WHERE g.user_id(+) = u.user_id
    AND g.responsibility_application_id = a.application_id
    AND a.application_id = r.application_id
    AND g.responsibility_id = r.responsibility_id
    AND a.application_name in ('Puchasing','Payables')
    ORDER BY SUBSTR (user_name, 1, 30),
    SUBSTR (a.application_name, 1, 50),
    SUBSTR (r.responsibility_name, 1, 60);
    --Below sql  query gives function name.
    SELECT function_id, user_function_name, creation_date, description
    FROM applsys.fnd_form_functions_tl where function_id=1348;
    What other tables to join to get all users having this function (suppliers) granted?
    Regards

    You cannot move a post to another forum.
    You can repost your entire text as another post in the other forum.
    You can then mark this thread as "answered" -- just to close it.
    Hemant K Chitale
    Edited by: Hemant K Chitale on Jan 16, 2011 5:11 PM

  • Benefits of creating form functions in oracle apps

    hi all
    i want to register a new form in oracle apps,
    why i need to create form function to every form i register?
    thanks

    Same form can be use in multiple functions but on form should have one form function to System Administrator administers function security by creating
    responsibilities that include or exclude particular functions.
    The function can be a form, process, servlet, SSWA plsql function or more. So customized form needs a function to define in security by responsibility.
    Regards,

  • Oracle APPS Doubt?

    Dear All,
    I am an working in Oracle Forms and Reports for the past 3 years and I want to move to Oracle APPS.
    Can anyone guide me where can I find Material to learn Oracle APPS both in Technical and Functional Domains, as I found all the jobs in Oracle APPS require expertise in both Functional and Technical domains.
    Appreciate any help.
    Thanks & Regards
    Madhu K.

    Unfortunately, Oracle Forums is reaching its end of life. The newest release of Oracle Applications is R12. Personally, I found Oracle Applications difficult to work with, very buggy, and chatty like Forms.
    You can get all the info you require from the link below. I'm sure that you have an Oracle Account. There's no requirements to register for one.
    http://download.oracle.com/docs/cd/B40089_10/current/html/docset.html

  • Incorreect event-key in oracle.apps.inv.lotCreate Event PL/SQL Rule Functio

    Hi,
    I have created event subscription as PL/SQL function for oracle.apps.inv.lotCreate Event.
    In this PL/SQL function, i am calling "getEventKey" method on WF_EVENT_T object obtained.
    However, value returned by this "getEventKey" method is incorrect. According to Oracle Inventory User Guide, event-key should be
    Organization_id-Item_id-Lot_number. However i am getting some six digit number which is neither Organization_id nor Item_id nor Lot_number.
    I am using Oracle E-Business suite Release 12.
    Please let me know if anyone has faced similar problems? what was cause of such problem?
    Any pointers regarding the issue will be highly appreciated.
    Let me know if you require more information.
    Thanks,
    Rohit

    Hi Steve,
    The test subscription is raising from the workflow administrator responsiibility but when I update the item attribute controls then the subscription is not raising and checked with the forms trace, there is no event is recorded in the trace. I am using 11.5.10 cu 2 version and suspecting still some setting might be missing for the inventory events.
    I wrote the following code for my initial testing to test the event subscription raising on the item update.
    CREATE OR REPLACE PACKAGE BODY APPS.schl_event_item_update_elt
    AS
    FUNCTION schl_item_attrib_update (p_subscription_guid IN raw,
    p_event IN OUT wf_event_t
    RETURN VARCHAR2
    IS
    l_key VARCHAR2 (240);
    l_key_stat VARCHAR2 (50);
    l_status_rec VARCHAR2 (50);
    l_org_id VARCHAR2 (240);
    BEGIN
    l_key := p_event.geteventkey ();
    INSERT INTO schl.schl_item_attrib_update
    VALUES (l_key);
    RETURN 'SUCCESS';
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    INSERT INTO schl.schl_item_attrib_update
    VALUES ('error');
    END;
    END;
    I would highly appreciate your thoghts on this.
    Thanks,
    Srini C

  • Incorreect event-key in oracle.apps.inv.lotCreate Event subscription

    Hi,
    I have created event subscription as PL/SQL function for oracle.apps.inv.lotCreate Event.
    In this PL/SQL function, i am calling "getEventKey" method on WF_EVENT_T object obtained.
    However, value returned by this "getEventKey" method is incorrect. According to Oracle Inventory User Guide, event-key should be
    Organization_id-Item_id-Lot_number. However i am getting some six digit number which is neither Organization_id nor Item_id nor Lot_number.
    I am using Oracle E-Business suite Release 12.
    Please let me know if anyone has faced similar problems? what was cause of such problem?
    Let me know if you require more information.
    Thanks,
    Rohit

    Hi Steve,
    The test subscription is raising from the workflow administrator responsiibility but when I update the item attribute controls then the subscription is not raising and checked with the forms trace, there is no event is recorded in the trace. I am using 11.5.10 cu 2 version and suspecting still some setting might be missing for the inventory events.
    I wrote the following code for my initial testing to test the event subscription raising on the item update.
    CREATE OR REPLACE PACKAGE BODY APPS.schl_event_item_update_elt
    AS
    FUNCTION schl_item_attrib_update (p_subscription_guid IN raw,
    p_event IN OUT wf_event_t
    RETURN VARCHAR2
    IS
    l_key VARCHAR2 (240);
    l_key_stat VARCHAR2 (50);
    l_status_rec VARCHAR2 (50);
    l_org_id VARCHAR2 (240);
    BEGIN
    l_key := p_event.geteventkey ();
    INSERT INTO schl.schl_item_attrib_update
    VALUES (l_key);
    RETURN 'SUCCESS';
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    INSERT INTO schl.schl_item_attrib_update
    VALUES ('error');
    END;
    END;
    I would highly appreciate your thoghts on this.
    Thanks,
    Srini C

  • How to start with ORACLE APPS and ORACLE APPLICATION SERVER?

    Hi !!
    I am a little known with oracle database. But recently i have been asked to update my skills with oracle apps and oracl e application server. I do not have any prior experience with these products of oracle and I really have 0 knowledge of it.
    Can anybody help me find a start with oracle apps and oracle as?
    Thanks.

    Welcome
    http://www.oracle.com/technology/documentation/applications.html
    You can download from here.
    Regards
    Asif Kabir
    -- If helpful mark the post as correct/helpful, also close the thread as answered.

  • Stop Find/Replace syncing between different apps

    Hi all,
    I was wondering if there was any way to stop the Find/Replace function in some apps from syncing their search terms between each other.
    My problem:
    = Lets say I have Pages and TextEdit open and search for "tree" in Pages.
    = When I go over to TextEdit and do a command+F, the search window will automatically have the word "tree" populated in the search term field.
    = When I search for "shrub" in TextEdit and go back to Pages, the search term field in Pages gets filled in with "shrub" even though I still wanted to continue my search on "tree."
    So far I've seen this happen between any combination of Pages, TextEdit, Numbers, and Safari. Is there any way that I can stop these apps from syncing their search terms between each other?
    Thank you very much in advance.
    Hipsig

    It behave the same in 10.4.11.
    The Search / Replace dialog used by every app is based on a tool delivered by Apple in the resources which apps may use so, an entry made in the dialog of apply A appear in the dialog of appli B. It may appear in more.
    Look at these screenshots.
    The first three share the same string to search.
    They are from apps designed as word processor.
    The two other share an other value.
    They are from apps designed for developers.
    It show us that there are two sets of tools used for the Search / Replace feature, both of them sharing datas between the applications.
    Maybe this feature may be used for interesting things.
    In the operating system, we have only one clipboard but thanks to the described feature, we may pass three strings between two operations with a single switch task.
    It suffice
    to fill the Search field,
    to fill the Replace field
    to fill the clipboard
    from the source document.
    Then in the target document,
    paste the clipboard in the target doc,
    grab the content of the Replace field an paste it in the target doc
    grab the content of the Search field and paste in the target document.
    So, what you describes as anannoying feature which end users like me and you can't change, may be described as an interesting and useful feature.
    Just a matter of point of view (or of philosophy : I see the positive side, you see the negative one).
    Yvan KOENIG (VALLAURIS, France) lundi 5 juillet 2010 22:47:16

  • Implementing Function Security in Oracle apps.

    I wanted to restrict certain menus in Payables manager for a particular user. How should i implement it? Is there any live example of implementing function security in oracle apps? Please Help.

    Hi,
    One approach is to create a custom menu and attach to it all the menus and functions you want and the add this menu to a new responsibility. But this is not the best way to solve the issue because you have to define different menus + responsibilities for each different user. Other way is to create roles which can be assigned to users.
    Thanks,
    Bahchevanov.

  • How to Implement KFF Range (Low and High) in query find form in oracle apps

    Hi,
    Please provide some sample script for using KFF range LOV (Low and High) in one of the query find form in Oracle apps R12.
    I need to customize one of the standard form and add this range functionality for that search form.
    Thanks,
    Prasanna

    Yuvaraaj,
    Your request is unique to the Oracle Enterprise Business Suite (EBS). Please post your question in the General EBS Discussion forum. If you have a general Forms question, by all means, ask it here! ;-)
    Craig...

  • Oracle Apps Functional Guidance

    Hi Guru's,
    Currently i am working as a Oracle Apps Technical Consultant from past 4 years.
    Now i am planning to move SCM Functional side ( SCM Functional Consultant ). Is it right decision.? Please suggest me....

    Hard to answer the question. It depends on your experience level, aptitude and your personal likings.
    But typically that is the path taken by most techno-functional consultants.
    It is important to make sure you work with the business and understand various business processes. That will make you platform independent.
    If you are really interested in functional work in Supply chain area, you can look into getting CSCP or CPIM certifications. They are a bit pricey and may not offer a great value for money. However, some folks find them very useful.
    Hope this helps
    Sandeep Gandhi
    Omkar Technologies Inc.
    Independent Techno-functional Consultant

  • How to find out the exact reason for backordered order in oracle apps R12

    Hi,    
         I am new to OM module.I booked an order and trying to do "pick release" the booked order but i couldn't do so, because the order is getting backordered.
    These are the things i checked
    1.On-hand quantity for the particular item i am booking is sufficient enough
    2.Item is in M1 org and onhand quantity is also in same org.
    Can you please help me how to find the exact reason for my order getting backordered.
    Regards
    Sandeep.G

    Hi Sandeep,
    Reasons for pick release resulting in back ordered can be found here:
    Reasons for a Sales Order to get Backordered!
    Failing pick release, orders getting backordered and other common issues with picking.
    Please review notes:
    Cannot Pick Release Items, Completes with Warning and the Item is Backordered. (Doc ID 1240404.1)
    Pick Release Process Completes In Warning Line Gets Backordered Though Onhand Is Present (Doc ID 1285514.1)
    Pick Release Backorders Sales Order Lines, Error in Log File "No Mtl_Sales_Order ID found for oe header" (Doc ID 398385.1)
    Reservation Remains After Pick Release Of Backordered Move Order (Doc ID 754518.1)
    In addition, please review:
    What is Back Order in OM? How are Backorders Handled | Oracle Apps
    Thanks &
    Best Regards,

  • Query or Profile Option to find Current logged in user in oracle apps R12

    Query or Profile Option to find Current logged in user in oracle apps R12.
    I want to get value of current user who is logged in to that particular session, based on the value of user_id or user_name returned i have to do a Forms Personalization.
    Plz help.
    Regards,
    Sadiya P.

    Hi Sadiya,
    do you have the answer for this? please send it to me because i am also have same requirement. so plz post it here....

  • Function in oracle to find number of occurances of a character in a string

    hi,
    is there any function in oracle to find the number of ocurrances of a character in a string ?
    or is there any simple way of doing the same, rather than writting many lines of code as my program is already very complex.
    Maria

    Hi Maria,
    I don't know of such a function in Oracle, but maybe you could use this:
    length(search_string) - length(replace(search_string, character_to_be_found))
    For example: select length('Hello') - length ( replace('Hello', 'l')) from dual;
    Hope this is what you're looking for
    Danny

Maybe you are looking for