How to Display DMS document in Enterprise Portal

Hi All,
I have a scenario as described below.
I have a workitem which goes to user in his/her UWL  for  execution. When  this  workitem gets  executed  it  displays an Adobe Interactive form.
Iin this  Adobe form i am giving links to DMS(Document Management System)  documents. So  when this link is clicked the related DMS document files should  get  displayed.
Thru BAPI i m able to get DMS document number its  Object Links and  details of the  files (PDF,DOC,XLS etc..) attached to it.
But I am not able to display this attached files on my enterprise portal. I debugged in R/3 and found out standard Function Modules which are used to display this attached  documents of DMS and wrap them in RFC and called this RFC when user   clicks link on Adobe Form in EP.
The problem I m facing is this RFC is not able to display the attached document files of DMS document on Portal front end. it gives error as u201CException condition "NOT_SUPPORTED_BY_GUI" raised., error key: RFC_ERROR_SYSTEM_FAILURE"
The reason behind why it is running successfully in R/3 is, it gets  front end as SAPGUI but  while we execute it thru portal it does not get frontend type as SAPGUI cause  portal always runs in Browser not on SAPGUI.
So, Is there any way to display this DMS document files on Enterprise Portal?? Or  is it  possible using Knowledge Management?? Or any other standard  BAPI or FMs which can be used for the same  purpose??
Regards,
Dhruv

Hi Steelman,
You have to create a new iview and include it in the page that youhave created.
There are many types of iviews that you can create.
Please refer these link
http://help.sap.com/saphelp_nw2004s/helpdata/en/f5/eb51590e6a11d7b84900047582c9f7/frameset.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/f5/eb50360e6a11d7b84900047582c9f7/content.htm
Revert back for further queries.
Regards,
Sharadha

Similar Messages

  • How To send DMS(Documents cv01,cv03n,cv04n) from one sap system to othersap

    Hello Experts,
    I am working Document management system(CV01,cv02n,cv03n,cv04n)...
    I want to send the documents from one SAP system to Other SAP system
    Using ALE/Idocs....
    Please Help on this any sample programs....or function module....
    Thanks
    Preethi

    Hello,
    Please refer to the thread:
    How To send DMS(Documents cv01,cv03n,cv04n) from one sap system to othersap
    Best Regards, Murugesh AS

  • How to display word document as a HTML document in portal

    Hi
    I developed a portal application in that i am displaying word document using IFrames, from my application i am uploading word document and saving those document in KM
    Requirement is that i need to provide an option to show this word document in html.
    Thanks
    Rudradev.

    Hi Glenn Mendonca
    I thing it is possible
    Even in SDN search results page, we have option called "HTML version" link
    to see the search document in HTML
    see the below url
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=%2fforums%2fsdn_forums%2fthread%7b74687265616449443d39313633%7d.jspa
    i hope passing doucment as a query parameter to com.sap.km.cm.highlightedcontent?DocumentUri=
    might solve this
    pls give your inputs
    Thanks

  • DMS Document access through Portal

    Hi Sap Gurus,
    we are in the process of integrating SAP DMS with Enterprise portal 6.5,  and SAP DMS on 6.0 SP 12, ie the latest Version,
    when we try to access or view the documents in Portal, we could only see those which have been maintained through Easy DMS, ie.. the folders and documents created in EDMS only is visible
    The Documents which are created in normal DMS, ie the document types and all the documents are not visible in Portal view. any one who have seen or managed DMS through Portal let me know can we see all the documents through Portal or only those maintained in Easy DMS,
    can we avail all the funtionality in Portal to manage the documents just like we do in DMS. what are its limitation.
    Pointa awaiting
    Thanks and regards
    Priya S

    Hi,
    The Kpro Tick is been given to all the document types i have configured,
    i dont know if i have to enable any other KPRO feature apart from this,
    if any one have made DMS and Portal integration, please let me know is Portal access is only for Document maintained by Easy DMS, or it is for all the documents of DMS, (is there any note to be implemented to avail this feature)
    also we are planning to have Trex search engine for Portal file search, can this same Trex be used be  for searching files inside DMS also.
    Points eagerly awaiting.
    Regards
    Priya S
    Edited by: Priya S on May 6, 2009 12:59 AM
    Edited by: Priya S on May 7, 2009 10:41 AM

  • How to find System information Of Enterprise Portal from OS/DB level

    HI All.
    How to find the system information of Enterprise Portal  from OS/DB level. like system name, version, stack.
    ITS VERY URGENT
    Thanks in Advance.
    Mahesh

    Hi Mahesh,
    here is where you can find the system information about your EP installation (i.e. O/S, DB, components release, etc):
    1- Goto the Web AS Java URL (http://<host>:<port>)
    2- Select "System Information" and log in as an administrator user
    3- After logging in, the system information page displays the O/S, DB, application server level
    4- Select "Software Components", select the link "all components" (upper right corner of the table) and then you should be able to see the version of your components/applications
    Hope this answers your question.
    Regards,
    Joseph

  • SOLUTION - How to display a BLOB content in Portal Report

    Courtesy of Kelly Wong:
    1. Every time a record of the file information is inserted into the
    PORTAL30.WWDOC_DOCUMENT table while you inserted a record to the blob
    field in a portal form that you created.
    [The fact that a file uploaded appears in the WWDOC_DOCUMENT table is actually a side-effect of Forms file upload, this may change in a future version. However this example gives a pretty good solution to the problem - Dmitry]
    2. If you describe the PORTAL30.WWDOC_DOCUMENT table, you will find
    that a few of the columns are: NAME, FILENAME, MIME_TYPE, BLOB_CONTENT,
    CREATOR, etc.
    3. I created a pl/sql procedure that takes a NAME parameter.
    The code of the procedure is as follows:
    CREATE OR REPLACE Procedure get_url
    (V_FILENAME IN VARCHAR2)
    IS
    url varchar2(100);
    BEGIN
    url := '/pls/portal30/docs/'&#0124; &#0124;v_filename;
    portal30.wwv_redirect.url(p_url =>url);
    END;
    4. I then created a portal report, select NAME, FILENAME, MIMETYPE,
    CREATOR fields from PORTAL30.WWDOC_DOCUMENT. (remember, no BLOB_CONTENT
    field is selected!) My select statement is:
    SELECT '<A
    HREF="scott.get_url?v_filename='&#0124; &#0124;name&#0124; &#0124;'">'&#0124; &#0124;filename&#0124; &#0124;'</A>' filename,
    name,mime_type,creator
    from portal30.wwdoc_document
    where creator = 'KELLY'
    You can see that I am passing in "NAME" instead of "FILENAME" into the
    get_url procedure because the it needs the "NAME" info to display the
    file.
    Actually, the content in the NAME column is something like:"563.TXT",
    and the content in the FILENAME column is "F15675/IPORTAL_LOCAL.TXT".
    The hyperlink can be either on the NAME or FILENAME field, as long as
    you pass in the content of "NAME" into the procedure.
    And it should be fairly easily to substring the FILENAME to show only
    "IPORTAL_LOCAL.TXT" if the client doesn't like to see the number
    portion.
    That is, when I click on the link, I am able to see my file in a new
    browser window.The only drawback in this scenario is if there is a link
    from your document to a portal component (form/report), it may not link
    to the form/report. If there are links in the document link to other
    document (html, txt, etc.), it will be no problem. It just open the
    document in another browser window.
    Please feel free to give me any comment on this and post it to the forum
    if needed. I just don't want to search for the original questions in
    the forum and attach the reply to it.
    Regards;
    Kelly.

    Is this method working also for portal 3.0.9?
    I can't get it to work.
    Is there a way do put a link to download the content of a blob field inside a report in version 3.0.9 that comes with iAS 1.0.2.2?
    Thank's in advance
    Mauro

  • How to send dms document as email attachemnt

    Dear Techies
    Can you share the code to send the dms document as an email attachment through abap program.
    Thanks in advance.
    regards
    Omer Humayun

    Hi Omer,
    Please have a look into SCN document http://wiki.scn.sap.com/wiki/display/Snippets/DMS+Document+send+as+email+attachment
    Send DMS Document Attachments in Mail
    Hope this helps.
    Regards,
    Deepak Kori

  • How to display html document returned by utl_http package (POST method)

    I am using oracle forms 10g, data base version is 10g.
    I have written a database procedure that calls utl_http package POST method and request returns an html document. How do display this html document from oracle form?
    Thank you
    Hema

    Here you have...
    A Full Web Browser Java Bean - Oracle Forms PJCs/Java Beans
    http://forms.pjc.bean.over-blog.com/article-26251949.html

  • How to find DMS documents without object links in ABAP?

    How can I find DMS documents without object links,  in ABAP language?
    thank you

    Hi,
    this functionality is not available as on till date with sap dms and it's current version.
    Hope this will help.
    Regards,
    Ravindra

  • How to display a document content in a JSP page

    Hi friends,
    I am trying to display a document's content in a JSP page after user authentication.For that I mapped a jsp file with extension ".sens" in Content Management SDK manager,and put the file in the directory '/ifs/jsp-bin' of webstarterapp,but it is not working.Please help me to solve the probleb as earliest.
    Regards
    Prasenjit

    under view put a new tag
    <f:view>
    <ui:script url="page.js"/>
    and thats it

  • How to display a document content in JSP page

    Hi friends,
    I am trying to display a document's content in a JSP page after user authentication.For that I mapped a jsp file with extension .sens in Content Management SDK manager,and put it the file in the directory '/ifs/jsp-bin' of webstarterapp,but it is not working.Down I am giving the code snippet,please help me.I need this to be done fast.
    <HTML>
    <HEAD>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ page import="oracle.j2ee.connector.Login" %>
    <%@ page import="oracle.ifs.adk.filesystem.IfsFileSystem"%>
    <%@ page import="oracle.ifs.adk.http.HttpUtils"%>
    <%@ page import="oracle.ifs.beans.LibrarySession"%>
    <%@ page import="oracle.ifs.beans.DirectoryUser"%>
    <%@ page import="oracle.ifs.beans.PublicObject"%>
    <%@ page import="oracle.ifs.beans.Document"%>
    <%@ page import="java.io.*"%>
    <jsp:useBean id="login" scope="page" class="oracle.j2ee.connector.Login">
    <TITLE>FileExtension.jsp</TITLE>
    </HEAD>
    <BODY BGCOLOR="SILVER">
    <%
    String theDisplay = "initialized";
    String theHidden = "initialized";
    boolean theAdminRights = false;
    try
    login = (Login) request.getSession(true).getValue("IfsHttpLogin");
    LibrarySession ifsSession = login.getSession();
    IfsFileSystem ifsFile = new IfsFileSystem(ifsSession);
    DirectoryUser du = ifsSession.getDirectoryUser();
    String path = HttpUtils.getIfsPathFromJSPRedirect(request) ;
    PublicObject po = ifsFile.findPublicObjectByPath(path);
    if(po instanceof Document)
    Document doc =(Document) po;
    InputStream in= ifsFile.getDocumentContent(doc);
    int i=in.read();
    while(i!=-1)
    out.write(i);
    in.close();
    out.flush();
    out.close();
    theAdminRights = du.isAdminEnabled();
    theDisplay = po.getAttributeByUpperCaseName("DISPLAY").toString();
    theHidden = po.getAttributeByUpperCaseName("HIDDEN").toString();
    catch (Exception e)
    e.printStackTrace();
    %>
    Here is some static content.
    <P>
    The Display Value: <%= theDisplay %>
    <P>
    <%
    if (theAdminRights)
    %>
    The Hidden Value: <%= theHidden %>
    <%
    %>
    </jsp:useBean>
    </BODY>
    </HTML>

    these may help you.
    Google map integration to EBS

  • How to unlock the objects in Enterprise Portal

    Dear Experts,
    I have not logged off properly from my Enterprise Portal.  But my object is locked when i am trying to login again for the Enterprise Portal.  Please help us in unlocking the objects in EP.
    Regards,
    Shankar

    Go to Portal Calalog - Content Provided by SAP >> Admin Interface >> Admin iView Template >> Object Locking for Users (iview).
    Open iView Object Locking for Users in edit mode and check if the switch is set to Yes for the Activate User Filter property. If not, switch to Yes. Save any changes you made.
    Create a role and assign it the iView Object Locking for Users with a delta link.
    Assign the role to your userid, and you will be allowed to unlock your own objects through this iview.

  • How to display error documents in selection screen level

    Hi,
      Currently Iam doing Smartforms for journal voucher. Iam taking multiple documents as input and displaying relavent item data for each.
    Now, my requirement is i want to display invalid document numbers at selection screen level. For example there are 30 invalid document number i want to display them before start-of-selection.
    Thanks in advance,
    Regards,
    Chinna..

    i have a query......say i am using a selet-options s_ebeln for ekko-ebeln.
    i want to display error messages for
    1>lower limit cant be greater than upper limit?
    2>for special cahracters given in the select-options fields.....etc...
    now when i am writing the code......
    if s_ebeln-low gt s_ebeln-high.
    message e001.
    it is showing SAP's message not mine.
    but ....if my s_ebeln-high field is 0.
    then my message is showing.
    pls give me the codes for these?

  • How Can configure pop3 e_mail in enterprise portal

    how Can configure Pop3 E_mail in enterprise portal

    Hi,
    Please follow the links below
    E-Mail to Outlook Express from SAP
    How to receive emails
    http://www.tamboly.com/SAPEmailConfiguration.html
    http://www.sap-img.com/basis/basis-faq.htm
    Regards,
    Manish

  • How to display imaged documents on  EP   (.prop filename extension)

    Hello All
    Situation is, the business desires ability to display and optionally print multiple imaged invoices at one time.  These images are stored on the Content Server as ".prop" files.  On R/3 these files are displayed through the SD Viewer.  
    The question is, since these imaged documents are'.prop' files, can the portal retrieve these documents and display and/or print? Can they be converted to .pdf files?  Does anyone have suggestions as to what would be best procedure to accomodate this?
    Can KM be utilized for displaying .prop files or is webdynpro application required?
    Or can anyone direct to some helpful links on this area?

    Hi,
    KM could be used to show files but reading your requirements I would go for Webdynpro development.
    In the WD program you could use all the services you need like ADS for formatting to PDF and even KM services when needed.
    Good Luck,
    Benjamin Houttuin

Maybe you are looking for