A question for Item characteristic list value.

Hi Expert, 

In 'Item Characteristic' which I believe is standard object, there are three fieds as below:

'Sort Order'      'Value'       'Label'

I tried to enter text for new Item Chracteristic 'Construction' as above:

'Sort Order'        'Value'          'Label'

     10                   AIO          All In One

However, once I save it, when I trid to select this new item characteristic of 'Construction' in part screen with All In One' as below, 

System save it successfully. But, system doesn't show 'All In One' in 'Value' field, once it refresh screen. 

Is it impossible to maintain different text in 'Value' and 'Label' or should I maintain the same text in two fields?

Would you please help on this?

Thank you so much. 

Parents
  • Hi Nara, 

    Thank you so much for your reply. 

    As you said, I saved one more time. But, it still doesn't show. (I tried to save more than one time. But, no difference.)

    It's very strange. 

  • Can u run below AML

    <Item type="Part" action="get" where="Part.id ='15D5218E9E1B439DB3939B47A1EDC249'">
    <Relationships>
    <Item type="Part Item Characteristic Value" action="get">
    <item_characteristic_label>Construction</item_characteristic_label>
    </Item>
    </Relationships>
    </Item>

    15D5218E9E1B439DB3939B47A1EDC249 is part ID

    from the result check for <Item type="Part Item Characteristic Value"

    <text_value>AIO</text_value>
    <display_value>All In One</display_value>

    if above values are macthing your result, then there is some isue in "ItemCharacteristicAddToPart" method.
    if not edit part using below AML


    <AML>
            <Item type="Part Item Characteristic Value" action="edit" where="[Part_Item_Characteristic_Value].source_id = '15D5218E9E1B439DB3939B47A1EDC249' AND [Part_Item_Characteristic_Value].id = '6FDAA3712F594933ABAEB6F52654DCAA'" doGetItem="0" serverEvents="0">
               <text_value>AIO</text_value>
    <display_value>All In One</display_value>
            </Item>
          </AML>

    Go to Aras UI and check "Construction" value, if it is not matching , then there is some isue in "ItemCharacteristicAddToPart" method.

Reply
  • Can u run below AML

    <Item type="Part" action="get" where="Part.id ='15D5218E9E1B439DB3939B47A1EDC249'">
    <Relationships>
    <Item type="Part Item Characteristic Value" action="get">
    <item_characteristic_label>Construction</item_characteristic_label>
    </Item>
    </Relationships>
    </Item>

    15D5218E9E1B439DB3939B47A1EDC249 is part ID

    from the result check for <Item type="Part Item Characteristic Value"

    <text_value>AIO</text_value>
    <display_value>All In One</display_value>

    if above values are macthing your result, then there is some isue in "ItemCharacteristicAddToPart" method.
    if not edit part using below AML


    <AML>
            <Item type="Part Item Characteristic Value" action="edit" where="[Part_Item_Characteristic_Value].source_id = '15D5218E9E1B439DB3939B47A1EDC249' AND [Part_Item_Characteristic_Value].id = '6FDAA3712F594933ABAEB6F52654DCAA'" doGetItem="0" serverEvents="0">
               <text_value>AIO</text_value>
    <display_value>All In One</display_value>
            </Item>
          </AML>

    Go to Aras UI and check "Construction" value, if it is not matching , then there is some isue in "ItemCharacteristicAddToPart" method.

Children
No Data