DMS Characteristics Table

Hi
We are in Petroleum Company and using ECC 5, I am trying to create Document Management System (DMS) for maintaining information and routing with PO.
While creating characteristic, using character field in Basic TAB, in Restriction TAB put 017, however system and same characteristic assigned to Class type 017.
However system is not reflecting the characteristic in CV01N, moreover additional TAB in CV01N will not appear.
Kindly help me out and also let me know in the Characteristic what TABLE and Field should be used.
Regards,
Tahir

Hi Tasir,
Please check whether you have assigned your characteristic to a class.
You will required to create a class and assign your characteristics to the class.
Then you will have to go to CV01N, enter required data and then to Classification and put your class in the field available.
After that your characteristics would be visible in CV01N.
Endorse if useful.
Thanks,
Pavan

Similar Messages

  • Impact of  Activation of DMS-Characteristics Change Log in existing DMS.

    Dear All,
    We have created DMS documents without activation of change log for DMS-characteristics. Now we  are planning to activate this functionality but we do not foresee the impact of this activation on existing DMS.
    Can any one give suggestion.
    Best regards
    Abdullah

    No conflicts/impact in your case.You may activate the functionality.However,please bear in mind that the changes will be logged/tracked only for the new DIR's that you create post activation.For all the existing DIR's,the path 'Environment > Display changes' will be displayed minus the changes/log.
    Regards,
    Pradeepkumar Haragoldavar

  • DMS Link Table for External Content Repository

    Can someone advise in what table is the link to the External Content Repository stored, in SAP's DMS? We are able to save a document using CV01n in documentum, but are unable to determine the table in which the link to the external document id is stored.
    It is NOT in TAO01, which would be the obvious choice. Perhaps TAO01 is only used by ArchiveLink and not by DMS.
    We know that the link is stored in one of the tables in SAP, because we are able to retreive the document.
    Regards,
    Ajay

    Dear Ajay,
    please check if tables DMS_DOC2LOIO, DMS_PHIO2FILE and DMS_PH_CD1 could provide you the necessary data.
    Maybe also FM SDOK_PHIOS_PROPERTIES_GET could be usefull.
    Best regards,
    Christoph

  • SRM Catalog Item GUID-Characteristics table

    Hi
    I am trying to test class /CCM/CL_ITEM_MANAGER method GET_ITEM_DATA so that i can read catalog item and then update it back
    with new characteristic value using UPDATE_ITEM method.
    Issue is when hit F8 i don't see these methods to test i am trying to find table where catalog item GUID to
    characteristics values (i looked in GET_ITEM_DATA i can'r figure it out) are stored so that i can test my Enrichment BADI independently.
    If someone worked bewofe with CCM catalog item GUID and characterstics values if can help to identify the table name.
    Thanks in advance
    Vineela

    Hi Vinnela,
    I am not sure, but try running report
    /CCM/VERIFY_CATALOG
    for yr catalog
    it gives variety of info
    see whether it helps
    BR
    Dinesh

  • QM Inspection Characteristics table

    Hi,
    I am designing Inspection Report for QM Module, the thing is i am unable to find the tables for the data
    1. Characteristic Specifications
    2. Characteristic Results 
    like Characteristic Related complete data. And also can any one tell me what is the relation between Operation & Charaterisitics in the Inspection Processing?
    Like the table used for that !!
    Waiting for ur reply....
    Regards,
    Srinath

    Hi,
    Following is the list of related tables.
    QALS - Inspection lot record : This is the table where you can get all the inspection lot numbers
    QAMV - Characteristic specifications for inspection processing
    QAMR - Characteristic results during inspection processing
    QASR - Sample results for inspection characteristics
    QASE - Results table for the sample unit
    QASE and QASR give the results for individual samples and partial samples
    To get the operation for the particular characteristic, call function module QEEA_READ_SINGLE_OPERATION
    Pass AUFPL from QALS, VORGLFNR from QAMR and PRUEFLOS from QAMR to the function module as shown below.
    The FM returns the value of operation VORNR in structure e_qapo.
    call function 'QEEA_READ_SINGLE_OPERATION'
         exporting
              i_aufpl            = <fs_qals>-aufpl
              i_plnkn            = <fs_qamr>-vorglfnr
              i_prueflos       = <fs_qamr>-prueflos
         importing
              e_qapo_wa    = e_qapo
         exceptions
              not_found       = 1
              others             = 2
    Hope you'll find this useful.
    Regards
    Radhika

  • Need F4 option so that the Date Calendar Popsup in my DMS characteristics.

    Dear, Guys no matter which Table and Field I choose to attach to the characteristic the Data Type gets pulled automatically by the R/3 Abap repository and then conflicts with data type.
    error=Data Format of Check table does not match data format of characteristic.
    I even tried creating a new data type in CL02  031 as DATS but still the system once you enter a table and field picks the data type automatically and it chooses date for example and conflicts.
    How can I get the the calendar to popup in my characteristics under the title Date______[ ]?

    Chiris,
    I follwed your steps and created 2 fms as ZTEST_DATE and ZTEST_DATE_F4.and here is my code for F4, when i use characteristics as CHAR data type in CT04 it returns the date, but when i use Characteristics as DATE Data type in CT04 it doesn't return any value , please let me know if i am missing somewhere.
    FUNCTION Z_TEST_DATE_F4.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(CHARACT_NO) TYPE  CABN-ATINN
    *"     REFERENCE(CHARACT) TYPE  CABN-ATNAM
    *"     REFERENCE(ADDITIONAL_VALUES) TYPE  CABN-ATSON
    *"     REFERENCE(MULTIPLE_VALUES) TYPE  RCTMV-ATLIS
    *"     REFERENCE(LANGUAGE) TYPE  SY-LANGU
    *"     REFERENCE(DISPLAY_WITH_LANGUAGE)
    *"  TABLES
    *"      VALUES STRUCTURE  RCTVALUES
    *"  EXCEPTIONS
    *"      NOT_FOUND
    data: datum like sy-datum.
           DATA:datumtab like rctvalues.
    CALL FUNCTION 'F4_DATE'
    *EXPORTING
    *  DATE_FOR_FIRST_MONTH               = ' '
    * DISPLAY                            = ' '
    *  FACTORY_CALENDAR_ID                = ' '
    * GREGORIAN_CALENDAR_FLAG            = ' '
    * HOLIDAY_CALENDAR_ID                = ' '
    *  PROGNAME_FOR_FIRST_MONTH           = ' '
    IMPORTING
         SELECT_DATE                        = datum
    * SELECT_WEEK                        =
    * SELECT_WEEK_BEGIN                  =
    * SELECT_WEEK_END                    =
    EXCEPTIONS
        CALENDAR_BUFFER_NOT_LOADABLE       = 1
        DATE_AFTER_RANGE                   = 2
        DATE_BEFORE_RANGE                  = 3
        DATE_INVALID                       = 4
        FACTORY_CALENDAR_NOT_FOUND         = 5
        HOLIDAY_CALENDAR_NOT_FOUND         = 6
        PARAMETER_CONFLICT                 = 7
        OTHERS                             = 8 .
    IF sy-subrc <> 0.
    ENDIF.
    datumtab-value+4(4)  = datum(4).
    datumtab-value(2)  = datum+4(2).
    datumtab-value+2(2)    = datum+6(2).
    datumtab-status = 'I'.
    append datumtab to values.
    ENDFUNCTION.

  • Restrcited characteristics table????

    Hi,
    Can any body tell me the table name which has the info regarding restricted characteristics in the query definition?
    Raj

    Hi,
    Check the tables,
    RSZCOMPDIR - Directory of Reporting Components
    RSZELTDIR - Directory of Reportin Components Exlements
    in SE11.
    Hope this helps u a lot.........
    Assigning points is the way of saying Thanks in SDN
    Regards
    Ramakrishna Kamurthy

  • Dms-error-table doubt

    Hello Team,
    We were facing an error where we were not able to save a document in content repository. I took help of my abap friend to run one of the standard functional programs and he suggested that there are no entries maintained in tables TDW0, TDWD and TDWE. Also he said content server is windows 2008, but i find only unix (dev) files which has to be updated.
    Now i am not able to know how to proceed further. Please help me.
    regards,
    sai

    Hello Ajay,
    Thanks a lot for the reply below are my comments,
    1. Content repository - Connection is successful? * Make note that you have sent the certificate
    Yes, certificate sent is also successful
    2. Above Cont repo is assigned to storage category that you are using
    Yes this is done
    3. While attaching the file, you are using above storage category
    Yes i am using the same.
    4. Check the table SOFFPHIO the doc ID is update after successful attaching the file
    I have not done this, only today when i used SE16 and gave this table and execute i was able to find i was not able to find any doc id field there only log documents,
    Please suggest me and help as i am in fix from long time on this...and my fingers are crossed please help.
    regards,
    sai

  • Link between table EKKO-EBELN and DMS - Document Management System

    Hi to all,
    I wanted to know the form to connect or link the Document Info Record (inside "Define Object Link") to object DRAW (DMS) with table EKKO-EBELN (order head). In standard form it is possible to do it with EKPO (Purchase order item) This is in transaction DC10 Define Object Link.
    Thanks!
    Greetings
    Martin

    Hi Martin,
    Within table DRAD you can see all linked objects to a specific document info record (DIR).
    To be able to link objects to DIRs you have to maintain the correct objects in customizing.
    First of it is necessary to maintain the correct screen numbers for all needed objects within the customizing. Therefore go to transaction SPRO and select
    Cross-Application Components
    > Document Management
    > Control Data
    > Maintain Screen for Object Link
    Here you can enter all needed SAP objects with the name and
    the related screen number. If you do not know the object or the screen number you can display a list of all SAP standard objects in transaction SE80 under function group CV130 ("Screens").
    So for material master you maintain the following entry:
    SAP object Screen Description Auth.
    MARA 201 material master 1
    Please note that the system automatically adds the leading "1" which is displayed in function group CV130 under
    "Screens". So for object MARA you just have to enter 201 instead of 1201.
    The value "1" in the column "Auth." is necessary to grant that always the latest dynpros and authorizations were used when linking this object to an document info record. This will avoid different problems by displaying linked documents from the object side.
    The next step is to decide which objects should be used in the different document types. Therefore please go to transaction DC10 and choose the relevant document type. Afterwards please select "Define object links". Here you can
    add all needed objects only by entering the object. The correct screen number is taken automatically. Also note the blue information buttons in the upper right corner which contain further necessary information about the possible settings of the current screen.
    After doing these settings in customizing you should be able to link the maintained objects to document info records and oppositely by using the DMS transaction CV02N (tab "object links") or the object related transactions.
    Important notes regarding the object link functionalities are:
    Note 880077: Performance problem using object links
    Note 885977: Extension to note 867241 on object links
    Note 926060: Extension of note 885977 for object link Purchase Order
    Note 960202: Object Links Deleted While Adding New Objects
    Note 1002648: Wrong behavior while using RFC_CHANGE_DOCUMENT_MASTER

  • Material Characteristics Description on the print of PO

    Hi all,
    I am creating a configurable  material and define the characteristics in the class 300 (variants).i want that when i select that materia code l in the Po in the line item . than during print it will select all the characteristics and  values on the purchase order print .
    if there is any IMG setting than please tell me .
    Regards
    Sachin gupta

    >
    garg.sachin27 wrote:
    > Hi all,
    >
    > I am creating a configurable  material and define the characteristics in the class 300 (variants).i want that when i select that materia code l in the Po in the line item . than during print it will select all the characteristics and  values on the purchase order print .
    >
    > if there is any IMG setting than please tell me .
    >
    > Regards
    > Sachin gupta
    Purchasing document forms are usually customized as per requirement of the client through ABAP. So your requirement can be fulfilled throgh ammendments in the said form through help of ABAPer. You need to notify them where the data needs to appear on the form and from which table the data is pulled from.
    Check this link for characteristics table:
    Material Characteristic Table
    Edited by: Afshad Irani on May 20, 2010 11:53 AM

  • No entry in table T582A for 171

    Hi Friendz,
    When I executed Idoc, system is throwing message No entry in table T582A for 171. I checked in T582A and T777D (attribute/characteristics ) tables infotype is available.
    Please advice to rectify this issue asap.
    Thanks in advance,
    $Lakshmi
    Edited by: Narayana on Feb 20, 2010 3:16 AM

    Hi Sujit,Pradeep,ERP12345
    Issue resolved...
    I have not used period parameter 01.but copied it to my customized one.I changed it to 01 and TE run successfully.
    But my question is why after copying it is throwing this error? i cant find any logic
    sorry I cant give any forum points because its already resolved...
    But anybody can tell the logic then i will definitely give the points.
    Thanks in advance...

  • DMS Migration Advice

    Hi Everyone,
    This is the scenario:
    I have one SAP Instance, with DIR's being stored into 15 different Content Servers.
    I have written a program to download all document data to a spreadsheet, including the storage categories, etc et al.
    I have written a program to recreate these records in a new SAP System.
    The Old Content Server instances will remain as is. Do I need to download the originals to a file server and upload them again against the DIR's. or is there a way that I can leave the originals on the content servers and somehow create the pointers in the new system?
    Any suggestions would be appreciated.

    Hi Freddie,
    if I understood you right then the originals remain on the content server and you just want them to be available in a new system?
    In this case you have to made sure that the required content repositories and storage categories exist in the new system. Then also the necessary DMS database tables (e.g. DMS_PH_CD1, DMS_PHF_CD1, DMS_DOC2LOIO, DMS_PHIO2FILE) need to be
    filled with the values from the former system.
    From DMS point of view I would recommend you to setup a new content server for the new system. Then you can transport the orignal file data from the former server to the new one with report RSCMSEX and RSCMSIM (see SAP note 445057) and there might be no overwriting problems in the future. Because SAP always recommends to use one Content Server per system.
    Otherwise I would recommend you to download the files on a special server and upload them again to the DIRs in the new system.
    Best regards,
    Christoph

  • Table space increasees in db2

    Dear team ,
    we are using ecc6+db2  found the problem in db02 table spaces dms/sms table spaces are reached 95% like BTABD ,BTABI
    etc tables please advice the steps how to increase the table spaces in db2.
    regards
    suresh

    Suresh,
    The following should help you. BTW is your DB not Automatic storage managed?
    http://help.sap.com/saphelp_sm40/helpdata/en/3d/da4d3c9bc34800e10000000a114084/content.htm
    A simple googling can always help
    Regards,
    Venkat

  • Standard reports for fetching the Material Characteristics

    Hi,
    Do we have any standard reports in SAP for fetching the Material Characteristics.
    Regards,
    Siv

    Dear,
    Check the related links... may be helpful:
    To fetch characteristic value (ATWRT) from material number
    Material characteristics datasource
    Characteristics Table ?
    Characteristics Table ?
    Regards,
    Syed Hussain.

  • How to get the relation between tables.

    Hi all,
             Sorry in my previous message I forgot to include the table CABN.
    I would like to retrieve data from the tables BDCP,and characteristics tables KSS,INOB,AUSP and CABN.
    I am given the values BDCP-TABNAME,BDCP-FLDNAME,BDCP-KEY,BDCP-CRETIME,BDCP-CDOBJCL.
    BDCP-CDOBJID is nothing but Material number.I want to retrieve category(AUSP-ATWRT) and subcategory(AUSP-ATWRT) for that material BDCP-CDOBJID.
    So first of all how to proceed.Can anyone give idea?I heard that there is transaction,where we can find relations between tables.
    Thanks,
    Balaji
    Pages: 1

    U could try with SQVI Tcode. just give table names try to link.
    For your requirement there are several functional modules availalbe.
    Try where used list on AUSP table and find Function modules. Test them first then use in the program.

Maybe you are looking for

  • IPHONE -3G no longer displaced at the top by the bars -wi-fi problem

    I am having problems with my iphone 3G purchased in sept of 2009. Everything has worked fine up until a few weeks ago. Then I started to noticed whenever I tried to use safari, fackbook app, and many other apps. All apps that I had used many many tim

  • HP c5180 Photsmart All In One - via Airport not working

    Hi all. Just got a new MBP 17" with Snow Leapard 10.6.2. Migrated via Time Machine from my older Laptop which was running 10.5.8. Everything is working swell except when I got to print. Tried uninstalling the HP printer software and such but no succe

  • Exporting HD Video to QT

    I am trying to export an HD video to Quicktime with minimum compression and no letter box (black at top and bottom). Can anyone recomend some export settings? Or a way to get the video to fill the canvas without cropping it? Thank you, Mike Mac Pro  

  • Problem with a empty context

    Hello All, Please refer to following link where I provided the messaging Queues. http://farm4.static.flickr.com/3486/3882733944_1c74be83f7_o.jpg Basically the problem is when the value is sent to target it comes like... After remove Contexts: SUPPRES

  • Lost user data after upgrade bios in G580

    HI I have strange problem with Lenovo G580 with Windows 7. After upgrade bios to newest version and reboot my system start without any user data (no documents, no programs installed earlier), All reboot take short time, about 1-2 minutes. Only userna