Export Call List to Spred Sheet

Hi,
How to Generate Call list Through campaigns and How to Export generated call list data to Spread sheet
Thanks & Regards
kishor kumar

Hi Dipesh,
I am able to see the Call list tcode CRMD_TM_CLDIST,which is generated from Campaign.But i am trying to activate call list it is showing message
The action activate could not be performed on some of the items
So i am not able to activate call list.
Can u suggest me How to Activate Call list which generated from campaigns
Thanks & Regards
Kishor Kumar

Similar Messages

  • Export ALV List into Excel Sheet

    Hi Friends,
    We are displaying an ALV List in report Program and we are exporting that into excel sheet using the icon "Spreadsheet(ctrlshiftF7)"provided by ALV Grid.
    But when it is displayed in Excel sheet it changes the sequence of columns (fields).
    And we observed that it displays all the CHAR fields first then the CURRENCY fields and then the DATE fields that we specified in field catalog.
    So, what should be done so that the fields are exported into Excel in the same order as specified in the field catalog of ALV List.

    Give this a look.
    REPORT ZEXCEL .
    INCLUDE ole2incl.
    DATA: application TYPE ole2_object,
    workbook TYPE ole2_object,
    sheet TYPE ole2_object,
    cells TYPE ole2_object.
    CONSTANTS: row_max TYPE i VALUE 256.
    DATA index TYPE i.
    DATA: BEGIN OF itab1 OCCURS 0, first_name(10), END OF itab1.
    DATA: BEGIN OF itab2 OCCURS 0, last_name(10), END OF itab2.
    DATA: BEGIN OF itab3 OCCURS 0, formula(50), END OF itab3.
    *START-OF-SELECTION
    START-OF-SELECTION.
    APPEND: 'Peter' TO itab1, 'Ivanov' TO itab2,
    '=Sheet1!A1 & " " & Sheet2!A1' TO itab3,
    'John' TO itab1, 'Smith' TO itab2,
    '=Sheet1!A2 & " " & Sheet2!A2' TO itab3.
    CREATE OBJECT application 'excel.application'.
    SET PROPERTY OF application 'visible' = 1.
    CALL METHOD OF application 'Workbooks' = workbook.
    CALL METHOD OF workbook 'Add'.
    Create first Excel Sheet
    CALL METHOD OF application 'Worksheets' = sheet
    EXPORTING #1 = 1.
    CALL METHOD OF sheet 'Activate'.
    SET PROPERTY OF sheet 'Name' = 'Sheet1'.
    LOOP AT itab1.
    index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name
    CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
    SET PROPERTY OF cells 'Value' = itab1-first_name.
    ENDLOOP.
    Create second Excel sheet
    CALL METHOD OF application 'Worksheets' = sheet
    EXPORTING #1 = 2.
    SET PROPERTY OF sheet 'Name' = 'Sheet2'.
    CALL METHOD OF sheet 'Activate'.
    LOOP AT itab2.
    index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name
    CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
    SET PROPERTY OF cells 'Value' = itab2-last_name.
    ENDLOOP.
    Create third Excel sheet
    CALL METHOD OF application 'Worksheets' = sheet
    EXPORTING #1 = 3.
    SET PROPERTY OF sheet 'Name' = 'Sheet3'.
    CALL METHOD OF sheet 'Activate'.
    LOOP AT itab3.
    index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name
    CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
    SET PROPERTY OF cells 'Formula' = itab3-formula.
    SET PROPERTY OF cells 'Value' = itab3-formula.
    ENDLOOP.
    Save excel speadsheet to particular filename
    CALL METHOD OF sheet 'SaveAs'
    EXPORTING #1 = 'c:\temp\exceldoc1.xls' "filename
    #2 = 1. "fileFormat
    Closes excel window, data is lost if not saved
    SET PROPERTY OF application 'visible' = 0.

  • Export the list of the prices of the materials at an Excel sheet

    If we use PR00 condition for price of the materials, how can we export the list of the prices of the materials at an Excel sheet? Can we use V/LA or V/LD ?
    Thanks in advance.

    Go to menu bar select"System"-->list>Save--->localfile-->and then save it in spred sheet.

  • Exporting ALV list to EXL different behaviour in different Language

    Dear Experts,
    We have a custom report in which we are displaying an ALV Grid. Here many columns are there along with a column to display Material Number.
    We have declared this material as of type MARA-MATNR only.
    The user executes this report in language HU. In output This is getting displayed properly and there is no problem in it. But when the user export it to local file-> spreadsheet->excel file then the last character of the material is truncated. For example if material number is 00000000000123456 then in Excel it is storing as 12345 and digit 6 is truncated.
    But if we log in to English language and execute the same report with same variant and export the list to EXCEL then it is working fine and the Excel sheet is showing proper material number as 123456.
    I have tried to debug and check but i found that the data loaded in EN language is proper but in HU language it is loading it with value 12345X. Does anyone know what might be the issue here.
    in EN
    in HU
    I searched in forum and found many threads regarding this but those solutions i couldnot apply here as I am properly declaring it as type MATNR and I cannot use the conversion exit as i need to display the entire value of material in ALV with leading zeroes.
    Thanks,
    Aswath.

    Hi Guys,
    We finally got what the issue is. Actually the translated text for field heading of material is having only 5 characters and it was allowing to store only 5 digit material numbers.
    Solution used:
    just provided the reference field as matnr in REF_FIELD of field catalog and set the flag NO_CONVEXT to make sure that leading zeroes are still used.
    Regards,
    Aswath.

  • I'm trying to export a list to Excel and I'm getting this error: "unable to download owssvr.dll"

    Hi, 
    Help, please.
    I’m trying to export a list to Excel and I’m getting this error: "unable to download owssvr.dll"
    Thanks in advanced.

    Hi,
    According to your post, my understanding is that you got the error "unable to download owssvr.dll" when exporting a list to Excel.
    owssvr.dll is the module given by Microsoft to read the data from SharePoint Lists using remote procedure call.
    You can find the OWSSVR.DLL in SharePoint 2010 Server Physical Path: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\ISAPI.
    Please check whether it exists in SharePoint 2010 Server Physical Path.
    Please check whether you export a list to Excel correctly.
    Generally, the issue is caused by the brower. Please reset the IE to check whether it works.
    In addition, you can repair the Office to check whether it works.
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/5f471d53-e980-4acc-a6cb-7c8722571ec0/problem-with-export-to-spreadsheet?forum=sharepointgenerallegacy
    More information:
    SharePoint RPC Protocols Examples Using OWSSVR.DLL
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to export the data to Multiple sheet in Excel

    Hi,
    How can I export the data to multiple sheets in excel using Crystal Report XI.
    Thanks,
    Baski.
    Edited by: J_Baskaar on Mar 31, 2010 8:14 AM

    One of the 3rd-party Crystal report schedulers listed at http://www.kenhamady.com/bookmarks.html allows you to burst a report so that each group at level 1 becomes a separate worksheet inside a single workbook.

  • Export Related Lists to Excel

    Hi all,
    Is it possible to export related lists along with the primary list data using Export to Excel?
    Thanks!
    K.
    Personal Blog: http://thebitsthatbyte.com

    Hi Kelly,
    As far as I know, from the current SharePoint function, we can’t export the list along with the related list to excel. Because, the excel is not the relation database or data source. So, when you export the list, the relationship will miss.
    In fact, SharePoint list is a form of database table. So, SharePoint list can keep the relationship.
    In excel, you can create multiple data sheet, so, you can store your different list in different data sheet in one excel file. Some data you can choose from the other data sheet to display.
    More reference:
    http://blogs.c5insight.com/Home/entryid/438/Use-Power-Pivot-to-Merge-Related-SharePoint-List-Data
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • The "organize bookmarks" section has disappeared from my bookmarks dropdown. I want to export my list as back-up prior toan overhaul. No major changes have been done to account for it. in English

    The "organize bookmarks" section has disappeared from my bookmarks dropdown. I want to export my list as back-up prior toan overhaul. No major changes have been done to account for it. in English
    I have tried the usual suspects to no avail - the item remains stubbornly hidden

    It's called "Show All Bookmarks" now. You can also open it by pressing CTRL+SHIFT+B

  • Call list question

    Hi,
    I have "exported" a call list to interaction center web client. I have opened it and picked the first BP from the list, but when I "finish" the call the BP is not removed from the list. I have also set the staus for the interaction center record as finished. Could you please give me suggestion on how to fix this?
    In advance thank you.
    Regards Camilla

    Hi Camilla,
    What version of CRM are you using. You may find relevant OSS Notes based on the version of CRM you are having.
    Some of the OSS Notes that could be useful to you are 750035, 1020524, 739314 or check related OSS notes for this. Apparently this is a program error and needs fixing by applying relevant OSS notes.
    Regards,
    Deepak

  • Export a list of clips?

    Is there a way to export a list of the clips used in iMovie hd?
    I am making an imovie out of 400+ pictures. I need a listing to see which ones out of iphoto I have used or not. Is there a way to export a list of these photos? I don't see a way to export a list of clips used in iMovie or photo titles iPhoto.
    Thanks,
    Sheri

    Sheri,
    You can use iPhoto to print a contact sheet.
    So, for example if you've gathered all the photos you wish to use in your movie into an Album, just select it and choose print.
    Now choose Contact sheet from the Style drop down. Sliding the Across slider to 8 and checking Save Paper will maximize the number of images per page.
    You can then use the contact sheet as a kind of visual reference and check list. I've found the contact sheet to be more useful than a list since I can very quickly identify images visually.
    With that many images it will take some time for you computer to churn it out.
    Matt

  • Export Extension List

    All,
    I have a request from my HR department to see if I'm able to export a list from our of Call Maanager with the currrently assigned users and their extensions to update their phone list. Our Call Manager is on v6.1.5 but will be upgrading to v9.x in another month. I've looked at the CDR Analysis and Reporting and the Unified Reporting modules and I can't find anything. Any help would be appreciated. Not so experienced with UC...
    -Best

    Hi 
    Here's a query I use to dump out a list of devices, lines, and associated users...
    run sql select d.name DeviceName, l.name location , css.name devicecss, tm.name devicetype, n.dnorpattern linedn, linecss.name linecss, e.userid userid, e.firstname, e.middlename, e.lastname, e.department department from enduserdevicemap em join enduser e on em.fkenduser = e.pkid join device d on em.fkdevice = d.pkid join callingsearchspace css on css.pkid = d.fkcallingsearchspace join location l on fklocation = l.pkid join typemodel tm on d.tkmodel = tm.enum join devicenumplanmap dnm on dnm.fkdevice = d.pkid join numplan n on dnm.fknumplan = n.pkid join callingsearchspace linecss on n.fkcallingsearchspace_sharedlineappear = linecss.pkid
    Just putty to the server, paste that in, and log it to text with putty. You can import to excel as tab delimited then...
    Regards
    Aaron

  • 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

  • CRM Genesys (G+ 7.5) addional fields during synchronization of call list.

    Hello.
    I have the requirement of sending additional fields to Genesys (G+ 7.5) during synchronization of call list.
    Do you know if it is possible? I have searched for any documentation or similar topic and I haven't found any document.
    Thank you in advanced.
    JM

    it can be done with the help of a system code 'sy-xcode'. it is initialised the time list is sorted so just keeping a check point, we can solve this problem.
    Vishu Khandelwal

  • IPhone 5s outgoing call list unknown random phone numbers

    I got a call from a friend yesterday, when I hung up it was a different phone number that what they had called me when I picked up the phone.  I checked my outgoing phone call list and there are a bunch of phone numbers from all over the country.  What is going on, the phone I got a week ago brand new from the local verizon store.

    Had same issue as other weak and dropped calls. Sent me new phone but there ** means I will need to go to the store which I dread. Cannot remove sim card with paper clip. Geez I have had it with this upgrade!

  • IPhone 5s Recent Call List Limit

    What is the Recent Call List Limit for an iPhone 5s?
    Can you view the entire Recent Call List Limit from the screen?
    Today, as I would delete a call from the list, an older call would appear at the bottom of the list.
    Thanks!

    The Recent call list will display the last 100 calls.
    You can scroll through the list to see from the beginning to end.

Maybe you are looking for

  • Transferred hard drive from Macbook to Mac mini and now have Disk Util prob

    The problem is with Disk Utility. Basically, the DU window is just blank, that is, no hard drives show up in the left hand column. Also, none of the buttons at the top are clickable, though the menu bar drop down menus work. If I use Expose to push t

  • My iPhone 5 battery has recently been draining very quickly. Also shuts down at random times.

    Has this been happening to anyone else? I use my phone just as much as anyone else, and l'll admit sometimes it's a little more but this only recently started happening. Around the same time my battery started draining all the time my phone would als

  • Problem in rebate agreement type 0005

    Hi I created a rebate agreement of type 0005 and maintained amount Rs 5000 for a customer while creating billing document the condition type BO06 was determined in the billing doc but without anu value the analysis shows that condition record has bee

  • Keyword best solution? 6000+ photos

    Hi, I am working on a photo project involving over 6000 photos. When I am done I am going to hand the photos over to a group who will use them for many different purposes. I want to be able to use the features of keywords, but I am hesitant to start

  • Is this variable allowed in java?

    i had create some variable in the following int student_no,no_of_course; String s,family_name , first_name, degree_course; boolean studentNo_valid= false; is underscore allowed in naming variable? it working fine as i run my program. but can i use un