CT04 - Change characteristic

I understand the  values with release strategy do not get transported through transport request and we need to update them with T-code CL20N.
Does the same rule applies to CT04 - Change characteristic when we need to maintain new values ?

It is always better to make the changes in Development client and ALE the characteristics and Class through BD91 and BD92, in this way you can make sure that there is no inconsistency in the values in different clients.
If the characteristics values are already assigned to some objects, you wont be able to delete or make changes to those values..you have to delete the assignments first and then change the values in CT04.

Similar Messages

  • CT04 - Changing characteristic Value Check procedure

    Hi,
    I want to change the value check validation for a an existing material characteristic from from the allowed values list to a chaeck table.  I intende on on using the 'Other Value Check'  button in the Values tab of CT04, but unfortunately this button is greyed out.
    I would like to know if it is possible to start using a check table for an existing material characteriestic, and if so how?
    Thanks,
    Roy

    Hi Roy,
    The only way I've managed to do this was to delete and re-create the characteristic. It gets complicated as SAP wants you to remove all entries for the characteristic before deleting it which means you need someone able to do the LSMWs to remove then re-load the data once you've re-created the characteristic.
    Regards,
    John

  • Hi. i used Function module to change Characteristic values of a sales order

    hi. i used Function module to change Characteristic values of a sales order..
    but sales order's Characteristic values didn't change.
    And the Function module doesn't occur any log message.
    please tell me wrong code, and how to solve this problem.
    if i have wrong method, what data can i pass to change the characteristic values
    DATA: LT_E1CUVAL    TYPE TABLE OF E1CUVAL.
      DATA: WA_E1CUVAL    TYPE E1CUVAL.
      DATA: LS_CFG_HEAD   LIKE CUXT_CUCFG_S,
            LS_INSTANCES  LIKE CUXT_CUINS_S,
            LS_VALUES     LIKE CUXT_CUVAL_S,
            LS_E1CUCFG    LIKE E1CUCFG,
            LS_E1CUINS    LIKE E1CUINS,
            LS_E1CUVAL    LIKE E1CUVAL,
            LS_PROFILE    LIKE E1CUCOM,
            LS_VBAP       LIKE VBAP,
            L_CUOBJ       LIKE INOB-CUOBJ,
            L_ATINN       LIKE CABN-ATINN.
      DATA: LT_INSTANCES  LIKE CUXT_CUINS_S OCCURS 0,
            LT_PART_OF    LIKE CUXT_CUPRT_S OCCURS 0,
            LT_VALUES     LIKE CUXT_CUVAL_S OCCURS 0,
            LT_VAR_KEYS   LIKE CUXT_CUVK_S  OCCURS 0,
            LT_KSML       LIKE KSML         OCCURS 0 WITH HEADER LINE,
            BEGIN OF LT_CLINT OCCURS 0,
              CLINT  LIKE KSSK-CLINT,
            END OF LT_CLINT.
      DATA: LT_CUIB       LIKE CUIB_CUOBJ_S OCCURS 0 WITH HEADER LINE.
      DATA: E_ROOT_INSTANCE           TYPE     CUXT_INSTANCE_NO.
      DATA: EV_ROOT_PERSIST_ID     TYPE     IBEXTINST_DATA-EXT_INST_ID.
      DATA: EV_CFG_HAS_CHANGED     TYPE     XFELD.
      DATA: EV_HANDLE_APPL_LOG     TYPE     BALLOGHNDL.
      DATA: L_CUOBJ_NEW           TYPE CUOBJ.
      DATA: L_OWNER               TYPE IBXX_BUSINESS_OBJECT.
      REFRESH LT_E1CUVAL.
      CLEAR LS_VBAP.
      SELECT SINGLE CUOBJ INTO CORRESPONDING FIELDS OF LS_VBAP
                                FROM VBAP WHERE VBELN = I_VBELN
                                            AND POSNR = I_POSNR.
      IF SY-SUBRC <> 0.
        RAISE INSTANCE_NOT_FOUND.
      ENDIF.
      REFRESH LT_CUIB. CLEAR LT_CUIB.
      LT_CUIB-INSTANCE = LS_VBAP-CUOBJ.
      APPEND LT_CUIB.
      CALL FUNCTION 'CUCB_INITIALIZER'
        EXPORTING
          IT_INSTANCES = LT_CUIB[].
      CALL FUNCTION 'CUXI_GET_SINGLE_CONFIGURATION'
        EXPORTING
          I_ROOT_INSTANCE              = LS_VBAP-CUOBJ
        IMPORTING
          E_CFG_HEAD                   = LS_CFG_HEAD
          ES_PROFILE                   = LS_PROFILE
          ET_RETURN                    = ET_RETURN
        TABLES
          E_TAB_INSTANCES              = LT_INSTANCES
          E_TAB_PART_OF                = LT_PART_OF
          E_TAB_VALUES                 = LT_VALUES
          E_TAB_VAR_KEYS               = LT_VAR_KEYS
        EXCEPTIONS
          INVALID_INSTANCE             = 1
          NO_ROOT_INSTANCE             = 2
          INSTANCE_IS_A_CLASSIFICATION = 3
          INTERNAL_ERROR               = 4
          NO_PROFILE_FOUND             = 5
          INVALID_DATA                 = 6
          OTHERS                       = 7.
      IF SY-SUBRC <> 0.
        CASE SY-SUBRC.
          WHEN 1.
            RAISE INSTANCE_NOT_FOUND.
          WHEN 3.
            RAISE INSTANCE_IS_A_CLASSIFICATION.
          WHEN OTHERS.
            RAISE INVALID_DATA.
        ENDCASE.
      ELSE.
        LOOP AT LT_VALUES INTO LS_VALUES.
          IF    LS_VALUES-CHARC = 'SAP_MILLCA_PACKAGING'
             OR LS_VALUES-CHARC = 'PD_CA_PACKING_DM'.
            LS_VALUES-VALUE = '7100010'. "This is test data
            MODIFY LT_VALUES FROM LS_VALUES.
          ELSE.
            DELETE LT_VALUES WHERE CHARC = LS_VALUES-CHARC.
          ENDIF.
          CLEAR LS_VALUES.
        ENDLOOP.
      ENDIF.
    &#50689;&#50629;&#51221;&#48372; &#53945;&#49457; &#48320;&#44221;
      CALL FUNCTION 'CUXI_SET_SINGLE_CONFIGURATION'
        EXPORTING
          I_CFG_HEADER                        = LS_CFG_HEAD
          I_ROOT_INSTANCE                     = LS_VBAP-CUOBJ
        I_PLANT                             =
        I_STRUCTURE_EXPLOSION_DATE          =
        I_STRUCTURE_EXPLOSION_APPL_ID       =
        I_LOGSYS                            =
          IS_PROFILE                          = LS_PROFILE
        IV_ONLY_SINGLE_LEVEL                =
        IV_HANDLE_APPL_LOG                  =
        IV_OBJECT_APPL_LOG                  = 'CIF'
        IV_SUBOBJECT_APPL_LOG               = 'T_CNFG'
        IMPORTING
          E_ROOT_INSTANCE                     = E_ROOT_INSTANCE
          EV_ROOT_PERSIST_ID                  = EV_ROOT_PERSIST_ID
          EV_CFG_HAS_CHANGED                  = EV_CFG_HAS_CHANGED
          EV_HANDLE_APPL_LOG                  = EV_HANDLE_APPL_LOG
          ET_RETURN                           = ET_RETURN
        TABLES
          I_TAB_INSTANCES                     = LT_INSTANCES
          I_TAB_PART_OF                       = LT_PART_OF
          I_TAB_VALUES                        = LT_VALUES
          I_TAB_VAR_KEYS                      = LT_VAR_KEYS
        I_TAB_BLOB                          =
        EXCEPTIONS
          NO_CONFIGURATION_DATA               = 1
          NO_ROOT_INSTANCE                    = 2
          INVALID_INSTANCE                    = 3
          INSTANCE_IS_A_CLASSIFICATION        = 4
          INTERNAL_ERROR                      = 5
          NO_PROFILE_FOUND                    = 6
          INVALID_DATA                        = 7
          OTHERS                              = 8
      IF SY-SUBRC <> 0.
        CASE SY-SUBRC.
          WHEN 1.
            RAISE NO_CONFIGURATION_DATA.
          WHEN 3.
            RAISE NO_ROOT_INSTANCE.
          WHEN 3.
            RAISE INVALID_INSTANCE .
          WHEN 3.
            RAISE INSTANCE_IS_A_CLASSIFICATION.
          WHEN 3.
            RAISE INTERNAL_ERROR.
          WHEN OTHERS.
            RAISE INVALID_DATA.
        ENDCASE.
      ENDIF.
      COMMIT WORK.
    save configuration with next commit
      CLEAR: LS_INSTANCES.
      READ TABLE LT_INSTANCES INTO LS_INSTANCES INDEX 1.
    L_OWNER-OBJECT_TYPE = LS_INSTANCES-OBJ_TYPE.
      L_OWNER-OBJECT_TYPE = 'PVS_POSVAR'.
      L_OWNER-OBJECT_KEY  = LS_INSTANCES-OBJ_KEY.
      CALL FUNCTION 'CUCB_CONFIGURATION_TO_DB'
        EXPORTING
          ROOT_INSTANCE         = LS_VBAP-CUOBJ
          ROOT_OBJECT           = L_OWNER
        IMPORTING
          NEW_INSTANCE          = L_CUOBJ_NEW
        EXCEPTIONS
          INVALID_INSTANCE      = 1
          INVALID_ROOT_INSTANCE = 2
          NO_CHANGES            = 3
          OTHERS                = 4.
      IF SY-SUBRC > 1 AND SY-SUBRC <> 3.
        CLEAR LS_VBAP-CUOBJ.
        RAISE INTERNAL_ERROR.
      ELSEIF SY-SUBRC = 1.
        LS_VBAP-CUOBJ = L_CUOBJ_NEW.
      ENDIF.
    What's wrong?
    help me to solve this problem.
    Thanks a lot.

    <b>SD_SALES_DOCUMENT_READ</b> Reads sales document header and business data: tables VBAK, VBKD and VBPA (Sold-to (AG), Payer (RG) and Ship-to (WE) parties)
    <b>SD_SALES_DOCUMENT_READ_POS</b> Reads sales document header and item material: tables VBAK, VBAP-MATNR
    <b>SD_DOCUMENT_PARTNER_READ</b> partner information including address. Calls SD_PARTNER_READ
    <b>SD_PARTNER_READ</b> all the partners information and addresses
    <b>SD_DETERMINE_CONTRACT_TYPE</b>
    In: at least VBAK-VBELN
    Exceptions: NO CONTRACT | SERVICE_CONTRACT | QUANTITY_CONTRACT
    <b>SD_SALES_DOCUMENT_COPY</b>
    <b>RV_ORDER_FLOW_INFORMATION</b> Reads sales document flow of sales document after delivery and billing
    SD_SALES_DOCUMENT_SAVE create Sales Doc from the copied document
    SD_SALES_DOCUMENT_ENQUEUE to dequeue use DEQUEUE_EVVBAKE
    RV_DELIVERY_PRINT_VIEW Data provision for delivery note printing
    SD_PACKING_PRINT_VIEW
    SD_DELIVERY_VIEW Data collection for printing
    called from RV_DELIVERY_PRINT_VIEW, SD_PACKING_PRINT_VIEW
    RV_BILLING_PRINT_VIEW Data Provision for Billing Document Print
    regards
    vinod

  • Change Characteristic values in Material class Classification

    Hi,
    Is there any standard program to change Characteristic vaules in Material Classification?
    Thanks,
    Shiva

    Thanks for your help.
    Points will be awarded.
    Shiva

  • Changing characteristic will it affect cube

    Dear BW Gurus,
         I have a requirement to change characteristic which is been used in many cubes. I need to change the characteristicu2019s one of the attribute as a compounding attribute.Here my question is u2013 if I change the characteristic will it affects all other cubes  and update ruels. Please advice me in this case.
    Regards,
    Ram

    Hi
    No. you will create a Remodelling RULE wherein you will add the new characteristic and the compounding attribute to your cube and specify the mapping.THen you will schedule this rule to bring the data for the newly added infoobjects.
    Chk this weblog which clearly explains remodelling.
    /people/mallikarjuna.reddy7/blog/2007/02/06/remodeling-in-nw-bi-2004s

  • BI-IP change characteristic value in FOX

    Hello Guys,
    i want to change the characteristic value in FOX.
    Therefore the FOX runs through all char combinations to identify the highest
    number for the char test.
    This step works fine, but i cant write the value for maxloop in the cube.
    If i try, only the old row is deleted, but i dont get a new row with the calculated value for maxloop.
    the code looks like this:
    DATA LOOP TYPE test.
    DATA MINLOOP TYPE test.
    DATA MAXLOOP TYPE test.
    MINLOOP = 00000.
    MAXLOOP = 00000.
    FOREACH LOOP.
    MINLOOP = LOOP.
    IF MINLOOP > MAXLOOP.
    MAXLOOP = MINLOOP.
    ENDIF.
    ENDFOR.
    MAXLOOP = MAXLOOP + 00001.
    {Amount, EUR, #, #, 00200, 00000000, #, 2007, #, #, #, #, #, #, #} =
    {Amount, EUR, #, #, maxloop, 00000000, #, 2007, #, #, #, #, #, #, #}.
    Any suggestions what is wrong here?
    Regards
    T. Mekler

    Hi,
    You have written
    {Amount, EUR, #, #, 00200, 00000000, #, 2007, #, #, #, #, #, #, #} =
    {Amount, EUR, #, #, maxloop, 00000000, #, 2007, #, #, #, #, #, #, #}.
    But as per the statement  MAXLOOP = MAXLOOP + 00001 the MAXLOOP conatins a new figure. Obviously there will not be any record in the cube for this value of MAXLOOP.
    You are assigning this to the record with MAXLOOP = 00200, so system is assigning zero to  0AMOUNT for the record that is having MAXLOOP=00200 value.
    Make the below corrections and test again:
    DATA NEWLOOP type test.
    NEWLOOP = MAXLOOP + 00001.
    {Amount, EUR, #, #, NEWLOOP, 00000000, #, 2007, #, #, #, #, #, #, #} =
    {Amount, EUR, #, #, MAXLOOP, 00000000, #, 2007, #, #, #, #, #, #, #}.
    Regards,
    Deepti

  • Change characteristic values in SO via BAPI_SALESORDER_CHANGEBOS

    Hi Experts,
    Now, I would like to update the characteristic values of configuration in sales order via BAPI : BAPI_SALESORDER_CHANGEBOS. But, I can't find right way to execute this BAPI. I tried so many times and no data changed. I wonder that i didn't specify the correct import parameters.
    Is anyone can help me? Thanks for your kindly support in advance.
    Best Regards,
    Ryan

    Hi Ryan,
        I had a similar kind of requirment, to change the characteristic values in a sales contract, where I used, BAPISDORDER_GETDETAILEDLIST to get the details of the agreement line iteam and after sorting the necessary vales then used BAPI: BAPI_CUSTOMERCONTRACT_CHANGE to change the customer agreement line item.
    In your case as well you can use the BAPISDORDER_GETDETAILEDLIST to get the details, based on this you write logic to hold the necessary change value and finally, use BAPI: BAPI_SALESORDER_CHANGE to updated the changes in the sales order.
    Hope this helps.
    Regards
    Raj

  • Trigger Material Delta Load by changing characteristic in R/3

    Hello,
    We added some functionallity to our R/3 and CRM system in order to map the R/3 characteristic data to CRM attributes (which are added to the product master). During the initial download of materials this works fine.
    The delta download is triggered when I change something in the Basic Data or the Sales Org. data in transaction MM02 on the R/3 site, but NOT when I change something in the Classification tab (which holds the characteristics).
    Does anyone know how to trigger the Material Delta Load when changes in the Classification tab are made?
    Thanks,
    Jeroen

    Hi Pat,
    Use object 'DNL_CUST_SALES' to download Customer Group from R/3 to CRM.
    Use R3AS4 transaction to execute the same.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • BAPI_OBJCL_CHANGE to change characteristic

    Hello All,
    I am writing a program to collect materials for a specified criteria and for those materials change the characteristic values for a class.  I would like to change the characteristic for the class using the following code. but this is not setting the characteristic BATCH_DELETION_INDICATOR.
    On the contrary when you check the box Batch Deletion Indicator in the BasicData1 tab. Characteristic is automatically getting changed to YES. My requirement is not to check Batch deletion indicator in BasicData1 tab(MCHA-LVORM = X) rather directly change the characteristic value.
    Any suggestions on this one please...
      it_werks-werks = p_werks.
      APPEND it_werks.
      CALL FUNCTION 'VB_BATCH_DEFINITION'
           IMPORTING
                kzdch = g_kzdch
                klart = g_klart
                obtab = g_obtab 
           TABLES
                werke = it_werks.
    To get the object key.
      wa_objecttab-key_field = 'MATNR'.
      wa_objecttab-value_int = it_mchb-matnr.
      APPEND wa_objecttab TO i_objecttab.
      wa_objecttab-key_field = 'CHARG'.
      wa_objecttab-value_int = it_mchb-charg.
      APPEND wa_objecttab TO i_objecttab.
      CALL FUNCTION 'BAPI_OBJCL_CONCATENATEKEY'
           EXPORTING
                objecttable    = g_obtab
           IMPORTING
                objectkey_conc = v_object
           TABLES
                objectkeytable = i_objecttab
                return         = i_bapiret2.
    Read Characteristics details
    ******v_object  is 0000000000084977041 where 1 is the batch, also tried with material, batch and plant ******combination.
      CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'
        EXPORTING
          objectkey              = v_object           " 0000000000084977041
          objecttable            = g_obtab            " MCH1
          classnum               = g_class          " FG_BATCH_CLASS
          classtype              = g_klart            " 023
      KEYDATE                = SY-DATUM
         unvaluated_chars       = 'X'
          unvaluated_chars       = ''
      LANGUAGE               = SY-LANGU
    IMPORTING
      STATUS                 =
      STANDARDCLASS          =
        TABLES
          allocvaluesnum         = i_charnum
          allocvalueschar        = i_charchar
          allocvaluescurr        = i_charcurr
          return                 = i_bapiret2
      READ TABLE i_charchar INTO wa_charchar WITH KEY
        charact = 'BATCH_DELETION_INDICATOR'.
      IF sy-subrc EQ 0.
       wa_charchar-value_char = 'X'.
        wa_charchar-value_char = 'Yes'.
        MODIFY i_charchar FROM  wa_charchar INDEX sy-tabix.
      ENDIF.
      DELETE i_charnum WHERE value_from IS initial..
      REFRESH i_charcurr.
      REFRESH i_bapiret2.
    Change batch characteristics
      CALL FUNCTION 'BAPI_OBJCL_CHANGE'
        EXPORTING
          objectkey                = v_object
          objecttable              = g_obtab
          classnum                 = g_class
          classtype                = g_klart
      STATUS                   = '1'
      STANDARDCLASS            =
      CHANGENUMBER             =
      KEYDATE                  = SY-DATUM
      NO_DEFAULT_VALUES        = ' '
    IMPORTING
      CLASSIF_STATUS           =
        TABLES
          allocvaluesnumnew        = i_charnum
          allocvaluescharnew       = i_charchar
          allocvaluescurrnew       = i_charcurr
          return                   = i_bapiret2
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
           EXPORTING
                wait   = 'X'
           EXCEPTIONS
                OTHERS = 0.

    Any suggestions pls..

  • CRM 5.0 Webclient - Characteristic Change Pointers

    Hi Gurus
    On ERP we have site values which have characteristic data attached.
    On a daily basis from ERP we run transaction BD21 with Message Type "CLFMAS" which picks up changed characteristic data and creates Idocs which are then sent to CRM and processed via an XI process.
    We've picked a scenario where it looks as if New Sites created do not have their characteristic data sent in this process.
    If we then make a change to the characteristic data for the new site and then run BD21, the data is picked up without issue.
    Would anyone know if this is due to the fact that it is seen as a new record and not a changed record that the new  characteristic data is not picked up for transer?
    Maximum points for the right answer.
    Any links to documentation on this subject would also be rewarded
    Many Thanks in advance
    Panduranga

    Closing this
    No Resolution at this point

  • Characteristic Change in InfoCube?

    Hi,
    When there is a change in a characteristic, how can it be updated into infocube (no transactional cube)?
    What I'm currently doing as a workaround to this problem is, in the transformation routine of the infocube: reading the keyfigure value for the existing characteristic combination based on certain keyfield, creating a negative image and add it to the infocube. so it nullifies the existing combination. and then I'm adding fresh data with the changed characteristic value into the infocube.
    Is it advisable to do so? Then what is the easier solution/workaround? Could anyone help me in this regard?
    Best Regards,
    Anbu.

    Hi Aneesh,
    By intruducing ODS how is it possible to update infocube the changed characteristic value? My assumption was ods helps only calculating the delta value by comparing the before and after images, so that the delta can be updated in infocube. But how actually it works for characteristics? does it updates the infocube with new characteristic or just introduces a new row in the infocube?
    I'm yet to evaluate the loop back techniques proposed.
    Regards,
    Anbu.

  • Material Characteristic Download R/3 - CRM

    Folks,
    I am changing a characteristic on a material in R/3 using ct04, creating a new run time version using cu34 and doing a initial load from CRM of the SCE object with a filter on my material. I see the BDoC's coming over on the CRM side with the new version I had created in R/3 but when I query the material in CRM with COMMPR01 I dont see the changes. Any ideas why this is happening ??
    Faz

    Hi Fasi,
       When you change the characteristic in R/3 why are you doing again an Intial download. When you do the final step of generating run-time version, I guess the delta download should have been triggered(Do you say that delta download does not work for the adapter object SCE??)
       How do you check if the change characteristic is available in CRM middleware or not. Do you create a new quote or sales order and check in CRM. In transaction 'COMMPR01' you could see only characteristics modelled via PME, but if you want to see characteristics created in R/3 you need the SCE to be configured with CRM middleware. SCE is part of IPC (Internet pricing configurator).
    So please check by creating a quote in CRM middleware.
    Also please let me know why you do an intial download instead of delta download when you change the characteristics value?
    regards
    Middleware developer

  • CCM 2.0 avoid changes in the Procurement Catalogue

    Hi!!!
    Is it possible to avoid that the Master Catalog can change characteristic values in the Procurement Catalog?
    This issue is critical for us. Could you please please help us?
    THANKS!!!

    Hi Dinesh,
    We tried the "Read Only" solution but it's not working with complex characteristics such as price. Besides, it's the Catalog Manager who sets the read only flag, and we wanted the procurement catalog not be editable to avoid him to change some value (so, it has not much sense to make him responsible to set the flag, as he could just un-flag it, change values, and flag it again).
    What we did was, go to the transaction PFCG, write the manager role (/CCM/CATALOG_MANAGER), the click on the authorization tab, and press on the Change Authorization Data button.
    Then, inside the menu Cross-Application Authorization Object go to Access Restriction for Catalog Design Center. Here we added two new entries. So now we have 3 different "Restriction for Catalog Design Center", one for the Procurement Catalog (that don't have the activity of CHANGE), another for the Master Catalog (we had to wrote the name, because there isn't an option for the Master in the Catalog type menu. We wanted the Catalog Manager not to be able to publish it. However, although we didn't include PUBLISH in his activity, he still can publish it) and another one for the Supplier Catalog.
    So, if someone knows how to avoid the Catalog Manager publishing the Master Catalog using authorizations, we would be really grateful for some tips.
    THANKS!!!
    Best Regards,
    Mar

  • No valid characteristic combinations found in planing at FM

    Dear Professionals,
    I'm going to use planning functionality of FM. I've did all customizing but in Plan data change characteristic screen (t-code FMPLCPD) after filling appropriate data when I try to enter to the planning screen the system show me:
    No valid characteristic combinations found
    Message no. K9039
    Please kindly let me know about your helpful suggestion.
    Regards,
    Yashar

    hello Yashar
    Apparently the problem was with customizing: the budgeting process/es involved in the planning are not assigned to the budgeting version status properly. This could be seen in the error log behind ''No valid characteristic combinations".
    Please let me know if this information is valid for you
    Kind regards
    Mar

  • How to add attributes in Data Column for automatic changes

    Hello everybody,
    Could you give me an advice?
    I have characteristic and attribute assigned to it.
    I want to make what when i change  characteristic(variable) its attribute in planning layout changes too. So in planning area window in <b>Characteristics Rels</b> tab i made "<i>Derivation, Combination Check and Proposal</i>" with main characteristic and its atribute. Everything works fine, but problem is, that attribute can be only in <b>Header</b> or in <b>Lead column</b>. 
    In planning layout i want to add what attribute in data column.
    Maybe where is other solutions?
    Thanks in advance
    Best Regards,
    Arunas

    Hy, Srini,
    Thanks for your response.
    There is a simple example, which describes the main principle of my solution:
    Characteristic DIVISION
    A
    B
    (filled with master data)
    Characteristic LEVEL
    1
    2
    (filled with master data)
    Characteristic NAME
    Ben
    John
    (filled with master data)
    char. LEVEL, NAME are attributes for char. DIVISION
    DIVISION with master data:
    Division  Level  Name
       A        1     Ben
       B        2     Jhon
    Planning Layout:
    In header section is char. DIVISION (variable)
    When I select DIVISION with value A, in layout values for attributes should be displayed automaticaly:
    DIVISION = A
    NAME
    LEVEL
    (Lead column)
    (Data column)
    Ben
    1
    I find solution to do it with Characteristic Rels, but i can't insert char. LEVEL into Data Column, it can be just
    in Lead Column.
    I don't know how to do it.  
    Could you suggest something?
    Best Regards,
    Arunas

Maybe you are looking for

  • Flashplayer 11.3 install stuck

    I am trying to install Flashplayer 11.3 on my MacBook Air and it is stuck at 95%.  Can't finish it and can't get rid of it. What do I do?

  • Question to all: Where do you purchase your images???

    Guys/Gals, Where do you purchase your images when needed? Both photos and vector Illustrations. I buy from istockphoto.com and bigstockphotos.com, but is there anything better according to your experience? I am currently buying a lot of illustrations

  • BIP Requirement - Sorting inside the for-each

    Hi Gurus, I need to sort the PlanDateOpened to capture the Test B Business Unit because this is the oldest date but this is inside the For-each of Contact. Please help me how to code this in BIP. Thanksa lot. jP Edited by: BIPnewbie on Sep 8, 2011 1:

  • Standard FI Document Types

    Hi Gurus, Can anyone send me list of standard fi document types? Please send it. Thank You Moderator: Please, respect the rules of SDN. If you want to know the document types, look at table T003

  • Exit from Packge.Procedure

    I have 'Pack_1' which have 'Proc_1' and 'Proc_1' calls 'Proc_2' From 'Proc_2' I type RETURN it exits from 'Proc_2' and control goes to 'Proc_1', but I need to exit all (exit Proc_1 as well as Proc_2) What is the command I can type in 'Proc_2' itself?