Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have Table
Output:LOAD WorkOrder_BaseOutput
and I have Table
FATCC:LOAD Type, WorkOrder_Base
I want to weld WorkOrder_BaseOutput with Type by creating a new table
I've tried doing this. But the data is incorrect
TEST:
LOAD WorkOrder_Base as WorkOrder_BaseOutput,
Type as Type_Output
Resident FATCC;
To concatenate
Output:LOADWorkOrder_BaseOutputResident WorkOrder_BaseOutput;
FATCC:LOADType,WorkOrder_BaseResident FATCC;
Concatenate (TEST)LOADWorkOrder_Base as WorkOrder_BaseOutput,Type as Type_OutputResident FATCC;