denisvragolan
New member
I have problem making REPORT REGION. I want to make nested table that is going to list all subassemblies and all the parts of my assembly in it. But I want to make distinction between PARTS and SUBASSEMBLIES in my own way. I want to put note "INDEPENDENT PART" ina row whenever member's type is "part", and to put note "subassembly" when member's type is "assembly".
I tried with next relation:
if asm_mbr_type=="PART"
my_type="INDEPENDENT PART"
else
my_type="SUBASSEMBLY"
endif
But PRO/ENGINEER keeps telling me that something is wrong with "asm_mbr_type". Actually it tells me that "asm_mbr_type" does not exist. WHY?
Please. Can anyone help me?
P.S. I do not have problems with asm_mbr_name, rpt_qty,... Just with asm_mbr_type.
I tried with next relation:
if asm_mbr_type=="PART"
my_type="INDEPENDENT PART"
else
my_type="SUBASSEMBLY"
endif
But PRO/ENGINEER keeps telling me that something is wrong with "asm_mbr_type". Actually it tells me that "asm_mbr_type" does not exist. WHY?
Please. Can anyone help me?
P.S. I do not have problems with asm_mbr_name, rpt_qty,... Just with asm_mbr_type.