Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JAE on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

KF expression list for mw_smart_screw.dfa

Status
Not open for further replies.

marcin0110a

Computer
Joined
Mar 24, 2010
Messages
40
Location
PL
Hello,
I have problem with KF.
Original NX DFA mw_smart screw: …Siemens\NX2007\TOOLING_BASE\dfa give KF_LENGHT to expression. I need one additional KF_LENGHT_LIST. I tried many of formula but always have error. I’m not expert in KF. If for someone is not problem for create code I will be grateful.
Original code is:
# Update KF expression which update screw model
(Child) KF_LENGTH:
{
Class; ug_expression;
value; @{ write_part_attribute:(find_len:);
find_len:;
};
};
My additional code:
# Update KF expression which update screw model
(Child) KF_LENGTH_LIST:
{
Class; ug_expression;
value; @{ write_part_attribute:( length_list:);
length_list:;
};
};
Marcin
 
Hello,
I found a solution.
I was in a bad class

Class, ug_expression_list;
Name, "kf_list";
Value, (length_list:);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top