Getting Value From callContextBpmData in Form Customization

Good afternoon super minds! I’m looking to retrieve a value from callContextBpmData in a form’s customization code, but it gives me the following error:
“Error: CS0103 - line 90 (1498) - The name ‘callContextBpmData’ does not exist in the current context”

What would be the proper way to perform the task below inside of customization code? Thanks in advance for your help!

if (callContextBpmData.Character01 = "Testing")
{
	//Do something
}

In a screen customization use the EpiDataView…

EpiDataView edvBpm = (EpiDataView) oTrans.EpiDataViews["CallContextBpmData"];

if (edvBpm.CurrentDataRow["Character01"].ToString() = "Testing")
{
	//Do something
}
1 Like

Thank you @adaniell. Thank worked perfectly! :+1: