BOM REPORT - ADD FILTER ON PARTS

オフライン

Hello

I have the following report query

<Item type="Part" action="GetItemRepeatConfig" select="item_number,name,description,pr_su_codegeco,pr_su_code_gest,cost,xp-pr_finition,xp-pr_matiere,xp-pr_operations" id="{@id}">
 <Relationships>  
    <Item type="Part AML" select="state,related_id(item_number,manufacturer)"/>
    <Item type="PR_Part to Vendor" select="pr_su_suivi_ha,pr_su_pu_vendor,pr_su_ref_vendorpr_,su_delai,pr_su_no_cde,pr_su_comment,related_id"/>
    <Item type="Part CAD" select="related_id(item_number)"/>
    <Item type="Part BOM" select="sort_order,quantity,pr_su_rangement,related_id" repeatProp="related_id" repeatTimes="6"/>
</Relationships>
</Item>

And I only want to get bom part whose part number begins with 4

I have tried putting this condition

<item_number condition= "like">4%</item_number>                           

but anywhere I put it i d'ont get the good result

Any help ?

Best regards

Parents Reply Children