CT04 - Maintain assigned characteristics

Hello
I've changed the value assignment of a characteristic from single value to multiple value, via the CT04.
The characteristic is already in a class and assigned to a supplier (ALSO RATED!)
But  no warning or error has occurred at saving.
However, I can only rate one value, also when I assign the class to a new supplier.
Is there a report, which converts the "single values" to "multiple values" and which is necessary for this amendment.
Thx in advance
Christian

Dear
IN THIS CASE YOU CAN HAVE  TO CREATE THE LSMW FOR CHANGING THE VALUE OR ENTERING THE TICK
REGARDS
S.M.PANDIT

Similar Messages

  • Assign characteristics to report selection screen in COPA

    Hi all,
    it seems there are 2 ways to assign characteristics to a selection screen of a COPA report:
    1. Go to the form, KE35, double click on a column header and assign characteristics here and check the flag for entering variables. It seems I have to do that for all headers?
    2. Goto KE30 - change the report and assign characteristics here and check the flag for entering variables.
    What is the difference between those two ways? Where do I need to assign my characteristics? I seem in the 1 option I'd have to do it for all headers?
    Thanks
    Anne

    Hello
    Create some authourization checks for the user. Try to check with BASIS team.
    Also check if you can default entries for a particular user.
    reg

  • BDC/BAPI Assign characteristics to material using CL24n

    Hi Gurus
    My requirement is :
    We have already assigned characteristics to the material class, Now we need to assign characteristics values to materials.
    Assign characteristics to material using cl24n(Class name & Classtype) > only new assignments > material.
    What should I go for ? BDC or BAPI.
    Please suggest me how to proceed with BAPI as I personally feel BAPI is better than BDC.
    Thanks in Advance
    Dinesh

    BAPI/BDC for assigning characteristic to material

  • FM to maintain classification characteristics

    Hello!
    In a defined process the user may have to maintain characteristics of a certain document class (class type: 017) which are marked as obligatory. The user should not have to enter the relevant document.
    My question:
    Is there a function module to display a popup which allows to maintain the characteristics of the document class?
    Thanks in advance!
    Kind regards
    Wolfgang

    Hi,
    Then this fm
    CLAF_CLASSIFICATION_OF_OBJECTS
    function module for retrieving values of the Characteristics?
    Regards

  • Assign characteristics to equipment en masse

    Hello All,
    Could any of you explain how to assign a class+characteristics to many equipment records at once.
    Thank you for your help,
    Alex.

    Alex,
      You will have to do it object by object either manually or programmatically either through the Equipment update transaction or through the assignment of object to class through the classification transaction or FM. There is no alternative to assign class plus characteristic to multiple equipments in one single update.
    Regards
    Narasimhan

  • Problem in assigning characteristics values to characters against material

    Hello Gurus,,
    I am doing a wrapper RFC to populate characteristic values to characters and finally that needs to be visible in material classfication view.
    The following is my code let me know if any thing needs to be corrected on this
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(CLASSNUM) TYPE  BAPI1003_KEY-CLASSNUM
    *"     VALUE(CLASSTYP) TYPE  BAPI1003_KEY-CLASSTYPE
    *"     VALUE(MATNR) TYPE  MATNR
    *"  TABLES
    *"      CHARVALUES STRUCTURE  ZCLASSCHAR
    *"      RETURN STRUCTURE  BAPIRET2
      TYPES: BEGIN OF ty_classchar,
             atnam TYPE atnam,
             atfor TYPE atfor,
             END OF ty_classchar.
      DATA: t_classchar TYPE TABLE OF ty_classchar,
            x_classchar TYPE ty_classchar,
            v_matnr(50) TYPE c.
      DATA: objectkeynew  TYPE  bapi1003_key-object,
            objecttablenew  TYPE  bapi1003_key-objecttable,
            classnumnew TYPE  bapi1003_key-classnum,
            classtypenew  TYPE  bapi1003_key-classtype,
            status  TYPE  bapi1003_key-status,
            standardclass TYPE  bapi1003_key-stdclass,
            changenumber  TYPE  bapi1003_key-changenumber,
            keydate TYPE  bapi1003_key-keydate,
            no_default_values TYPE  bapi1003_key-flag,
            classif_status  TYPE  bapi1003_key-status.
      DATA: allocvaluesnum  TYPE TABLE OF bapi1003_alloc_values_num WITH HEADER LINE,
            allocvalueschar     TYPE TABLE OF     bapi1003_alloc_values_char WITH HEADER LINE,
            allocvaluescurr     TYPE TABLE OF     bapi1003_alloc_values_curr WITH HEADER LINE.
      REFRESH: t_classchar,return.
      IF charvalues IS NOT INITIAL.
        SELECT atnam
               atfor
               FROM cabn
               INTO TABLE t_classchar
               FOR ALL ENTRIES
               IN charvalues WHERE
               atnam EQ charvalues-characteristic.
        IF sy-subrc <> 0.
          CLEAR return.
          return-message = 'No values in CABN against provided input'.
          APPEND return.
        ENDIF.
      ELSE.
        CLEAR return.
        return-message = 'No input is provided'.
        APPEND return.
      ENDIF.
      REFRESH: allocvalueschar,allocvaluesnum.
      LOOP AT charvalues.
        CLEAR x_classchar.
        READ TABLE t_classchar INTO x_classchar WITH KEY atnam = charvalues-characteristic.
        CASE x_classchar-atfor.
          WHEN 'NUM'.
            CLEAR allocvaluesnum.
            allocvaluesnum-charact = charvalues-characteristic.
            allocvaluesnum-value_from = sy-datum.
            APPEND allocvaluesnum.
          WHEN 'CHAR'.
            CLEAR allocvalueschar.
            allocvalueschar-charact = charvalues-characteristic.
            allocvalueschar-value_char = charvalues-description.
            APPEND allocvalueschar.
        ENDCASE.
      ENDLOOP.
      CLEAR: v_matnr.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = matnr
        IMPORTING
          output = v_matnr.
      CALL FUNCTION 'BAPI_OBJCL_CREATE'
        EXPORTING
          objectkeynew            = v_matnr
          objecttablenew          = 'MARA'
          classnumnew             = classnum
          classtypenew            = classtyp
       STATUS                  = '1'
    *   STANDARDCLASS           =
    *   CHANGENUMBER            =
         keydate                 = sy-datum
       NO_DEFAULT_VALUES       = ' '
       IMPORTING
         classif_status          = classif_status
       TABLES
         allocvaluesnum          = allocvaluesnum
         allocvalueschar         = allocvalueschar
    *   ALLOCVALUESCURR         =
         return                  = return
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    The output which i got has following error codes
    I CL                   732 Assignment does not exist or is not valid on
    E CL                   763 Object 00000000000000000000000000000000000000000000001631 does not exist
    I CL                   736 Assignment was not created
    Please let me know what could be the error.
    Regards
    S.Janagar

    Hi Mr.Sengathir Jeyamani,
    Did u got the solution for this? Me also looking answer for your question. If u found, Pls let me know. Thanks.
    -JANARAJA

  • Remove / Hide Not Assigned Characteristics / KF

    Hi Gurus,
    I have a report and in there report, I have rows with Not Assigned.
    My users do not wish to see these rows. Even thought Not Assigned, these rows/columns have values so i cannot use Suppress Zero values.
    Is there any way or hiding or removing these rows/columns?
    Regards,
    Gary.

    In Bex designer, doble click on the char and set a filter to exclude not assigned value (#).
    Hope it helps.
    Regards

  • [Solved] Xfce not Maintaining assigned resolution

    Hello people,
    From Thursday and been having a annoying bug with Xfce which is that it does not keep the settings screen resolution placed after a Shutdown / Restart. I mean I set the resolution of my monitor to 1920x1080 and after turning off the computer or restart it, on the next boot resolution 1920x1080 is not maintained but is changed to 1024x768, so that on every boot I set the resolution.
    I have a Monitor AOC 22 "with native resolution of 1920x1080 and Nvidia graphics card with proprietary drivers
    What could be causing this error? Any idea how to fix it?
    regards
    Last edited by jesusangelm (2013-04-22 18:06:02)

    Look through your /var/log/Xorg.0.log.   Read the parts about EDID, available screen resolutions, and the resolution selected.  Look for something about "Fuzzy" determination of aspect ratio and tell us if you find something as such.

  • Batch Management and Class and Characteristics Assignment

    Dear Team,
    Recently We Configured Batch Management in SD, and Batch is determining in Sales order, delivery and Billing. Its working fine.
    Issue-1: While posting stock (Quality server) with moment type 561, production date entered manually but system not calculating Expiry date automatically, i maintained Total shelf Time and Min. Rem. Shelf time.
    Issue-2: In sales order I want determine batch as FIFO Method, in present system it will consider LIFO method,
    I come to know to over come this Issues i need to maintain some Characteristics and Class, Please help me out in creating of characteristics and class and other process,
    Thanking you in advance,
    Sudheer.U

    Dear Team,
    Recently We Configured Batch Management in SD, and Batch is determining in Sales order, delivery and Billing. Its working fine.
    Issue-1: While posting stock (Quality server) with moment type 561, production date entered manually but system not calculating Expiry date automatically, i maintained Total shelf Time and Min. Rem. Shelf time.
    Issue-2: In sales order I want determine batch as FIFO Method, in present system it will consider LIFO method,
    I come to know to over come this Issues i need to maintain some Characteristics and Class, Please help me out in creating of characteristics and class and other process,
    Thanking you in advance,
    Sudheer.U

  • How to assign Function Module in CT04

    Hi all,
    In CT04 we assign a function Module in the Values Tab. I read from SAP help on the interface to be used. But not clear on how to assign this correctly. If anybody  who worked on this can give me an example. How we do declare the function when we write dependency?
    Thanks,
    Manjula.S

    Hi
    Created F4 function module with prefix _f4 but its not triggering my break point.
    only assigned fm and _dc is triggering my fm...
    what is the problem in my f4 fm?
    FUNCTION zxxxx_f4.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(CHARACT_NO) LIKE  CABN-ATINN
    *"     REFERENCE(CHARACT) LIKE  CABN-ATNAM
    *"     REFERENCE(DISPLAY) TYPE  CHKBOX
    *"     REFERENCE(ADDITIONAL_VALUES) LIKE  CABN-ATSON
    *"     REFERENCE(MULTIPLE_VALUES) TYPE  RCTMV-ATLIS
    *"     REFERENCE(LANGUAGE) TYPE  SY-LANGU
    *"     REFERENCE(DISPLAY_WITH_LANGUAGE) TYPE  CHKBOX
    *"  TABLES
    *"      VALUES STRUCTURE  RCTVALUES

  • In Results recording cant reflect characteristics

    Dear All Experts,
    I had created multiple characteristics(CT04) and assigned to class and the class is assigned to MIC which is assiged to Inspection plan(qp01), but while doing RR these characteristics are not reflecting, can anybody  pls guide me.
    Thank You in Advance

    A selected set contains a combination of different codes at plant level, for example, coded descriptions of characteristic
    attributes (such as color, shape, surface characteristics), defect causes or usage decisions from different code groups.
    Ex:
    Suppose for catalog 1 Characteristics Attribute,create code group COLOUR in QS51 (You need to create code group as per your requirement in QS41)
    You can maintain codes like 0001 Red,0002 Blue,0003 Green.
    This selected set then you can assign to MIC in QS21.
    BUT
    There are existing selected set are there for catalog type 1 in system.Check QS51 .you can enter the existing one in Class char.

  • COPA - Account assignment is not green in Credit memo Request

    For regular sales orders ( not credit memo reqs), acct assignment is turning green, but not for credit memo reqs. when I get into account assignment and hit continue it turns green. When a credit memo is created (VF01), acct assignment / characteristics are all getting posted normally into COPA.
    I don't have value flow from Sales order active in config, if this is the reason even for normal sales order it shouldn't turn green. Whats wrong with cr memo reqs? any ideas ?
    Thanks
    Chris

    As already suggested, go to OVA2, Select "B - Sales item", Double click on Procedures, Select "20 - Standard item", Double click on "Fields" and finally maintain the following:-
    Table   Fldname           Description             Scr.    Status
    VBAP    PAOBJNR    Profitab. Segmt No.            PKNT    01
    Now try the process
    thanks
    G. Lakshmipathi

  • How to assign Inspection characteristic to the Phases in Process order

    Hi PP/QM  experts,
    There is business requirement to assign Master Inspection
    Characteristics to the Phases in the process order. But there is no
    functionality to assign MIC's in process order. So this is stopping me to map the scenario for Rework execution.
    Requirement is results recording is required for additional added phases (Phases added to the process order to perform Rework) in the process order.
    Expecting to provide a possitive solution to resolve this issue.
    thanks®ards,
    Hima

    hi hima
    there may be one solution that if you maintained separate master recipe for rework and maintained inspection characteristics there.and while creating rework order assign that master recipe. that would help you to result record.
    and one more solution is that you have to maintained inspection characteristics for your rework phase in the master recipe.
    if any query please come back
    Regards
    Pravin
    Edited by: pravin dhokey on Jan 15, 2009 10:01 AM

  • Date format in Master inspection characteristics

    Hi All
    I have a requirement where my user wants to enter the date format in the master inspection characteristic. For example we want to add date of manufacture and the date of expiree as a inspection characteristics and during the results recording they want to enter this characteristics in a date format.
    MY question is can we have a master inspection characteristic with a date format, if so what all the settings are required.
    Please suggest.
    Thanks,
    Quantum.

    >
    quantum wrote:
    >Can i use characteristics in the inspection plan instead of the master inspection characteristics. I am using Work bench transaction code CWBQM to create an inspection plan.
    Direct characteristic you can't use in inspection plan. If you want to use characteristic in IP then create chara. (CT04), then assign this charac. as class chanr.(QS21) in MIC. Now you can use this MIC in inspection plan.
    Hope this helps.
    Thanks!!!

  • Multiple characteristics

    Hi, we are presently trying to implement vendor classification in R/3 with multiple characteristic per class.  This works nicely in R/3 however the resultant BW datasource that is generated only assumes the first of the multiple characteristics and ignores the rest.  How can we include all the characteristics in the datasource?
    Thanks in advance,
    Kevin

    This is what I dug out of the system
    Maintain Data Sources for Classification Data
        In addition to the data sources from the BW conten referred to here as  basis data sources, further data sources can be created.
        In this IMG activity, you assign the characteristics that you want to use as attributes in the Business Information Warehouse to the new data source.
    Activities
    1. Enter a basis data source that you want to extend.
    2. Select the client, class type, and object table from which you want to copy classification data.
    3. Select the data source to which you want to assign characteristics, then choose Characteristics.
    4. Choose New entries and enter the characteristics you want to assign.
    5. If you want to define a sequence for the characteristics, enter position numbers.
    Statuses are assigned automatically:
        N = New: this status appears
            before a new data source has been created.
        R = Ready: the status is converted to this status
            after generation. If you change a characteristic,
            reset the status to N before generation.
    Choose Data source to generate the data source. This also generates the characteristic data sources for characteristics of data type CHAR.
    An internal key starting with "1CL_..." is assigned as a data source name.
        Further Notes
    o   The possible entries button only displays data for the client you are logged on to.
    o   InfoSources in BW-System from AdminWorkbench must be created for the DataSources generated and assinged to the DataSources.
    Hope that Helps!
    Rishi

Maybe you are looking for

  • How do i set up family sharing?

    My phone isn't allowing me to set up a family sharing account with my family. The message keeps popping up saying that "only an adult with a valid iTunes & App Store payment method can set up Family Sharing. Ask a parent to set up Family Sharing from

  • Cloning Domains/Servers

    Hi, I am wondering if anyone has tried creating a domain on a weblogic server by copying and pasting an entire domain directory. ie. Copying %bea_home%\config\DomainName to the new installation %bea_home%\config\DomainName. When I do this I get the f

  • WRT310N as a "Wireless Access Point"

    Hello, I am in the market for a wireless device to add to an existing subnet.  I see many tutorials regarding routers as wireless access points, but I am not sure if this device will work. My plan is to connect one of the switch ports to an existing

  • How to interpert a trc file generated in the udump

    Hi I have seen my alert.log and it says see errors in /u01/xyzprod/10.2.0/admin/PROD_xyz/udump/prod_ora_28047.trc when i open the trc file then whole file is hexadecimal kind of stuff ORACLE_HOME = /u01/xyzprod/10.2.0 System name:     HP-UX Node name

  • Sticky keys after spilling a drink on Equium A200-196

    I recently spilt a drink on my laptop i have removed the keyboard but am unabal to remove the back plate from the keys. Does anyone have any suggestions on how i might clean the sticky keys or is it a question of purchasing a new keyboard?