I am trying to enter the radio button selectd value to relationship type field in dataservice. but it showing the field not a guid format,Please can any one help me out this
@Palaniyappan
@RAKESH_KUMAR_BEHERA
@pravin_calvin
I am trying to enter the radio button selectd value to relationship type field in dataservice. but it showing the field not a guid format,Please can any one help me out this
Hi
Can you share the expression you used to assign the value or the type of value
Cheers @panguluri_saritha
so i used fx GUID(app variable leave type) for trying
but entity internal error is coming
@Palaniyappan
Hi @panguluri_saritha - This is happening because the RadioButton.SelectedValue is not recognized as a valid entity data type today but rather as a text value.
The way to solve it will be make sure that the assignment to “LeaveRequest.LeaveType” is done to the correct record type from your entities.
I am going to assume that your related entity is called “LeaveType” and has a field called “Type” that is being shown on the radio button.
The assignment to LeaveRequest.LeaveType
then should have a formula like LOOKUP(LeaveType, [LeaveType.Type, "=", RadioButton.SelectedValue]).Id
or replace RadioButton.SelectedValue
with your app variable.
Thank you @ankit.saraf
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.