How to link Documents to CRM

Hi
Can anyone please suggest on how to link Documents to CRM CIC0 screen.
Thanks in Advance

Hi,
This is possible thru the following way..
CONSTANTS: c_fix_url TYPE string VALUE 'http://10.100.18.201:8080/archive?get&pVersion=0045&',
             c_fixed_val1 TYPE string VALUE 'contRep=',
             c_fixed_val2 TYPE string VALUE '&docId='.
  CONCATENATE c_fix_url
              c_fixed_val1
              archiv_id
              c_fixed_val2
              arc_doc_id
              INTO l_url_doculink.
  CALL METHOD cl_gui_frontend_services=>execute
    EXPORTING
      document = l_url_doculink
    EXCEPTIONS
      OTHERS   = 1.
Thanks
Parvathi

Similar Messages

  • How to link documents in SD following tables?

    Hi All,
    I am new to SD and I am a technical person not a business person. But now I have to find out how to link a billing document of type Credit Memo (tcode VF03) with the invoice that originated it. I can see in the document flow of the credit memo (button Display Document flow) all the documents related but... where are those link in the data dictionary? I need the technical part that lays behind this. How can i follow the track of the former documents knowing only one of them?
    I hope you can help me experts.
    BR. Elena

    Elena,
    VBFA table is for Document Flow for which you can see all the preceeding Documents.For Example VBRK ( Billing Table) --> LIKP ( Delivery Tabel ) and VBAK ( Order Tabel).Here for Billing Document the Preceeding Document is Delivery and for Delivery Doucment the Preceeding Document is Order.
    Hope this clarifies your doubt and Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • Hello all. Where can I find relevant documents on CRM built in EBS R12?

    I have searched many websites but failed to find some guide line, white paper or documents on CRM built on EBS R12 edition?
    Appreciated if anybody can give me some ideas.
    Thanks

    Thanks. I know the document link to EBS application, but I could not find any CRM documents on this link.
    I am not sure whether there are some links documents on CRM which built on EBS R12 edition.Please select your application release from the link referenced above and search for CRM -- You should find CRM manuals there ("Oracle Applications CRM System Administrator's Guide").
    And Oracle has released the CRM on Demand Release 19. I also not sure it refer to R12 or it is a standalone product.Oracle CRM On Demand Documentation
    http://www.oracle.com/technetwork/documentation/siebelcrmod-096050.html
    http://download.oracle.com/docs/cd/E15496_01/homepage.htm
    http://download.oracle.com/docs/cd/E14388_01/homepage.htm
    Thanks,
    Hussein

  • How to open archive link PDF in CRM Webclient UI

    Hi,
    i developed an own assignmentblock to display the last ERP billing documents for the current BP.
    In ERP we attach the printed PDF billing document as a archive link document which is stored on the SAP content server.
    I have the requirement to open this PDF document in my own CRM Webclient UI assignmentblock.
    I think i need a kind of URL to open the document.
    But i have now idea how this URL shall look like and how to generate it.
    Or is there another idea for this?
    Thanks a lot.
    Kind regards
    Manfred

    Hi Manfred Feger,
    I have a similar situation where in i need to display a document on web ui (help document),
    can u please share the details of your program.
    Have you saved your file on application server ?
    Thanks

  • How to link a document in Framework

    In CWB Home Page there is ability to link to various URL.
    I know how to link to a Portal. But I need to link to a Document (Word or PPT) which is located in Shared Servers.
    If this is possible , How do I write the full Path which includes the document?

    Hi,
    I am not sure whether I understood your requirement clearly.
    If you just want to link a document to your service desk message, you can easily attach the document to the "attchmnt" tab of the "notif_create" transaction, if you are using "notif_create" to create your service desk message.
    (ii) If you are using "crm_dno_monitor" transaction, then you can upload the document in the "documents" tab of this transaction.
    (iii) But, if your requirement is that that you have to upload the document in the Solar01/Solar02 transaction and only have to link to your service desk message, then you can generate the URL of the uploaded document and attach it using the "My Network Places" button of the "Open File" dialog (that comes up by clicking the "export" button of the "attchmnt" tab of the "notif_create" transaction) and specifying the URL in the "File Name" field.
    (iv) If the requirement is the same as in (iii), but if you use "crm_dno_monitor" transaction, the same procedure can be followed in the "documents" tab of this transaction or else we can also use the "create URL" button of the documents tab.
    Hope you know the procedure for generating the URL of the uploaded document.
    Dont forget to reward for useful answers.
    Best regards,
    Alagammai.

  • How to link to and open external document with Mac Dreamweaver

    I'm evaluating Dreamweaver on the Mac. I know how to link to
    an external document, such as a Word or Excel document. However, I
    would like for the file to automatically open when the link is
    clicked, rather than taking me to a directory window (where I then
    have to double-click the file icon). Another option would be to
    easily import data from a Word or Excel document, but the Help
    indicates that's only possible when using Dreamweaver on Windows.
    Thanks for any guidance you can provide.

    What you need to do is this:
    1.) back up all your data from your iPod
    2.) reformat it on the Windows machine.
    You'll then be able to use your iPod on both Windows and Mac:) If you need more help, let me know!

  • CS3:How to link a file to a InDesign document?

    Hello all,<br /><br />I looked at in the LinkWatcher sample code to get an idea how to link a file to a document, I came up with the code below, the last line of code needs pageitemUID instead of pageUID which I  used it here:<br /><br />IDFile outFile = Utils<ImyUtils>()->getMyFile(); // it reads the file <br />InterfacePtr<IDataLinkHelper> dataLinkHelper(::CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)); <br />InterfacePtr<IDataLink>      dataLinkNew(dataLinkHelper->CreateDataLink(outFile)); <br /><br />IDocument* theFrontDoc = Utils<ILayoutUIUtils>()->GetFrontDocument();<br />IDataBase* database = ::GetDataBase(theFrontDoc); <br /><br />InterfacePtr<IDocument> piDoc(theFrontDoc, UseDefaultIID()); <br /><br />InterfacePtr<IPageList> pageList(piDoc, UseDefaultIID()); <br />     <br />UID pageUID(kInvalidUID);<br /><br />if (pageList->GetPageCount() >  0)<br /> {<br />     pageUID = pageList->GetNthPageUID(0);<br />}<br />// I try to link the file to the front document, although it say pageitemUID, as a second //parameter, but I don't want to link the file to a particular page item. is this a right thing to do?<br /><br />int32 result = dataLinkHelper->AddDataLink(database,pageUID, dataLinkNew); <br /><br />as I execute the code it doesn't add the file in  Link palette in CS3, but when I pass a UID of one page item such as text frame, it will add the name of file to link palette with a "1" comes to  end of row that shows how many times this file was included in the frame. but in case I have not a page item can I use the pageUID instead ?<br /><br />Thanks In Advance,<br />Mor

    Lee,
    Sorry I think I didn't use the right terminology, somehow I want to include/link the file (not with menu item 'place') programmatically in my current open Indesign document, then I expect to see the filename in Link palette. I can do this with linking to a page item in doc but I don't want to assign it to a particular page item, rather I want to assign it to doc. Is any approach to do it?
    Thanks again,
    Mor

  • How to link CRM opportunity to R/3 projects through object relationship

    Hello everyone,
    i have this new development to link CRM opportunity with R/3 projects ( table PROJ ). as user creates the opportunity in CRM in relationships tab he should be able to see the R/3 projects as part of search help when he select create relationship -> projects. i have manged to get the project data from R/3 to CRM through middleware and search help is also showing list of all the projects. problems arises when i try to save the relationship by pressing save button. it gives me error messsage that
    'Project with the number SI090100000000000 does not exist ==> Interlinkage is not created'
    Please help me how to maintain this linkage.
    Thanks
    Sudhir Grover

    Dear Sudhir,
    I have search this help portal a lot to find the solution for my need that,
    Present I am working for a project where the same requirement that what you had in one of your project and did successfully. Let me explain about it,
    Opportunities will be created in CRM  and Projects will be created out side CRM (Project systems) now I have to link this projects information to the corresponding opportunities in CRM.
    For this, I was knew we have to set up "Object relationship profile" that is it.
    But once I red this thread theoretically I got confidence, the requirement can be achieved by following your way, but here I have the below doubts
    1. How to replicate CProjects to CRM from ECC?? (Present middleware set up is working fine (BPs and Products, and etc. replication is happing fine)
    2. ITS (PPM URl) is already provided by PPM team and working fine (I have tested using Transaction launcher), in this case can I use that ITS URL?
    I am really grateful to you!! Kindly help me out!!
    My Email ID is - [email protected]
    Thanks and regards,
    Shaik. 

  • Link Documents to Purchase Order. How?

    Hi Everybody,
    I need help in linking documents which are available in DRAW , DRAD tables to Purchase order while creating a PO in ME21N.
    By passing material number to object key in drad table I can get the document number , version etc...
    How should I pass the material number during PO creation .
    Helpful answers will be rewarded .

    Thanks Thomas & Srimanta for the quick response.
    When I checked EKKN table by entering PO there is no asset no. in anln1 field.
    Also I would like to add that, In me23n for a PO, account assignment category we are entering 'F' for internal order settlement.
    Where can i find the link between asset and po no(ebeln) and po item(ebelp)?
    Regards,
    Rachel
    Edited by: Rachel on Aug 11, 2008 7:23 AM

  • How to get documents from RMS linked to particular case id using webdynpro

    HI friends,
    Can  anybody knows " How to get documents from RMS linked to particular case id."
    From end: webdynpro
    backend: RMS.
    please do the needful.
    Thanks and Regards
    -Sujatha

    HI friends,
    Can  anybody knows " How to get documents from RMS linked to particular case id."
    From end: webdynpro
    backend: RMS.
    please do the needful.
    Thanks and Regards
    -Sujatha

  • How do you view original CRM billing document from R3

    We have sales orders and billing now in CRM.
    We have a requirement to link the accounting document to the billing document in CRM.
    Does anyone know if there is a standard function module to get the document flow or link to the CRM document?

    Thats a cool idea.....but, it seems its not something that can be done, due to browser and word restrictions rather than robohelp else.
    Your browser is going to download the .dotx file, and open that rather than allowing the new-file-based-on-template macro thing to run.
    Only work around I could suggest would be to use the template to create a blank .doc or .docx and link to that rather than the template.
    some info I found...
    http://getsatisfaction.com/pbworks/topics/link_to_word_template
    http://en.allexperts.com/q/Microsoft-Word-1058/2008/7/template-link-webpage.htm
    good luck.

  • How to reverse billing documents in CRM 2007 utilities billing

    Hello All,
    How to reverse the billing document in CRM 2007 utilities in billing screen.
    In ISU CRM SAP gui we use Tcode EABICO to reverse the document by giving reversal reason and reconcil key. how can we reverse a bill in CRM 2007
    Thanks & Regards,
    Raj.

    Hello Raj,
    you can use the BSP component IUICBCO in CRM2007 in order to perform a bill correction. You can test this BSP component using the transaction BSP_WD_CMPWB.
    This component has already been integrated into the business roles UTIL_IC and UTIL_IC_LEAN.
    Best regards,
    Michael.

  • How to Link VALUEGUID to SurveyGUID (CRM Survey tables)

    Hi Gurus,
    I want to link table CRMD_ORDERADM_H to table CRM_SVY_DB_SVS
    I can go to CRMD_ORDERADM_H to get the Survey GUID. Someone told me that i can go to CRMD_LINK table to get the Value GUID, but when i enter the Survey Guid, the table only returns three records (objtype_set = 07, 30 & 29; NO 58), so, i am lost. I don't know how to link table crmd_orderadm_h with table crm_svy_db_svs.
    Your help will be highly appriviated.
    Thanks.
    Nadeem.

    hi Nadeem,
    What is the end result that u expect ? do u need the survey details or what ? do u want the survey details that is linked to a particular order ?
    Call the FM as follows
    CRM_ORDER_READ
    EXPORTING
        IT_HEADER_GUID = (your order guid)
    IMPORTING
        ET_SURVEY = (survey table)
    The survey table will give u list of surveys (with their Survey GUID's). I would recommend using this FM, as it would take care of buffers etc. which might not be available if u try a direct select on tables.
    Reward points if this helps.
    Regards,
    Raviraj

  • Configuration documents of CRM 2007 in Solution Manager

    Hi all,
    I have new version of CRM 2007 in our landscape and Solution manager as well.
    So we need to get/download configuration documents of CRM 2007 by Solution manager but not sure what configuration we need to do in Solution manager to get these CRM documents.
    So kindly suggest me the way to get this done, thanks.
    Regards,
    Himanshu chauhan.

    Hi,
    This link might not be sufficient but will let you know how powerful Solution Manager is.
    http://www.sap.info/index.php4?ACTION=noframe&url=http://www.sap.info/public/INT/int/index/PrintEdition-17873d3e79f60eb30-int/0/articleContainer-214343d5145200a438
    This link will be useful to you providing you how to create non SAP systems in your Solution Manager Landscape.
    http://help.sap.com/saphelp_sm40/helpdata/en/bc/0e90000e58f64fb184a4cba0323e39/content.htm
    This is one good guide for you.
    www.sappro.com/downloads/NonSAPsystems.pdf
    Meanwhile i will try for more indepth coverage of the subject.
    Feel free to revert back.
    --Ragu

  • Display cross-references' linked documents filename in the xref panel

    Our company creates technical manuals consisting of five chapters, all named the same, except with a different prefix. For example the "ABC Widget" manual has an introduction chapter named "ABC 1 - Introduction", a safety chapter named "ABC 2 - Safety", etc. Many times I re-use documents for creating subsequent manuals using the "Save As" command. So the "ABC 1 - Introduction" chapter would be saved as "EFG 1 - Introduction" for the "EFG Widget" book. For all the internal xrefs it saves a whole lot of time since all of the xrefs are preserved. But for cross-document references it creates a problem. For example, if the "ABC 1 - Introduction" chapter has a xref to "ABC 2 - Safety", when I save the Introduction chapter as "EFG 1 - Introduction" it will still retain the xref to "ABC 2 - Safety".
    Right now, the only way to see if there are xrefs pointing to latent docs, is to check each one manually. If the xref panel displayed a column indicating the filename of the linked documents, I would be able to tell at a glance if that xref was pointing to the wrong document.
    Thank you.
    ID CS5, MAC

    Hi Van,
    I fear, I expressed myself not very clear. I try again.
    We have DITA structured documents. However, lastest status often was saved in the FM document. The xml documents often are not representing the final status.
    When I open the FM8 document in FM9 everything looks pretty good.
    But: When I want to save the document as xml with FM9, I'm getting errors regarding the cross references.
    The cross references which were created in FM8 - doesn't matter, if a valid xml document or a FM document - always look the same.
    (BTW: I don't think that in structured documents cross references always refer to elemts with a unique ID.)
    example from xml which was created with FM8:
    <xref href = "#id08B4A0R30E9" type = "fm:Chapter">"..."</xref>
    the only difference in the FM document is that the element is called fm-xref there, as it's not an external url.
    in FM9 those cross references are totally different.
    example from xml which was created in FM9:
    <xref href = "#id08B4A0R30E9" class = "- topic/xref">"..."</xref>
    When saving the FM documents with the cross references from the first example as xml in FM9 (we don't have FM8 anymore), I get an error that the attribute type is not defined.
    When having a xml document that was last changed with FM8 and opening/ saving this with FM9, there is no error.
    At the moment I do not know how to solve this issue.
    And also I'm not sure weather the same problem might accour again with change from FM9 to FM10 or else.
    It is a great effort to make new cross references just because we upgraded from FM8 to FM9. (And of course always at most inconvienent time.)
    As we are thinking of upgrading to FM10, it would be good to know before, if there are any similar issues to expect.
    Or if there is an fix for FM9 or FM10 to avoid this at all.
    Regards,
    Anna

Maybe you are looking for

  • Profile profile_name does not exist

    I've got a fresh install and I can get my wireless up and running by commands. ifconfig eth0 up iwconfig eth0 essid mywlan wpa_supplicant... dhcpcd eth0 and as the Network_tutorial suggests, I created a mhrwlan file in /etc/network.d/ with the follow

  • Error when sending message: 500 Internal Server Error

    Hi IE is not accepting any messages, when I try to send the messgae to the IE ( using RWB) i am getting the below error " Error when sending message: 500 Internal Server Error". following things what i have noticed. 1. Pipleline URL is fine, both in

  • My attachments won't attach???

    My e-mail attachments won't attach. After a long wait while trying to attach, I get a message that allows me to try again. If I select "switch" and retry, the attachment takes. The process is very slow. How may I fix this?

  • Create/Update Ship-to-address in PO

    Hi All, Does anyone know any FM or BAPI to create/updaet ship-to-address in PO. Currently I am going in ME22, selecting one line item. going to Item->More Functions->Delivery Address. Then A pop up comes where I first reset the address and then enter

  • Drill-through via Transparent Partition

    Hi I am using Essbase Server and EIS 11.1.1. I have a ASO target cube which points to different ASO source cubes partitioned on dates. Each source cube has defined a drill-through report and this drill-through reports work fine if I access them direc