Automatic Partner Confirmation in Call List Management

Hi guys,
There are two possible ways to deal with Call Lists and the confirmation of accounts that are in this Call List. One is that after selecting the account and ending the call, the account will be removed from the call list. The other is, that the account will not be removed, this is done by call list profile NO_AUTO_PARTNER_CONFIRMATION.
We are using profile NO_AUTO_PARTNER_CONFIRMATION now because it can happen that an employee selects an account from the call list without calling at all. The problem is that even those accounts stay in the list that have been completed, Interaction Record for their planned call gets status completed. This way it is impossible to get an overview of the real status of the call list.
We are looking for a solution to remove the account from the call list once the status is complete.
Looking forward to any hints and help
Thanks
Nicole Lange

Hi Nuno,
it seems like this is going into the right direction! I copied the confirmation profile, selected both fields and assigned it to the role.
I also went to Business Transaction Synchronization > Define Call State Mapping Profile and made the following settings:
1. Call State Mapping: Call State "Complete" and User status "E0003"
2. Alternative Statuses: Call State "Complete" and User status "E0007", alternative Status CANC
3. Status Mapping: User Status "Complete" and Status mapping "completed".
Unfortunately, the system behaviour has not changed. So when I set an Interaction Record to complete and end the call (all is being done manually by the way) the call will not be removed from the call list. Also, the percentage of progress does not change.
When I unflag the field "No-auto completion" all calls will be removed from the list once I selected one. No matter if I set the Interaction Record to complete or not.
I found out that in order to synchronise from transaction to call list an action profile is needed. So I used action profile CALL_LIST_SYNCHRONIZATION and added it to the transaction. However, still the same problem.
Any config that I am missing?
Thanks
Nicole
Edited by: Nicole Patrizia Lange on May 15, 2011 1:49 AM

Similar Messages

  • Call list management - urgent

    Hi,
    I need to generate a call list using campaigns and assign the call list to a number of agents.
    Does creating a campaign with communicaiton medium "telephone" generate a call list or a call list has to be generated manually using the target group created in the campaign? moreover, if the list was automatically generated using campaigns, who is authorized to access and distribute this call list? Is it the person who was made responsible for the campaign or the IC Manager?
    Second question, how is it possible to divide a generated call list and distribute it to different agents?
    Deserving points shall be rewarded , Best regards,
    Jacob.

    Hi Jacob,
    1. The IC manager will be authorized for the generated call list through call list management.
    2. The generated call list has to be assigned to Organizational Structure, It will appear in the IC WebClient for the agent.
    The IC Manager or Manager assign a call list to the agents through portal.
    3. Agents can select the call list that they would like to work on.
    Hope It helps.
    Regards,
    Johnny.

  • Call List Management and Interactive Script Editor Examples

    Hello All,
    Can any one provide docus on Call list management and Interactive Script Editor Exercises or any examples how to implement them.
    kindly m a i l me: r a j . k a n d i AT y a h o o . c o m
    Cheers Raj.

    Muneeb,
    I have found what looks like a solution for marketing attributes.
    Marketing attribute in the text field, interactive script
    However, even though I followed this It is still NOT updating the marketing attributes for the given BP.
    Also, I am no further forward in knowing how to add BDC Field entries in the Answer so that we can update BP fields like the preferred communication method etc.
    I would like to hear from you if you have found a solution Muneeb.
    With regards
    Jason

  • Call list & management

    I recently bought my new phone and as an old user of HTC smarth phones, I find it pretty uncomfortable to manage my call list. I cannot group calls from a single contact or filtering call log with one touch and this is somehow annoying.
    does anyone happen to know any solution ?
    I hope sony would fix this matter and develop a more user friendly call list.
    thanks in advance.

    For group or conference call, you may want to refer to this which i don't see any different within Sony and HTC :
    http://userguide.sonymobile.com/referrer.php?region=global-en&product=xperia-z2#!Conference-calls.ht...
    For call logs filter, under your call logs list tap on that 3 little dot button and select filter. That should work.
    I can accept failure.... I can't accept not trying - Michael Jordan

  • Call List Management help

    hi
    does anyone know how i can create a Call List and then assign it to a responsble person? this responsible person can then assign an agent who will be responsible for processin the call list

    hey
        To maintain the cutomizing settings for cal list amnagement you will first have to maintain the calling hrs for the business partner in the transaction BP under the tab control and for the contact person in the relationship tab in transaction BP itself.
       Once this is done u will have to generate the cal list using transaction CRMD_CALL_LIST in there use transaction PCAL specify the business partner, Responsible user and the organization along to which the user is assigned....once this is done you will have to maintain the call list in transaction CRMD_TM_CLDIST find your call list there and by default it will be inactive u will have to activate it.
    Regards,
    Diana Dias.
    Reward with points!!!!!!!!!!!

  • BP_CONFIRM does not triggers the event properly from call list

    Hi expert,
    We have upgrading CRM 5 to 7.
    The issue is. In the IC_AGENT role. When i got to call list and select a call. The corresponding bp is automatically conformed.
    But then when i go to Account identification navigation link i can only see the bp confirmed. the vehicle  info of the BP are not displayed the view remains the same. normally it displays the vehicle details in the result view.
    If i directly search for a BP and conform it all the vehicle detail are displayed in the result views.
    It happens only when a BP is automatically conformed by selecting from the call list.
    But in both the cases the Method  "CL_CRMCMP_B_CUCOBUPA_IMPL->BP_CONFIRM" is triggered ( it is a customer control in CRMCMP_BPIDENT/CuCoBuPa )
    the difference i can find is.
    if i conform a bp manually from the account identification screen. the CL_ICCMP_AU_VEHISEARCH_IMPL->IF_CRM_IC_EVENT_LISTENER~HANDLE_EVENT is triggered. ( which is inside the "ICCMP_AUTO_VEHI/VEHISearch" ) which displays the required view.
    but when the same BP_CONFIRM is triggered automatically from the call list management view it is not triggering CL_ICCMP_AU_VEHISEARCH_IMPL->IF_CRM_IC_EVENT_LISTENER~HANDLE_EVENT. ( which is inside the "ICCMP_AUTO_VEHI/VEHISearch" ).
    so i can see the difference in the event listeners of the 2 process.
    below is the piece of code which triggers the event. it is in the method "CL_CRMCMP_B_CUCOBUPA_IMPL->BP_CONFIRM" d ( it is a customer control in CRMCMP_BPIDENT/CuCoBuPa )
    raise event BPConfirmed and/or CPConfirmed
        IF lv_bp_confirm EQ abap_true.
          CLASS cl_crm_ic_services DEFINITION LOAD.
          CREATE OBJECT event.
          event->set_name( if_crm_ic_events_con=>gc_bpconfirmed ).
          event_srv = cl_crm_ic_services=>get_event_srv_instance( ).
          event_srv->raise( event ).
        ENDIF.
    Can any one help me how to register  the event or trigger the CL_ICCMP_AU_VEHISEARCH_IMPL->IF_CRM_IC_EVENT_LISTENER~HANDLE_EVENT is triggered. ( which is inside the "ICCMP_AUTO_VEHI/VEHISearch" )
    when i click on call list.
    thanks in advance
    chella.

    Hi expert,
    We have upgrading CRM 5 to 7.
    The issue is. In the IC_AGENT role. When i got to call list and select a call. The corresponding bp is automatically conformed.
    But then when i go to Account identification navigation link i can only see the bp confirmed. the vehicle  info of the BP are not displayed the view remains the same. normally it displays the vehicle details in the result view.
    If i directly search for a BP and conform it all the vehicle detail are displayed in the result views.
    It happens only when a BP is automatically conformed by selecting from the call list.
    But in both the cases the Method  "CL_CRMCMP_B_CUCOBUPA_IMPL->BP_CONFIRM" is triggered ( it is a customer control in CRMCMP_BPIDENT/CuCoBuPa )
    the difference i can find is.
    if i conform a bp manually from the account identification screen. the CL_ICCMP_AU_VEHISEARCH_IMPL->IF_CRM_IC_EVENT_LISTENER~HANDLE_EVENT is triggered. ( which is inside the "ICCMP_AUTO_VEHI/VEHISearch" ) which displays the required view.
    but when the same BP_CONFIRM is triggered automatically from the call list management view it is not triggering CL_ICCMP_AU_VEHISEARCH_IMPL->IF_CRM_IC_EVENT_LISTENER~HANDLE_EVENT. ( which is inside the "ICCMP_AUTO_VEHI/VEHISearch" ).
    so i can see the difference in the event listeners of the 2 process.
    below is the piece of code which triggers the event. it is in the method "CL_CRMCMP_B_CUCOBUPA_IMPL->BP_CONFIRM" d ( it is a customer control in CRMCMP_BPIDENT/CuCoBuPa )
    raise event BPConfirmed and/or CPConfirmed
        IF lv_bp_confirm EQ abap_true.
          CLASS cl_crm_ic_services DEFINITION LOAD.
          CREATE OBJECT event.
          event->set_name( if_crm_ic_events_con=>gc_bpconfirmed ).
          event_srv = cl_crm_ic_services=>get_event_srv_instance( ).
          event_srv->raise( event ).
        ENDIF.
    Can any one help me how to register  the event or trigger the CL_ICCMP_AU_VEHISEARCH_IMPL->IF_CRM_IC_EVENT_LISTENER~HANDLE_EVENT is triggered. ( which is inside the "ICCMP_AUTO_VEHI/VEHISearch" )
    when i click on call list.
    thanks in advance
    chella.

  • Campaign, Call list, questionnaire and responses

    1. Call list will be generated iin CIC0.
    2. If BP replies thru email then the campaign is created manually in the system.
    3.dont know this point sorry for that...
    4. For lead generation as communication medium, the survey can be attached as document with the activity generated in the transaction template.
    I hope this helps a bit...
    regards
    shikha

    Hi Jacob,
    1. To create a telephone campaign, use the channel as telephone,and use workflow send target group to Channel,assign a  segment ,when you automate the campaign ,a call list gets generated which is visible using transaction CRMD_TM_CLDIST.
    2.Email campaign response is recieved in the form of interaction object,for  this make sure -
    In the Customizing for campaign execution, you have defined a communication medium with a communication method with which no activities are created (for example, e-mail without activities), in other words, no transaction type is maintained. To do this, in the screen Define Communication Methods and Transaction Types leave the field Transaction Type blank.
    In transaction SIFC, you have activated the service CRM_SEND_SCREEN, to avoid being prompted again for your password.
    You can search for the interaction object by using the locator search in activity management, IC WinClient, IC WebClient, business partner fact sheet, and account management. The interaction object is identified by its own icon.
    If there is a questionnaire (survey) assigned to that campaign,you can view it together with teh interaction object or you can independently view it in  Tx code CRM_SURVEY_SUITE, using  the evaluation button ,which is visible in the toolbar as bar graph symbol.
    3.  For survey analysis (without BW) prerequisite required is that when making the survey,remember to check mark Evaluation without BW in the mainatin survey attributes buttton available  in the toolbar.
    4.Questionnaire can be assigned in the channels tab in survey ID field.
    Regards
    Itty

  • Marketing call lists

    Hi all,
    I have a BIG problem with our call list management process. We are configuring the marketing scenario in our CRM 4.0 system in order to generate several calls from a given target group.
    Our problem is based on the agent distribution (of these calls) because we don't find any way to distribute these calls based on rules. (We need assign the generated calls
    to different call center agents based on a specific customer criteria. The manual assignment provided by CRMD_TM_CLDIST tcode is not absolutely usefull for our customer).
    We noticed that we can do this if we use CRMD_CALL_LIST (instead marketing planner) combined with the Assignmnet Profile (IMG-CRM-IC WinClient - Call List) and
    assignment rule development (CRM_CLM_ASSIGNC_BADI BADI).
    <b>Do you know any alternative way to distribute calls from an automatic marketing generated call lists?</b>
    I need some help with this issue urgently
    Thanks in advance
    Javier Merino
    Message was edited by: Javier Merino Vivar

    Thanks for your answer but this solution is not valid for our requirements. We need to assign the marketing calls from a postal code perspective for example.
    If the sold.to.party postal code is in a specific range, we need to assign the call to the Agent XX.
    I think this is a development requirement but I don't know where's the BADI or whatever.
    Thanks in advance
    Javier Merino

  • Call List Mangement - IC Web Client

    Hi Gurus,
    We are using SAP CRM 2007. I am calling transaction : CRMD_TM_CLDIST using transaction launcher in IC Web Client with  team lead business role so that I can Split the Call List, Assign the Call List to CSRs and Activate the Call List. When I select the Call List and right click on to view the list of the commands (as of SAP GUI screen) to work the Call List Management - does not shows me any options (such as split or assign or activate). Does any body know, how to get this work?? please help me out....
    Cheers,
    Peter J.

    Hi John,
    Thank you very much for your quick reply and guidance. I know the company which used PCUI - Call List screen, unofficially I came to know that SAP responded this company back saying that, SAP does not have plans to remove this PCUI screen/code from the future upgrades...
    Once again thank you very much for your quick responses and the guidance. I will close this link...
    Cheers,
    Peter J.
    Hi John,
    2 corrections:
    1. We are using IE 8.0
    2. Transaction Code CRMD_CLMANAGMENT is not working in CRM 2007, we did the following:
    a) Add URL to the URL Repository (SM30 table = crmv_ic_ltx_url) as BSP Application. Application = CRM_BSP_FRAME and Page = Entrypoint.do
    b) Create Transaction Launcher entry  (CRMC_UI_ACTIONWZ)
    c) Crete Logical Link in (CRMC_UI_NBLINKS)
    d) Call/Add the logical link to NavBar Profile
    e) Add NavBar Profile to Business Role
    f) Activate the logical link in Business Role (if necessary)
    Cheers,
    Peter J.
    Edited by: Peter Jacks on Mar 25, 2010 9:30 AM

  • Chage Call list via WEB UI

    Hi experts
    in interaction center, the users can see the call lists assigned, but they can't modify it.
    So, is possible change/delete call lists via WEB UI??? For example add a call at the list, or delete all the call list??
    Best regards
    Marco

    Hi,
    Starting CRM 7.0 SP4 a lean version of the Call List Management application was developed.
    It does not cover all the functionality of the SAP GUI application.
    Here is a list of features that are covered in this version of the WebUI application:
    - Quick search
            View options: tile layout and editable overview page with assignment block
    - Advanced search
            View options: tree view and table view
    - Creation of new call lists
    - Edit existing call lists
          Update contact persons: When editing a call list, you can update the contact persons. By default, the relationship type Has contact person is considered. Contact persons for whom the Do not contact checkbox is selected, are not added to the list of contact persons.
    The following tabs are available:
    Call List Details
    Execution Progress
    Assignment
    You can create and delete assignments.
    Calls (display only)
    Business context (display only)
    If you are interested in using this lean version you must upgrade to CRM 7.0 SP4, where this functionality has been made available or else you can always carry on with the SAPGUI version of the transaction CRMD_TM_CLDIST.
    Hope this information helps.
    Best Regards,
    Vinod

  • Error when executing call list

    Hi, experts!
    I'm working with SAP CRM 7.0 and have the following situation.
    I've generated call list and as it is in SAP standard there were generated business transaction to each business partner in this call list, in my case it's 'ZPCL'. Then IC agents begin executing call list manualy. When IC agent choose the business partner in call list, then chooses the next in activity clipboard after accepting business partner IC agent can see two business transactions, but must only one. The first is for business partner he chose first, and the second is for business partner IC agent accepted. And this is wrong. Couldn't you advise me some solution or may be SAP note to correct such behaviour of the system?
    Thanks in advance,
    Andrew.

    Hi, experts!
    I'm working with SAP CRM 7.0 and have the following situation.
    I've generated call list and as it is in SAP standard there were generated business transaction to each business partner in this call list, in my case it's 'ZPCL'. Then IC agents begin executing call list manualy. When IC agent choose the business partner in call list, then chooses the next in activity clipboard after accepting business partner IC agent can see two business transactions, but must only one. The first is for business partner he chose first, and the second is for business partner IC agent accepted. And this is wrong. Couldn't you advise me some solution or may be SAP note to correct such behaviour of the system?
    Thanks in advance,
    Andrew.

  • Campaing management channel telephony automatic call list

    Dear Gururs,
    On my current project we have integrated SAP CRM 2007 ICI with Genesys.
    From the campaign management we are using the channel "Telephony" and a call list is generated. This call list is syncronized with Genesys and in Genesys we are using the Predictive Outbound to call customers.
    When the current call is assigned from Genesys to an agent in IC WebClient I'm receiving the call list id in CAD (as SAP_CALL_ID). This ID is not used by the Interaction Center to identify the call list (I need it because I have a script assigned to the call list from the campaign).
    Do I miss some configuration ?
    Thanks a lot,
    Valentin

    Hi,
    I had a different thread were I have found the solution and the correct understanding for this functionality.
    [You can access it here ...|CRM 2007 - Automated call lists;
    BR,
    Valentin

  • Case management: Partner confirmation and subsequent case creation

    Hi,
    When i confirm a partner and then click case, the partner number does NOT reflect when the case details open. Is this the standard functionality or am I missing to activate or configure something here. For instance when i create a lead, the partner confirmed before gets automatically reflected in the lead details. In this issue of case, I am right now manually adding the partner. Please clarify on this.
    My second query is about triggering an action (mail) to the related partner when i 'save' the case. Any input here would be appreciated.
    Thank You,
    Amar.

    Hello Amar,
    I'm afraid that I can't add much additional value here. For your second point about emails I would normally suggest OneOrder PPF (Post Processing Framework) actions. But I assume that these only work in One Order documents and not for the case. Perhaps someone else can confirm?
    And I am not aware of any additional enhancements to Case Management, except for some Investigate Case Management functionality rolled out in CRM 7.0 targeted at the public sector (e.g., government and law enformance agencies). My recommendation would be to look at the new IT-IL based Incident/Service Request  IT Service Management functionality available in CRM 7.0 which provides a lot more power and flexibility than the old Case Management (or Service Ticket) functionality.
    Best regards,
    John

  • Problem with External List Management; Business Partner Type

    Hello experts;
    I created a mapping format for importing a simple notepad file. In the ELM i see all my fields populated correctly. Once i start the importing process it goes smoothly with no mistakes at all (green lights). The bp is actually imported and i can see it in the BP transaction with most of the fields correctly imported BUT the business partner type (PERS_PERS_BPKIND in ELM). For this field i have a Constant Assignment which is always HH and because of that i don't have it in my notepad file but i pass the value directly from ELM constant assignement=HH. Unfortunately this value is not copied. Any idea? Am i doing something wrong or i'm loosing some steps in between?
    Thank you very much

    Hello,
    the issue is most probably related to missing authorizations. As you know the processing in external list management happens in the background using WF-BATCH user.
    Please check the following notes:
    708557 - 'ELM: Troubleshooting' point 1.
    https://service.sap.com/sap/support/notes/708557
    1912414 - ELM upload: Error in the map data-step
    https://service.sap.com/sap/support/notes/1912414
    1664498 - External List will not execute
    https://service.sap.com/sap/support/notes/1664498
    The information provided in the notes should help to solve the issue.
    best regards,
    Johannes

  • Problems with Partner determination in activities generated from call list

    In our scenario we are using IC Win Client 5.0.
    During the generation of the call list it to my understanding that when a call is scheduled for a Business Partner a corresponding activity is created and linked to the call. It is in this process that the partner determination procedure for the linked activity kicks in and should determine the BP from the sceduled call and fill the field 'Sold-to-Party' in the activity.
    However this is not working!! I have tested basically all of the standard access sequences for the partner determination procedure and I haven't been able to do it.
    By using standard access sequence 0019 I was able to determine the BP using the relationship, however when opening the generated activity an error ocurrs that  states the following message: 'Only one partner function of function category Sold-to-Party is allowed'.
    Whats really odd is that if we erase the Sold-to-party field leaving it blank and press enter, the contact person is filled in the same field! It seems like something is missing in the procedure or the way I use the access sequence.
    Please help!
    Thanks in advance,
    Pedro

    Pedro
    For activities you should not determine SoldToParties, but rather Activity Partners. Please have a look at the standard partner schemes for activities, to see which partner functions are usually used for activities besides the activity partner.
    If you have to use soldtoparty partner functions, please take into account that they have special checks enabled.
    The system fills in the organization instead of the contact person, esp. if no contact person exists: In R/3 you can have non-reflexive partner functions, but in CRM these are not saved. Instead in partner determination if no target can be found the origined partner itself is used as a result. That is why the organization is put into the result instead of the contact person.
    HTH - Kai

Maybe you are looking for

  • Mid Year Go Live - Process & Steps

    Hello, We have an Implementation project which is going live in November 1st (Mid Year Go Live) I have never done Mid Year Golive before. Can anyone let me know the steps on what to do for Mid Year Golive. Thanks in advance.. Cheers Vijay

  • Error while compiling model in Visual Composer 7.1.

    Hi, I am getting a error while compiling model in Visual Composer 7.1. An exception occurred at the server while running the build process, reason: Extension with id com.sap.vc.runtimeproviders.null not found. For more details please refer to the log

  • Unique constraint violation while updating a non PK column

    Hi, I seem to have found this strange error. What I try to do is bulk fetch a cursor in some table arrays. with limit of 1000 Then using a forall and a save exceptions at the end I update a table with the values inside one of the table arrays. The co

  • INDEX 0 SIZE 0 error mssage while opening the screen

    Hi Friends, I have error message for E-Seperation after approval from L1 and L2 managers, screen is displaying below error message. We have customized that application in EHP 4 EP 7.0, here is the reference screen attached. I tested in ST22 there is

  • How can I send in a suggestion for new iphone?

    I think Apple should create an Iphone like the GALAXY S4 with this phone being waterproof it makes it hard to stay with the Iphone.