Problem creating documents using BAPI_DOCUMENT_CREATE2

Dear all,
I am using
BAPI_DOCUMENT_CREATE2
to create a quality document attachment ( PDF file)  for one of our dynpro screen..
then  I retrive the document information using  'BAPI_DOCUMENT_CHECKOUTVIEW2
and show the document using function module
CV120_START_APPLICATION
1) it works fine only for the person who is creating the document as the bapi is creating a reference to his directory path.
2) it  doesnt work if the user is moving the file into another directory on his local computer as the directory reference path is gone..
3) if a different user is trying to acess file it doesnt even show up as   he will never have the direcory path created by some body else.
how to over come this situation.
I have done lot of investigation and I found that 'BAPI_DOCUMENT_CHECKOUTVIEW2 has some paraneters
pf_http_dest = 'SAPHTTPA'
pf_ftp_dest = 'SAPFTPA'
but could not able to understand it properly. Please kindly help..
Thank you very much in Advance.
Regards
syam.
Edited by: syambabu g on Oct 22, 2008 1:39 PM
Edited by: syambabu g on Oct 22, 2008 1:47 PM
Edited by: syambabu g on Oct 22, 2008 1:50 PM

Please refer to this thread, it tells why you need a data carrier you can also configure the same in DC20.
Data Carriers for Storage the Originals of DMS

Similar Messages

  • Create document using BAPI_DOCUMENT_CREATE2

    Hi Experts,
    i am using BAPI_DOCUMENT_CREATE2 to create document like transaction CV01N. When i create it through CV01N, it is fine and I can see the attached file.
    but when i run my program, the document is created without attached file. can anyone have some solutions for me? following is the code.
    REPORT ztest_fw.
    DATA:
        lv_docnum           TYPE BAPI_DOC_AUX-DOCNUMBER,
        LW_DOCDATA    TYPE BAPI_DOC_DRAW2,
        LW_RETURN       TYPE BAPIRET2,
        LW_DSP             TYPE BAPI_DOC_DRAT,
        LW_OBJLINK      TYPE BAPI_DOC_DRAD,
        LW_DOCFILE      TYPE BAPI_DOC_FILES2,
        LT_DSP              TYPE STANDARD TABLE OF BAPI_DOC_DRAT,
        LT_OBJLINK      TYPE STANDARD TABLE OF BAPI_DOC_DRAD,
        LT_DOCFILE      TYPE STANDARD TABLE OF BAPI_DOC_FILES2.
    START-OF-SELECTION.
       CLEAR LW_DOCDATA.
        LW_DOCDATA-DOCUMENTTYPE = 'DRW'.
        LW_DOCDATA-documentversion = '00'.
        LW_DOCDATA-documentpart    = '000'.
        LW_DOCDATA-laboratory     = '001'.
       CLEAR LW_DSP.
        LW_DSP-DESCRIPTION = 'Test created by Fang wei-SD'.
       LW_DSP-LANGUAGE = 'E'.
        APPEND LW_DSP TO LT_DSP.
       LW_DOCFILE-DOCFILE = 'D:\Function study\Inbound & Outbound IDoc user exits.pdf'.
       LW_DOCFILE-ORIGINALTYPE     = '1'.
        LW_DOCFILE-STORAGECATEGORY  = 'SAP-SYSTEM'.
       LW_DOCFILE-STORAGECATEGORY  = 'DMS_C1_ST'.
        LW_DOCFILE-WSAPPLICATION    = 'PDF'.
        LW_DOCFILE-LANGUAGE         = 'E'.
        LW_DOCFILE-CHECKEDIN        = 'X'.
        LW_DOCFILE-ACTIVE_VERSION   = 'X'.
        APPEND LW_DOCFILE TO LT_DOCFILE.
       CLEAR LW_OBJLINK.
        LW_OBJLINK-OBJECTTYPE = 'IFLOT'.
        LW_OBJLINK-OBJECTKEY  = '1350'.
        LW_OBJLINK-DOCUMENTDIRECTION = 'X'.
        APPEND LW_OBJLINK TO LT_OBJLINK.
        CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
          EXPORTING
            DOCUMENTDATA         = LW_DOCDATA
          IMPORTING
            DOCUMENTNUMBER = lv_docnum
            RETURN               = LW_RETURN
          TABLES
            DOCUMENTDESCRIPTIONS = LT_DSP
            OBJECTLINKS          = LT_OBJLINK
            DOCUMENTFILES        = LT_DOCFILE.
        IF LW_RETURN-TYPE CA 'EA'.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          MESSAGE  ID LW_RETURN-ID
                          TYPE LW_RETURN-TYPE
                          NUMBER LW_RETURN-NUMBER.
        ELSE.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
             EXPORTING
               WAIT          = 'X'
          CLEAR lw_return.
          CALL FUNCTION 'BAPI_DOCUMENT_CHECKIN2'
            EXPORTING
              DOCUMENTTYPE            = 'DRW'
              DOCUMENTNUMBER          = lv_docnum
              DOCUMENTPART            = '000'
              DOCUMENTVERSION         = '00'
           IMPORTING
             RETURN                  = lw_return
            TABLES
              DOCUMENTFILES           = lt_docfile
          IF LW_RETURN-TYPE CA 'EA'.
            CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
            MESSAGE  ID LW_RETURN-ID
                            TYPE LW_RETURN-TYPE
                            NUMBER LW_RETURN-NUMBER.
          ELSE.
            CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
             EXPORTING
               WAIT          = 'X'
            WRITE: / 'document number = ', lv_docnum.
          ENDIF.
        ENDIF.

    Hi Wei,
    based on your description I would kindly ask you to check if the flag 'USE KPRO' is set for the document type 'DRW'. Because as storage category you hand over the value 'SAP-SYSTEM' and this is not a KPRO storage category. So if the 'USE KPRO' flag is set then this original won't be displayed in CV03N.
    Is there maybe a difference in display between transaction CV02N and CV03N?
    Best regards,
    Christoph

  • Problems in creating and storing new documents using BAPI_DOCUMENT_CREATE2

    Hi experts,
    I'm getting problems in creating and storing new documents using BAPI_DOCUMENT_CREATE2.
    I have a scenario where is defined the document type ZC1, document part 200, authorization group 0002 and for all of these  documents the storage category "Cofre DMS1". And the status which demands the storage category is 'FR'.
    I've been fullfiling the BAPI_DOCUMENT_CREATE2 in this way:
    "Tables
    data: it_doc like bapi_doc_draw2,
          it_return like bapiret2,
          it_files like bapi_doc_files2 occurs 0 with header line,
          it_objs like bapi_doc_drad occurs 0 with header line.
    "Variables
    data: wl_doctype like bapi_doc_draw2-documenttype,
          wl_docnumber like bapi_doc_draw2-documentnumber,
          wl_docpart like bapi_doc_draw2-documentpart,
          wl_docversion like bapi_doc_draw2-documentversion.
    it_doc-documenttype = 'ZC1'.
    it_doc-documentpart = '200'.
    it_doc-documentversion = '00'.
    it_doc-description = 'Test of documents creation via BAPI'.
    it_doc-username = sy-uname.
    it_doc-statusextern = 'FR'.
    it_doc-authoritygroup = '0002'.
    refresh it_files[].
    clear it_files.
    it_files-originaltype = '1'.
    it_files-storagecategory = 'Cofre DMS1'.
    it_files-wsapplication = 'PDF'.
    it_files-docfile = 'c:\110307.pdf'.
    it_files-description = 'Test file'.
    append it_files.
    refresh it_objs[].
    clear it_objs.
    it_objs-objecttype = 'EKPO'.
    it_objs-objectkey = '47000497600010'.
    append it_objs.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
      EXPORTING
        documentdata = it_doc
      IMPORTING
        documenttype = wl_doctype
        documentnumber = wl_docnumber
        documentpart = wl_docpart
        documentversion = wl_docversion
        return = it_return
      TABLES
        objectlinks = it_objs
        documentfiles = it_files.
    After execute the BAPI process I got the following error:
    E26 087 - Data carrier COFRE DMS1 not defined
    Does anybody have a sugestion to help me, please?
    Thks
    David
    Edited by: David Tsutsui on Mar 18, 2010 10:52 AM

    Please refer to this thread, it tells why you need a data carrier you can also configure the same in DC20.
    Data Carriers for Storage the Originals of DMS

  • Not able to upload Documents using  BAPI_DOCUMENT_CREATE2 (From SE37)

    Hi
    Not able to upload and created Document in SAP DMS Repository using Function BAPI_DOCUMENT_CREATE2.
    I'm using this BAPI directly from SE37.
    Alwasy it is giving Error - E26 253 Error while checking in and storing:c:\ZANALYSIS_PATTERN.XLS
    Inputs I have given -
    In Document Data -
    Document Type - SDC
    Document Version- 00
    Document Part - 000
    Description - TEST
    In Document Files -
    Document Type - SDC
    Document Version- 00
    Document Part - 000
    Storage Category - ZHCL_CS
    WS Application - XLS
    DocPath - C:\
    DocFile - C:\ZANALYSIS_PATTERN.XLS
    Language - EN
    CheckedIn - X
    PF_FTP_DEST - SAPFTPA
    PF_HTTP_DEST - SAPHTTPA
    DEFAULTCLASS - X
    Please advice if I had skipped something and mentioned anything wrong.
    Thanks
    Prashant

    HI,
    I am also uploading a pdf file to dms through bapi_document_checkin.
    I am getting error E26 253 Error while checking in and storing:C:\DOCUMENTS AND SETTINGS\AGARW01S\DESKTOP\10 2_VIEW 1.PDF
    Inputs I have given -
    In Document Data -
    Document Type - SPE
    Document Version- A
    Document Part - 000
    Description - UPLOAD
    In Document Files -
    Document Type - SPE
    Document Version- A
    Document Part - 000
    Storage Category - DMS_C1_ST
    WS Application - PDF
    DocPath - C:\DOCUMENTS AND SETTINGS\AGARW01S\DESKTOP\10 2_VIEW 1.PDF
    DocFile - 10 2_VIEW 1.PDF
    Language - EN
    CheckedIn - X
    PF_FTP_DEST - SAPFTPA
    PF_HTTP_DEST - SAPHTTPA
    can u please help me as it is urgent.
    Shilpa

  • Create document using SharePoint Designer workflow

    I am using SharePoint Online (2013 version) and SharePoint Designer 2013. I have tried to create a document library using "Create Item in List" action. A word document is created after the workflow executes, but the created document is corrupt.
    It doesn't open in Word Web App. When I open it using Word, it shows a blank page.
    I have some library columns inserted as quickparts in the template (tried both docx and dotx), but none of that appears in the document created by the workflow.
    Has anyone tried this successfully? Please share your experiences.
    Rajesh Elumalai

    After migrating from 2010 to 2013 i too have ran into this issue.  The 'create list item' action does not appear to work.  Documents are created but cannot be opened
    "No details Found" is the error message when opening the document.  I have tried this on several Farms all with the same issue.  Appears to be a bug running 2010 workflows in 2013.

  • Problem creating TO using Function Module L_TO_CREATE_DN

    Hi Gurus,
    I am trying to create TO using the Function Module L_TO_CREATE_DN. Its creating TO for deliveries for materials which are not batch split, however when I am taking delivery consisting of Batch Split material, its not creating and throwing a error with sy-subrc = 15. The error which I am experiencing is Item not handled in batches and batch split item cannot be edited. How to overcome this issue and create the TO.
    Regards,
    Avik
    Edited by: avik2005uitbu on Dec 15, 2011 8:10 PM

    Hi,
    Please check the WM config for the Warehouse / Movement type(Tx. OMLX) . There we have option to give as immediate confirmation. This may be the reason for TO getting confirmed when created.
    U can this by creating a transfer order for the same movement type manually in TX. LT03. After you save if the To is confirmed then its a config setup @ Warehouse / Movement type.
    Regards,
    Bhargava

  • Problem creating jar using JDeveloper

    I'm creating jar using JDeveloper..I need to keep two dll files in the jar. But if I create the jar in JDeveloper, it can't include the dll files. If the jar is created from command prompt, it can include the dll files. Can anyone tell me how can I include these dlls in my jar?

    Putting DLLs in your classes directory is dangerous (eg. Run->Clean Project.jpr will remove it). I use a different way to achieve that:
    When you double click on the deployment profile you'll see a dialog window containing a list of items. The one of interest is the one called File Groups. Select this item, click on the New button and add a new file group just for your DLLs.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Problem creating dataset using db2 stored procedure in Eclipse BIRT

    Hi,
    I am using DB2 9.7 Express Edition in Eclipse BIRT(version 2.5.1) for generating reports. I have used Type4 driver for jdbc connection.
    For that, I have established jdbc connection using db2jcc.jar and db2jcc_license_cu.jar files.
    I have successfully created data source, say DB2BIRT having following requisites-
    Driver Class - com.ibm.db2.jcc.DB2Driver ( v3.50)
    Driver URL - jdbc:db2://localhost:50000/database_name
    User name - user_name
    Password - Password
    I have written some stored procedures and trying to use resultsets from those stored procedures into my report..
    The stored procedures having involvement of only single resultset are working absolutely fine for new dataset using above DB2BIRT.
    But, I am unable to create new dataset using stored procedures those having involvement of multiple resultsets.
    I am getting following error as -
    org.eclipse.birt.data.engine.odaconsumer.PreparedStatement$SequentialResultSetHandler getMoreResults
    SEVERE: Cannot get more result sets from the statement.
    Cannot get the result set.
    SQL error #1: [jcc][10120][10943][3.50.152] Invalid operation: statement is closed. ERRORCODE=-4470, SQLSTATE=null
    org.eclipse.birt.report.data.oda.jdbc.JDBCException: Cannot get the result set.
    SQL error #1: [jcc][10120][10943][3.50.152] Invalid operation: statement is closed. ERRORCODE=-4470, SQLSTATE=null
    com.ibm.db2.jcc.b.SqlException: [jcc][10120][10943][3.50.152] Invalid operation: statement is closed. ERRORCODE=-4470, SQLSTATE=null
    at org.eclipse.birt.report.data.oda.jdbc.CallStatement.getMoreResults(CallStatement.java:1760)
    at org.eclipse.datatools.connectivity.oda.consumer.helper.OdaAdvancedQuery.getMoreResults(OdaAdvancedQuery.java:214)
    at org.eclipse.birt.data.engine.odaconsumer.PreparedStatement$SequentialResultSetHandler.getMoreResults(PreparedStatement.java:5183)
    at org.eclipse.birt.data.engine.odaconsumer.PreparedStatement.getMoreResults(PreparedStatement.java:792)
    at org.eclipse.birt.data.engine.odaconsumer.PreparedStatement.flushResultSets(PreparedStatement.java:1009)
    at org.eclipse.birt.data.engine.odaconsumer.PreparedStatement.close(PreparedStatement.java:980)
    at org.eclipse.birt.data.engine.executor.DataSource$DataSourceReleaser.run(DataSource.java:374)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: com.ibm.db2.jcc.b.SqlException: [jcc][10120][10943][3.50.152] Invalid operation: statement is closed. ERRORCODE=-4470, SQLSTATE=null
    at com.ibm.db2.jcc.b.wc.a(wc.java:55)
    at com.ibm.db2.jcc.b.wc.a(wc.java:102)
    at com.ibm.db2.jcc.b.tk.db(tk.java:3118)
    at com.ibm.db2.jcc.b.tk.a(tk.java:1063)
    at com.ibm.db2.jcc.b.tk.getMoreResults(tk.java:908)
    at org.eclipse.birt.report.data.oda.jdbc.CallStatement.getMoreResults(CallStatement.java:1756)
    ... 7 more
    Moreover, I tried to resolve above issue by changing Driver Class from com.ibm.db2.jcc.DB2Driver ( v3.50) to com.ibm.db2.jcc.uw.DB2StoredProcDriver ( v3.50)
    So again while *"Test Connection"* for new Data source using this new driver class for stored procedure, there is an error reflection as -
    org.eclipse.birt.report.data.oda.jdbc.JDBCException: The selected driver cannot parse the given url.
    at org.eclipse.birt.report.data.oda.jdbc.JDBCDriverManager.testConnection(JDBCDriverManager.java:627)
    at org.eclipse.birt.report.data.oda.jdbc.ui.util.DriverLoader.testConnection(DriverLoader.java:120)
    at org.eclipse.birt.report.data.oda.jdbc.ui.util.DriverLoader.testConnection(DriverLoader.java:133)
    at org.eclipse.birt.report.data.oda.jdbc.ui.profile.JDBCSelectionPageHelper.testConnection(JDBCSelectionPageHelper.java:653)
    at org.eclipse.birt.report.data.oda.jdbc.ui.profile.JDBCSelectionPageHelper.access$7(JDBCSelectionPageHelper.java:627)
    at org.eclipse.birt.report.data.oda.jdbc.ui.profile.JDBCSelectionPageHelper$7.widgetSelected(JDBCSelectionPageHelper.java:549)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1176)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3493)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3112)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
    at org.eclipse.jface.window.Window.open(Window.java:801)
    at org.eclipse.birt.report.designer.ui.dialogs.BaseDialog.open(BaseDialog.java:110)
    at org.eclipse.birt.report.designer.data.ui.actions.EditDataSourceAction.doAction(EditDataSourceAction.java:68)
    at org.eclipse.birt.report.designer.internal.ui.views.actions.AbstractElementAction.run(AbstractElementAction.java:70)
    at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1176)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3493)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3112)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1311)
    Can anybody address my this issue for successful implementation of stored procedure(with involvement of multiple resultsets) for creating Data set in Eclipse BIRT ?
    I will be really thankful.
    Thanks in advance,
    Manasi

    Well, in my stored procedure I have used 2 to3 cursors(as per my business logic) and all cursors except one are holding result sets. That exceptional cursor is intended for holding as well as returning result set after call to the procedure. And its perfectly running on db2 and returning the desired output. The problem is with Eclipse. The same procedure is not working in Eclipse BIRT.

  • Problem creating CalculationView using Eclipse on MacOSX

    Hi guys,
       I'm trying to follow the steps of tutorial Using HANA Modeler in SAP HANA Cloud Platform, but it's giving a error when creating the Join of SO_CV view when running on MacOS Leopard. When I link the tables SNWD_BPA and SNWD_SO the link is erased and when I try using the Join wizard I cannot click on finish or Add a column as output.
      But when I do the same steps on Windows it's works without problem. I've done the procedure several times in both systems, and only get error on MacOS.
      Anyone else having this issue ?
    Regards,
    Cleber Santz

    Hi Vladimir,
       I already have a updated Eclipse (Kepler) install:
        UI5: 1.20.7
        HANA Tools: 1.0.7400
        HANA Cloud Tools: 1.27.0
        NEO J2EE 6 SDK: 2.34.6.1
       When the problem occurs, it cause a graphic issues as well on View Diagram. See image attached.
    Regards,
    Cleber Santz

  • Problem creating document with function ISH_N2_MEDICAL_DOCUMENT

    Hello,
    first of all, creating a document with correct data works. But our customer wants the documents also to be created if the name of the responsible employee is wrong or not existing.
    Can this be done in some way? Because when i try to use the function "ISH_N2_MEDICAL_DOCUMENT" i get the message "message employee NAME is not employee responsible" and the document is not created.
    regards
    Daniel

    Dear Daniel,
    basically you cannot create a medical document without an existing employee responsible (business partner). Depending on your system configuration the EmR may to be assigned to the documenting ou.
    So how you can deal with that restriction?
    a) use a dummy bp for these onces which doesn't exists. You can check BP by the IS-H BAPI for Business partners.
    b) create the BP on the fly before creating the document.
    Regards,
    Axel

  • Problem creating a 'used sources' list based on EXIF data in InDesign CS5

    Hello everyone,
    I recently started to use InDesign CS5 to work on school projects. These projects regularly require us to have a list of sources, not only for citations and referenced work, but also for images. As I sometimes make quite long documents, keeping track of what image is where, and where I got it from, gets tedious.
    I had the idea of generating a caption based on EXIF data, which I'd move to the pasteboard, and group it with the image. The text in the caption has a seperate, numbered paragraph style. On one of the last pages, I generate a table of contents, which the numbered paragraph style selected. I chose to display it using another paragraph style, without page numbers.
    What I want to have as the end result is:
    Table of contents
    1. <Title>. <Author> (<Creation Date>). Retrieved <Date Placed> through <Description>
    The captions display correctly, as shown above in the body of the table of contents. The table of contents itself however, shows only the numbering in front of it, and not the variables.
    I already tried converting the live captions to static captions, but that doesn't work. Does anyone have an idea how to solve this?

    Hello everyone,
    I recently started to use InDesign CS5 to work on school projects. These projects regularly require us to have a list of sources, not only for citations and referenced work, but also for images. As I sometimes make quite long documents, keeping track of what image is where, and where I got it from, gets tedious.
    I had the idea of generating a caption based on EXIF data, which I'd move to the pasteboard, and group it with the image. The text in the caption has a seperate, numbered paragraph style. On one of the last pages, I generate a table of contents, which the numbered paragraph style selected. I chose to display it using another paragraph style, without page numbers.
    What I want to have as the end result is:
    Table of contents
    1. <Title>. <Author> (<Creation Date>). Retrieved <Date Placed> through <Description>
    The captions display correctly, as shown above in the body of the table of contents. The table of contents itself however, shows only the numbering in front of it, and not the variables.
    I already tried converting the live captions to static captions, but that doesn't work. Does anyone have an idea how to solve this?

  • Problem Creating Portles Using JAVABEANS

    I have an application that uses JSP and JavaBeans that works perfectly outside of a portlet. When implementing it as a portlet it is unable to find the JavaBeans.
    I have stored the JavaBeans in the default /WEB-INF/classes directory. The JSP files are in their own directory.
    Request URI:/jnetjsp/adminusersearch/AdminUserSearch.jsp
    Exception:
    oracle.jsp.parse.JspParseException: Line # 28, Error: Unable to find class for bean: UserResults defined by tag with class: adminusersearch.UserSearchResults
    9iAS 1.0.2.2.0

    You need to make sure that your JavaBean classes are on the classpath. Not sure why you mention the WEB-INF directory, it doesn't exist under JServ.
    As far as I remember you need to edit the wrapper.classpath entry in the jserv.properties file. For example, if you have your beans in a the mybeans.jar file, you'd need to create an entry like this:
    wrapper.classpath=D:\jpdk\lib\mybeans.jarand copy mybeans.jar to the D:\jpdk\lib folder.
    Hope this helps.

  • E-Recruit - Problem creating candidates using RCF_CREATE_USER

    When I try to create candidates for e-recruitment in se38 using the program RCF_CREATE_USER I get an error message that says "Enter at least one number for the business partner".
    But if I try to run the program again for the same user then it says that "A candidate already exists for the user". However if I check in su01, no reference user has been addded to the user roles.
    Can anyone suggest why this isn't working.

    Hello,
    We never had any issue while using this program 'RCF_CREATE_USER' though our recruit is still not working because of some other issues. We do get this error '"A candidate already exists for the user" whenever we try to repeat a username. If you use a username in this program which you never have used it before, you wont get this message. Try creating a new user in SU01 and then use in this program. You wont get this message. Normally we assume that a user is created even if you get some error after running the program. This is just my assumption. It seems E-recruiting  model is very very complex!!
    Let me know if you need any docs on Customizing the IMG for E-recruiting.
    Regards,
    Ahmad
    Message was edited by: Ahmad Quraishi

  • PDF file getting corrupted while creating document

    Dear experts ,
                               we are creating DMS document using  BAPI_DOCUMENT_CREATE2 , its all working fine in DEV and Quality system but in production system in case of PDF file bapi is returning success message , but user is not able to display or see the document , getting an error saying 'There was an error opening this document. The file is damagedand could not be repaired'.
    my fuction module getting call from java webdynpro application , I have doubt on the OPEN DATASET statments
    I am using below code to transfer data to application server ,
      IF iv_file_path IS NOT INITIAL.
        SPLIT iv_file_path AT '.' INTO lv_filename lv_ext.
        CALL FUNCTION 'CV120_DOC_GET_APPL'
          EXPORTING
            pf_file   = iv_file_path
          IMPORTING
            pfx_dappl = lv_file_type.
        TRANSLATE lv_file_type TO UPPER CASE.
        OPEN DATASET log FOR OUTPUT IN BINARY MODE
        TRANSFER lv_ext TO log.
        ls_documentfiles-wsapplication = lv_file_type.
        TRANSLATE ls_documentfiles-wsapplication TO UPPER CASE.
        CONCATENATE
                           lv_filename
                            lv_ext
                            INTO lv_file_name.
        CONDENSE lv_file_name  NO-GAPS.
        TRANSFER lv_file_name TO log.
        OPEN DATASET lv_file_name FOR OUTPUT IN BINARY MODE MESSAGE lv_msg.
    **Transfer Attachment Content to Application Server
        TRANSFER iv_file_data TO lv_file_name.
        CLOSE DATASET lv_file_name.
    Please help

    After convert PDF file  you have to use following FM the u send file.
    DATA: pdf TYPE REF TO cl_hrasr00_pdf_generation.
      DATA : lt_data            TYPE solix_tab.
      OPEN DATASET filename FOR INPUT IN BINARY MODE.
      IF sy-subrc EQ 0.
        READ DATASET filename INTO filex.
      ENDIF.
      IF filex IS NOT INITIAL.
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            buffer        = filex
          IMPORTING
            output_length = file_length
          TABLES
            binary_tab    = gt_objbin.
      ENDIF.
      CLOSE DATASET filename.

  • Can you produce Microsoft documents or alter Microsoft documents using an ipad, Can you produce Microsoft documents or alter Microsoft documents using an ipad

    I apologise in advance for having so many questions, but I am considering purchasing an Ipad and these answers will help me to come to a decision on whether to purchase or not and if I purchase whether I need a 4g enabled ipad or wifi only. 
    1)  Is there an app to enable you to produce Microsoft documents ie word document, excel documents etc using an ipad?
    2)  Is there a facility to be able to amend a Microsoft created document using an Ipad?
    3)  If I sent a document that was created using an Ipad via an email to anyone who only uses a Windows computer, would they be able to read it?
    4)  What app would I need to be able to use any software that normally requires adobe flash player?
    5)  I tether my Iphone to my Windows based laptop using a USB cable.  How would I be able to tether my Iphone to my Ipad? 
    6)  Once tethered would it use my Iphone's unlimited 3g network or the wifi network?
    Thank you

    DocsToGo
    • VIEW/EDIT/CREATE Word & Excel files(Office 2007/2008/2010)
    • VIEW PowerPoint, PDF, iWork, Text, .RTF, and more!
    • Send & receive attached supported documents using the built-in Mail app
    • FREE desktop application with your purchase! Compatible on Win & Mac allows you 2-way file sync with a WIFI connection.
    • Open & Edit files within DocsToGo from any 3rd party app that supports the “Open In” feature
    • Supports iTunes File Sharing via USB cable for manually moving files
    https://itunes.apple.com/us/app/documents-to-go-office-suite/id317117961?mt=8
    Quickoffice Pro HD
    Create and edit ALL Microsoft® Office -- document, spreadsheet, and presentation formats, as well as view PDF files, on the go. Our advanced file manager lets you manage local files, access Google Drive or other cloud accounts, and works with your iPad email attachments so you can work anywhere, anytime - online and offline.
    https://itunes.apple.com/us/app/quickoffice-pro-hd-edit-office/id376212724?mt=8

Maybe you are looking for

  • Changes to sales order item not reflected if Call Transaction is used

    I m updating another Sales Order item quantity and reason for rejection programmatically from another sales order. The code is working fine and the quantity does get changed as well as the reason for rejection flag get set (if required). But if I go

  • HT4757 I have a canon power shot G6 that no longer works with my iMac??? Please help

    Up until 2 months ago my Canon Power Shot G6 has always worked with my IMac.  However, my system no longer recognizes the camera upon connecting via usb. Why? What should I do?

  • NIC load balancing

    Hello, I installed a VMWare Hypervisor 5.5 server and put 2 virtual machines on it. The physical server has 2 NICs and connected to the LAN. When I go to the virtual machine performance tab and look at the network data I see that most traffic is goin

  • Save billing document as pdf file in a shared folder

    hi experts, my requirement is to save the billing documents as a pdf file whenever it is generated automatically. is it possible to define a output type to save the pdf file similar to the one used for sending pdf files as attachemnts in email.

  • Flash Export Artifacts

    I'm creating a widescreen (581 x 151) video montage for my website (video has to fit in that size box). When I export via Adobe Media Encoder, I adjust frame width & height (in video settings) to match the project settings of 581 x 151. The rendered