Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »


 

<Description>

Arguments


<argument>

Return Value


Error rendering macro 'excerpt-include' : User 'null' does not have permission to view the page 'US:_r_EDMInterface'.

 

Options


  

OptionComment
optionnamecomment

 

Example


 

 <example>

 

See also

Filter by label

There are no items with the selected labels at this time.

 


Connecting a new EDMuser/EDMgroup without disconnecting the existing connection. Provided the new connected EDMuser/EDMgroup has sufficient access rights, all repositories and models will remain in the same open mode. Otherwise, access modes will be reduced to the highest access available.
 


TypeNameComment
SdaiUnsignedInt

SessionUserKey

The session key returned from edmiChangeMyUserBN.

  
EdmiError rstat;
SdaiUser myUserId;
SdaiUnsignedInt myKey, superKey;
edmiChangeMyUserBN("superuser", NULL, "LotR1953", &msg, &superKey);
edmiChangeMyUserBN("Gabriel", "Genesis", "abacab", &msg, &myKey);
. . .
if (modId = edmiGetModelBN("myRepository", "myModel")) {
edmiGetMyUserId(&myUserId); 
edmiChangeMyUser(superKey); 
edmiChangeInstanceOwner(modId, myUserId, SET_OWNER | REPLACE_CURRENT); 
edmiChangeMyUser(myKey); 
}
. . .

  • No labels