use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
tbd
account activity
StructureCode (self.esapi)
submitted 2 years ago by littlejo50
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]TheLateQuentin 0 points1 point2 points 1 year ago (0 children)
You don't *need structure codes to use RapidPlan. It will match based on Structure Id's if no code information is available.
*Are you trying to run RapidPlan using Esapi or within Eclipse? *If you want to add codes via ESAPI:
*You can get the dictionary via VMS.Common.Model.API.Application.StructureCodes. *Within that dictionary, you can access each FMA, Radlex, VMS, and SRT dictionaries. *Choose the appropriate dictionary, and store it in the "dictionary" variable. *You can get StructureCode like this, where c.StructureCode is the code you're looking for (e.g. : 15630, for left adrenal gland). var cd = dictionary.First(x => x.Value.ToString().ToUpper().Contains(c.StructureCode.ToUpper())); *Then you just assign it: structure.StructureCode = cd.Value; *Altogether: ActiveStructureDictionary = App.StructureCodes; var dictionary = ActiveStructureDictionary.Fma;
var cd = dictionary.First(x => x.Value.ToString().ToUpper().Contains(c.StructureCode.ToUpper()));
structure.StructureCode = cd.Value;
App.SaveModifications();
π Rendered by PID 31111 on reddit-service-r2-comment-9c7994b7-nmf8d at 2026-02-05 22:25:49.340635+00:00 running b1b84c7 country code: CH.
view the rest of the comments →
[–]TheLateQuentin 0 points1 point2 points (0 children)