Skip to content

Instantly share code, notes, and snippets.

@tocohara
Created May 17, 2022 03:46
Show Gist options
  • Save tocohara/e74897a1c42ff9c630946f4eb9efb0e4 to your computer and use it in GitHub Desktop.
Save tocohara/e74897a1c42ff9c630946f4eb9efb0e4 to your computer and use it in GitHub Desktop.
Exploring the Sales Order Processing Functions - 4
protected virtual void _SetProcessTargetInternal(string graphType, string stepID, string action, string menu, IEnumerable parameters)
{
if (TryWithExternal(delegate(PXProcessingBase<Table> e)
{
e._SetProcessTargetInternal(graphType, stepID, action, menu, parameters);
}))
{
return;
}
if (menu != null && menu.Contains("$"))
{
string[] splitted = menu.Split('$');
menu = splitted[0];
stepID = splitted[1];
_StepsFromRow = new HashSet<string>(splitted.Skip(1), StringComparer.OrdinalIgnoreCase);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment