Pfcg, Role: unwanted entries in ptmw employee List

Hi,
i try to setup a Role for our time-recording clerks, (they use a customized ptmw) and encountered some problems, one of them:
The different time-managers should only see the members of their cost-center, I used the object P_ORGIN/VDSK1 for checking(the cost-center number ist part of the OrgKey). Woks well in ohter Report and transaction, but in ptmw some co-workers are listed even though they have an VDSK1 entry out of the enabled range. Our HR guy told me that once these workers where assignet to a Cost Center Numer within the enabled range.
my question now is: how can i avert the display of co-workers which were cost-center members in the past but not anymore ?
Best Regards,
Heinrich

i think u should implement structural authorizations, u would get a better answer if u post in netweaver security forum

Similar Messages

  • What must I do to delete an unwanted entry in the "Name" column of the Bookmarks Toolbar list in my Bookmarks Library?

    What must I do to delete an unwanted entry in the "Name" column of the Bookmarks Toolbar list in my Bookmarks Library?
    At the very bottom of the entries in the "Name" column of the Bookmarks Toolbar in my Bookmarks Library, an entry has appeared which looks different and behaves differently than all the other entries.
    And I cannot delete it.
    All of the other entries have either a small icon or an empty square symbol at the left-hand end of its row.
    This bottom entry has nothing at its left-hand end.
    It reads "7/13/14- Profile folder - Thunderbird - MozillaZine Knowledge Base".
    And if I double-click any of the other entries, that action opens its web page.
    If I double-click this bottom entry nothing happens.
    If I right-click this bottom entry, the menu that appears includes a Delete command, but it does not disappear if I try to do that.
    And if I add a new bookmark to my Bookmarks Toolbar, it does not appear in the list which is displayed in Firefox, but it does appear beneath the entry "7/13/14- Profile folder - Thunderbird - MozillaZine Knowledge Base".
    In order to make the new bookmark show up in the list which is displayed in Firefox, I must open the Bookmarks Toolbar in my Bookmarks Library, scroll to the bottom of the Name list, and drag the new bookmark up past the "7/13/14- Profile folder - Thunderbird - MozillaZine Knowledge Base" entry.
    Again, how can I get rid of this unwanted entry?

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/

  • Employee List in PTMW Screen

    Hi All,
    We are having an issue with the employee list in PTMW screen. Terminated employees are showing up in Employee list for 3 weeks after the termination date.
    We Use SAZ (Time Date adminstrator) and SGR (Administrator group) as a paremeters to display  employee list for different stores.
    I also created "Maintaine Your own employee list" and specified selection paramerters (Not to display terminated status employees) but still they are showing up in the list.
    Any help is much appretiated.
    Thanks
    Sasha

    Dear Sasha,
    Try going to the following activity in the IMG:
    Time Management -> Time Manager's Workplace -> Employee Selection -> Assign Employee election to Profiles
    Then go into the details of the appropriate profile that you use.
    In the Selection period relative to initial period section, adjust the "Relative end date" to match your requirements.
    I hope that solves your issue.

  • Can anyone help me understanding the links between Launchpad roles, PFCG roles, and portal roles!?!

    Hi experts,
    I am looking at the newer EhP5 and EhP6 functionality for ESS and MSS, specifically the WD ABAP portal applications.  I've turned on all the business functions and services I think our team wants, however I'm confused on how to move forward in using them.  For a little tech info, we are on EhP6 for the backend, but our portal is 7.02.
    My first step was to assign the com.sap.pct.erp.ess.wda.Employee_Self_Service_WDA portal role to our test ESS user group in our sandbox environment.  The ESS user got a new ESS tab in the portal and it's linked to the Launchpad role ESS, Instance MENU.  I'm comfortable with ESS at this point, still need to learn more about customizing the menu for different employee groups without creating additional Launchpad or SAP roles.
    Question 1: Correct me if I'm wrong, but is the Launchpad roll ESS, instance menu linked to the PFCG role SAP_EMPLOYEE_ESS_WDA_2?
    Next, I was looking to see if there was a similar portal role for MSS, but it seems I can't find one.  I implemented the MSS Addon 1.0 for ABAP and the portal and got a new MSS portal addon role, but it doesn't seem to be connected to any MSS Launchpad role.
    Question 2: Is there a portal role to assign to users/groups that is linked to one of the MSS Launchpad roles? If yes, what business function or service is it a part of?
    I'd like to use of the existing MSS Launchpad role to test some of the new portal functionality, but I'm not sure how to do it.
    Question 3: How is a Launchpad role assigned to a SAP role in PFCG?  Anyone have some documentation they can point me too?
    Kind regards,
    Garrett Meredith

    Thank you Samuli, this was very helpful in connecting many of the pieces.
    For now I have a very good understanding of how the new ESS is controlled and modified.
    It appears that FPM_LAUNCHPAD_UIBB could be used to develop a similar component to call a custom launchpad role for MSS containing a customized list of WDA applications.
    Is a MSS Launchpad a good way to pursue since we use a SAP enterprise portal?
    I found a PAOC_MSS package containing other MSS embedded packages.
    Could I use one of the embedded packages in there and by creating a Component configuration in the FPM_LAUNCHPAD_UIBB for one of the MSS WD applications?
    Based on the documentation link above, PFCG roles are for NWBC HTML or Desktop versions.
    Kind regards,
    Garrett

  • Checking for the exististence of entries in the IN list

    DB Version: 10gR2
    create table x
    (col1 varchar2(30));
    insert into x values ('SONY');
    insert into x values ('ALSTHOM');
    insert into x values ('AERO');
    insert into x values ('JAKE');
    insert into x values ('MAINE');
      select col1 from x
        where col1 in
        ('SONY',
         'ALSTHOM',
         'HAITI',
         'MAINE',
         'GHANA'
    COL1
    SONY
    ALSTHOM
    MAINEWhenever an entry in the IN list of the query is absent in the table, how can i get the result like
    COL1
    SONY
    ALSTHOM
    MAINE
    HAITI   -----> NOT PRESENT
    GHANA   -----> NOT PRESENT

    Something like this? All employees, marking those not in the list
    SQL> WITH mylist as (
      2     SELECT 'ANAND' item FROM DUAL UNION ALL
      3     SELECT 'SVEN' FROM DUAL UNION ALL
      4     SELECT 'GORAN' FROM DUAL UNION ALL
      5     SELECT 'CHARLES' FROM DUAL UNION ALL
      6     SELECT 'LEMAR' FROM DUAL UNION ALL
      7     SELECT 'ZIPAJ' FROM DUAL UNION ALL
      8     SELECT 'KRALJIC' FROM DUAL UNION ALL
      9     SELECT 'YING' FROM dual)
    10  SELECT empname, DECODE(item, empname, NULL, 'Not in List')
    11  FROM employees
    12     LEFT JOIN mylist
    13        ON empname = item;
    EMPNAME                        DECODE(ITEM
    ANAND
    CHARLES
    ZIPAJ
    KRALJIC
    YING
    JAKE                           Not in List
    ALSTHOM                        Not in List
    AERO                           Not in List
    KRUPP                          Not in List
    YANEK                          Not in List
    MAINE                          Not in List
    SONY                           Not in ListOr all list marking entries not in employees:
    SQL> WITH mylist as (
      2     SELECT 'ANAND' item FROM DUAL UNION ALL
      3     SELECT 'SVEN' FROM DUAL UNION ALL
      4     SELECT 'GORAN' FROM DUAL UNION ALL
      5     SELECT 'CHARLES' FROM DUAL UNION ALL
      6     SELECT 'LEMAR' FROM DUAL UNION ALL
      7     SELECT 'ZIPAJ' FROM DUAL UNION ALL
      8     SELECT 'KRALJIC' FROM DUAL UNION ALL
      9     SELECT 'YING' FROM dual)
    10  SELECT item, DECODE(empname, item, NULL, 'Not in Table')
    11  FROM mylist
    12     LEFT JOIN employees
    13        ON empname = item;
    ITEM    DECODE(EMPNA
    CHARLES
    YING
    ZIPAJ
    ANAND
    KRALJIC
    GORAN   Not in Table
    SVEN    Not in Table
    LEMAR   Not in TableIf your list is longer, and you are getting it programatically somwhere, it might be worthwhile to populate a global temporary table with the list and use that in place of the sub-query factoring clause.
    John

  • Reduce Size or delete unwanted entries from tables AllDocStreams,AllDocVersions,EventCache,EventLog of Sharepoint 2010 content database

    Size or delete unwanted  entries from tables AllDocStreams,AllDocVersions,EventCache,EventLog  of Sharepoint 2010 content database:
    We using  powershell  scripts to migrate data between   two  sharepoint  2010 sites .
    While  doing migration  we  delete all  document libraries  & list  form  destination  site  and then run  powershell to migrate data from  source to destination. We following this  process
    twice in a week.
    But in doing  so  we found the above mention tables (AllDocStreams,AllDocVersions,EventCache,EventLog ) of destination Sharepoint Content database  are growing at an alarming rate. 
    Wish to know  how  could get rid of  unwanted  data stored in these tables.

    Hi,
    This is old thread but here is your answer for some of the tables you mentioned
    http://blogs.msdn.com/b/sowmyancs/archive/2012/06/29/alldocversions-amp-alldocstreams-table-size-after-upgrading-to-sharepoint-2010.aspx
    Cheers

  • Business Role - Link to PFCG role

    Dear all,
    When I create a new business role in CRM there is a field called PFCG role ID in which you must provide a PFCG role.
    What is the functionality of this PFCG role in relation to the Business Role?
    When I look into standard SAP business roles and their associated standard SAP PFCG role I see a lot of "external services"/views. Is it possible to create such a role from scratch myself.
    Is there some documentation available that explain this relationship between the PFCG role and the business role.
    Thank you in advance,

    Dear Ivan,
    To start with Business Partner Roles and PFCG roles are different. Though you have an integration that one business partner cannot view the data of other business partner because of the roles that are being maintained in PFCG.
    Lets say you have two customers (BP Role Customer). One customer cannot view the data of other customer because of the role that is being assigned to his user id in SU01. You create the roles in PFCG.
    CRM Business Partner Roles:
    http://help.sap.com/saphelp_glossary/en/dc/926ecf5e1cd511bcbe0800060d9c68/content.htm
    Rights and responsibilities that a business partner can have in various business transactions.
    The assignment of a BP view determines the relevant data sets, so that only a particular part of the BP master data is displayed, depending on the business transaction in question.
    http://www.crmexpertonline.com/archive/Volume_03_(2007)/Issue_04_(May)/v3i4a4.cfm?session=
    Each business partner role contains a predefined set of functions based on the business partner’s relationship to your company. For example, you could have business partner roles such as employee or vendor. The business partner roles determine the fields you have available in the SAP CRM system for the business partner. Business partner role categories sort business partner roles into groups, such as person or company.
    PFCG Roles:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/52/671285439b11d1896f0000e8322d00/content.htm
    The SAP authorization concept protects transactions, programs, and services in SAP systems from unauthorized access. On the basis of the authorization concept, the administrator assigns authorizations to the users that determine which actions a user can execute in the SAP System, after he or she has logged on to the system and authenticated himself or herself.
    To access business objects or execute SAP transactions, a user requires corresponding authorizations, as business objects or transactions are protected by authorization objects. The authorizations represent instances of generic authorization objects and are defined depending on the activity and responsibilities of the employee. The authorizations are combined in an authorization profile that is associated with a role. The user administrators then assign the corresponding roles using the user master record, so that the user can use the appropriate transactions for his or her tasks.
    Hope this will help.
    Regards,
    Naveen.

  • Issues with New PFCG role

    Hi Experts,
    I have created a new Business role ZBP_MKT_MAN and PFCG role ZSAP_CRM_UIU_MKT_PROFESSIONAL. However the authorisations are not getting copied from SAP_CRM_UIU_MKT_PROFESSIONAL to ZSAP_CRM_UIU_MKT_PROFESSIONAL properly. Can someone guide me with the same.
    Thanks
    Leela

    Hi Maikel,
    Sorry type the infor incorrectly, i have creared a BP role ZBP_MKT_MAN for which i have created a PFCG role ZBP_MKT_MANAGER to the add the same to it. However, the new PFCG role ZBP_MKT_MANAGER is not getting displayed in the PFCG roles list and i am not able to add the same to the BP role ZBP_MKT_MAN. Can you plz let me know how to proceed further.
    Thanks
    Leela

  • Restrict creation of BP based on PFCG role

    Hi Experts,
    We are implementing CRM 7.0. In the IC AGENT business role we would like to restrict the user to only create contacts using the PFCG role SAP_CRM_UIU_IC_AGENT. We tried using authorisation object B_BUPA_RLT and  CRM_BPROLE. But it did not work. Do you know if we are missing anything else? FYI..We are not using ACE.
    Best regards,
    David

    In our system we had a similar problem but with Accounts or Prospects creation. This is how we resolved it: In CRM 7.0 each Customer/ Prospect BP Record has a field Employee responsible on it. This is set automatically on the BP creation page, if the User ID of the user creation the record is assigned to an Employee record.  If the user does not have access to create Employee relationships (BUR011) it will fail to complete the customer creation process. Authorization Object B_BUPR_BZT (Business Partner Relationships: Relationship Categories) controls this. You will need to add BUR011 to u201CRELTYP_fromu201D

  • Cannot modify an authorization object in pfcg role for a business role

    Hi Experts,
    I have created two z pfcg roles from the standard business role CRM_UIU_SRV_PROFESSIONAL  lets say by names zagent and zmanager. My requirement is actually to map these two pfcg roles two a service professional agent and service professional manager custom business roles respectively( I have created these custome business roles from standard business role servicepro) . I have identified an authorization object by name CRM_CO_SE which is basically used to check whether the user is authorized to create service contract transactions. So, in the agent pfcg role, I need to de activate or deselect this particular authorization object so that the agent will not be able to create service contract. (This is not a real time requirement, but an internal assignment). When I change this object in the pfcg by deselecting 'Allow' check box and try to generate, it is not getting generated. I have selected all the options from the 'Expert mode for the profile generation' and still the traffic indicator for that authorization object is yellow.  Am I doing anything wrong?
    Please help me.
    Thanks
    Ajith C

    Hi Leon,
    Thanks for helping me, I have restricted the unauthorized user from creating a new order by disabling the 'New' button by checking the business role in  the code. The pfcg configuration, I am skipping it for now.  I have one mnore requirement. When one clicks on any items in the search result for the Service Contracts, it opens the details of that service contract with an 'edit' button. I can disable this button using do_output_preparation method for the some business roles. However, I want to disable this after checking a condition. The condition is that, edit button should be active, only if that service order was created by the employee who has currently logged on. I am relatively new to CRM and I could not figure how I can check it during run time. Could any one please help me with this?
    Thanks,
    Ajith

  • Remove all entries in sub csv list from parent csv list?

    I have two csv files, one is a complete (parent) list, the other is a sub list. I want to remove all sub-list entires from the parent list. Without manually removing each entry from the parent list one at a time, is there an effecient way to remove all sub list entries from parent list in one simple effort?
    Each list contains email addresses, I want to exclude the sub list from the parent list for the next mailing as they have already completed an action.
    Example:
    Parent list (csv1) has A, B, C, D, E
    Sub list (csv2) has B, D
    How can I remove B & D from Parent list in a concise action?
    Thanks!

    Hi smashart,
    Ian has given you a method that requires manual removal of the unwanted values from the Parent list. My preference would be for a method that constructs a new sub list that includes only the items wanted, but does not affect the original parent list data.
    Like Ian's method, this requires opening both the parent list and the existing sub list of addreses not wanted as separate tables in the same Numbers document.
    Here's an example:
    Two formulas are required.
    Parent::C2, and filled down: =IF(COUNTIF('Sub 1 (have acted)' :: $A,B2)>0,"",MAX($C$1:C1)+1)
    This creates the index shown in column C of Parent. This column may be hidden.
    Sub 2::A2, and filled down: =IF(ROW()-1>MAX(Parent :: $C),"",LOOKUP(ROW()-1,Parent :: $C,Parent :: $B))
    This uses LOOKUP to copy the indexed addresses to Sub 2.
    (Note: Close examination of the addresses in Sub 1 will show a repeated address. As can be seen, this does not affect its removal from the list in Sub 2.
    Regards,
    Barry

  • Importance / Relevance of PFCG Role - EHP5

    hello gurus,
    i am working on an ess implementation on ehp5 enviornment. i understand that in ehp5, roles are controlled through portal as well as through launchpad (pls correct my understandin if wrong) but i fail to understand the importance of PFCG role (say standard composite role: SAP_EMPLOYEE_XX_ESS_WDA_1)?
    Can someone pls explain me this and also pls help me understand the link between this role and the portal / launchpad role?
    request your help at the earliest...
    thks in anticipation
    regds,
    ss

    different employees types you can use badi or customisaiton of role menu using lpd_cust
    or pfcg which contols the access to the linls ect
    Proxy class has been replaced with the BADI HRESS_MENU. Proxy class
    is not used anymore for ESS ABAP applications.
    Henceforth this BADI can be implemented for all the dynamic changes for
    ESS Menu.
    You can find the documentation for BADI HRESS_MENU under
    Portal Role Employee Self-Service(WDA)->Employee
    Self-Services Menu (Application HRESS_A_MENU)->Dynamic
    Rendering of the Menu (BAdI HRESS_MENU).

  • PFCG Roles in Favorite menu

    Hi,
    I just learned how to create PFCG roles in R/3.
    Is it possible to place these roles in the favorite menu?
    I hope someone can help me with this one
    tnx
    hans

    Hi,
    " Is it possible to import transactions into a role from somebody's sap Favorites menu"
    I did not understand.
    There are two things
    1. Is it Favourite menu of user transaction(From user/SAP transaction menu)
    2. favourite menu section in PFCG, these are favourite roles but not transactions.
    In second case you can copy role and make new role. But if you are asking for options of making a role based on the transaction  in favourite list of user, there is no such option given by SAP, but you have to do manually if you have access to favourite section of user(I think this is somthing violating security policy).

  • In PORTAL MSS ADD ON 1.0 Employee list is blank

    Hello All
    We have recently upgraded applications on Portal  from Ehp5 to MSS ADD On 1.0 Ehp5
    We are experiencing strange issue where employee list is blank.
    pls see the screenshot
    Any idea pls let me know.
    Cheers
    Vj

    hmmmm
    I understand firstly the screen is not for managers we have used the same iView of managers and give the access for HR users with additional OADP settings.
    So now the issue is that if this HR users see the employee under there tree but some are visible and some are just blank as shown in the screenshot if you see. However when they hit that blank one still data is visible. why is it balnk shown ?

  • URGENT : How to save multiple entries in a T list at one go

    If I have a T list that contains the colours availiable at a paint shop (just an example), e.g. white, green, red. I want to save the multiple entries in the t-list at any moment to the database column at one go. how can i do it.
    Also the table doesn't contain a column for the colour_code, but instead it has the shop_id and the colour_id corresponding to that shop_id. So i need to insert into the database the colour_id for a particular colour_code as the t-list is just a control item in the data block.
    Please help.
    Abhishek.

    if you use multi-selection Tlist item or create your own Tlist looking form, then you may loop thru these multi-selections and add your logic into this loop.

Maybe you are looking for