Deletion of BP role

Hi,
We are in 4.6c and IS media integarting with PS module.
Can anyone tell me how to delete the Business Partner "Role" in IS media module.
I found in ECC60, but not in 4.6c.
Thanks a lot in advance.
Krishna Reddy
Edited by: krishna.gujju on May 28, 2010 4:52 PM

Hi Vengaiah ,
Thanks a lot for your reply.
We are updating the BP roles thru the IS media module and that partners will appear in our project/WBS Partner tab.
I think the partner roles will have some customizing tcode to delete. but I m not able to find in 4.6c.
I can see in ECC 6.0.
Can you please let me know alternative option in 4.6c.
Thanks in advance.
Krishna Reddy

Similar Messages

  • CRMXIF_ORDER_SAVE for deletion of partner-role

    Hello there,
    I need to delete a partner-role from an order so I'm using BAPI CRMXIF_ORDER_SAVE. However, the partner is not being deleted. Please have a look at the content of the CRMXIF_BUSTRANS_T structure:
    OBJECT_TASK          U
    OBJECT_GUID          46986070E6C6005702000000C0A8974B
    OBJECT_ID                                                                               
    PROCESS_TYPE          0
    OBJECT_TYPE          BUS2000126
    POSTING_DATE          20070730
    DESCRIPTION          Systemtechnik S1
    DESCR_LANGUAGE          D
    DESCR_LANGUAGE_ISO                                                                               
    LOGICAL_SYSTEM                                                                               
    CRM_RELEASE                                                                               
    CLIENT                                                                               
    CREATED_AT          0
    CREATED_BY                                                                               
    CHANGED_AT          0
    CHANGED_BY                                                                               
    LOCAL_TIMEZONE                                                                               
    ARCHIVING_FLAG                                                                               
    OBJECT_ID_OK                                                                               
    HIGHEST_ITEM_NO          0
    CRM_CHANGED_AT          0
    DESCRIPTION_UC                                                                               
    EARLY_ORDER_NO                                                                               
    CALC_SCHEMA                                                                               
    SCENARIO                                                                               
    TEMPLATE_TYPE                                                                               
    VALID_FROM_EXT          0
    VERIFY_DATE          0
    ACTIVITY                                                                               
    LEAD                                                                               
    OPPORTUNITY                                                                               
    PARTNER                                                                               
    PARTNER_NO     260485
         PARTNER_GUID                                                                               
    ALT_PARTNER_NO                                                                               
    ALT_PARTNER_NO_TYPE                                                                               
    IDENT_NUMBERS     Table[initial]
         PARTNER_FCT     15
         PARTNER_PFT                                                                               
    PFT_SUBTYPE                                                                               
    MAINPARTNER                                                                               
    RELATION_PARTNER_NO                                                                               
    RELATION_PARTNER_GUID                                                                               
    CALENDAR                                                                               
    DISABLED                                                                               
    KIND_OF_ENTRY                                                                               
    ADDR_ORIGIN                                                                               
    STD_BP_ADDRESS                                                                               
    ADDR_OPERATION                                                                               
    ADDR_NR                                                                               
    ADDR_NP                                                                               
    ADDR_TYPE                                                                               
    DISPLAY_TYPE                                                                               
    ERROR_FLAG                                                                               
    DOC_ADDRESS                                                                               
    TERRITORY     Table[initial]
         OBJECT_TASK     D
         INPUT_FIELDS                                                                               
    ORGDATA                                                                               
    PRICING_PARAMS                                                                               
    BILLPLAN                                                                               
    BILLING                                                                               
    CANCELATION                                                                               
    SUBJECT                                                                               
    REF_OBJECT                                                                               
    SALES                                                                               
    SHIPPING                                                                               
    PAYPLAN                                                                               
    DATES                                                                               
    CUMULATION_HEAD                                                                               
    CONDENSED_STATUS                                                                               
    STATUS                                                                               
    DOC_FLOW                                                                               
    ATTACHMENT_LINK          Table[initial]
    TEXT                                                                               
    CUSTOMER_H                                                                               
    IPM_RCHAR                                                                               
    ITEM          Table[initial]
    CONTROL_SWITCHES                                                                               
    INPUT_FIELDS
    Adding new partners to the order is working fine though.
    Is there anything I got wrong?
    Regards,
    Anja

    I still could use a little help here. For better testing I extracted the relevant coding into an evaluation-report:
    DATA data TYPE crmxif_bustrans_t.
    DATA is_data TYPE crmxif_bustrans.
    data is_data_f type CRMXIF_BUSTRANS_F.
    DATA is_actx TYPE crmxif_activity_x.
    DATA is_act TYPE crmxif_activity.
    DATA is_datesx TYPE crmxif_appointment_xt.
    DATA it_dates TYPE crmxif_appointment_t.
    DATA is_dates TYPE crmxif_appointment.
    DATA is_statusx TYPE crmxif_status_xt.
    DATA it_status TYPE crmxif_status_t.
    DATA is_status TYPE crmxif_status.
    DATA it_partnerx TYPE crmxif_partner_xt.
    DATA it_partner TYPE crmxif_partner_t.
    DATA is_partner TYPE crmxif_partner.
    DATA is_partner_f TYPE crmxif_partner_f.
    DATA lv_return TYPE  bapiretm.
    * HEADER
    is_data-object_task = 'U'.
    is_data-object_guid = '46AE8865377D005900000000C0A8974B'.
    is_data-process_type = '0000'.                   
    is_data-object_type = 'BUS2000126'.               
    is_data-posting_date = '20070731'.
    is_data-description = 'Systemtechnik S1'.                
    is_data-descr_language = 'D'.
    * ACTIVITY
    is_act-category = 'Z99'.                        
    is_act-extern_act_id = '420006760000124133'.              
    MOVE is_act TO is_actx-data.
    is_actx-datax = 'X'.
    MOVE is_actx TO is_data-activity.
    * DATES
    is_dates-appt_type = 'ORDERACTUAL'.              
    is_dates-timestamp_from = '20070801070000'.     
    is_dates-timestamp_to = '20070802130000'.                        
    APPEND is_dates TO it_dates.
    MOVE it_dates TO is_datesx-data.
    is_datesx-datax = 'X'.
    MOVE is_datesx TO is_data-dates.
    *STATUS
    is_status-status = 'E0003'.          
    is_status-user_stat_proc = 'CRMACTIV'.
    is_status-active = 'X'.
    is_status-language = 'D'.
    append is_status to it_status.
    move it_status to is_statusx-data.
    is_statusx-datax = 'X'.
    move is_statusx to is_data-status.
    * PARTNER
    is_partner-partner_guid = '42004B723E57004300000000C0A89748'.
    is_partner-partner_fct = '00000015'.
    is_partner-object_task = 'D'.
    is_partner_f-partner_guid = 'X'.
    is_partner_f-partner_fct = 'X'.
    move is_partner_f to is_partner-INPUT_FIELDS.
    APPEND is_partner TO it_partner.
    MOVE it_partner TO it_partnerx-data.
    it_partnerx-datax = 'X'.
    MOVE it_partnerx TO is_data-partner.
    APPEND is_data TO data.
    CALL FUNCTION 'CRMXIF_ORDER_SAVE'
      EXPORTING
        data   = data
      IMPORTING
        return = lv_return.
    COMMIT WORK.
    Does s.o. see anything conspicuous?
    Regards,
    Anja

  • Delete all existing roles

    Hello,
    we 're using the GRC Provisioning Framework (with IDM 7.1 SP4 and GRC 5.3 SP10_1) and want to delete all existing roles from a user bevor we set new roles to him.
    Is there a general command to do this or have the existing roles to be known?
    Thanks,
    Carsten

    Hello Christian,
    thanks for the quick answer. I'm talking about privileges.
    In the To Identity Store, is it enough to set:
    MSKEYVALUE                   -
       %MSKEYVALUE%
    MXREF_MX_PRIVILEGE     -
    Or do I have to set all existing roles behind the (like priv:grc:xxxx)?
    Thanks,
    Carsten

  • BDC for PFCG for deletion of user roles

    I need to create a BDC for deleting users from roles in PFCG transaction and after deletion you have to click on User comparison in User tab.
    Any idea how to compare and delete theusers from role.
    It comes in Table control.
    1)delete from table control .
    I have not been able to see delete from Table programs.
    George

    Hi
    U should consider PFCG trx is enjoy trx so it's not suitable for BDC, what doesn't mean you can't do a BDC program for that trx but it won't be easy.
    Anyway you can know the users assigned to certain profile reading table AGR_USERS. I believe PFCG shows them sorted alphabetical, so you can know the position where an user should be, after u should use PAGE UP and PAGE DOWN command to scroll the table control.
    Max

  • Mass deletion of SAP roles from users

    Hello All,
    i need to delete all assinged roles from a big number of users. I know the users but not the roles which the users have. I need to delete all roles from the users-id's.
    I know SU10 and i can select all my needed users. But in the role tab i can not work with roles-names like Z* to delete. I can select all z*-roles and select "remove" but when i click to save, i get the message no changes made on the users???
    Any idea?
    Gruß
    Toni

    Hi David.
    David Berry wrote:
    I take it this is being run in PRD? What checks are being carried out during the table entry deletions and are you 100% happy sitting at your keyboard when pressing the 'run' button?
    Changes are made in PRD. The program was tested and is approved by each customer.
    Is there an easy way back to the previous state should it go wrong and how do you explain it to the auditors if needed that you assigned-number of roles in PRD against your own user ID possibly with no CDHDR/CSDPOS entries to back you up.
    Sorry for the 'negative vibes' but I don't like direct table maintenance in PRD for security.
    Best wishes
    David
    The way back is uploading the old role assignment previously exported from AGR_USERS. The program takes an excel sheet. In addition this excel sheet is attached to the change requests.
    From risk perspective we say (and experienced): mass changes through copy and paste lead to much more errors and faulty authorizations.
    Regarding direct table maintenance: standard function modules are used (like the one mentioned above) and the changes are visible in the change documents, Therefore the auditors grant an exception for using such tools.
    Cheers, Tobias

  • Deletion of mass roles from GRC CUP 5.3

    Dear All,
    I have requirement to delete 1000 roles from GRC CUP 5.3.
    I can see option to delete the roles individually under "search role" option but I am not able to find option to delete mass roles.
    Please advice.
    Regards
    Trinadh Bokka

    Hello Trinadh,
    It is not possible to delete all the roles at once through the User Interface. However, you can select a lot of roles at the same time by searching for a role pattern. For example, retrieve all roles starting with Z*:
    Hope it helps,
    Fernando

  • Deleting connectors and roles in cup

    Hello,
            While deleting connectors and roles through CUP  its showing some dependancy error of requests.So first we need to delete the requests or archive the requests.Can we delete the requests through database level or not.

    depends on your support pack level, if you are SP11 or higer you maybe able to delte it using a eature provided in GRC.
    What is your SP level?
    regards,
    Chinmaya

  • Where will be the deleted and Added roles will be tracked

    HI All,
          Need is i must track the Deleted and Added Transactions to the Role and
          Deleted and Added Roles to the Composite Roles.
          In the table AGR_HIER the records are inserting and deleting when we add change the Roles and Composite roles.
          There is no history maintained in that regarding newly inserted items(transaction to the role and Roles to the composite role) and deleted items(transaction to the role and Roles to the composite role).
          Please proved the needful help.
    Thanks,
    Ravi.

    Hi,
    table entries in <b>USR* and UST*</b> tables
    Regards

  • Delete/Remove Adhoc Roles

    Hi All,
    I am creating an adhoc role in my workflow for a notification and i want the Adhoc role to be removed/deleted when ever the notification is responded.
    Is there any API for removing/deleting the Adhoc roles?
    If so could you please explain me it?
    Thanks & Regards
    Santhosh

    Hi,
    You need to call WF_PURGE.Directory to remove them. Have a look in the API reference guide.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Disable delete button in role

    Hi experts,
    does anybody have an idea how to disable the delete butten (red cross) in bex analyzer for queries in the role menu? If i search as a reporting user a query via the role menue i am able to delete the query from the menue. I don´t want the reporting user to be able to do that. The funny thing is, the reporting user is not able to delete queries if he searches queries via the infoprovider menue.
    I can not find the authorization objekt where i can disable the deletion of a query in a role.
    Would be great i anybody could give me an idea what to change.
    Best regards
    Janos Bugler

    Hello Janos,
    I don't know if is possible to suppress the button.
    Also, per your description, the user is not deleting the query/workbook.
    Probably is removing from the History, which is acceptable. Every user can manage his own History.
    However, please check the note below. Could be helpful.
    1180148 - Excel workbooks can be changed in the production system
    Best regards,
    Edward.

  • View Deleted Users Composite Role

    Dear Experts,
    Is there any way to view the composite roles that were assigned to a user that was deleted? 
    I am able to go to SUIM and view the single roles but I would like to get the composite roles that were deleted.  This is needed so that we can recreate the user and assign the old roles to the user.
    Please help.
    Thanks.

    If you select the "role change docs" in SUIM and use the selection criteria "overview of change docs" or "all change docs", then deleted composite roles will show up in this report. It would be handy if your composite roles had a different naming convention than the single roles.

  • Deletion of  particular roles from SU01 for specific users

    Hi,
    Actually I have to certain(only some)  roles for  users in SU01.
    This is bulk data so doing it manually through SU01 is not possible.
    Is there any function module/BAPI which will delete particular roles for users??
    Disha.

    Hi David.
    David Berry wrote:
    I take it this is being run in PRD? What checks are being carried out during the table entry deletions and are you 100% happy sitting at your keyboard when pressing the 'run' button?
    Changes are made in PRD. The program was tested and is approved by each customer.
    Is there an easy way back to the previous state should it go wrong and how do you explain it to the auditors if needed that you assigned-number of roles in PRD against your own user ID possibly with no CDHDR/CSDPOS entries to back you up.
    Sorry for the 'negative vibes' but I don't like direct table maintenance in PRD for security.
    Best wishes
    David
    The way back is uploading the old role assignment previously exported from AGR_USERS. The program takes an excel sheet. In addition this excel sheet is attached to the change requests.
    From risk perspective we say (and experienced): mass changes through copy and paste lead to much more errors and faulty authorizations.
    Regarding direct table maintenance: standard function modules are used (like the one mentioned above) and the changes are visible in the change documents, Therefore the auditors grant an exception for using such tools.
    Cheers, Tobias

  • ERROR IN ESS AND MSS pages when deleting the superadmin role

    hi all
    According to my clent requirement i have worked with uwl for leave request.....for that i configured uwl and added uwl iview to the standard user role......after i have assigned standard user role to my manager.
    but' after some time they told me that they need attendance overview and Reminder of dates and subordinate information.
    After backend configuration i have assigned Mss role to the Manager,
    i have made the settings for mss role with overview workset
    Again overview contain-workoverview page it contains  1) uwl pabge  2)Attendance Overview   3)reminder of dates
                                            Team-  General information and so on
    now my manager has following roles 1)ESS   2)MSS 3)Home (from the standard user role)   4) Home( by default i think from MSS role)     5) superadmin role
    when ever i am removing the super admin role and standard user role for the manager   i am unable to see the Attendance overview page and Reminder of dates page and i am unable to see the pages in ESS also.
    getting error
    Critical Error
    A critical error has occured. Processing of the service was terminated. Unsaved data has been lost.
    Contact your system administrator.
    Read of object with ID portal_content/com.sap.pct/srvconfig/com.sap.pct.erp.srvconfig.mss/com.sap.pct.erp.srvconfig.rod/com.sap.pct.erp.srvconfig.fpmapplications/com.sap.pct.erp.srvconfig.reminderofdates failed.
    plz ask me if any information is needed for this to solve my problem.
    thankyou in advance.
    if i am keeping that superadmin role(content ,user and system administration) All pages are opening.
    thankyou

    Swapna,
    Pls refer below links,
    Unable to view notofications in MSS
    Re: Critical Error when running MSS Work Overview Page
    Manager Self Service Content are not showing up
    Hope it should work now...
    To give points, select the radio buttons on the left side under the name of the replier.
    Regards,
    Amarnath S

  • Unable to delete role from a project

    hi
    i added a role to a project.   i staffed it with a resource.  Now when i try to remove this staffing.. i get the message
    "Cannot delete project role staffing"
    the help is as follows
    Cannot delete project role staffing
    Message no. DPR_BUPA_LINK020
    Diagnosis
    You are trying to delete a staffing. However, the resource of this staffing is entered as a responsible resource for at least one project element or is assigned to at least one task. The status of the assigned project element does not permit changes. This means that the links cannot be deleted and therefore, the actual staffing cannot be deleted either.
    System Response
    The system does not delete the project role staffing and issues appropriate messages.
    Procedure
    Reset the status of the assigned project element so that the changes can be made.
    Make sure that the links are removed by authorized users or obtain the relevant authorization from your system administrator.
    But i have added the role and staffed it afresh.  i am also not able to delete any newly added roles.
    Pls suggest!
    Regards,
    Sujata.

    Hi,
    Have u tried by following dignosis solution given in message help. Please try by removing the responsible resource from basic data tab of phase or task for which the person is assigned. also check the status of task or phase for which he is assigned as responsible person. if the perticualar task is complete then I beleive tht u will not be able to remove responsible person.
    Pramod

  • Procedure for deleting a role which is already in Production

    Hi,
    can any one explain me the procedure for deleting a role which is already in production
    i want to know procedure for deletion of
    1.single role
    2.composite role
    3.derived role
    4.parent role
    thanks,
    SSSS

    Hi,
    Role deletion must be done in development box and the deletion must be transported to quality and productuion
    For single and derrived roles create the transport request and delete the role and transport the deletion.
    For Deletion of parent role: you cannot delete the parent role unless all the derrived roles within it are deleted.
    To avoid the transport of user assignment make sure PRGN_CUST is set to 'NO' value for the parameter USER_REL_IMPORT.
    Rakesh

Maybe you are looking for

  • *MRP unable to create Delivery Schedule Lines in MM Scheduling Agreement*

    Hi Experts, I need your help... The issue is, in-spit of maintaining Source List with an u201CScheduling Agreement with item No.u201D & u201CSource List Usage in MRPu201D as 2 (Record relevant to MRP. Sched. lines generated automatically), MRP run do

  • Block stock return to vendor.

    Sir i wish to return material back to vendor from block stock .How to do this.I know that by movement type 122 we can return material back to vendore from unrestected stock. I am online.......

  • Webservice Errors

    Hello, I'm currently running Oracle 9i (9.2.0.1). I'm also using JDeveloper 10g Preview version. Please note: I'm actually a Microsoft C#/SQL Server developer, however, I'm using oracle to test consuming a webservice I wrote in .NET. I'm relativly ne

  • Itune Syncing with ipod shuffle 512k - problems

    I have a shuffle (first gen) -when i try to delete from it or add a song to it it gives me the message about syncing which is fine. However it takes about 5 minutes for it to update or delete even one song - this is driving me mad - anyone have any i

  • How to convert mailboxes to mbox format?

    hi i need to convert all my email messages from the mailbox format used by Apple Mail to mbox so that they can be imported to Mozilla Thunderbird. is there any software available for doing this? i'm aware of the cosmicsoft "EMLX to mbox Converter" wh