|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
UG NX二次开发源码分享:Teamcenter集成环境下,报告角色和组
- C1 s5 n) b3 }4 X7 B4 t3 K通过NewDatabaseSessionOptions,可以获取teamcenter当前账号的组合角色!
1 {( q5 W) P; }这个类也可以实现设置组,角色,获取卷等操作!/ w7 U$ { X4 p: G4 E
, R& P) |4 a+ d% Q+ L. Z7 y
3 b. Y. z5 ?* q
std::vector< NXString > GetGroups () % v4 N O% c+ |+ i7 Y
Gets the names of the Teamcenter groups to which the user belongs.
; p# Z, z9 { K: S
/ N( r& ~7 X2 O8 } + {2 _$ X& r3 [- a
std::vector< NXString > GetProjects () 2 Y& s# C7 \, [. Z$ O$ K1 B
Gets the names of the Teamcenter projects to which the user belongs also the first entry of the returned projects list is always empty.
9 c$ O! @4 \8 e 6 |$ b3 [6 m+ [/ s u& A/ G
$ Q9 {9 C! R8 r
std::vector< NXString > GetRoles ()
/ ]! a0 E3 T% g0 f2 G2 q% T Gets the names of the Teamcenter roles in which the user may act, given the current group returned by PDM::SessionSettings::Group .
* P$ D+ M/ h6 z 0 ?+ q6 A; {+ C# e) W3 {3 x( L
. l+ q$ A) G0 k6 \) N: Tstd::vector< NXString > GetVolumes () $ q6 c" g% u4 z) z% d, S" w
Gets the names of the Teamcenter volumes which the user may use, given the current group returned by PDM::SessionSettings::Group . : i; X) B) K: I2 K3 r
, j" k& j- T. ]: p7 S
4 X9 y9 c; f7 c" X! t- J
9 n' H1 D9 X5 R2 r$ ?static void do_it(void)9 v m# x- G% }: ?' }+ p1 w
{0 u- w5 J+ L7 |2 S1 ]# k6 R
Session *theSession = Session::GetSession();6 {# d( |0 x" M9 O( u1 K6 J1 Q
Part *workPart(theSession->Parts()->Work());! M4 z2 K+ H" k# x0 `; [0 @- R# u
Part *displayPart(theSession->Parts()->Display());: Q* ?1 ~( _6 y: Q6 f
- S4 m) a* Y! q9 A
PDM::SessionSettings *sessionSettings1;
3 P+ a% J0 ~* W( o) E& | sessionSettings1 = theSession->NewDatabaseSessionOptions();
/ K( @6 e. D% [7 t 4 G6 j \3 B7 w/ c3 H; a
NXString CurrentGroup;
. A- I0 S% u S0 e CurrentGroup = sessionSettings1->Group();
7 A' u4 Z9 b2 M. o) @
' S6 W$ r9 [0 V; I* ]; q: D! z NXString CurrentRole;9 z8 b w3 W/ C7 S0 q- I d
CurrentRole = sessionSettings1->Role();
5 x) o, V' V8 m9 ` ?
, ]0 J L5 b! V theSession->ListingWindow()->Open();
5 x2 E# ^% C) i# X. V! [ , S- Z F' E. S. V. n) t( l/ P/ R/ [
theSession->ListingWindow()->WriteLine("Current Group: ");" p( x, H8 W( |- X- K) R
theSession->ListingWindow()->WriteLine(CurrentGroup);# N. n5 y9 ~) r) Q H: e
; K. K* j. v) ^ theSession->ListingWindow()->WriteLine("Current Role: "); % E) V; s7 {, b; ]3 F# u
theSession->ListingWindow()->WriteLine(CurrentRole);0 q( K S2 l# V: U' G( a \& a
; j8 Y. _7 \6 K" d9 j
}
& J2 e+ @* N* G3 P
9 c: o, d0 t& _1 l6 b
* [$ ~% x: K s6 E' h: ]% x( O- _; V' _* C" H' _' l5 ~! _3 w' O7 N
|
|