How to view the attached documents in IW22 & IW52

Hello guys,
Help me out.
I have attached documents in DMS thru cvo1n maintaining  object link for maintanance notification & service notification and selected coreesponding notification number each.
When i go to transaction of IW22 or IW52 i am no-where finding suitable icon to display the attached documents.
The link is proper since i checked in CC04 which shows the document attchement to the selected object link.
So how to retrive the atached document in both the transactions.
Regards,
Murali.S
Points will be rewarded for sure.

Hi Murali,
please see SAP note 376086 which might be usefull for this question.
Please take a look at the following which should display the document
tab in QM02 and QM01.
Use the transaction QCC2 to enter the notification customizing.
-> Notification Creation
   -> Notification Types
      -> Define Screen Templates
         - Define Screen Areas and Tabs -> Press Choose
           Now select the notification type where would like to have
           this functionality.
           Open the 'Extended View: Tabstrips and Screen Areas' folder
           Select a tabstrip, view the details (Ctrl + shift + F2) and
           add the screen area 092 to it.
This allows a connection to the DMS-system in notifications.
Best regards,
Christoph

Similar Messages

  • OnClick how to view the attached files from OA Page

    Hi,
    How can I view the attachments of type Text, URL and File in a new browser window. In OAF Page I have a query region that shows the names of the files and need to implement a functionality that whenever a user clicks on any name it should show in a new window the contents. It it's of type URL then it opens that URL Page in a new window. If it's a plain text it shows the content in a new window and if it's a File clicking on it should ask to save or open the file, the files can be of any type i.e. .doc, .txt, .pdf, .xls, .gif etc.
    I want to view the attachment in a new browser window. Anyone?
    Thanks

    The Canon 7D Mark II requires Camera Raw 8.7 which is not compatable with Photoshop Elements 10.
    You have a few choices
    1) Upgrade to Photoshop Elements 13
    2) Download and Install the free Adobe DNG Converter. Use the converter to convert the CR2 files to DNG files which can then be used in Photoshop Elements 10
    3) Use the Canon software (DPP) to convert the Cr2 files to TIF files which can then be used in Photoshop Elements 10
    Note: If you are on an old operating system like XP or Vista then you need to upgrade your system.
    For the DNG converter see here.
    Mac – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5858
    Win – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5864
    http://www.youtube.com/watch?v=0bqGovpuihw
    Brian

  • How to find the attached docuements in po

    hi gurus,
    i have a typical issue, we r using ecc6.0.
    whenwe attach docuement to a sales docuement in sales order it has to be view in the production order.
    but we r not able to c the attachemnt in the production order pls help me in this.
    very urgent

    Hey,
    Plz ckeck out the schedule line category.whether is indicator tick on Requirement, Product allocation, availabilty check,assembly etc or not.
    If not plz do that and also check whether u have created Copy control setting or not.
    plz let me know.
    thanks
    mk

  • How to call the attachment(application attachment) in RTF

    Hi Friends,
    can any one help me, how to call the attached document in XMl Publisher(RTF).
    The attachement is done in application for "order Management". We have design the xml file from "oracle reports"(RDF) and designing the layout in XML Publisher(RTF).
    Please help me how can i handle this in RTF.
    Thanks in advance.

    Hi,
    If you mean where are attachments stored so you can get the contents, see my blog post here:
    http://garethroberts.blogspot.com/2007/08/document-attachments-private-stuff.html
    With regards to getting them into RTF layout, it may depend on what type of attachment they are - short/long text/URLs will be fine, file attachments (LOBs) may depend on the contents - certain types of images will be fine, other file type attachments (like PDF, DOC, etc) I'm not sure - on my list of things to look at.
    Regards,
    Gareth

  • How to View Archived attachment in FI document

    Hello Gurus,
    We have a issue regarding to view attachment that was attached to Fi document.
    Document was posted on last year and some mail attachment attached to that document.
    We are able to view the attachment because it is archived.
    Could you please let us know  any one how to view attachment that is archived status.
    Thanks & Regards,
    Shanthi

    Hi,
    There is no standard procedure for change of BSEG table. You could develop your own using CHANGE_DOCUMENT function module.
    Regards,
    Eli

  • How To send the text document as a attachment using a 'So_object_send'

    Hi,
    I want to send a mail to user in sap office.
    I had used a function module 'SO_OBJECT_SEND'.
    Also, I need to send all the attachments (like files .XLS,.TXT etc) in the mail as a attachment.
    Please tell me how to pass the attachment to the Function module 'So_object_send'.
    Thanks in advance
    Regards,
    Darshana

    You should use FM SO_NEW_DOCUMENT_ATT_SEND_API1 to send mail with attachments.
    Below is the code for your reference :
    Doc data
          WL_DOC_DATA-OBJ_NAME  = TEXT-031.          "Survey Data
          WL_DOC_DATA-OBJ_DESCR = TEXT-031.          "Survey Data
          WL_DOC_DATA-OBJ_LANGU = C_LANG_EN.         "E
    Receiver's details
          WL_RECEIVERS-RECEIVER  = ABCD AT XYZ DOT COM."l_survey_recipient_email.
          WL_RECEIVERS-REC_TYPE  = C_REC_TYPE.       "U
          WL_RECEIVERS-COM_TYPE  = C_COMM_TYP.       "INT
          WL_RECEIVERS-NOTIF_DEL = C_CHK.            "X
          WL_RECEIVERS-NOTIF_NDEL = C_CHK.           "X
          APPEND WL_RECEIVERS TO TL_RECEIVERS.
    Mail subject
          WL_HEADER-LINE = TEXT-036.                 "Mail
          APPEND WL_HEADER TO TL_HEADER.
          LOOP AT TL_EMAIL_TAB2 INTO WL_HEADER2.
            CONCATENATE  WL_HEADER2-MESSAGE  C_TAB INTO  L_STRING.
            CONCATENATE C_RET  L_STRING  INTO WL_OBJTXT-LINE SEPARATED BY SPACE.
            APPEND WL_OBJTXT TO TL_OBJTXT.
          ENDLOOP.                                   "LOOP AT tl_email_ta..
          DESCRIBE TABLE TL_OBJTXT LINES L_LINES.
          L_TMP = L_LINES * 255.
          MOVE L_TMP TO L_DOC_SIZE.
          CONDENSE L_DOC_SIZE.
          WL_PACK-HEAD_START  = 1.
          WL_PACK-HEAD_NUM    = 0.
          WL_PACK-BODY_START  = 1.
          WL_PACK-BODY_NUM    = L_LINES.
          WL_PACK-DOC_TYPE    = C_DOC_TYP.           "RAW
          WL_PACK-OBJ_LANGU   = C_LANG_EN.           "E
          WL_PACK-DOC_SIZE    = L_DOC_SIZE.
          APPEND WL_PACK TO TL_PACK.
    Call function module to send the email to the survey recipient
          CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
            EXPORTING
              DOCUMENT_DATA              = WL_DOC_DATA
              PUT_IN_OUTBOX              = C_CHK     "X (Check)
              COMMIT_WORK                = C_CHK     "X (Check)
            TABLES
              PACKING_LIST               = TL_PACK
              OBJECT_HEADER              = TL_HEADER
              CONTENTS_TXT               = TL_OBJTXT
              RECEIVERS                  = TL_RECEIVERS
          IF SY-SUBRC = 0.
            SUBMIT RSCONN01 WITH MODE = 'INT'
                            WITH OUTPUT = 'X'
                            AND RETURN.
          ENDIF.
    Regards,
    NaPPy

  • How to calculate the amount of viewing the uploaded document in KM?

    hello
         everyone
          I  want to  calculate the amount of viewing the uploaded document in KM,like the iviews of topics in forum.
         thanks in advance
         lexian

    Hi,
       You can develop a hitcount repository services. Each time that you open a document this counter is incremented in one. Then you can show this metadata as a typical property.
    Take into account:
    Dynamic Knowledge Management Content Using Groovy Scripts
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5165
    Documents read statistics
    https://www.sdn.sap.com/irj/sdn/thread?threadID=174925
    Patricio.

  • How to View the Scheduler in ODI Console

    Hi
    In ODI Studio, we may Schedule a Scenario and also, we may view all Schedules process from the Agents (View Schedule option).
    My colleagues are going to use ODI Console, but we cannot find out HOW to View the Schedule in ODI Console.
    In Oracle documentation about FDMEE, we can read the following: If you want to cancel a specific instance of a schedule, use the ODI Studio or ODI Console... see the PDF document in attachment.
    Regards
    Claude

    To display the schedule for one agent:
    In Topology Navigator expand the Agents node in the Physical Architecture accordion.
    Select the Physical Agent you want to update the schedule.
    Right-click and select View Schedule.
    The Schedule Editor appears, displaying the schedule for this agent.
    Check: http://docs.oracle.com/cd/E17904_01/integrate.1111/e12643/running_executions.htm#ODIDG634
    HTH -
    Jasmine

  • How to view an attachment (in a forum post)?

    http://forums.adobe.com/thread/419236 - the poster inserted a jpg attachment, but I cannot find how to view that attachment. Left-clicking, right-clicking, double-clicking... all does not do anything?
    Does anybody here know how to view an attachment in this new forum? I've seen this kind of unviewable attachments a couple of times, although some attachments pose no problem, as this

    Thank you very much; I can do that, but most forum posters (seeking help) won't know that...
    Anyway, just testing it:
    good - that works!
    P.S. of course that works for images only; not other documents.

  • How to View Word 2013 Document in ActiveX Object

    I know that the old method of viewing Word docs was to use a webbrowser object.  This doesn't work now since the document opens in word instead.  MS has a workaround, but suggests not to use it for new projects(it involves changing the registry and I'llbe distributing this app to other machines so this isn't an option).  I'd like to know if why webbrowser2 doesn't show up as a usuable ActiveX object in LabVIEW 2012 and if anyone knows how to use the Word document object so you can scroll and navigate a word document.
    Thanks
    Solved!
    Go to Solution.

    Thanks, But that doesn't help when there are figures(pics) in document. As A workaround, for now, I have switched to rtf files.  The attachment shows what I was trying to achieve except I had to save the word document as a rtf document and load it into a rich text document container (found under .NET & ActiveX).  This preserves formatting and pcitures whereas the method above does not.  I still think this is not optimal as in older versions of MS Office, this was done easily as shown in the Diagram Disable Structure.
    Thanks.
    Attachments:
    Help Viewer Demo.PNG ‏201 KB
    Load RTF file into Rich Text Box.png ‏48 KB

  • How to view an attachment (in this forum)?

    http://forums.adobe.com/thread/419236 - the poster inserted a jpg attachment, but I cannot find how to view that attachment. Left-clicking, right-clicking, double-clicking... all does not do anything?
    Does anybody here know how to view an attachment in this new forum?
    P.S. just for fun I am also attaching a jpg file with this post.

    - this one works? I wonder why it doesn't work in the other post; it says QUEUED.

  • How to view the Invoice

    Hi
    Can anyone explain me like how to view the Customer and vendor invoices through T.Code or through path.
    Thanks & Regards

    hi,
    you can view the customer & vendor invoice by giving the FI document number in FB03. Then you can Go for Environment - Document Environment - Original Document. This will take you to the Customer invoice which was raised in the SD module. or vendor invoice which was raised in the MM module.
    you can follow the same process from the FI report : FK10N for vendors & FD10N for Customers.
    hope its useful.
    regards,
    R.Ramakrishnaraj

  • Unable to view the appraisal document in PMS

    Hi,
    We have upgraded our system from 7.01 to 7.4 and ECC from EHP4 to EHP7.
    After upgrade we are not able to open the appraisal document from
    Appraisal Inbox (Performance management) page/Employee & Reviewer Inbox
    page but getting blank screen.
    We had refer the note 1600380, according to the note we had checked the objects in all pages mentioned.
    But then also unable to view the appraisal document.
    Refer the attachment.
    Kindly guide us to resolve the issue.
    Regards-
    Poonam

    Hi ,
    Before upgrade it was working fine, There is no change in the authorisation in the backend.
    Kindly specify what kind of authorisation are required, so that we can check at our level.
    No error messages and logs are generated related to this.
    Regards-
    Poonam

  • How to view the payload of a Message if it processed through AAE

    Hi All,
    Can anybody please tell me how to view the payload if the message processed through Advance Adapter Engine.
    I have developed a SOAP to SOAP interface by using Advance Adapter Engine and it is working fine I can see the messages in Runtime Work Bench(RWB) but when I clicked on the Sender and Receiver Adapter I can't see the payload so I am wondering if anyone knows how to view the payload or it is possible to view the payload if the message was processed through Advance Adapter Engine (AAE).
    Is there any setting or properties available in NWA to enable or disable the payload of AAE?
    Thanks,
    Iqbal

    Hi All,
    Unfortunately I can only see the SOAP Document but no Payload.
    here is what I can see
    - <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
    - <SOAP:Header xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    - <sap:Main xmlns:sap="http://sap.com/xi/XI/Message/30" versionMajor="3" versionMinor="0" soap:mustUnderstand="1">
      <sap:MessageClass>ApplicationResponse</sap:MessageClass>
      <sap:ProcessingMode>synchronous</sap:ProcessingMode>
      <sap:MessageId>75e50f37-9bef-11e0-af98-000027d151a6</sap:MessageId>
      <sap:RefToMessageId>7597008d-9bef-11e0-a027-000027d151a6</sap:RefToMessageId>
      <sap:TimeSent>2011-06-21T10:15:59Z</sap:TimeSent>
    - <sap:Sender>
      <sap:Party agency="http://sap.com/xi/XI" scheme="XIParty" />
      <sap:Service>Srv_xxxxx__Sender_SOAP_AAE_BS</sap:Service>
      </sap:Sender>
    - <sap:Receiver>
      <sap:Party agency="http://sap.com/xi/XI" scheme="XIParty" />
      <sap:Service>Srv_xxxxx_Sender_SOAP_AAE_BS</sap:Service>
      </sap:Receiver>
      <sap:Interface namespace="urn:xxxxxxxx.com:pi:A_TEST:HTTP_TO_SOAP_AAE">SI_OS_xxxx_Request_AAE</sap:Interface>
      </sap:Main>
    - <sap:ReliableMessaging xmlns:sap="http://sap.com/xi/XI/Message/30" soap:mustUnderstand="1">
      <sap:QualityOfService>BestEffort</sap:QualityOfService>
      </sap:ReliableMessaging>
      <sap:System xmlns:sap="http://sap.com/xi/XI/Message/30" soap:mustUnderstand="1" />
    - <sap:HopList xmlns:sap="http://sap.com/xi/XI/Message/30" soap:mustUnderstand="1">
    - <sap:Hop timeStamp="2011-06-21T10:15:59Z" wasRead="false">
      <sap:Engine type="AE">af.dgx.dbdgx66</sap:Engine>
      <sap:Adapter namespace="http://sap.com/xi/XI/System">XIRA</sap:Adapter>
      <sap:MessageId>75e50f37-9bef-11e0-af98-000027d151a6</sap:MessageId>
      </sap:Hop>
      </sap:HopList>
      </SOAP:Header>
    - <SOAP:Body xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    - <sap:Manifest xmlns:sap="http://sap.com/xi/XI/Message/30" xmlns:xlink="http://www.w3.org/1999/xlink">
    - <sap:Payload xlink:type="simple" xlink:href="cid:payload-75e51c499bef11e0a13a000027d151a6atsap.com">
      <sap:Name>maindocument</sap:Name>
      <sap:Description>main document</sap:Description>
      <sap:Type>Application</sap:Type>
      </sap:Payload>
      </sap:Manifest>
      </SOAP:Body>
      </SOAP:Envelope>
    Do I need to do anything in NWA to enable the payload for Sender and Receiver?
    Thanks,
    Iqbal

  • How to View the Loaded Data

    Hi,
    I have loaded the data into an ODS from an External Flat file and executed the job. Can anyone guide me how to view the loaded data in the ODS ?
    Thanks

    Hi Madhu,
    You can simply Goto Transaction LISTCUBE and give the ODS name -> Execute.
    Regards
    Hemant

Maybe you are looking for

  • Urgent, Help on conversion: xml to flat file

    Dear experts, Here is the scenario, XML FILE ->XI-> JMS In JMS recevier side, we use localejbs/AF_Modules/MessageTransformBean to convert xml to flat file. Transform.Class: com.sap.aii.messaging.adapter.Conversion Transform.ContentType: text/plain;ch

  • Windows Embedded 7 on the Nokia Booklet?

    Considering the 1GB memory limitation, would there be any noticeable performance gain after installing Windows Embedded 7? While researching performance benchmarks of WES7, I came across this statement on a user forum that caught my attention: Bogdan

  • Embeding Video/Audio with a Premiere Pro Project File

    Can anyone tell me how you can Embed your video/audio files with a Premeire Pro CS6 project file?  Copying all the original footage from your specific project and placing it into a folder with the project file? Thanks alot. Brandon C.

  • BTE to modify BSET contents

    Hi, Does anyone know any BTE where I can change BSET contents when creating one finantial document ? I need to update fields BSEG-HKONT and BSET-HKONT in some cases and I'm using BTE 00001120 to update BSEG-HKONT for taxes item, but it has no efect o

  • Yipee, Project completed Now need to remove all project off my Mac and save

    I have completed a 1:17:00 minute project. I now want to remover everything off my Mac and save the project either on Disc or Lacie or ?. Is there a way to save everything, capture scratch, footage, etc to disc or a hard drive? I also need to know wh