Good afternoon,
I created my own business class name “EmployeeReasonableAccommodations”. In that class I added actions 2 actions. Create is an Action which creates a standard EmployeeReasonableAccommodations_Primary is a Form and another action label EmployeeReasonableAccommodation is a Create RequestAction which creates a EmployeeReasonableAccommodation_implicit_action_form is an ActionForm (which is what I need to trigger a processflow).
I created a relation in my custom business class and I am calling fields from Employee class. The fields are displaying in the primary form but not in the implicit action form. I am using the same relation and same fields in both forms. Why? How can I fix this?
//join to employee table
Relations
EmployeeReasonableAccommodationsToEmployeeRel
one-to-many relation to Employee
Field Mapping uses symbolic key
related.Employee = Employee
related.HROrganization = HROrganization
Sets
ByEmployeeReasonableAccommodationOrderSet
Sort Order
ReasonableAccommodationID
Employee
HROrganization
ByEmployeeReasonableOrderSet
Sort Order
Employee
HROrganization
Actions
Create is an Action
EmployeeReasonableAccommodation is a Create RequestAction
request action process is RAC
Parameters
Employee is Numeric size 20
// HROrganization is Text
EmployeeAttachment1 is BinaryDocument
how i am calling the fields.
EmployeeReasonableAccommodationsToEmployeeRel.Name.PreferredFirstAndLastName
label is "Employee_Name"
Employee
label is "Employee_Number"
EmployeeReasonableAccommodationsToEmployeeRel.ActivePrimaryWorkAssignmentRel.DirectSupervisor.first ActiveAssignmentIsSupervisorWorkAssignment.Employee.Name.PreferredFirstAndLastName
label is "Direct_Supervisor"
EmployeeReasonableAccommodationsToEmployeeRel.AdjustedStartDate
label is "Adjusted_Start_Date"
EmployeeReasonableAccommodationsToEmployeeRel.PrimaryWorkAssignment.HROrganizationUnit.Description
label is "Department_Name"