How agent will triger letters from IC WebClient

Hi All,
In CRM 7.0 interaction center webclient where can I triger or select letters to send customers.
for example: If an agent wants to send invitation letter or acknowledgement letter etc.
Thanks,
Raj.

HI
  please define custom action profiles
assign action profile to business transaction
in action profile definition ...configure which action needs to done i.e when this has to trigger and what needs to be done i.e smartforms,work flows etc..
   in brief
go to transaction sppfcadm
  select crm_order
click on condition and configurataion button which is below
and
enter start and schedule condition and processing details
there in processing details enter the letter/frm name
and enter te method name where the code has to writen for executing teh form/leeter(data population)

Similar Messages

  • How message will be retrieved from the website and it send back to the mobi

    how message will be retrieved from the website and it send back to the mobile ?
    please give documents and sample code
    Message was edited by:
    kannankalli

    So as your query :
    The data will be fetched from website and it reach to
    mobileimplicates many possibilities.
    Well if u just want to view the website contents on your mobile then open the web browser in your mobile and open the desired web site, or u can use opera mini for this if your phone supports this.
    And if u want to fetch the contents of some site to your application, use GCF api.
    As a starter hope this will help u : http://www-128.ibm.com/developerworks/library/j-j2me4/#N10102

  • How it will be related from  ABAP to BW

    Hi..Friends,
            I have 1 yr of experience in ABAP,But  I m looking to migratre ABAP to BI.
             How it will be related from  ABAP to BW
            can anybody give best advise to suit my carrer.
    Cheers
    Lohit.

    BIW: Business Information Warehouse
    BW: Business (Information) Warehouse
    See here:
    http://help.sap.com/saphelp_nw04/helpdata/en/b2/e50138fede083de10000009b38f8cf/content.htm
    /people/sap.user72/blog/2006/01/27/sap-netweaver-bi-versus-sap-bw-the-sequel
    Just go through these for BI learing materials
    If you are going to Start BI 7.0 courses
    you could follow the books
    TBW10 Datawarehousing concepts
    TBW20 Reporting
    TBW42 Adavnced Data warehousing concepts (authorization,Broadcasting,etc)
    TBW45 Integrated Palnning
    Online courses on APD,XI
    Tamong these,TBW10 and TBW20 will be sufficient for you to start and know basic concepts
    For more information please
    refer these links
    http://www.psimedia.ws
    http://www.sap.com/uk/services/education/courses/bw.epx
    http://www50.sap.com/useducation/curriculum/print.asp?jc=1&rid=285
    http://www50.sap.com/useducation/curriculum/print.asp?jc=1&rid=458
    http://www50.sap.com/useducation/certification/examcontent.asp
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=506&vid=5
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=420
    http://csc-studentweb.lrc.edu/swp/Berg/BB_index_main.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c27a9990-0201-0010-a393-e6e8bed520fe
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/79f6d190-0201-0010-ec8b-810a969028ec
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/620b406d-0601-0010-3b9a-ac51c445860f
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f243d6d-0601-0010-2aae-abe0a4dcfadb
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0d16261-80c0-2910-149a-97b017a900e4
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20b0d390-0201-0010-408c-f27f82427e23
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9be229f6-0901-0010-8288-824675320301
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/508d0387-001d-2a10-a394-faa4e57f6751
    Hope it helps you,Revert me back if you have any queries
    Regards
    Bala

  • How i will retrive rows from object type

    test is object type(varchar2,varchar2)
    test1 is a object derived from test
    test1(varchar2,varchar2,test);
    how i will retrive rows from test1.
    declare
    type recf is ref cursor;
    v_tab test1 := test1('a','b',test('c','d'));
    rec recf;
    begin
    open rec for
    select * from table(cast(v_tab as test1));
    dbms_output.put_line('the rows are'||rec.test1.test11);
    end;
    when i compile this it return
    ERROR at line 7:
    ORA-06550: line 7, column 35:
    PL/SQL: ORA-22907: invalid CAST to a type that is not a nested table or VARRAY
    ORA-06550: line 7, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 8, column 48:
    PLS-00487: Invalid reference to variable 'REC'
    ORA-06550: line 8, column 1:
    PL/SQL: Statement ignored
    error.

    hi ur previous example really helping me but please help me in this current senario,
    PROCEDURE reserveNumbers (
         TheNumberRange IN NumberRange,
         UserID IN userid,
         ReturnStatus OUT CallStatus ); which is in P_Numbermgr_Api package.
    here NumberRange is a object
    TYPE NumberRange IS OBJECT (
         StartNumber               VARCHAR2(40),
         EndNumber               VARCHAR2(40),
         NumberAttributes          NumberAttr)
    NumberAttributes field based on NumberAttr object
    TYPE NumberAttr IS OBJECT (
         NumberType          VARCHAR2(15),
         CountryCode          VARCHAR2(10),
         CityCode      VARCHAR2(3))
    i write a package within package i am calling P_Numbermgr_Api.reserveNumbers:
    CREATE or replace TYPE My_numberrange IS TABLE OF numberrange;
    CREATE OR REPLACE PACKAGE numberrange_wrapper AS
    TYPE cursor_type IS REF CURSOR;
    TYPE cursor_type1 IS REF CURSOR;
    TYPE cursor_type2 IS REF CURSOR;
    v_userid number;
    PROCEDURE Getnumberrange (userid IN number,
    p_recordset OUT numberrange_wrapper.cursor_type);
    END numberrange_wrapper;
    within package body i write
    CREATE OR REPLACE PACKAGE body numberrange_wrapper AS
    PROCEDURE Getnumberrange (userid IN number,p_recordset IN OUT numberrange_wrapper.cursor_type)
    is
    v_tab My_numberrange := My_numberrange();
    refc numberrange_wrapper.cursor_type2;
    BEGIN
    numberrange_wrapper.v_userid:= userid;
    OPEN p_recordset FOR
    SELECT
         * FROM
         Table(Cast(v_tab As My_numberrange));
    P_Numbermgr_Api.reserveNumbers (My_numberrange,v_userid,p_recordset);
    END Getnumberrange;
    end numberrange_wrapper;
    it return
    PLS-00330: invalid use of type name or subtype name
    please help me how i will solve this problem

  • How do you cut letters from a layer in Illustrator CS6 (so it leaves the letter shape but as a hole)

    Help!
    I tried to search through the questions yes and blah blah, I would rather want the answer so that any dummy would understand.
    So once again, how can I erase/cut letters from a transparent image that I have, so the letters would be holes?
    I'm just really tired of searching an answer that would actully work for me and I have to get this job done soon, so if you can help, I will come all the way up there and hug all the air out of you. Okay maybe not literally.. But pixelhugs.
    I'm desperate, I know. This has been a headache for me for quite some time.
    Please help. Thank you.
    (I would do this with Photoshop, but the pixels.. Yugh. This work is going to be printed big, so they would be a problem.)

    Flora,
    If you want the lettershapes to punch holes in the image so you can look through them, a simple way is to place the letters on top of the image, select both and in the Transparency palette flyout tick Make Opacity mask (set the Clip and Invert Mask to the combination that makes it work, both unticked if the Type is black); you may use live Type.

  • How workflow will be triggered from the Idoc partner profiles

    Hi,
         We have scenario like, We are doing business with the same vendor in different countries. When ever we receive the Idoc from that vendor, Agent will be notified based on the agent details, which is mentioned in the Inbound partner profiles for that vendor. Now they like to enhance the scenario like different agents should be notified for different countries, based on the company code from the same vendor. I came to know that its possible through workflow, can you please let me know the step by step procedure to achieve this scenario. Since this is very important issue, need your help as soon as possible.
    Thanks
    Satyasuresh

    Hi,
    In Tx. WE42, Select the process code for the corresponding partner and bind your workflow / task inplace of the function module with the process code. Now, this will enable the idoc to get placed in the agents(identified by that workflow)inbox.
    But to design the workflow, you`ll have to use tx. swdd and prior to that get some basic understanding of Business Workflow from SAP Library.
    Hope the info. is helpful and reward points if so.
    Regards

  • How to remove the letters from the Application vie...

    Hi,
    Just got my new Lumia920 yestarday in AbuDhabi and very happy with it.
    ok, it was showing the application and all setting one below eachother, after i download any software from the Market, a letters comes up and make my apps in like a group (like the letter A then all application starting with A,,, an so on)
    when i remove the apps everything back to normal ! but when i install any thing again it happens !
    how to remove this groupping ?

    The problem is.
    And I have to say it is very presumptuous of people to say "it makes things easier so I don’t see what the problem is!"
    When you have a small screen like on the 520 there are more letters then Apps!
    So I spend all the time scrolling past stupid letters.
    Tapping the letter does not make things easier because it is now 3 taps and each scree change has got a deliberately slowed screen transition.
    So it wastes my time.
    Slow screen transitions and stupid multiple step operations was the single biggest reason I got rid of my Android device.
    Windows8 was quick and simple with out all of the arty farty cr@p!
    A quick flick gets me to where I want to go so I don’t need the letters.
    If Nokia really wants to give me this option then maybe put an ABC symbol under the search magnifying glass incase say "I forget my alphabetic order!"
    Really it was nice then all by it self with out giving me a warning or an option it went stupid!

  • How to migrate dunning letters from Dev instance to QATEST instance?

    Hi,
    what are the steps in order to migrate customized dunning letters and dunning letter sets from DEV instance to QATEST instance?
    Thanks in advance!

    This is wrong forum for such question, you might want to post it here
    General EBS Discussion

  • How to print A4 letters from a Photosmart D7160?

    I am trying to print a normal a4 letter (on white 80gsm photocopier paper) from my photomsmart D716O.
    I put the paper in the pull-out paper tray but the message I get back is that there is no paper in the printer.
    What am I doing wrong? Can this printer handle normal printing or is it just a photoprinter?

    Hi LacyRose,
    I understand that you were printing cards and only got the outside of the cards printed. I need to get some more information please. What program are you using to print the cards? What operating system are you running on your computer?
    Let me know please.
    Thank you,
    I worked on behalf of HP.

  • Hello! My name is Vadim. I'm from Russia. I'd like to buy two iPhones 5, 64 GB: for my wife and myself. But I have a question to you. Will it work in Russia? How much will it cost for me? And how much will delivery cost to Russia? Thank you very much.

    Dear Sir or Madame,
    My name is Vadim. I'm from Russia. I'd like to buy two iPhones 5, 64 GB online, from your official website Apple: for my wife and myself. But I've a question to you. Will it (iPhone 5, 64 GB) work in Russia? How much will they cost for me? And how much will the delivery from America to Russia cost?
    Yours sincerely,
    Vadim Fedotov.

    iPhone 5 is not available unlocked in US  and
    Apple Store online does not ship outside the Country it operates
    You are best served waiting for the iPhone 5 to be announced in Russia
    through your Apple Approved carriers

  • How we will get parameters when we uses EMBED tags

    hi ,
    how we will get parameter from applet in netscape. When my swing applet using OBJECT tag, runs in IE it works fine.
    And im able to getting parameter. But in the case of Netscape (that means when i used EMBED tag) im not able to getting the parameter.
    How we will give <param tag in the case of EMBED tag. Im sending my snippet which is for only netscape.
    <EMBED type="application/x-java-applet;version=1.2.2"
    width="800" height="1200" code="myclass.class" codebase='mycodebase'
    pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html">
    <NOEMBED>
    </COMMENT>
    No JDK 1.2 support for APPLET--please download the plugin.
    </NOEMBED>
    <param name='parameter' value='value'>
    </EMBED>
    If anybody helps, very much thankful to them
    thanks in advance

    Parameters should be inside the EMBED tag, like this :
    <EMBED type="application/x-java-applet;jpi-version=1.3.1" CODE = "Editor.class" WIDTH = 350 HEIGHT = 200 scriptable=false pluginspage="http://java.sun.com/products/plugin/1.3.1/plugin-install.html"
    TOOLBAR="true"
    TOOLBAR.FLOAT="true"
    TOOLBAR.ALIGN="east"
    >
    Matthieu

  • How do you delete songs from Itunes? I have many that show up as many as 7 times and itunes will not allow me to remove them.

    How do you delete songs from Itunes? I have many that show up as many as 7 times and itunes will not allow me to remove them.

    I have tried to Hilight them and hit Control Delete nothing happens. I tried to just Delete one, but when you hit delete nothing happens.

  • How to transfer file from ipod touch to i tunes. i have files in my ipod , ut itunes is  new so its telling if u sync the ipod all the files will be replaced but no files in the itunes.. so kindly help me how to transfer the files  from i pod to itunesb

    how to transfer file from ipod touch to i tunes. i have files in my ipod , ut itunes is  new so its telling if u sync the ipod all the files will be replaced but no files in the itunes.. so kindly help me how to transfer the files  from i pod to itunes......

    Some of the information below has subsequently appeared in a document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991
    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was designed for you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchased content.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only media purchased from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software. Examples (check the web for others; this is not an exhaustive listing, nor do I have any idea if they are any good):
    - Senuti - http://www.fadingred.com/senuti/
    - Phoneview - http://www.ecamm.com/mac/phoneview/
    - MusicRescue - http://www.kennettnet.co.uk/products/musicrescue/
    - Sharepod (free) - http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2 - Windows
    - Snowfox/iMedia - http://www.mac-videoconverter.com/imedia-transfer-mac.html - Mac & PC
    - iexplorer (free) - http://www.macroplant.com/iexplorer/ - Mac&PC
    - Yamipod (free) - http://www.yamipod.com/main/modules/downloads/ - PC, Linux, Mac [Still updated for use on newer devices? No edits to site since 2010.]
    - 2010 Post by Zevoneer: iPod media recovery options - https://discussions.apple.com/message/11624224 - this is an older post and many of the links are also for old posts, so bear this in mind when reading them.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive - https://discussions.apple.com/docs/DOC-3141 - dates from 2008 and some outdated information now.
    Copying Content from your iPod to your Computer - The Definitive Guide - http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/ - Information about use in disk mode pertains only to older model iPods.
    Get Your Music Off of Your iPod - http://howto.wired.com/wiki/Get_Your_Music_Off_of_Your_iPod - I am not sure but this may only work with some models and not newer Touch, iPhone, or iPad.
    Additional information here https://discussions.apple.com/message/18324797

  • I am trying to record a from my Macbook Air and an annoying loud sound, like a burp, will suddenly erupt from the MacBook, necessitating I start again. Any ideas on how I may stop this, or what it is??

    I am trying to record a meditation from my Macbook Air and an annoying loud sound, like a burp, will suddenly erupt from the MacBook, necessitating I start again. Any ideas on how I may stop this, or what it is??

    Click on the blue Internet Recovery in nbar's post. That is a link to what computers can run Internet Recovery.
    Do a backup,  preferable 2 separate ones on 2 drives. Boot to the Recovery Volume (command - R on a restart or hold down the option/alt key during a restart and select Recovery Volume). Run Disk Utility Verify/Repair and Repair Permissions until you get no errors.  Reformat the drive using Disk Utility/Erase Mac OS Extended (Journaled), then click the Option button and select GUID. Then re-install the OS.
    OS X Recovery
    OS X Recovery (2)
    When you reboot, use Setup Assistant to restore your data.

  • I have 2 itunes accounts. I can no longer use my first one for purchases so I had to start a new one and it will not sync from my new one without deleting everything on my same ipod from my previous account. How do I sync between both accounts?

    I have 2 itunes accounts. I can no longer use my first one for purchases so I had to start a new one and it will not sync from my new one without deleting everything on my same ipod from my previous account. How do I sync between both accounts?

    Wayland wrote:
    The CS.com service account has long been closed. I cannot get it to respond to my years ago password for that account. So I ask them to send me a new password and of course it goes to my years ago email number.
    Don't have it send email.
    Answer the security questions.

Maybe you are looking for

  • Making to user libraries on one computer?

    Hey i was wondering if its possible to make two libraries on one Computer. Im on my laptop and my mothers songs are on here from her ipod and mine are on my desktop. Is there a way where i can keep her itunes songs on there and some how put my songs

  • Creating an output  file using 'GUI_DOWNLOAD' function

    Hi SapAll. when i try to create an out put text file using the FM 'GUI_DOWNLOAD' by wiring the follwoing below source code CONCATENATE 'ASORT' c_tab 'ASORTYP' c_tab                 'VKORG' c_tab 'DATAB' c_tab                 'DATBI' INTO outtab-txt.

  • Missing iphoto files after hard drive replacement

    I am working with iMac (27 inch, late 2009) running OS X Yosemite.  Run time machine to an external hard drive. Earlier this month, the hard drive crashed and had to be replaced.  Before the hard drive crash, the computer was not using Yosemite.  The

  • Trouble getting Footage Item's Path

    Hello, Basically I'm looping through all of the footage project items and trying to get the footage path from them. Here's the code I have inside of the loop. AEGP_ItemType itemType = NULL; ERR(suites.ItemSuite6()->AEGP_GetNextProjItem(projH, itemH,

  • OC4J redeploy problem

    I redeploy EAR application from within JDeveloper (9.0.3.2) to OAS9i. Everything is OK, except that some classes are not redeployed and are kept from the earlier version. Specifically, old versions of MsgBundles from the BC4J project are not redeploy