Link DMS document to LISP and PLPO object types?

Hi,
I am trying to link the  Objects LISP & PLPO  to the DMS.
In the process of this I followed the note - 321531
I did the following steps.
1.Copy screen 1204 in function group CV130 to the screen number 9003  to the program SAPLCV130 and did the rest of the steps as per the note.
2. Copy screen 1204 in function group CV100 to the screen number 9003 to the program SAPLCV100 and did the rest of the steps as per the note.
3. In DC10 Define Document types - I created new entry with object LISP and screen no 9003.
4. And created a document no and attached VBELN and POSNR values to document no.
5.  I did config part in the SPRO Maintain Key fields and added these objects details .
6. Now when I go and check in VL03N transaction entering VBELN no which is existed in the document no
I supposed to find the tab or menu path for the Document Folder?
But I am not able to find any tab or menu path that related to documents.
Can anyone let me know if I am missing anything ? And also where exactly or what kind of tab or menu item it will add in the transaction VLO3N?
Thanks for your time.
Rajesh

Hi Rajesh ,
      I am facing exactly the same problem, please tell me if you get the solution.
Thanks in advance
Abhilash

Similar Messages

  • Link material document of 315 and 313 movement types

    Dear all,
    I have a material document '49_123' of movement type 315, want to find out the reference material document of movment type 313.
    Thanks in advance,
    kumar

    Hi,
    Thanks for prompt response,
    In MB51 how can we specify/link the material documents of 313 and 315 movement types. We are working with AFS materials, the matl docs can be created against grid sizes.
    We are not passing any reference number in material slip,,, only referring material doc of 313 while posting material doc of 315.
    Help me in providing solution.
    Regards,
    Kumar

  • Inconsistent java and sql object types

    Hi,
    I have run into error "Inconsistent java and sql object types"
    while mapping a java class to a sql object type. The java class
    is just a duplicate of sql data structure and I pretty much
    follow the JDBC Developer's GUide's examples (20-43 to 20-45)
    to create the mapping java class.
    Any one runs into simliar problem or any clues?
    Thanks,
    Ed
    Exception in thread "main" java.sql.SQLException: Inconsistent java and sql object types: InstantiationException:
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:210)
    at oracle.sql.STRUCT.toClass(STRUCT.java:433)
    at oracle.sql.STRUCT.toJdbc(STRUCT.java:366)
    at oracle.jdbc.oracore.OracleTypeUPT.unpickle80rec
    (OracleTypeUPT.java:236)
    at
    oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle80rec_elems
    (OracleTypeCOLLECTION.java:553)
    at oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle80rec
    (OracleTypeCOLLECTION.java:383)
    at oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle80
    (OracleTypeCOLLECTION.java:329)
    at oracle.jdbc.oracore.OracleTypeCOLLECTION.unlinearize
    (OracleTypeCOLLECTION.java:218)
    at oracle.sql.ArrayDescriptor.toJavaArray
    (ArrayDescriptor.java:501)
    at oracle.sql.ARRAY.getArray(ARRAY.java:197)

    The safest way would be to use JPublisher to generate the type classes. In your application, you can just use the generated code to manipulate the object.

  • The java and sql object type  was not matched

    My table(Oracle10.2) has a varying arrays column. For mapping to java classes, I use JDeveloper(10.1.3.1.0) to generate java classes. Then I try to insert a record into this varrying arrays column with java. While it always complaints java.sql.SQLException.the java and sql object type was not matched. I can not find the reason.
    My java code:
                   StructDescriptor structdesc = StructDescriptor.createDescriptor(
                             "VARRAY_SEQ", con);
                   int nid=20;
                   int pid=546;
                   BigDecimal mynid=new BigDecimal(nid);
                   mynid=mynid.setScale(0, BigDecimal.ROUND_HALF_UP);
                   BigDecimal mypid=new BigDecimal(pid);
                   mypid=mypid.setScale(0, BigDecimal.ROUND_HALF_UP);
                   Object[] attributes = { "ASDF", mynid, "Developer", mypid,
                             "rwretw" };
                   STRUCT Rel = new STRUCT(structdesc, con, attributes);
                   stmt.setObject(8, Rel);
                   stmt.execute();
                   stmt.close();
    And the STRUCT is
    public RelSeq(String nucl, java.math.BigDecimal neId, String nuor, java.math.BigDecimal pId, String phor) throws SQLException
    { _init_struct(true);
    setNucl(nucl);
    setNeId(neId);
    setNuor(nuor);
    setPId(pId);
    setPhor(phor);
    }

    My table(Oracle10.2) has a varying arrays column. For mapping to java classes, I use JDeveloper(10.1.3.1.0) to generate java classes. Then I try to insert a record into this varrying arrays column with java. While it always complaints java.sql.SQLException.the java and sql object type was not matched. I can not find the reason.
    My java code:
                   StructDescriptor structdesc = StructDescriptor.createDescriptor(
                             "VARRAY_SEQ", con);
                   int nid=20;
                   int pid=546;
                   BigDecimal mynid=new BigDecimal(nid);
                   mynid=mynid.setScale(0, BigDecimal.ROUND_HALF_UP);
                   BigDecimal mypid=new BigDecimal(pid);
                   mypid=mypid.setScale(0, BigDecimal.ROUND_HALF_UP);
                   Object[] attributes = { "ASDF", mynid, "Developer", mypid,
                             "rwretw" };
                   STRUCT Rel = new STRUCT(structdesc, con, attributes);
                   stmt.setObject(8, Rel);
                   stmt.execute();
                   stmt.close();
    And the STRUCT is
    public RelSeq(String nucl, java.math.BigDecimal neId, String nuor, java.math.BigDecimal pId, String phor) throws SQLException
    { _init_struct(true);
    setNucl(nucl);
    setNeId(neId);
    setNuor(nuor);
    setPId(pId);
    setPhor(phor);
    }

  • ERROR: Inconsistent java and sql object types

    I am getting a nested object table in the form of an oracle.sql.ARRAY. I then call getResultSet() on this array and try to cast each object into a Java implementation of the SQLData interface (also defined in the connections type map).
    This approach works for one nested object table but not for another. I get the error message:
    "Inconsistent java and sql object types"
    Does this mean that my Java to Oracle type mappings are wrong? Any help would be appreciated.
    Regards
    Steve

    i had a similar situation. found out it was occuring because the oracle type had not been granted to the appropriate user.
    todd kegley

  • Link DMS document to Sales Order

    Hello -
    Currenlty, our Quality Department manually opens each applicable sales order and manually attaches a required document via the "Extras/Documents" path from within VA02 menu bar. It is extremely time consuming.
    I want to know if it is possible to automatically attach a "linked document" to a sales order after it has been saved? I'd like to create/run a batch job that loops through these sales orders, and if applicable, attaches the "linked document". DMS is setup and working and the document that I need to attach is ready. I don't know where I need to put the record of this "link". I can see all of the "links" via CV03N (Object Links/Sales Document Item), but I don't know how they get there.
    Any advice or link to documentation would be greatly appreciated.
    Thanks,
    Bryan

    Benakaraj ES -
    A few more questions with BAPI_DOCUMENT_CREATE2.
    Here is the FM. Can you assist in helping me establish which parameters I need to provide?
    Example:
    Sales Order: 2142342 with one line item.
    Document:
    TYPE: ZQN (DRAW-DOKAR)
    DOC: QZ6 (DRAW-DOKNR)
    PART: 000 (DRAW-DOKTL)
    VER: 00 (DRAW-DOKVR)                                     
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
    EXPORTING
        documentdata                           = ls_doc
        HOSTNAME                             =
        DOCBOMCHANGENUMBER     =
        DOCBOMVALIDFROM              =
        DOCBOMREVISIONLEVEL       =
        CAD_MODE                             = ' '
        PF_FTP_DEST                         = ' '
        PF_HTTP_DEST                       = ' '
    IMPORTING
        documenttype                 = lf_doctype
        documentnumber             = lf_docnumber
        documentpart                  = lf_docpart
        documentversion             = lf_docversion
        return                             = ls_return
    TABLES
        CHARACTERISTICVALUES      =
        CLASSALLOCATIONS              =
        DOCUMENTDESCRIPTIONS     =
        OBJECTLINKS                         = lt_drad
        DOCUMENTSTRUCTURE         =
        DOCUMENTFILES                   =
        LONGTEXTS                           =
        COMPONENTS                       =
    I see that there is an objectlinks table which I assume is used to create the link between the document and VA02/VA03. The underlying structure for the objectlinks table is BAPI_DOC_DRAD. I'm not clear on what values I need to add to this table when calling the BAPI_DOCUMENT_CREATE2. FM.??
    Any advice on how to fill stucture BAPI_DOC_DRAD?
    Also, I don't want to create any documents. The document already exists. I just want to establish a link. Can I do that without creating a document that already exists?
    Thanks,
    Bryan

  • Link DMS Document to Report

    Hello I created a PDF documentation for a report and
    want to link it with a SAP report (called by transaction SA38)
    I created a DMS document by transaction CV01N
    created document links to report, transaction and
    developement object R3TR/PROG/<report name>
    and also transaction R3TR/TRAN/<transaction>
    I released the document (status).
    But I do not know how to make this documentation
    available from selection screen of report.
    Can anybody help me with this task?
    Thank you
    Matthias
    [other Keywords: CV02N CV03N]

    Hi Matthias
    Whenever you create a DIR  for Example with parameters
    Docuemnt Number   - 100005
    Document Type - DRW
    Part - 000
    Version - 00
    You can Link this DIR with Standard SAP Object such as Material Master ( MARA ) , Vendor Master ( LFA1 ) , Customer ( KNA1)  in DC10 ( Define Document Types > Define Object Links ).
    In this Standard SAP Object are available that can be linked to Document Type. If the Object you desire to link to SAP DMS DIR is not available the you will have to do ABAP Developement to link your desired object to DIR in SAP DMS.
    Check this Link
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/b2/c043a66fab11d1949500a0c92f024a/content.htm
    Check your Object which you want to link to SAP DMS. if not the Follow the procedure given in link.
    Hope this information is usefull to you.
    With Regards
    Mangesh Pande

  • Error while linking dms document with cProject.

    Hi,
       I am encountering an error while try to link the document in cProject under SAP DMS tab. The error message is
    Link Not Possible: The SAP R/3 DMS document info record contains orig (Message number 26 000).
    Pls help me out to solve the this issue.
    Thanking you.
    Regards,
    N.Ramesh

    Hi,
    There is no link between SAP R/3 and SAP DMS server.
    Please be create for RFC's through SM59 tcode.
    Regards,
    Srini Nookala

  • Error while linking DMS document in cProject

    Hi,
         When I link the document of DMS in cProject an error  message
    `` Link Not Possible: The SAP R/3 DMS document info record contains orig( Message number 26 000)``
    is appearing. I could search the list of documents . I am facing this issue only selecting and clicking the continue button under SAP DMS tab in cProject. RFC is doing well. Pls help me to solve the issue.
    Regards,
    Ramesh

    Hi,
    Please check after using following steps.
    Goto - SPRO -
    > Collaboration Projects---->Structure---> Define Project Type
    Please select the your project type and check SAP DMS is selected under tab Active Function.
    Regards

  • No link / reference document / between FI and JV documents

    Hi,
    I am uploading bank statements using transaction ff_5.
    After upload all postings are done, but for some documents there is no 'link' / reference document / . I've checked table JVSO1 and the field reference number is blank.
    Can you give an idea what could be the problem ?
    Thanks,
    Stefan
    Edited by: Stefan Kolev on Nov 28, 2011 5:45 PM

    Hi Ricky,
    BSEG-BELNR = COBK-REFBN
    Regards,
    Santosh

  • Linking word document to report and refreshing

    I'm looking to link word documents to a report. After changing the word documents I'm looking for a way to automatically refresh WITHOUT opening the report again.
    I know this can be done if the report is opened after changing the word documents but I'm trying to find a way to do it without re-opening.
    Is there a way?
    Slim

    Hi Slim,
    If you are not refreshing your report, it will show only static information which is saved in your previous refresh.  It is not possible to view changes without refreshing the report.
    Thanks,
    Sastry

  • Require help on Array of Nested tables and Oracle Object type

    Hi All,
    I have a scenario where I have some millions of records received from a flat file and the record is stored in Table as below:
    Tablename: FILE_RECORD
    Rows:
    FILE_REG_ID = 1
    RECORD_NBR = 1     
    PROCESSED_IND = U
    RECORD= 00120130326006A
    FILE_REG_ID = 1
    RECORD_NBR = 2     
    PROCESSED_IND = U
    RECORD= 00120130326003
    1) I have to read these records at once and
    a) Split the RECORD column to get various other data Eg: Fld1=001, Fld2=20130326, Fld3 = 003
    b) send as an Array to Java.
    2) Java will format this into XML and sent to other application.
    3) The other application returns a response as Successful or Failure to Java in XML
    4) Java will send RECORD_NBR and the corresponding response as Success or Failure back to PLSQL
    5) PLSQL should match the RECORD_NBR and update the PROCESSED_IND = P.
    I 'm able to achieve this using SQL Table type by creating a TYPE for Each of the fields (Flds) however the problem is Java cannot Access the parameters as the TYPE are of COLUMN Types
    Eg: For RECORD_NBR
    SUBTYPE t_record_nbr IS FILE_RECORD.T010_RECORD_NBR%TYPE;
    Can you please let me know how I can achieve this to support Java, I know one way that is by creating an OBJECT TYPE and a TABLE of the OBJECT TYPE.
    Eg: T_FILE_RECORD_REC IS OBJECT
    FILE_REG_ID number(8), RECORD_NBR number (10), PROCESSED_IND varchar2(1), RECORD varchar(20)
    Create type T_FILE_RECORD_TAB IS TABLE OF T_FILE_RECORD_REC
    However I'm facing a problem to populate an Array of records, I know I'm missing something important. Hence please help.
    It would be helpful to provide some guidelines and suggestions or Pseudo or a Code to achieve this. Rest all I can take up further.
    Thanks in advance,

    I know once way that is creating a OBJECT TYPE and a TABLE of OBJECT TYPE, howeve I feel I'm missing something to achieve this.You're right, you need SQL object types created at the database level. Java doesn't know about locally defined PL/SQL types
    However you can do without all this by creating the XML directly in PL/SQL (steps 1+2) and passing the document to Java as XMLType or CLOB.
    Are you processing the records one at a time?

  • Document to find out the Object types

    Hi All,
    Can any one pls provide me the document where you have the list of all Object types defined in Oracle Applications.
    Thanks in Advance

    Hi,
    What object types you are referring to? Could you please elaborate more.
    Oracle Applications Developer Guide (and other main documents) can be found at:
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    Regards,
    Hussein

  • Concurrency and Oracle Object Types

    Hi All,
    I have a question regarding Concurrent usage of an Object type in Oracle.
    I have a java program which calls an Oracle stored proc with the object's table type as IN parameter. In my stored proc, I am populating an Oracle Object with data received from java and retrieving some data based on that.
    My java program can be invoked concurrently by 500 users at the same time - the application is built to handle that request load.
    Now in Oracle, if a bunch of requests are received at the same, would Oracle create multiple instances of this object type that would be usage to the multiple stored proc invocations? Or would there be a prob of concurrency?
    If multiple instance creation is not supported, is there some alternative I can use?
    My code roughly resembles:
    Object:
    contains two columns - name, age
    Stored proc - logic to retrieve and return data from a table based on the name, age received.
    When a bunch of requests access the stored proc simultaneously, will a bunch of instnaces of the object type get created? Or would there be a scenario where the object is common to all requests and hence data from one request would be conflicted due to data from another request?

    Hi Wiiliam
    Sorry for the late acknowledgement (i dozed off!).. Thanks for the response. So the private instance specific to a session ensure that theres no conflict between multiple requests to the same stored proc and hence no conflict of data... Great
    Chaitanya

  • Designer and SDO_GEOMETRY object type

    I want to have tables with columns of object type MDSYS.SDO_GEOMETRY (Oracle Spatial's type) in Designer 9i and then generate these tables.
    So I created in Oracle Object Types branch object type called MDSYS.SDO_GEOMETRY without attributes, methods or source table.
    Then I created in Designer table with column named GEOMETRY which has Datatype property empty and Oracle Type property of value MDSYS.SDO_GEOMETRY.
    But when I generate this table I get these two messages:
    CDS-11349 Warning: The Oracle Object Type MDSYS.SDO_GEOMETRY cannot be generated.
    CDS-18025 Error: Table 'PRK_PRIMER_GEO_SDO' will not be created as Oracle Object Type 'MDSYS.SDO_GEOMETRY' is not created
    Object type MDSYS.SDO_GEOMETRY already exists in database for sure.
    What is wrong here?
    Regards
    Saso Celarc

    I think, Designer cannot handle SDO_GEOMETRY type.
    Workaround: use a other datatype/size not used in your schema ( such as varchar2(99) ), generate scripts and do a text substitution on them to SDO_GEOMETRY.

Maybe you are looking for

  • Video problem with Satellite X200-25G (PSPB9E)

    Hello I'm having this laptop about a year, and I have this problem with Windows Vista (genuine), Windows XP (with modification with video driver). Video driver is newest without problems, except one. I'm working with SolidWorks, and the problem is on

  • Content Server on Sun Cluster

    Hello. Does anybody know, is Contenr Server can work on Sun Cluster? I did not find any information in notes or PAM. Technically, Sun Cluster support both Apache and MaxDB.

  • Why is the search field missing in Notes?

    I am not able to locate the search option in Notes on my iPad. where did it go? Thanks

  • Powerbook keeps putting itself to sleep

    My powerbook goes through phases where it puts itself to sleep over and over again. I may get a few seconds to maybe a minute before it goes back to sleep. I'll be working or using the trackpad or whatever and it will do it anyways. I usually have to

  • Bulk Binding-How to avoid naming all columns

    When using Bulk Binds for inserts/updates,One has to explicitly use all column names in declaration.This is maint intensive as addition of any colum will require changes in code at multiple locations. Is there any way to reference the columns though