Hyperlink for DMS

Hi,
I have to create a hyperlink for DMS document No. How can I do this.
I was told this can be done by calling transaction CV03N, but not sure to do this. Please help.

I have used the following code to implement this:
CLASS LCL_EVENT_RECEIVER DEFINITION.
  PUBLIC SECTION.
    METHODS:       HANDLE_HOTSPOT_CLICK
                                         FOR EVENT HOTSPOT_CLICK OF CL_GUI_ALV_GRID  IMPORTING E_COLUMN_ID.  
ENDCLASS.   
CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.
METHOD HANDLE_HOTSPOT_CLICK.
    PERFORM MOUSE_CLICK USING E_COLUMN_ID.
  ENDMETHOD.
ENDCLASS.  
FORM MOUSE_CLICK USING E_COLUMN_ID TYPE LVC_S_COL.
  SELECT SINGLE DOKAR FROM DRAW INTO T_DOKAR WHERE DOKNR = E_COLUMN_ID.
    SET PARAMETER ID :  'CV1' FIELD E_COLUMN_ID,
                        'CV2' FIELD T_DOKAR.
    call transaction 'CV03N' AND skip first screen.
ENDFORM.
I get the field name instead of the value in "E_COLUMN_ID", and therefore the "CALL TRANSACTION" fails.
what am I doing wrong, please help...

Similar Messages

  • How to provide hyperlink for a particular field in ALV

    Hi,
      How to provide hyperlink for a particular field in alv report.
    Regards,
    Ramu.

    Yes you can do that. using the fieldcatalog there is an option for that. give HOT_SPOT = 'X'. for the column you want.
    wa_field-hotspot = 'X'.
    REPORT  ztest_alv.
    TYPE-POOLS:slis.
    DATA:it_fieldcat  TYPE  slis_t_fieldcat_alv,
         wa_field LIKE LINE OF it_fieldcat.
    DATA: BEGIN OF it_likp OCCURS 0,
           vbeln TYPE likp-vbeln,
          END OF it_likp.
    DATA: layout TYPE slis_layout_alv.
    wa_field-fieldname = 'VBELN'.
    wa_field-tabname = 'IT_LIKP'.
    wa_field-hotspot = 'X'.
    wa_field-outputlen = 10.
    wa_field-no_zero = 'X'.
    wa_field-seltext_l = 'Sales'.
    APPEND wa_field TO it_fieldcat.
    SELECT vbeln FROM likp
    UP TO 10 ROWS
    INTO TABLE it_likp.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program      = sy-repid
        is_layout               = layout
        i_callback_user_command = 'USER_COMMAND'
        it_fieldcat             = it_fieldcat
      TABLES
        t_outtab                = it_likp
      EXCEPTIONS
        program_error           = 1.
    *&      Form  user_Command
    *       text
    *      -->UCOMM      text
    *      -->SELFIELD   text
    FORM user_command USING ucomm TYPE sy-ucomm
                        selfield TYPE slis_selfield.
      CASE ucomm.
        WHEN '&IC1'.
          SET PARAMETER ID 'VL'  FIELD selfield-value.
          CALL TRANSACTION 'VL02N' AND SKIP FIRST SCREEN.
      ENDCASE.
    ENDFORM.                    "user_Command

  • Standard Package available for DMS in EP

    Hi,
    Is there any Standard package available for DMS in EP?
    If No, then what are the alternative possibilities to access DIRs from web apart from WEB DMS.
    Regards
    sham

    Im not sure but
    you can use iViews for accessing web dms just like cFolders or cProjects....
    Niranjan

  • Creation of new object link for DMS

    i have searched a lot  about Creation of new object link for DMS on internet .
    and all replies  focus on that documentation :
    1.     Program two screens for the following module pools for the SAP object that is to be linked additionally:
    u2013 SAPLCV00
    u2013 SAPLCVIN
    The process logic must be according to that of screen 0204 in program SAPLCV00 and must not be changed.
    2.     Create the function module OBJECT_CHECK_XXXX (XXXX = name of the SAP object).
    i need  to know how to implement that  in more detailed step by step
    as  i know DMS and  abap also.

    Hi Reda,
    Hope the below URL will help to understand how the Process of adding a object link works.
    Enhancement Without Modification of the Object Links - Engineering Change Management (LO-ECH) - SAP Library
    Thanks & Regards,
    Seshadri.

  • Hyperlink for a row content (Not for a filed/column)

    Hello Friends,
    I need to insert hyperlink for particular row value. I have code for adding hyperlink for a field that is column.
    Newspaper
    language
    epaper
    xxxxx
    xxx
    [email protected]
    yyyyy
    yyy
    [email protected]
    zzzzz
    zzz
    [email protected]
    for each row I must have different link. i.e. for xxx newspaper I must have a link [email protected] associated with that and when I click on that it should take me to that link in browser.
    Is there any field(like col-text and col-pos) in the table  lvc_t_fcat so that I can add the link here.
    Please share any idea for this requirement.
    Thanks in advance.

    see the link attached with the previous replay.
    DATA:
    BEGIN OF t_itab OCCURS 0.    "Output data
    INCLUDE STRUCTURE sflight.
    DATA carrid_handle TYPE int4.   "Corresponding link id from t_hype_link(this field for 'carrid')
    DATA END OF t_itab.
    Registering field CARRID_HANDLE with 'CARRID' in fieldcatlog.
    fs_fcat-fieldname = 'CARRID'.
    fs_fcat-web_field = 'CARRID_HANDLE'.
    fs_hype_link-handle = '1' .             "link id
    fs_hype_link-href = 'http://www.google.com' .
    APPEND fs_hype_link TO t_hype_link.
    LOOP AT t_itab .
    IF t_itab-carrid = 'AA'.
    t_itab-carrid_handle = '1' .         "assigning link for each row
    ENDIF.
    MODIFY t_itab.
    ENDLOOP.

  • Create hyperlink for reply to in mail body while sending email.

    Hi All,
    We have a requirement where we need to create an hyperlink for reply to in the mail body.
    We have implemented entire functionality using CL_BCS classes and everything is working fine.
    Only problem we have is when we give document type as HTM instead of RAW then entire formatting of mail body gets disturbed although we get the hyperlink.
    Is there any way where we can send the mail in html format using CL_BCS,CL_DOCUMENT_BCS ?
    KR Jaideep,

    Hi ,
    Please find the code below I am using to make the hyperlink. Do I need to fill the entire mail body using HTML Tags ? If yes, then I guess it will increase the complexity of program as the mail content will vary from one mail to another depending upon whether different invoice documents have text maintained in them.
    lwa_text = '<html>'.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        lwa_text = '<body>'.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        lwa_text = text-012.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        CONCATENATE '<a href="mailto:'
                    lv_receiver
                    '">'
                    lv_receiver
                    '</a>'
               INTO lwa_text.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        lwa_text = '</body>'.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        lwa_text = '</html>'.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        TRY.
            CALL METHOD cl_document_bcs=>create_from_text
              EXPORTING
                i_text         = li_text
                i_documenttype = 'HTM'
                i_subject      = 'Test for hyperlink'
                i_importance   = '1'
                i_sensitivity  = 'P'
              RECEIVING
                result         = lref_document_bcs.
          CATCH cx_document_bcs .
        ENDTRY.

  • Hyperlink for an Object need to be open in a different window

    Hi Guyz,
      I have a Crystal Report which has few sub reports. In one of the Sub Report I have created a Hyperlink for an object using the formula Editor. This report is viewed from a different Portal with the help of ASP Pages. For some reason when I run the report and click on the Hyperlink, it is opening in the same window.
    I want the report to be opened in a different window. Following is the formula I am using as a Hyperlink in formula Editor.
    imgAddress = "http://<server>:8080/index.jsp?action=filter&username=anonymous&password=1&"
    imgAddress = imgAddress + "&drawer=Invoices&folder="  + "&tab=" + trim({stp_AC290;1.INVOICE})
    In the ASP page i am using a DHTML Viewer. Sometimes when I am using ActiveXviewer it is opening as expected.
    crystal Reports version: Crystal Reports 2008
    BO - BOXI 3.1
    Plz help me out!!

    same as your other post:
    moved to .NET Developer forum.
    It appears you are using ASP, it's no longer supported in CR 2008 but can you clarify which SDK you are using?
    Thank you
    Don

  • How to Create an Hyperlink for a field in the table

    Hi
    I am having a requirement that, in a table their is a sales order number field, their will be a lot of sales order numbers, this sales order number to be made as an hyperlink, when i click on the the sales order number it should open another page.
    Now how should i create this hyperlink for that sales order number field. Can any one help me out in this issue.
    Thanks in advance.

    Hi Mani,
    I have a similar requirement but i need to transfer the values to the same page... what then. I have seen the developers giude and the example shows how to tansfer values to another page but no clues what so ever if i have to transfer them to the same page different region. Do u have any suggestions ....
    Regards,
    Amit.

  • Need help with hyperlink for jpeg

    I sound like a noob.. but i have a single jpeg with different images on it... and i want to create a hyperlink for specific areas that you point to and not the entire jpeg.... i just can't seem to figure out how to do this, any help would be greatly appreciated

    Welcome to the discussions. See here:
    http://allaboutiweb.com/index.php/2009/01/fake-an-image-map-in-iweb/
    You may find more suggestions by clicking here.

  • Hyperlinks for Nigel's page work in iWeb but not in Safari. Why?

    In iWeb, the hyperlinks for my NIGEL page all work. They work to and from the main U.B.R.O.L. page. They work to and from the other few people in the U.B.R.O.L. group.
    However, these very same hyperlinks for Nigel do NOT work.
    What should I do? I am careful with clearing cache.
    Lorna in Southern California

    Well, happily, I figured this one out all by myself. The hyperlinks were not working because I had placed them in the Navbar. I had placed them in the Navbar because I had opted to not have those three pages in the Navbar and also I opted to not even show the Navbar on those three pages.
    Well, I discovered by many trials and errors that putting hyperlinked boxes in the Navbar, even when nothing else is there, is a bad idea worth losing.
    When I lowered the hyperlinks into the regular text field, the hyperlinks worked both on my desktop and in Safari.
    Of course, that left me with a bare Navbar to contend with so I decided to put the Navbar back in, but without showing those three pages for Nigel, Helen, or Vali.
    Lorna in Southern California

  • Using a single Content server for DMS and also for Archive link documents

    Hi,
    We have Planned for a single content server for managing the documents in DMS, parallelly as DMS Standard SAP objects are not available for all SAP transactions, i have proposed for making use of SAP Archivelink funtionality to maintain the documentations where Std SAP DMS does not provide a Solution.
    so here the question is
    can a single content server be used as a content repository for Both DMS and archivelink,
    can any one having done this pls state if it is possible to create different or Many Content repositories for DMS, Archive link in the same server,
    is this a virtual creation or can we assign each repository a specific storage space which it should not exceed.
    Thanks and regards
    Sathish

    Hi sathish,
    -- Through the ArchiveLink docuemnt Management interface, an SAP sytem can use various content servers as storage media. similarly, one contnent server can be used by multiple SAP systems.
    -- A Content server always has a single database assigned to it. A database can therefore be used by only one content server.
    -- A databse is split into as many repositories as necessary. The design of the repository is mapped in the SAP system.A repository contains documents.
    Depending on your requirements,(if u have limited documents or with low requirements)  you can use the same content server for both DMS and Archivelink.
    The number of documents stored on the content server is limited only by the size of the database.
    Its better to have an external content server for archiving purpose, if your database size is increasing. Since the archiving systems storage is not dependent on the database.
    U can also refer to the below thread :
    How to Archive SAP DMS Data?
    hope this helps....
    regards
    kavitha

  • How to create hyperlink for the messages in oneorder documents

    Hi ,
    I want to create hyperlink for the error messages that are raised for a payment request, so that i can navigate to that particular object ID mentioned in the message.

    Hi Paparao,
    But we can find the same functionality for trade promotions overlap, the messages raised when two or more tradepromotions overlap, provide us with hyperlink through which we can navigate to that particular object id.
    Regards
    Tejarshi
    Edited by: tejarshi vadduri on Apr 17, 2009 6:55 AM

  • Server Config for DMS

    Hi All,
    We're having SAP ERP ECC 6.0, and are going to implement DMS soon. Can anyone guide me about server configuration required for the same.
    Can we use 32bit servers for DMS and integrate it with existing 64bit servers for ERP?
    Ashish

    Hi,
    DMS is part of ECC 6.0, you will only need content server to store DMS documents. It is possible to use 32 bit content server which talks with SAP (your 64 bit install) through http protocols. You need to plan one server for content server, on the same server you can install TREX search engine provides the RAM permits it.
    Anirudh,

  • BAPI calls for DMS in CRM system

    Hi,
    What BAPI calls are available on CRM system to support DMS? Where can I find more info on this?
    Regards,
    Naveen

    Interesting question.
    A survey of transaction bapi reveals no DMS bapi's in CRM2007. However, In SPRO there are controls for DMS and transaction CSADMIN can also be found in the system.

  • System landscape for  DMS Repository in KM

    Hi All,
    When I create a System Landscape for DMS Repository in KM which sytem template I should choose?Should I choose
    'SAP system using dedicated application server' or anything else?

    The problem is resolved.

Maybe you are looking for

  • Tabs from last session aren't opening when I start FireFox

    In options I have Show my windows and tabs from last time set for When Firefox starts. And I unchecked the warn me when closing multiple tabs option (although it was previously checked, and it wasn't warning me when it was checked). The last few days

  • Error reading when trying to download ipod mini update

    I am trying to download an update for my mini. the following message comes up "error reading setup initialization file" Can anyone help me understand what this means? My ipod mini has been "playing up" the battery doesn't seem to last very long, shut

  • Can I use a desktop, laptop and Ipad with a Photosmart C7280 ?

    Can I connect the desktop to a wireless router with a ethernet cable and still print on the C7280 and also print from a laptop and IPad?

  • Move to a new computer

    This web site is so very contusing I don't even know how I posted the first question. "Ask a question" does not take me to a place to POST a question." It only takes me to articles. Click on "Get community Support" https://support.mozilla.org/en-US/p

  • Print PDF - really low quality?

    Is there a way to adjust the quality settings of the PDFs that are output by selecting from the PDF menu on the print screen? Whenever I do that the PDFs come out really really low quality. I would like them to be as close to the originals as possibl