Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
I am trying to get ModelCheck to check my Part Parameters for any empty parameters.
I would like it to report an error and make the user fill in the parameters that are empty (this cannot be a list, it just needs something/anything in it)
I want the engineers to fill out the Material, condition ect parameters.
Can Modelcheck check these are not empty?
Using Creo 7.0.8.0
Solved! Go to Solution.
Yes.
In the start checks (.mcs files), use the check PRT_PARAMETER DRAWN_BY STR NEQ NULL
The part parameter "drawn_by" must be of type string and not be null (empty).
In the checks (.mch files), specify STARTCHECK is set to error.
Regards,
Dan N.
Yes.
In the start checks (.mcs files), use the check PRT_PARAMETER DRAWN_BY STR NEQ NULL
The part parameter "drawn_by" must be of type string and not be null (empty).
In the checks (.mch files), specify STARTCHECK is set to error.
Regards,
Dan N.
thanks that worked