Creating multiple BP Roles automatically after replicated BP to CRM

Hi All,
We are working on CRM 5.0 and ECC 6 as a back end system.
As per our requirement we want the clarification for the below scenario.
We are downloading Employee records from ECC to CRM.After replicating Employee records we want to add Consumer Role to every employee record in CRM. I know we can maintain multiple roles manually for a BP in CRM, But we want to add this Consumer role to every Employee record automatically.
Can anybody please explain me how can we achieve this scenario.
Thanks in advance.
Regards,
-Rahul.

Hi,
You can create a role group in CRM system with roles Employee and consumer. If you maintain this role group the two roles wil be maintained automatically.
For defining role groups you can go to SPRO transaction.
Thanks and warm regards,
Smita.

Similar Messages

  • How to create check in batch automatically after automatic payment program

    Hello
    SAP Experts i am getting a  issue
    how to create check in batch automatically after automatic payment program ( t code is f110)
    Thanks & Regards
    Narendra.G

    Hi Narendra,
    Please note the process below for cheque Printing:-
    1. The pre requisite for Cheque printing is you have used program RFFOUS_c/or the Z version of this program in FBZP and that you have maintained the form name in the field Form name for Payment medium in FBZP.
    2. You have a pre printed stationary on which you want to print and the Program & the form has been modified to print as per this.
    3. In F110, you must have assigned the Variant name, which would specify the cheque lot no. and this should exactly match with the current cheque no. in the pre printed stationary.
    4. Now, after all this setting, when you run Payment run in F110, then also only the Payment documents are posted but the cheque no.s are not updated in the Payment document no. nor the PAYR table is updated. It is only when you run the Print out tab, that a spool is created in SP01 for cheque printing as per the Payment documents.
    5. Then in SP01, you can print the spool on your pre printed stationary.
    This is the complete process of printing cheques from F110. Hope this helps..
    Regards,
    SAPFICO

  • How to develop and deploy multiple worker roles in single azure cloud services?

    I am Manikandan, From Myeasydocs.com.
    We have developed our application as web projects.  Now we are going to move to azure cloud services, i have successfully migrated our application in cloud services and it worked fine. I am having difficulties with back ground task. i have nearly 12
    schedule tasks in our applications. I need assist on creating multiple worker role creation and deployment.
    Is there is any site on explaining the worker role process in details?
    Thanks in advance .. !!

    Hi,
    In Worker role, Applications hosted within worker roles can run asynchronous, long-running or perpetual tasks independent of user interaction or input. It is a service component that is useful for generalized development, and may perform background processing
    for a web role. A worker role is frequently used for long-running tasks that are non-interactive, but you can host any type of workload.
    I suggest you to follow the below article which explains about Creating and Deploying of Web Roles and Worker Roles in Azure Cloud Service using Visual Studio.
    https://msdn.microsoft.com/en-us/magazine/jj618299.aspx
    Hope this helps !
    Regards,
    Sowmya

  • Can we create multiple session in BDC using Call session?

    Hi Experts,
    Can we create  multiple sessions in BDC using Call Session?
    Scenario:
    Program has to upload 1 million records,so can we programmatically create multiple sessions such that after every 50thousand records we create a different session.
    For moment due to large number of records BDC DYNPRO and BDC Field are unable to hold the large number of records,due to which we get a Out of memory error.
    Thanks in advance.
    Shilpa

    Hi
    If ITAB is your table with the data to be transfered:
    Open the first session:
    CALL FUNCTION 'BDC_OPEN_GROUP'.........
    IF SY-SUBRC = 0.
      FL_OPEN = 'X'.
    ENDIF.
    LOOP AT ITAB.
    IF FL_OPEN = SPACE.
    Create new session
    CALL FUNCTION 'BDC_OPEN_GROUP'.........
    IF SY-SUBRC = 0.
       FL_OPEN = 'X'.
    ENDIF.
    ENDIF.
    Here elaborate your data and fill BDCDATA
    Insert the transaction:
    CALL FUNCTION 'BDC_INSERT'
    IF SY-SUBRC = 0.
      COUNT = COUNT + 1.
      IF COUNT = COUNT_MAX.
        COUNT = 0.
    Close the session
        IF FL_OPEN = 'X'.
          CALL BDC_CLOSE_GROUP
          IF SY-SUBRC = 0.
            FL_OPEN = SPACE.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDLOOP.
    Max

  • Multiple repository roles?

    How do you create multiple repository roles within Designer 6i release 4? Within RAU, as the repository admininstrator, I find the default role PUBLIC created with a versioned repository. The help file states under the display area, "list of the user roles available to assign to users." None of my database roles show up and the public role is not a real "database" role. Furthermore, how do you associate even the public role with the users? Thoughts, suggestions?

    Craig,
    Sorry, roles, other than 'public' are not supported in 6i. They are planned in the future.
    DAvid

  • How to create credit note automatically after PGR?

    Hello SD Gurus,
    Client's Business Process: Return Order (ZRE, ZPOR, ZARE, and ZMTR) is created with reference to billing document number and item category used for this order type is REN or ZREN. After the order is created, they do PGR (Return Delivery Type is LR) and then credit memo is created "manually". So, the issue with this process is that it is very time consuming and a lot of manual intervention is required.
    To-be Process: The requirement is to create credit note "automatically" after the PGR is done to reduce the manual intervention and expedite the process. If item category is REN, then credit note will be created with invoice value. If item category is ZREN, then credit note will be created with Zero Value.
    How should I write code in the user exit MV50AFZ1?
    Regards,
    Mohammed Anwar

    Hi
    Apart from Lakshmipathi's suggestion you can share the below logic with your ABAPER. There are two BAPIs we use to create billing automatically. Check whether you can call these BAPIs in userexit you have mentioned in your post.
    CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
    * EXPORTING
    *   CREATORDATAIN         =
    *   TESTRUN               =
    *   POSTING               =
            TABLES
              billingdatain         = billingdatain
              conditiondatain       = conditiondatain
    *   CCARDDATAIN           =
    *   TEXTDATAIN            =
    *   ERRORS                =
              return                = return3
              success               = success
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
          READ TABLE return3 WITH KEY type = 'E'.
          IF sy-subrc = 0.
            record-inv_rem = return3-message.
          ENDIF.
          WAIT UP TO 2 SECONDS.
    *      READ TABLE return3 WITH KEY type = 'E'.
    *      IF return3-type = 'E'.
    *        WRITE:/ return3-message.
    *      ENDIF.
          READ TABLE success INDEX 1.
          CLEAR: vbeln_vf.
          vbeln_vf = success-bill_doc.
        ENDIF.
    Thank$

  • Creating a PDF with automatic page turn after playing a movie

    Is there anyway to create a pdf where pages get turned automatically after a movie has been played? Simply put, I need to create a slideshow with both movies and images, and with an automatic page turn every x seconds the movies might be either too short or too long.
    Any help will be greatly apreciated!
    best, Jacob

    Did you ever figure this out? I would love to know.

  • How to create Oppertunity doc automatically after lead in CRM SALES

    Hi,
    how to create oppertunity doc automatically after creating lead in crm sales
    Thanks7regards
    kishor kumar

    Hi Kishore,
    Create SAP Business Workflow for Opportunity from Lead 
    Use
    A lead is a business transaction that describes, stores, updates, and manages the potential business interests of a business partner, and the interactions based on this over a period of time. The goal is to provide the "sales" area with the information gained in the lead, in order that it can be used as a basis for deciding whether to create an opportunity.
    The information gathered in the lead is transferred to the "sales" area via the workflow "create opportunity from lead".
    In the workflow, you decide whether the opportunity is generated manually or automatically.
    If the lead-specific attributes Priority and Lead group fulfill specific criteria, the workflow automatically generates an opportunity. Otherwise, the workflow sends a work item to the sales employee responsible, for manual creation. Once he has checked the data in the lead, the sales employee can either reject this lead or create an opportunity from it.
    The workflow is automatically started when the lead is saved.
    The sales representative entered in the lead is first taken as the sales employee whose task it is to create the opportunity based on the information in the lead. This person can be determined using partner determination in CRM, depending on the prospect in the lead, and can, for example, be a manager of a sales area. If no sales representative is entered, the workflow takes an organizational unit assigned in the workflow template, and sends the work item to all users assigned to the organizational unit.
    Prerequisites
    u2022     The type linkage for the start events AttributeChanged and SetErrorFree for the workflow WS10001011 are deactivated as a standard procedure, and, if you wish to start the workflow template, they have to be activated again in Customizing. The workflow task processors must also be maintained. In Customizing, choose Customer Relationship Management  Basic Functions SAP Business Workflow  Perform Task-Specific Customizing.
    u2022     The workflow template uses the user statuses SAAC (accepted by sales) and SARE (rejected by sales) of the status profile CRMLEAD. If you have defined several user statuses, the data flow for task TS10008154 (set status) must be adapted accordingly.
    u2022     When the opportunity is created, the workflow template uses the opportunity transaction type OPPT. If you have defined several transaction types for the opportunity, the data flow for task TS10008151 (create opportunity) must be adapted accordingly.
    u2022     If the sales employee rejects the lead, the workflow resets the qualification level to value 02 (warm). If you have specified your own qualification levels in Customizing, you need to adapt the data flow for task TS10007918 (change qualification level) accordingly.
    Process of Workflow WS10001011 (create opportunity from lead)
    The workflow "create opportunity from lead" is started when a lead is saved with qualification level Hot and status Error-free. The system uses the lead-specific attributes Priority and Lead group to check whether an opportunity can be automatically created, or a sales employee first needs to decide. If the sales employee decides that an opportunity can be created, the lead status is set to "accepted by sales", and an opportunity is created in the background. If necessary, this is forwarded to the sales employee to check. If the sales employee rejects the lead, the lead status is set to "rejected by sales", and the initiator is informed by mail.
    The workflow is ended if no opportunity is created and
    o     the lead is deleted or
    o     the qualification level of the lead is changed to a value other than Hot or
    o     the status of the lead is changed to a value other than Error-free.
    Path for the workflow:
    ==> SPRO
    ==> Customer Relationship Management
    ==> Basic Functions
    ==> SAP Business Workflow
    ==> Perform Task-Specific Customizing
    Select the Application Componenet  Abbrevation as CRM and expand
    Select CRM-BTX and expand
    Select CRM-BTX-LEA and click on Activate event linking  and acivate workflow WS 10001011
    It may helps you
    Regards
    Narayana

  • PO not created automatically after creation and approval of SC

    Hi all,
    We are using SRM7.0 Extended Classic Scenario.
    We are able to create Shopping Cart successfully.
    For items where a source of supply is not supplied, the Shopping Cart goes through the approval process and then into the sourcing Cockpit.
    But for the other Shopping Carts, PO is not getting created automatically after the approval of SC.
    Any ideas/suggestions on this issue would be highly helpful.
    Thanks,
    Priya

    Priya,
    Can you check this configuration in Sourcing  for particular PCat?
    *Automatic requirement grouping; sourcing for items without assigned*
    source of supply:
    Then run the report BBP_SC_TRANSFER_GROUPED which will  automatically group requirements together for
    the creation of a PO.
    And,  If the requirement does not have a source of supply, it appears in the work list of the sourcing application for manual assignment. Once you have assigned a source of supply, you can submit the requirement to the report.
    Let us know if it works, and should help you this one.
    Thanks,
    Rahul Mandale

  • Is possible to create a TO automatically after production order confirmation?

    Hi all
    I have just a question in order to know if we can configurate a procedure to a Production Order, so my question
    is possible to create a TO automatically after production order confirmation in a standard enviroment?
    Thanks in advance for all your comments

    Hi Gurus,
    Thank you for your help in this case.
    Process:
    The customer create a production order in CO01 and then they confirm the order in CO15, after confirmation TR is created ( we can see this in LB10 ) and negative stock is created (  we can see this in LS24 ).
    Requirement:
    They are asking to create the TO automatically after the production order confirmation. Negative stock is afecting the process.
    Workaround:
    They are creating the TO in background in LB10. ( negative is fixed )
    Question:
    Can we create the TO automatically after confirmation in standard configuration?
    if no ,  how can we confirm this TO .using a JOB option?
    TR created after confirmation
        TR header
    LS24 negative units.
    Regards!!
    Ronald

  • Import editing timecode to create multiple clips automatically

    We have a long video of a a couple of hours. The content owner would provide a list of time codes with in and out points of the part he needs.
    Is it possible to import the text file and have Premiere automatically create multipel clips based on the in and out points? If there is scripting approach, that would be fine too. If Premiere Pro does not have this functionality, what program has this feature?
    for example
    name,in,out
    topic 1,00:12:01,00:12:59
    topic 2,00:25:12,00:28:11
    it will create multiple subclips in the bin based on the name and time codes for ins and outs.
    Thanks for any suggestions.

    Thank you all for the recommendation. I will check it out. In terms of volume, I think it may be 20 or so hours of videos with probably ~ 100 clips.
    On the format of the batch list, the link has it: When you import a batch list, the order of fields in the list must be as follows: tape name, In point, Out point, clip name, and comment.
    What is a tape name? I only have MP4 or MTS from digital camcorder. How does it link to the media? I got a list of multiple edits without link to any video.
    e.g.
    tape name,00;00;01;00,00;00;04;13,Clip 1,comment placeholder
    tape name,00;00;05;00,00;00;09;13,Clip 2,comment placeholder
    tape name,00;00;00;00,00;00;12;13,Clip 3,comment placeholder

  • Creating Multiple Workspaces Automatically

    Hi Again Everyone:
    I hope there is a solution to this one.
    I have a need to automatically create multiple Team Workspaces in sequential order. For example, starting at 0001-14 through 2000-14 - One thousand and ninety-nine workspaces. The Workspaces would include another element like a Wiki or a file store.
    My only other option is to create them manually. Thanks in advance.

    You can accomplish bulk imports easily by using the SOAP interface that Vibe provides.
    We built a bulk import tool for our own projects and our customers' purposes.
    Depending on your needs we might be able to professionally support you with a single bulk import.
    If you need to do bulk imports periodically then we can talk about a license for our tool.
    Aditionally we are working on the implementation of an NetIQ IDM driver for Vibe. It is still work in progress but we might be publishing the driver soon.
    HTH
    Cheers
    Erik

  • Assigning the role automatically when a user is created.

    Hi all,
    we are usign the EP 7.0 eph1 sp6 . we have a requirement that:
    When we are creating a new user and click save, then a user is created and to that user automatically a role should get assigned (without manual assignment of role to user). the role will have the framework page etc.
    and suppose we are assigning some role to the same user the above assigned automatic role should be deassigned automatically again.
    is there any possible way.
    Please help.
    regards,
    kavitha

    Hi
    When we are creating a new user and click save, then a user is created and to that user automatically a role should get assigned (without manual assignment of role to user). the role will have the framework page etc.
    for the above one we can follow the simple process ,
    as u need 2 assign the role automatically  while creating the user it self, u have to do the following.
    In user Adminstartion we have a button called Copy To New User.
    u just slect a user already created and just click on the button above, the  new user which is going to be created will get all the credntails and roles groups ,everything as the previous one.
    Just have a try .
    Sandeep

  • How a new output message will be created automatically after changing a PO?

    Dear friends,
    How to generate a new output message automatically after changing a PO and saving it?
    Thx & Regds
    Amitava

    Hi,
    System only takes automatically the Output message in PO in creation mode in ME21N ( Only if you have maintained the condition record MN04)
    If you have not maintained Condition record in creation of PO also you need to maintain manually.
    But once you changed the PO system will not automatically pick up the new Output message, you have to manuallly input the Output messages in change mode of PO - ME22N.
    You can also use ME9F for this.
    rgds
    gsc

  • CHaRM-Is that possible to create multiple Transport Request in UC

    HI Gurus,
    Quick question on ur.gent correction using Solution Manager CHaRM in EHP1. Is it possible to create multiple transport request(TR) for single ur.gent correction (UC). DO NOT confuse with transport task.
    For example, after I created transport request and developer start working and release the task, realised to add another transport request for same UC. When I tried, it did not create any TR but checked the message found that
    Schedule Manager: Monitor
    Job Status: Processing completed, but with warnings
    Program Name: /TMWFLOW/SCMA_TRORDER_CREATE
    Action to be checked: Ur.gent Correction: Create Transport Request
    There is already an open request, XXXXXXXXXX, for this project
    So only way I can do that I released the TR and able to create another TR.
    May be wondering why I need to create another TR, why not create TASK and work on that.
    But this is the requirement at our company.
    I will appreciate the effort and time to provide me the solution of this.
    Thanks
    Ava

    Hi Ragu,
    That's really quick turn around. Unfortunately not able to found whatever you mentioned in your message. Here is detail,
    I navigate to Actions - Depending on Status, found the entry as
    Trans. Type     StatProf         UserStatus     Seq     Action in SAP Change Manager
    SDHF             SDHFHEAD   E0002            10       CREATE_HF
    SDHF             SDHFHEAD   E0002            20       CREATE_REQ
    SDHF             SDHFHEAD   E0002            30       SAVE_PARTNER
    SDHF             SDHFHEAD   E0002            40       SET BO LINKS
    Where SDHF - Ur.gent Correction
               E0002 - In Development
               CREATE_HF -        Create an Instance in SAP Change Manager
               CREATE_REQ -     Create Transport Request with Task
               SAVE_PARTNER - Save Partners in Respective Partner Roles
               SET BO LINKS -     Sets Links to Business Objects
    I don't see any OPEN_TR.
    Any other place need to make change.
    Thanks
    Ava

Maybe you are looking for

  • Generating Report in PDF Format.

    Hi All, How can I configure Report Server to generate all my Reports in PDF Destination Format? I am using Oracle 10g. In 6i, it used to be FORMS60_REPFORMAT parameter. Is there any equivalant in 10g? Where can I set it? or Is there any other way to

  • Issue with member move, change or delete from Planning web application

    Hi We need to make some basic editing (move, change or delete) of level 0 members of the cost center dimension from Planning web application instead of from essbase database outline. But everytime, we tried from the web Admininstration/Dimension dril

  • Essbase error 101 all 255 user sessions are in use

    Hi There, I try to connect to EAS and I got the following error: essbase error 101 all 255 user sessions are in use I have administrator right, wondering how to fix this? Thanks

  • How to install windows 2012 R2 in Sun Fire X4140 server

    I want to install Windows server 2012 R2 in Sun Fire X4140 server. But SIA not supporting this OS. So I installed windows 2008 using SIA in server and after that upgrade to 2012. But now the server is very slow and network gets hanged frequently.

  • Key command for ARRANGE/track/sort tracks

    Need to automate.  Arrange/tracks/ sort tracks...  Not supported in logic key commands.  3rd party macro recorder needed.  Any suggestions?  AppleScript?