ERMS - how to find relationships between e-mails?

Dear all,
I'm working with e-mail management and I'd like to know if there is a way to find relationship between e-mails.
Let's assume an e-mail is sent: the workflow for the same is created and an entry appears in the Inbox.
Now, let's assume the customer writes a new e-mail in the same e-mail chain, to add some details (or answer to our reply): a new workflow is initiated and a new e-mail is available now in the agent inbox.
Is the system able somehow to recognize that the two e-mails belong to the same chain? For operators, it would be important to know that, to avoid double processing of customer requests.
When I use role IC_MANAGER an use the e-mail workbench, I see that in the second e-mail the linkage to the first is identified, but when the same reaches the inbox I was not able to find any useful field to identify this information.
Anybody with experience on this?
I'll reward points if you can help!
Thanks and Regards,
AR

Hi Andrea
Have you checkout out the Mail Form Tracking capabilities?
Particularly for Service Tickets.
This may provide some of the functionality you require
Regards
Arden

Similar Messages

  • How to find relationship between database tables

    Hi Mate,s.
    Iam new to SAPBW , PLZ tell me , How to find releationship between database table(Transperent tables).
    Regards.
    harry

    hi harry,
    from your previous postings, i guess you are asking relationship between tables in r/3, following links may help :
    http://www.sapgenie.com/abap/tables.htm
    http://www.sapgenie.com/abap/tables_sd.htm
    http://www.sapgenie.com/abap/tables_mm.htm
    http://www.sapgenie.com/abap/tables_fi.htm
    http://www.sapgenie.com/abap/tables_ps.htm

  • How to get relationship between two  views in the  reports

    How to get relationship between two  views in the  reports, I am doing a deletion program , it is fully relates to views , how to get relationship between them in the reports

    Hi,
    Please explain your question in detail...what do you want to read ?
    If you want to know about the navigation links between the views then you can use APIs  like
    wdComponentAPI.getComponentInfo().findInWindows("windowName").getViewUsageByID("Name").getNavigationLinks();
    Iterate through the navigationLinkInfo from above collection and can read the other properties .
    I haven't tried the above , but it should work !!!
    Regards,Anilkumar

  • How to visualize relationship between templates and instanciated pages?

    Dear all,
    I built about one year ago a complex site using DW CS3 templates and nested templates (currently using CS4).
    I would now like to modify this site, but cannot remember the nested structure I defined between my various levels of nested templates, nor what instantiates pages derive from what nested template.
    This is probably obvious, but I cannot seem to find a way to visualize the relationship between the nested templates:
    - what templates is the parent of what nested template?
    - what page derives from what nested template?
    I have already spent two hours reading various help pages... nothing... How can this be done?
    Thank you in advance,
    Regards.
    Bernard

    The easiest way that I know of is this:
    Go to a page that is based on a template
    In Code View, select the beginning of the Template call code at the top of the Head, e.g. <!-- InstanceBegin template="/ (use only this fragment to get a list of the entire site pages that are based on templates)
    Search (Ctrl-F) Entire Current Local Site, Source Code, Find All
    The Results Panel will then display all pages that carries that code
    To save this list as a file, click the disk icon that appears two down from the flippy triangle on the left side of the Results Panel
    This will give you a list of all pages based on Templates, and will also indicate...in the "Matched Text" column of the Results, the Template that is in use for each page.
    You will notice that the files are listed out in alpha order, root folder top level first, then successive folders, including the Templates folder. Listings of the Templates folder show the Nested Templates and, to the right, the Templates they are based on.
    This is not a one-button solution, but should serve.
    A suggestion for your future Templates and Nested Templates is to be very explicit when you name them, for instance, "masterTemplate", "indexTemplate.dwt", "innerTemplate.dwt", "galleryTemplate.dwt", as suits your site.
    When I prepared a site for use with Contribute, every page was slightly different, and I controlled variations by making different Nested Templates. I ended up with practically one Template per html page, but it was easier to control the client's Contribut-ions that way.
    Beth

  • How to find bar codes and mails to send clients in smartforms

    HI friends,
        How to find bar codes in smartforms and also how to send mail to the client. I have developed one object in smartforms, but i don't know how to send maill to the client. Pls help me........................
    Thanks in Advance.
    Saradhi.

    Hi!
    Here is the code to send the Smartform to mail as PDF attachment.
    *& Report ZTEST_PDF_MAIL
    REPORT ZTEST_PDF_MAIL.
    Internal Table declarations
    DATA: I_OTF TYPE ITCOO OCCURS 0 WITH HEADER LINE,
    I_TLINE TYPE TABLE OF TLINE WITH HEADER LINE,
    I_RECEIVERS TYPE TABLE OF SOMLRECI1 WITH HEADER LINE,
    I_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    Objects to send mail.
    I_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
    I_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    I_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    I_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
    Work Area declarations
    WA_OBJHEAD TYPE SOLI_TAB,
    W_CTRLOP TYPE SSFCTRLOP,
    W_COMPOP TYPE SSFCOMPOP,
    W_RETURN TYPE SSFCRESCL,
    WA_DOC_CHNG TYPE SODOCCHGI1,
    W_DATA TYPE SODOCCHGI1,
    WA_BUFFER TYPE STRING, "To convert from 132 to 255
    Variables declarations
    V_FORM_NAME TYPE RS38L_FNAM,
    V_LEN_IN LIKE SOOD-OBJLEN,
    V_LEN_OUT LIKE SOOD-OBJLEN,
    V_LEN_OUTN TYPE I,
    V_LINES_TXT TYPE I,
    V_LINES_BIN TYPE I.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = 'ZTEST'
    IMPORTING
    FM_NAME = V_FORM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    W_CTRLOP-GETOTF = 'X'.
    W_CTRLOP-NO_DIALOG = 'X'.
    W_COMPOP-TDNOPREV = 'X'.
    CALL FUNCTION V_FORM_NAME
    EXPORTING
    CONTROL_PARAMETERS = W_CTRLOP
    OUTPUT_OPTIONS = W_COMPOP
    USER_SETTINGS = 'X'
    IMPORTING
    JOB_OUTPUT_INFO = W_RETURN
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    I_OTF[] = W_RETURN-OTFDATA[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    MAX_LINEWIDTH = 132
    IMPORTING
    BIN_FILESIZE = V_LEN_IN
    TABLES
    OTF = I_OTF
    LINES = I_TLINE
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    OTHERS = 4.
    IF SY-SUBRC <> 0.
    ENDIF.
    LOOP AT I_TLINE.
    TRANSLATE I_TLINE USING '~'.
    CONCATENATE WA_BUFFER I_TLINE INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    I_RECORD = WA_BUFFER.
    APPEND I_RECORD.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Attachment
    REFRESH: I_RECLIST,
    I_OBJTXT,
    I_OBJBIN,
    I_OBJPACK.
    CLEAR WA_OBJHEAD.
    I_OBJBIN[] = I_RECORD[].
    Create Message Body Title and Description
    I_OBJTXT = 'test with pdf-Attachment!'.
    APPEND I_OBJTXT.
    DESCRIBE TABLE I_OBJTXT LINES V_LINES_TXT.
    READ TABLE I_OBJTXT INDEX V_LINES_TXT.
    WA_DOC_CHNG-OBJ_NAME = 'smartform'.
    WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
    WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
    WA_DOC_CHNG-SENSITIVTY = 'F'.
    WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    Main Text
    CLEAR I_OBJPACK-TRANSF_BIN.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    I_OBJPACK-BODY_NUM = V_LINES_TXT.
    I_OBJPACK-DOC_TYPE = 'RAW'.
    APPEND I_OBJPACK.
    Attachment (pdf-Attachment)
    I_OBJPACK-TRANSF_BIN = 'X'.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    DESCRIBE TABLE I_OBJBIN LINES V_LINES_BIN.
    READ TABLE I_OBJBIN INDEX V_LINES_BIN.
    I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
    I_OBJPACK-BODY_NUM = V_LINES_BIN.
    I_OBJPACK-DOC_TYPE = 'PDF'.
    I_OBJPACK-OBJ_NAME = 'smart'.
    I_OBJPACK-OBJ_DESCR = 'test'.
    APPEND I_OBJPACK.
    CLEAR I_RECLIST.
    I_RECLIST-RECEIVER = '[email protected]'.
    I_RECLIST-REC_TYPE = 'U'.
    APPEND I_RECLIST.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = WA_DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    COMMIT_WORK = 'X'
    TABLES
    PACKING_LIST = I_OBJPACK
    OBJECT_HEADER = WA_OBJHEAD
    CONTENTS_BIN = I_OBJBIN
    CONTENTS_TXT = I_OBJTXT
    RECEIVERS = I_RECLIST
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    DOCUMENT_TYPE_NOT_EXIST = 3
    OPERATION_NO_AUTHORIZATION = 4
    PARAMETER_ERROR = 5
    X_ERROR = 6
    ENQUEUE_ERROR = 7
    OTHERS = 8.
    IF SY-SUBRC <> 0.
    WRITE:/ 'Error When Sending the File', SY-SUBRC.
    ELSE.
    WRITE:/ 'Mail sent'.
    ENDIF.
    If you want to send some text as Body of the Mail then follow this once
    when u r callin the FM'SO_NEW_DOCUMENT_ATT_SEND_API1'.. points to remember
    1.u have to pass the body of content in table CONTENTS_TXT(ia m using I_OBJBIN) (each line a record) then. suppose i have appended 11 records to the table CONTENTS_TXT .
    2.PACKING_LIST(iam usign I_OBJPACK) table u ahve to append a redord as follows
    I_OBJPACK-TRANSF_BIN = ' '.
    I_OBJPACK-HEAD_START = 000000000000001.
    I_OBJPACK-HEAD_NUM = 000000000000001.
    I_OBJPACK-BODY_START = 000000000000002
    I_OBJPACK-BODY_NUM = 000000000000010.
    I_OBJPACK-DOC_TYPE = 'RAW'.
    append I_OBJPACK-.
    by the above code system treat the first line in table I_OBJBIN as header and the 2nd line to 10 lines tread as body.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = WA_DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    TABLES
    PACKING_LIST = I_OBJPACK
    OBJECT_HEADER = WA_OBJHEAD
    CONTENTS_BIN = I_OBJBIN
    CONTENTS_TXT = I_OBJTXT
    RECEIVERS = I_RECLIST
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    DOCUMENT_TYPE_NOT_EXIST = 3
    OPERATION_NO_AUTHORIZATION = 4
    PARAMETER_ERROR = 5
    X_ERROR = 6
    ENQUEUE_ERROR = 7
    OTHERS = 8.
    Regards
    Tamá

  • How To Find joins between siebel tables

    Hi Experts,
    I am new in siebel and i am working on BI reports.
    I need to write queries to fetch data from sibel database.
    Any idea how do we find joins between table in siebel. Is there any user guide??
    Cheers,
    Andy

    Hi Andy,
    We can find Joins in Object Explorer. Expand the Business Component Object in Object Explorer and you can find Join. In Siebel generally we use only Equi Joins. ROW_ID of parent table will be stored in PAR_ROW_ID of child table. ROW_ID and PAR_ROW_ID are the columns of the table. Most of the tables have these two columns.
    For Example: Take two tables S_CONTACT AND S_CONTACT_X, the ROW_ID of S_CONTACT will be stored in PAR_ROW_ID of S_CONTACT_X table.
    If you want to join these two tables the query will be like
    "SELECT * FROM S_CONTACT CON, S_CONTACT_X CONX WHERE CON.ROW_ID = CONX.PAR_ROW_ID"
    This query will return all the records from S_CONTACT_X which matches S_CONTACT table.
    Thanks & Regards,
    Vinodhkumar

  • How to create relationship between two records using MDM Java APIs

    Hi,
    I am trying to create relationship between two records using Java Apis. Please guide me in doing this.
    Regards,
    Niraj

    Hi Niraj,
    There is ModifyRelationshipsCommand:
    http://help.sap.com/javadocs/MDM/SP06/com/sap/mdm/data/commands/ModifyRelationshipsCommand.html
    Retrieve Relationship command:
    http://help.sap.com/javadocs/MDM/current/com/sap/mdm/schema/commands/GetRelationshipListCommand.html
    Also, please refer similar thread, MDM Java API and relationships.
    Hope it helps..
    Regards,
    Mandeep Saini

  • How to give relationship between two tables with comon column with between oprator

    Hi Folks,
    I am using Sql Server 2008R2. I am getting a problem to establish relationship between two tables. 
    I have two Tables, 1.Inventory Details Table another one is Inventory Header Table.
    Inventory Details Table having a column Card No and inventory Header Table having columns  From card No and To Card No.
    I want to give relationship between these two tables with Card no. Could you please provide me the Sql Query.
    Your help would be greatly appreciated .
    Regards
    hasthi.
    email:[email protected]

    Hi Raju,
     We have two way that we can relate to the table either join or quality condition use following syntax/Query  for relating two tables 
    select * from Inventory_Details ID inner join  Inventory_Header IH on ID.CardNo between IH.FrmCardno and IH.ToCardNo
    or 
    Select * from  Inventory_Details ID ,Inventory_Header IH where ID.CardNo=IH.CardNo OrSelect * from  Inventory_Details ID ,Inventory_Header IH where ID.CardNo between IH.FrmCardno and IH.ToCardNo
    Hope this will help you 
    Niraj Sevalkar

  • How to create relationShip between two resources??

    Hi,
    Is there any manual process on workbench to create relationShip between two resources like repositoryClient.createRelationship() API does.
    Regards
    Sunil

    Hi Niraj,
    There is ModifyRelationshipsCommand:
    http://help.sap.com/javadocs/MDM/SP06/com/sap/mdm/data/commands/ModifyRelationshipsCommand.html
    Retrieve Relationship command:
    http://help.sap.com/javadocs/MDM/current/com/sap/mdm/schema/commands/GetRelationshipListCommand.html
    Also, please refer similar thread, MDM Java API and relationships.
    Hope it helps..
    Regards,
    Mandeep Saini

  • How to find differene between two time fields??

    Hi Experts,
    I am trying to find difference between two time fields,  I have created two formula variables by using replacement path for the two time fields, I have taken dimension key NUMBER, because of this time format is converting to numbers for example if the time is 13:20:10 then it is converting to 1,32,010 then it is calculating, I am getting wrong values.
    Is there any options to find out the difference between two time fields.
    Thanks in advance,
    Venkat.

    use COPF_DETERMINE_DURATION. Its better you do it in data model itself.
    If you have date and time seperately use command
    use CONVERT TIMESTAMP command and
    then use this function module to get the difference in
    timestamp
    CCU_TIMESTAMP_DIFFERENCE
    us this in conjunction with the below function module
    DAYS_BETWEEN_TWO_DATES
    Edited by: Ananda Theerthan on Jan 21, 2010 7:18 AM

  • How to find link between the field (kzbew) mvt.ind. and the (ebeln) ?

    Hi all,
    while finding the link between the kzbew and the ebeln the only table i found is MSEG.
    But i want to populate the data in this table only?
    So please give me the solution how i can fetch the movement indicator for a particular purchase order?
    As i am using the idoc segment MBGMCR02((for creating goods receipt)...i have to pass the movt. indicator with the movement type also.......?

    the field - description in MSEG says:
    Movement Indicator
    Specifies the type of document (such as purchase order or delivery note)  that constitutes the basis for the Movement.
    Use
    This indicator is necessary, for example, to enable a distinction to be made between a goods receipt for a purchase order and a goods receipt for a production order. These two goods movements result in different data
    and account updates in the system.
    Dependencies
    The movement indicator is derived from the transaction code.
    what transaction do you want to use for your idoc?

  • How to find add-ons for mail.app

    D'oh!  
    Am I missing something incredibly obvious about App Store?
    I want to find all add-ons -- worktogethers for mail.app.  How?
    Example:   I found a product called MessageFont which may have a similar function to the one I am seeking.  Its web page is marked "Available on App Store". Sure, I can find Messagefont on App Store, either by overall search, or alphabetical arrangement of Productivity Apps.    So, I guess that the app I'm seeking MIGHT also be in this category.  But there are currently 3065 other apps in that category.   Does the Search box at upper left apply to the currently visible selection?  Maybe, sort of.  But searching for "mail.app" or "mail" don't seem to do what I want.  Searching for "apple mail" returns only 7 hits, including my example, MessageFont, but the hits also include OS X Server, and b) It seems unlikely there are only 5 additional add-ons -- worktogethers for mail.app.
    Bonus question:  What I'm looking for is a utility that makes it easier to reply to formatted email messages in mail.app, by making visible --and prefereably, supporting removal of-- block structures.   It seems that block structures (e.g. blockquotes, perhaps others) interfere with opening vertical space into which  interspersed reply text can be entered.
    TIA

    reidak
    To what are you referring when you ask about "add-ons to Premiere 13" (assumed you mean Adobe Premiere Element 13)? On what computer operating system is your Premiere Elements 13 running?
    Premiere Elements has not come with a Content Disc or offered Content download from an Adobe web site since Premiere Elements 10.
    If "add-ons" to you mean Content download...DVD Templates, Movie Themes, Clip Art, etc....then most of that is going to come from downloading
    Content from within the opened project. There is a limited amount of content that comes complete as part of the installation.
    A description of this process is fully described
    ATR Premiere Elements Troubleshooting: PE11: No Content Disc - Content Downloads from Adobe
    Any questions or need clarification, please do not hesitate to ask. Please supply more information If I have not targeted your question.
    Thank you.
    ATR

  • IC - how to make relation between e-mails from BPs and BPs

    Hello,
    In IC Win when I send email to BP system saves it in relation to BP (so I can later search it in CRM). But what about
    e-mails from BPs. How I can relate them to BPs? Or how CRM can make relation automatically?
    Regards
    Radek

    Hello Radek,
    You can implement GW and transfer emails from GroupWare into CRM. Onc we transfer emails into CRM, you can create activities/attach emails to the BPs.
    Regards,
    Paparao

  • How to see relationships between a cost center and positions?

    Hello All,
    I would like to see all positions attached to a cost center. Normally, I would just go to pp01 transaction, choose Obj. type 'K', enter the cost center number and displayed all relationships.
    However, this cannot be done because cost centers are external objects for HR module.
    Could anyone tell me how I can see CC - all positions relations?
    Best regards

    Try HRP1001. If you don't already have it maintained, then PAR1 is your best bet. Typically, Positions are not assigned to cost centers directly. But with PAR1 you can pretty much see all position inheritance or assignments to cost centers. To narrow it down, use org structure search in PAR1 to restrict the report to your org unit only.
    Good luck and lets know if this helps.
    Tata

  • How to find the address of mail server just considering mail address

    Hi,
    suppose i want to send mail [email protected] how can i know the address of its mail server

    I don't know, but you don't need to know that either just to send e-mail there. You can use your own server to do that.

Maybe you are looking for

  • NIghtmare - Brand new S230u from major retailer: Lenovo says warranty expired

    I just purchased a new (sealed) Lenovo S230u factory box with security tape on both ends unopened, with no additional tape, from a major online retailer that also have physical stores in selected States. It is a refurnished machine, according to the

  • Cannot resize my main partition, random left over space?

    So as you can understand from the topic I can't resize my mac main partition. There is some grayed out area of the parition and when i try to resize it, it then jumps back to the original size with the grayed out area.

  • Static Noise or No Playback

    Hello. I have a mini ipod 1st generation and about a week ago I noticed that it would not play certain songs and if it did play them then it was with static noise or with improper playback. If anyone knows how to solve this problem or has ever had th

  • Server Issue

    When I try to use my internet, I get an error message that says IP Configuration 199.107.215.201 in use by 00:0d:65:3d:69:a6, DHCP Server 199.107.201.2

  • How to move all videos out of Aperture and in to iMovie?

    I have a MacBookPro with a 240 GB SSD for OSX, apps, etc. and a secondary itnernal HD that is 1TB. Remaining space as of today: 240GB SSD = 130 GB free 1TB HD = 103 GB free My Aperture library (managed) resides on the 1TB and measures 139 GB on disk.