
Creator III
2023-11-20
10:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I want to weld WorkOrder_BaseOutput with Type by creating a new table
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;
1 Reply

Creator III
2023-11-21
02:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
To concatenate
Output:
LOAD
WorkOrder_BaseOutput
Resident WorkOrder_BaseOutput;
FATCC:
LOAD
Type,
WorkOrder_Base
Resident FATCC;
Concatenate (TEST)
LOAD
WorkOrder_Base as WorkOrder_BaseOutput,
Type as Type_Output
Resident FATCC;
