How to know in which roles a given query is ?

Hello,
Suppose I have a certain query.
Is there a way to know in which roles this query is other than do a manual search in pfcg?

Hi Roy,
You need to recheck the settings ,  i tried assigning web template to role , and while i try to transport it thorugh transport connection using following options
Grouping indataflow afterwards
collection mode : collect automatically
display as list.
And this shows me query involved and roles to which it is attached to.
Hope that helps.
Regards
Kapadia
***Assigning points is the way to say thanks in SDN.***

Similar Messages

  • How to know in which roles an iview is being used

    Hi,
    We would like to know if a specific iview is being used by any portal role.
    It there any kind of "where used" report where I can investigate the relations between portal content objects (iview, page, workset, role) ?
    I tried the PCD Toool but it seems of no help
    thanks
    Moti

    Dear Moti,
    As Debasish stated, you can check the Tracing Delta Link Dependencies for the iview in which you can find the where particular iview is used in the page, workset or role in the SAP Portal.
    Refer to [Tracing Delta Link Dependencies|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/76/3a0841aaccf023e10000000a155106/content.htm]
    Hope it will helps
    Best Regards
    Arun Jaiswal

  • How can I see which roles or users have access to a table?

    How can I see which roles or users have access to a table?
    For a given table, how can I see the grants, who and what?
    Many thanks

    dba_tab_privs.
    Grantee can be a role or an user, as roles are fake users.
    Sybrand Bakker
    Senior Oracle DBA

  • HT201407 how to know under which carrier has the phone been issued

    how to know under which carrier has the phone been issued

    If you bought it from an authorized Apple reseller, it should say on the receipt. If you bought it from a private seller, ask that seller, or call Apple Support and they may be able to tell you.
    Regards.

  • How to know on which time dimension level we are ?

    Hello,
    I would like to know is there a variable or a mean to know dynamically on which time dimension level we are in order to use that in a CASE WHEN clause ?
    By using a sort of aggregation tables in which one of the column contains the name of the level, I could know on which level I am but I can't use that for drill down. What I mean :
    Tab1 :
    'Year' as typelevel, year
    Tab2 :
    'Month' as typelevel, year, month
    In BMM, I have made one logical table with as Source tab1 and tab2 and as columns typelevel, year and month.
    tab1 has in content column the year level
    tab2 has in content column the month level.
    So when in Answers I retrieve
    typelevel, year
    the result is : 'Year', 2008
    and when I request : typelevel, year, month
    the result is : 'Month', 2008, 1
    But if I want to drill from year to month in order to have :
    'Year', 2008
    and then after drill
    'Month', 2008, 1
    it is impossible as a filter on typelevel='Year' is added on the month level, so it retrieves 0 columns.
    If someone has an idea on how to do that it would be very great.
    Thanks in advance for your help.

    Hi Supriya,
    OOTB I think you can use SharePoint designer, but I would suggest  custom code to iterate to all pages, and get the lists that are associated with these pages.
    http://stackoverflow.com/questions/633633/sharepoint-how-can-i-find-all-the-pages-that-host-a-particular-web-part
    another one would be if those lists were never used and you can check for list with empty data.
    I would use Get-SPLists to get all of the lists to check for zero items.
    http://blogs.technet.com/b/heyscriptingguy/archive/2010/09/15/use-windows-powershell-to-manage-lists-in-sharepoint-2010.aspx
     http://sharepointrelated.com/2011/11/28/get-all-sharepoint-lists-by-using-powershell/
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to find out which roles belong to a collective role?

    Hello,
    i loop over at an internal table which contains names from agr_1251-agr_name.
    No I want to find out if the role is a collective one, and if this is true, i want to find all single roles belonging to that collective role.
    Do you have any ides if there is a Function existing or in wich tables I can find I am looking for?

    Thx for your answer.
    Yes I did.
    In this table can I see if a role is a collective one, but I don´t see which roles belong to this role.

  • How to know the which week in GregorianCalendar API

    Dear all
    does someone know that way when i use GregorianCalendar this API to know the which week is
    for example in this month has 6 week and 2008/08/27 is week 5 , dose any idea i can know it in this program
    import java.util.Calendar;
    import java.util.GregorianCalendar;
    import java.util.Date;
    import java.text.DateFormat;
    public class DateExample5 {
         public static void main(String[] args) {
              DateFormat dateFormat =
              DateFormat.getDateInstance(DateFormat.FULL);
              // Create our Gregorian Calendar.
              //GregorianCalendar cal = new GregorianCalendar(2008,05,10);
              GregorianCalendar cal = new GregorianCalendar();
              //cal.setTime(new Date());
              System.out.println("System Date: " +dateFormat.format(cal.getTime()));
              // Set the day of week to FRIDAY
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.SUNDAY);
              System.out.println("After Setting Day of Week to Friday: " + dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.MONDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.TUESDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.WEDNESDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.THURSDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.FRIDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.SATURDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.add(GregorianCalendar.DAY_OF_MONTH,7);
    }Edited by: roger5089 on Aug 26, 2008 9:25 AM

    import java.util.Calendar;
    import static java.util.Calendar.WEEK_OF_MONTH;
    public class DateExample5 {
        public static void main(String[] args) {
            Calendar cal = Calendar.getInstance();
            int weekOfMonth = cal.get(WEEK_OF_MONTH);
            System.out.println(weekOfMonth); //5
    }Never used Calendar.WEEK_OF_MONTH, but I had a butcher's hook and found this documentation:
    <quote>
    Field number for get and set indicating the week number within the current month. The first week of the month, as defined by getFirstDayOfWeek() and getMinimalDaysInFirstWeek(), has value 1. Subclasses define the value of WEEK_OF_MONTH for days before the first week of the month.
    </quote>

  • How to know to which page the user is going

    Hi! I want to know to which domain my user is going after leaving a certain page. I want to know this to differentiate if is moving to a page inside my site, if he's leaving or if he's closing the browser.
    Hope u can help me! Regards
    Raul

    If a user clicks a link on the page then you can tell that where is he/she heading,but if they type the address in the location bar,then you are out of luck.
    And this is a JavaScript/html related question( I think...*_*)
    Cheers
    Khalid

  • How to know to which process chain a infopackage belongs to?

    Hi experts!
    I got the name of a infopacakage (also its technical name), but I would like to know to which process chain it belongs to,
    Does someone a quick way to know it?
    Thank you very much in advance!!

    Hi Raul,
    If you open the infopackage there is an option at the top 'process chain maint.'  Click this and it will give you the proces chain it belongs to.
    Thanks,
    Nick.

  • How to know on which pages a particular list is being used?

    Hi
    So we have this site which has not been cleaned up for a while resulting in the creation of many lists many of which are not being used as well. I want to know that where all a particular list is being used i.e on which all pages so that if the list is not
    being used, I could delete it. Is there any simple way to do it.
    Please share your thoughts:)
    Thanks
    Supriya Sinha

    Hi Supriya,
    OOTB I think you can use SharePoint designer, but I would suggest  custom code to iterate to all pages, and get the lists that are associated with these pages.
    http://stackoverflow.com/questions/633633/sharepoint-how-can-i-find-all-the-pages-that-host-a-particular-web-part
    another one would be if those lists were never used and you can check for list with empty data.
    I would use Get-SPLists to get all of the lists to check for zero items.
    http://blogs.technet.com/b/heyscriptingguy/archive/2010/09/15/use-windows-powershell-to-manage-lists-in-sharepoint-2010.aspx
     http://sharepointrelated.com/2011/11/28/get-all-sharepoint-lists-by-using-powershell/
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to know the day of a given date?

    Hello Experts,
    Is there any function module that can give the day of a given date? For example, If
    I put in 10/30/2007, it will give me Tuesday. Hope you can help me guys.Thank you and take care!

    Hi
    Yes, DATE_COMPUTE_DAY
    Sample code:
      clear: hold_day_of_week.
      CALL FUNCTION 'DATE_COMPUTE_DAY'
           EXPORTING
                DATE = workdate
           IMPORTING
                DAY  = day_of_week_num
           EXCEPTIONS
                OTHERS  = 8.
      CASE day_of_week_num.
        WHEN 1.
          hold_day_of_week = 'Monday'.
        WHEN 2.
          hold_day_of_week = 'Tuesday'.
        WHEN 3.
          hold_day_of_week = 'Wednesday'.
        WHEN 4.
          hold_day_of_week = 'Thursday'.
        WHEN 5.
          hold_day_of_week = 'Friday'.
        WHEN 6.
          hold_day_of_week = 'Saturday'.
        WHEN 7.
          hold_day_of_week = 'Sunday'.
        WHEN OTHERS.
          hold_day_of_week = 'invalid'.
      ENDCASE.
    or 
    You can use  DATE_COMPUTE_DAY to get the day number of the week (for example, today gives 5)
    then use WEEKDAY_GET which returns an itab with seven entries (one for each day of the week.)
    You enter in this itab and get the field langt to get the day name.
    code @ http://www.sap-img.com/abap/fm-to-get-the-day-for-a-particular-date.htm
    Pls reawrd points

  • How to know the which add-ons my sap system Have

    AS per Note 1318299 - SAP Enhancement Package 5 for SAP ERP 6.0:Compatible Add-ons
    Symptom
    You plan to run SAP enhancement package 5 for SAP ERP 6.0 together with an Add-On on the same system. Which points do you need to consider?
    Other terms
    AddOn; add-on; Enhancement Package; compatibility;
    Solution
    In general, please check whether your Add-On supplier has released your specific Add-On for usage with SAP enhancement package 5 for SAP ERP 6.0.
    If you have a solution categorized as '(Standard) Custom Development' for your ERP system, please contact SAP Custom Development at least three months before implementing SAP enhancement package 5 for ERP 6.0, because sufficient time might be required in case of adjustments.
    If you find the add-on you are looking for neither in the list below nor in the related notes, please contact SAP Support (for SAP Products) or the specific partner (non SAP-Products).
    Then my question is, how can i find, the add-ons present in my windows/oracle ECC 6.0 installation.

    HI
    All componets are add-on installed in your system. If you want select according technical usages in mantienance optimazer for EHP5 see sap  Note 1324838 - Enhancement package 5 for SAP ERP 6.0: Required SWC
    In the attachments you found a table with Technical usages - add on.
    When you select your technical usages then appear add-on that will be upgrade.
    Regards
    William Neira

  • Need FM to know user and roles in given Objid

    Hello experts ,
    I need function module that to which I will provied Organization id and in retuen it should give me Roles and Users under it . First of all is there any function module like this ? If yes please provied with sample code if any.
    Points will be rewarded .
    Cheers
    Parry

    see this sample code.
    DATA : BEGIN OF int_orient OCCURS 10,
               domvalue_l LIKE dd07v-domvalue_l,
               ddtext LIKE dd07v-ddtext,
               END OF int_orient.
    DATA: ZPETS_PORTORIEN type dd07l-domname,
            int_values_table  TYPE dd07v OCCURS 0 WITH HEADER LINE.
      CALL FUNCTION 'GET_DOMAIN_VALUES'
        EXPORTING
          domname         = 'ZPETS_PORTORIEN'
          text            = 'X'
        TABLES
          values_tab      = int_values_table
        EXCEPTIONS
          no_values_found = 1
          OTHERS          = 2.
      LOOP AT int_values_table.
         int_orient-domvalue_l = int_values_table-domvalue_l.
        int_orient-ddtext = int_values_table-ddtext .
        append int_orient.
      ENDLOOP.
    Rgds
    Anver

  • How to find "To which role does a user belong"?

    Hi experts,
    I am very new to portal.
    In the starting phase only, i got stuck at one issue.
    I am developing a custom java application for finding user details.
    Here we want to display user role in a iview but not other information, i tried to assign user admin role for finding the role but, client says its not the way, we cant assign full permission to end user.
    Please suggest me the best way earliest.
    Thanks in advance
    <Kamlesh>

    Dear Kamlesh,
    Always Please try it on yourself first, then ask for code.
    I dont have a handy code, but check if this helps you:
        IRole myRole= null;
        try {
            myRole= getSingleRole("<ROLE_ID>", false);
        } catch (UMException e) {
            response.write(
                "Error getting role: " + e.getLocalizedMessage());
        if (user.isMemberOfRole(myRole.getUniqueID(), true))
            response.write(" IS a <ROLE_DESCRIPTION>");
        else
            response.write(" IS NOT a <ROLE_DESCRIPTION>");
    regards
    -Kedar Kulkarni

  • How to identify which role user is associated with?

    Oracle 11.0.1.7:
    How do I identify which role a user is associated with?
    Also how do I identify the privilges for a given role. For eg if SELECT, INSERT, DELETE was granted for a table to a role which dictionary table do I look at?
    I looked at USER_TAB_PRIVS.

    Check this:
    http://www.adp-gmbh.ch/ora/misc/recursively_list_privilege.html
    HTH
    -Anantha

Maybe you are looking for