What is the format for the second argument in GM Overlay in Teamcenter forUG_UGMGR_invoke_pdm_server() when the Preprocessor Constant is THREE
For the GM Overlay in Teamcenter, UG_UGMGR_invokde_pdm_server() is used andwhen the constant THREE(3) is passed in, it retrieve the DLS value for a givenItem Revision.
The format of the second is a string in the format of "ItemID/RevID"
e.g UF_UGMGR_invoke_pdm_server(THREE, "123456/A", &output_code, &output_string)
The function UF_UGMGR_invoke_pdm_server() take the following arguments:
extern UFUNEXPORT int UF_UGMGR_invoke_pdm_server(int input_code ,/* <I> User defined input code passed to your Team Center Engineering ITK function USER_invoke_pdm_server(). */char * input_string ,/* <I> User defined input string passed to your Team Center Engineering ITK function USER_invoke_pdm_server(). */int * output_code ,/* <O> User defined return code that is returned from the Team Center Engineering ITK USER_invoke_pdm_server() function on completion of ITK calls. */char ** output_string /* <OF> User defined string that is returned from the Team Center Engineering ITK USER_invoke_pdm_server() function on completion of ITK calls. This output string will be allocated by your ITK program, and must be freed by your Open API program by calling UF_free(). */);