How to associated Classification in DIR (DMS)

Hi all,
I would like to associate some Charateristic values to my doc., but i'm unable to do so as Link (Extra --> Classification) in CV01N transaction is grey.
I had maintain the Object type and class Type using SPRO Setting.
Table : Draw
Object Type Maintained '017'.
after that i had created the Class 'DMS' having class type '017' Using CL02 transaction and attached One Charateristic (index Relevant).
and then set the Table for Search using CLGT Transaction.
but still i'm not able to specify the classification in DIR using CV01N or CV02N.
Pls Let me know, what setting i'm missing
Regards,
S Anand

Hi,
Thanks for your reply but i had aleardy through with this and now it is appearing in CV01N and CV02N.
But not able to use it with Easy DMS. any idea on this.
As this Classification related screens are not appearing in Easy DMS.
Regards,
S Anand

Similar Messages

  • How to get classification for a given material and material type in MM

    Hello Friends,
    One of my developer colleagues is struggling to find out : how to get classification for a given material and material type in MM?
    He is looking for probable table and table fields to Select from.
    I would appreciate seriously any help in this regard.
    ~Yours Sincerely

    Hi
    Below given the flow and table details for a given class and class type.
    - Table KLAH --> This contains the "Internal class no" [ for the given Class & Class type ]
    - Table KSML --> This contains the " internal character numbers " [ nothing but characteristics attached to the class ] , which can be fetched with the above fetched internal class no
    - Table AUSP --> This table contains the objects ( material ) attached to the internal characters of that class
    - Table CABNT --> This table contains the "Description" for the internal character numbers.
    - award points if this is ok

  • How to add classification view using BAPI_MATERIAL_SAVEDATA

    Hi,
    Please any one let me know how to add classification view using BAPI_MATERIAL_SAVEDATA to the material master.
    Thanks,
    shekar

    We use this bapi on a regular basis as well as classification of materials.  We have success doing this in 2 steps.  First step is to save the material using BAPI_MATERIAL_SAVEDATA, second step is to save classification using BAPI_OBJCL_CHANGE  (this can be used for both create and change)  Also look at Function Group CLBPA .   there are several bapi's in that group dealing with object classification, including the one I mentioned..

  • Want to find out how a batch classification is used

    Hello
    I have previously sent out a message and the idea given was not very helpful.
    Anyway, this is my question:
    I have found a class and its characteristic which was setup in the system and I would like to know how this classification` is being use in the system.
    For example, I would like to know which process (i.e. during goods receipt, during sales order creation, during production, during warehouse) is using this classification to perform their transaction.
    Do you know how to find out this kind of information in the SAP system?
    Thanks
    Tuff

    Do you want to know how the batch classification is used in general in SAP or how it is used in the system where you found it?
    In the latter case make an interview with the users, any process that has to do with stock can make use of the batch classification
    In general is classification exact what the word "classification" means. You describe something in more detail in an organized way. Classification is a modification free way to add own "fields" to standard objects, the user can immediately search  in classification without an extra effort to develop a search help.
    The batch classification can be used in a batch determination to to enable SAP to automatically search for batches with certain characteristics.and assign them to documents like sales order, delivery, goods movements, transfer orders, and production/process orders.

  • How  to create classification view for material?

    HI All,
    How to create classification view for material? is there any function  module?
    pls let me know.
    Bandi

    check the standard include "LCLBPAU14" this is using the following F.M
    call function 'BAPI_OBJCL_CREATE'
    exporting
    objectkeynew = l_object
    objecttablenew = l_objecttable
    classnumnew = classnum_new
    classtypenew = l_classtype
    status = status
    standardclass = standardclass
    changenumber = changenumber
    keydate = keydate
    no_default_values = no_default_values
    importing
    classif_status = classif_status
    tables
    allocvaluesnum = allocvaluesnum
    allocvalueschar = allocvalueschar
    allocvaluescurr = allocvaluescurr
    return = return.

  • How to get system temp dir. path on the fly ,system may be XP or Linux ??

    How to get system temp dir. path on the fly ,system may be XP or Linux ??
    please suggest solution

    The default temporary-file directory can be retrieved
    using:
    System.getProperty("java.io.tmpdir")
    Thanks a lot for u r reply this one works !!!!

  • "How to pass classification characteristics while creating batch" ?

    Hi,
        I am using FM's BAPI_BATCH_CREATE/CHANGE while creating/changing batch I have to maintain classification data aswell.But in FM docu i saw as shown below
    1.Create the classification of a batch in the background (object characteristics only)
    2. If the batch is to be classified, you must specify a class in the BatchControlFields parameter. Only single classification is possible.
      According to above statments I have passed class name in Batch Control Fields but I am unable to find " How to pass classification characteristics while creating batch". Please tell me how to pass classification characteristics in background?
    Edited by: Vijay Babu Dudla on Dec 16, 2008 3:24 AM

    Hi, You can update classification for a batch using the following code.
    But first, you'll need to find out that the batch management is cross-plant or plant dependant.
    If it is cross plant then plant(WERKS) is not part of the key to BAPI_OBJCL_CONCATENATEKEY.
    CLEAR: objectkey, objectkeytable, objectkeytable[],
               allocvaluesnumnew, allocvaluesnumnew[],
               return.
        objectkeytable-key_field = 'MATNR'.
        objectkeytable-value_int = matnr.
        APPEND objectkeytable.
        objectkeytable-key_field = 'CHARG'.
        objectkeytable-value_int = charg.
        APPEND objectkeytable.
    * Only if Batch management is Plant dependant
        objectkeytable-key_field = 'WERKS'.
        objectkeytable-value_int = werks.
        APPEND objectkeytable.
        CALL FUNCTION 'BAPI_OBJCL_CONCATENATEKEY'
          EXPORTING
            objecttable    = objecttable
          IMPORTING
            objectkey_conc = objectkey
          TABLES
            objectkeytable = objectkeytable
            return         = return.
        allocvaluesnumnew-charact = "characteristic name goes here".
        allocvaluesnumnew-value_from ="characteristic value goes here".
        APPEND allocvaluesnumnew.
        allocvaluesnumnew-charact =  "characteristic name goes here".
        allocvaluesnumnew-value_from =  "characteristic value goes here".
        APPEND allocvaluesnumnew.
        CALL FUNCTION 'BAPI_OBJCL_CHANGE'
          EXPORTING
            objectkey                = objectkey
            objecttable              = 'MCHA' " MCH1 in case of cross-plant batch management
            classnum                 = classnum " Classification class number, as used in MSC2N
            classtype                = classtype " Classification class type, as used in MSC2N
    *   STATUS                   = '1'
    *   STANDARDCLASS            = STANDARDCLASS
    *   CHANGENUMBER             = CHANGENUMBER
    *   KEYDATE                  = SY-DATUM
    *   NO_DEFAULT_VALUES        = ' '
    * IMPORTING
    *   CLASSIF_STATUS           = CLASSIF_STATUS
          TABLES
            allocvaluesnumnew        = allocvaluesnumnew
            allocvaluescharnew       = allocvaluescharnew
            allocvaluescurrnew       = allocvaluescurrnew
            return                   = return
    * Do not forget to commit, otherwise changes would not take effect.
    commit work.
    Regards,
    Hashir Ahmed

  • How remove associated android phone from adobe id digital ?

    How remove association to android id digital from android phone? I change many android phone and now I can' t use  e-book reeader on my new android phone because I have reached the max number of device  associated with Adobe Id.
    Can you help me?
    Thank you

    If you contact Adobe they will remove authorizations from all your devices and you can then reauthorize the ones you still want to use.
    Live Chat is easiest http://www.adobe.com/support/chat/ivrchat.html
    Of course it would be easier still if Adobe supported their DRM infrastructure properly and provided a web page to view and manage authorizations.

  • How to find the WI of the Workflow based on Object Key of DIR (DMS)

    Hi Gurus,
    We have developed a DIR workflow for status change, where we are using DRAW as the Business Object.
    We are not able to fetch the Work item ID of the Workflow based on the ObjectKey(Concatenation of DOCTYPE DOCNUMBER DOCPART DOCVERSION).
    Tried to use the View SWIVOBJECT, also Found no values related to the container table SWW_CONTOB when the Wiorkflow is triggered. But we can see the Contianer values in the workflow log.
    Is there a way to find the relation DIR and the Work item ID if the Workflow for Documents? For Documents(DIR), anything needs to be done explicitly? 
    Need to resolve this as we have too many things based on this including Reporting part to fetch the approval details of the workflow. 
    Thanks..
    Regards,
    Prathap
    Edited by: Prathap on Feb 18, 2011 5:37 PM

    Hi,
    You can use FM SAP_WAPI_WORKITEMS_BY_TASK and use the filters.
    Afterwards, for every wi id you should get their instances using class cl_swf_run_wim_factory=>find_by_wiid.
    Then, get instance of wf container using if_swf_run_wim.
    Now you can use interface if_swf_ifs_parameter_container to get parameters or variables.
    Regards,

  • How to view Retrieved file in DMS Archiving.

    Dear All,
    My client is specific about DIR Archiving. Now the scenario is DIR has been marked for Deletion and archived and Stored in a repository successfully. After Archiving DIR has been deleted from the Database.
    Now using SARA Transaction using "Storage System" archived file has been Retrived and File name has been created in Archive Administration. System is displaying File name, Logical path and Physical File name. Below Physical File name it is showing "Archive File is accessable".
    When I check using T-code CV02N Nothing is Displayed.
    Please guide me how to see the Retrived File. My client wants to see the DIR with attched originals.
    Please let me know if any configuration is required.
    with regards,
    S.Dayanand

    HI Dayanand,
    Execute SARA transaction. You can set a deletion flag for document info records that you no longer require for managing
    documents and their original application files. Archiving object CV_DVS enables you to archive these document info records. After the archiving run, you can delete the archived document info records.
    The document info records that you archive and delete with archiving object CV_DVS are
    identified by the following data:
    Document,Document type,Document part, Version
    Follow the steps
    1. Goto DIR which u want to archive and set them deletion indicator On from document tab
    2.Go to transaction CVAR and create Varient for DMS.
    3. Select the selected Varient
    4. Click on Start date
    5. slect the start time for writing,You can choose immediate or schedule later also
    6. Select spool parameters, give output device and press procced, now archiving job wil be scheduled
    7. Now u can check scheduled job by clicking Shift + F4 in same transaction
    8. Select the job & click on Joblog
    9. Note down The archiveing session no. is 0000xxx
    10. Now execute transaction CVRE and enter read program as DVSARCH3 and execute
    11.Provide the archiving session Number 0000xxx and execute u get archived document list.
    12. For deleting archived documents execute CVLO transaction, Select the archived file
    13. Select the No 0000xxx. & click on Continue
    14. Select the start date,You can choose immediate or schedule later also
    15. Enter spool parameter and execute
    16. Now deleting job will be scheduled,
    17. Check the DIR in CV02n, u wont get those archived DIRs
    Hope this will solve your query
    Regards
    Kannan

  • How to enabale trace in Easy DMS ?

    Hi,
    I used BADI: DOCUMENT_MAIN01 & method: ASSIGN_NUMBER to assign document number. Now am creating document through Easy DMS am getting error "Exception Occurred". How can i find, where is the problem ?
    How can i enable Trace option in Easy DMS ?
    I saw  Note 948254 & Note 661600 but don't understand properly.
    Easy DMS Version : 6.0.0.0: SP11 (Unicode)
    Operating System : Microsoft Windows XP
    Thanks in advance.
    Regards,
    Sunny

    Hi,
    I got some clues on my queries.
    I am getting some information from additional data(Characteristics values) to generate document number.
    E.G.
    I have 2 characteristics
    1. Part Type:  
                      Values: A - Type 1
                                  B - Type 2
    2. Part Code: 
                       Values: 01- Part 1
                                   02 - Part 2
                                   03 - Part 3
    When am creating document am selecting Part Type = A & Part code = 02 so my document number is A-02. (- : constant).
    This logic is working fine in SAP - GUI.
    When am creating document through Easy DMS, SAP system is not getting char values in method ASSIGN_NUMBER.
    In my code i written if char values is blank then give error message. Because of this error message am getting "Exception Error" error in Easy DMS.
    Any body knows why system is not getting  char values in BADI when am generation DIR from Easy DMS?
    Even in Easy DMS the F4(Selection) help of characteristics is showing only description not values.
    Regards,
    Sunny
    Edited by: Sunny on Sep 9, 2008 10:21 AM

  • How to change the path for dms repository in navigation iview

    Hi all,
    We integrate DMS in KM. With the documentexplorer iview we can navigate through the folders structure. So far so good.
    But for the end-user it will be easer if they can startright  from point X in the folder structure. Like dmsrm/aaa/bbb/..../X
    It's not possible to change the iview path property to dmsrm/aaa/bbb/..../X, preview shows the message  'Item nof found
    The item you are attempting to access is not available. Check that the name or link is correct. You might also check whether the associated repository is currently accessible'. For all the folders (except the root folder dmsrm) there is no acces link tab, so the ID, explorer URL and webdav URL are unknown. How to find out what the ID is?
    Thanks in advance,
    Vo

    Try going to Options > Global Preferences > Paths tab, you will see the User Settings.
    Nestor
    National Instruments

  • How to enhance table control in DMS. Need to display doknr more than 25 cha

    Hi there.
    In transaction IL03 - document tab - I need to display a doknr which is longer than 25 characters.
    I search for exit/enhancement for DMS - saplcv140/control SUB_DOC, but cant find anything.
    If it is not possible to enhance this field, i would like to add a new field (more than 25 char) and fill in the long doknr.
    The documents that are attached contains both an internal docnumber(from the external system) and an external docnumber (functional location type of number). It is very important to show external documentno in the table control.
    Actually in the table DRAW the external dok number is in the field MRK_FILEP. Can this field somehow get in the tablecontrol?
    Anybody has experience with docno longer than 25 characters? Or how to enhance tablecontrol sub_doc (screen 0204) in fuction group CV140.
    Br,
    Liselotte.

    The BAdI CRM_BADI_RF_Q1O_SEARCH is for enhancing OneOrder based searches. Not for business partners.
    The BAdI CRM_BUPA_IL_SEARCH is the way to go. I just checked in our system.
    In the method SEARCH_CRITERIA_INITIAL check if your field is supplied in IS_PARAMETERS. If yes return CV_IS_NOT_INITIAL = 'X'.
    Then in SEARCH_PARTNERS you delete the entries from table CT_PARTNER_KEYS according to your parameter.
    However this is not very performant. If you have a search with criteria only of your own for the BAdI SAP coding will first select everything and then you filter out.
    Anyway, it is much faster to implement than a new search...
    cheers Carsten
    Edited by: Carsten Kasper on Nov 18, 2008 7:44 PM

  • How can I delete a dir which has sub-dir's ?

    Dear list,
    Can some one send me a link or send me a code example of how to delete all the sub- directories in a specified directory. My dir has sub-directories which contain files!
    If I use the java.io package I must loop all the sub- directories, and java.io.File.delete() wont delete a dir when it contains files, so I will have to go into each sub-dir and delete the files before deleting the sub-dir. This is going to be a lot of code, and YES ! I am a little lazy!
    Is there a java package, with a method, where I can just delete a dir, which just deletes it and ALL its contents ?
    regards
    BB

        // Delete an empty directory
        boolean success = (new File("directoryName")).delete();
        if (!success) {
            // Deletion failed
        }If the directory is not empty, it is necessary to first recursively delete all files and subdirectories in the directory. Here is a method that will delete a non-empty directory.     // Deletes all files and subdirectories under dir.
        // Returns true if all deletions were successful.
        // If a deletion fails, the method stops attempting to delete and returns false.
        public static boolean deleteDir(File dir) {
            if (dir.isDirectory()) {
                String[] children = dir.list();
                for (int i=0; i<children.length; i++) {
                    boolean success = deleteDir(new File(dir, children));
    if (!success) {
    return false;
    // The directory is now empty so delete it
    return dir.delete();

  • How to link files to DIR which are in 3rd party File Server?

    Hi, guruu2019s
    This is ben,
    We have one typical requirement,
    Client using third party File Server to store their current documents [files].
    Now client upgrading SAP, so now they want just link those documents [files] to SAP DMS, which are stored in File Server.
    Condition
    Only link has to be established from file server to SAP DMS.
    Files are stored permanently in File server only.
    As I know when we link or attach any file we have to chek-in to store files to SAP-DB or HTTP CS. Then only we have to access these attachments.
    Please help me regarding this integration.
    Points awaiting
    Rgds,
    Benaka

    Hi Benaka Rajes 
    You cannot link just Documents from a File net sever to DIR in SAP DMS. You are right. You will have to check in Documents into Secure Storage area.When we say secure storage area mean these documents are not accessed via windows explorer.So Integration with SAP DMS DIR and Documents would be a tedous Job.
    With Regards
    Mangesh Pande

Maybe you are looking for

  • Fields missing from webservice datasource in SSRS

    We are using a XML webservice as a datasource for SSRS. The webservice is returning  the hierarchy of departments of our company. The data is consumed by SSRS but some fields are missing. This is (simplified) what is returned by the webservice: <depa

  • Junk characters in pdf file generated

    Hi, While generating invoice from VF02, i can see the  print preview iin the screen perfect ,but when i generate PDF the russian characters are getting displayed as XXXXXX  in PDF. I tired changing the font in SAP script from COURCYR to some other fo

  • Pencil lines eraser backspace delete doesnt work in script

    I have come against a problem whit this tutorial: http://www.flashvault.net/tutorial.asp?ID=52 i cant  erase my lines now i have a bit more then just a pencil and a hole menu whit it, now i have even download the tutorial file and in the file it does

  • Improvements for Maverick' Tags System

    I really like the idea of tags, I was using them already in lion and so forth....but I was thrilled to hear that Apple decided to give it more attention in Maverick... Maybe my expectations were too high Let's see.... I do like everything they did so

  • UndefinedException when working with RL-facts and testing at design time

    Hi, I'm performing some tests with JDeveloper Rules Designer on a very basic level. I'm defining rl facts (fact types), define a rule and write a test function to test this rule at design time. When executing my test function with the "Test Function"