Wiring Checklist
Overview
This checklist guides you through manually adding the Arda Cloud Pack sync tables to this document. MCP cannot programmatically add sync tables, so these steps must be completed manually in the Coda UI.
Prerequisites
✅ Document created: “Arda Growth (Cloud-backed)” ⏳ Pack installation (see Step 1 below) ⏳ Sync tables (see Steps 2-4 below) Step 1: Install Arda Cloud Pack
Instructions:
In Coda, click Insert in the toolbar Select Packs from the dropdown Search for “Arda Cloud” or “Arda” Click on the Arda Cloud pack Click Install or Add to doc Authenticate with your Arda Cloud credentials if prompted Verification:
You should see “Arda Cloud” in your installed packs list Pack formulas should be available in the formula picker Step 2: Add Arda Items Sync Table
Location: Items page (section-ONTWn8KMjh)
Instructions:
Navigate to the Items page Click Insert in the toolbar Select Packs > Arda Cloud Find “ArdaItems” sync table in the list Click and drag it onto the page, or click to insert The sync table will appear with default columns Configuration:
Click on the sync table to open its settings In the formula bar or sync settings, configure: TenantId: Copy from Setup page > Pack Configuration > TenantId Author: Copy from Setup page > Pack Configuration > Author QueryJson (optional): Leave blank for all items, or provide JSON for filtering Example Configuration:
SyncArdaItems(
"123e4567-e89b-12d3-a456-426614174000", // TenantId
"John Doe", // Author
"" // QueryJson (optional)
)
Verification:
Table should show “Syncing…” or data from Arda Cloud Columns should match: Name, internalSku, Notes, Location, etc. Table should be editable (two-way sync enabled) Step 3: Add Arda Kanban Cards Sync Table
Location: Order Cards page (section-Yz5nEysDeL)
Instructions:
Navigate to the Order Cards page Click Insert in the toolbar Select Packs > Arda Cloud Find “ArdaKanbanCards” sync table in the list Click and drag it onto the page, or click to insert Configuration:
Click on the sync table to open its settings TenantId: Copy from Setup page Author: Copy from Setup page QueryJson (optional): Leave blank for all cards Example Configuration:
SyncArdaKanbanCards(
"123e4567-e89b-12d3-a456-426614174000", // TenantId
"John Doe", // Author
"" // QueryJson (optional)
)
Verification:
Table should show kanban cards from Arda Cloud Columns should include: State, PrintStatus (editable), Item, QuantityAmount, etc. Only State and PrintStatus should be editable (two-way sync) Step 4: Add Arda Orders Sync Table
Location: Order Queue page (section-K65S7hnKnW)
Instructions:
Navigate to the Order Queue page Click Insert in the toolbar Select Packs > Arda Cloud Find “ArdaOrders” sync table in the list Click and drag it onto the page, or click to insert Configuration:
Click on the sync table to open its settings TenantId: Copy from Setup page Author: Copy from Setup page QueryJson (optional): Leave blank for all orders Example Configuration:
SyncArdaOrders(
"123e4567-e89b-12d3-a456-426614174000", // TenantId
"John Doe", // Author
"" // QueryJson (optional)
)
Verification:
Table should show orders from Arda Cloud Table should be read-only (no direct editing) Use workflow actions (Submit, Accept, Receive, Archive) instead Step 5: Add Arda Order Lines Sync Table (Optional)
Location: Order Archive page (section-kkiXZy9JxX)
Instructions:
Navigate to the Order Archive page Click Insert in the toolbar Select Packs > Arda Cloud Find “ArdaOrderLines” sync table in the list Click and drag it onto the page Configuration:
TenantId: Copy from Setup page Author: Copy from Setup page OrderEid (optional): Filter by specific order ItemEid (optional): Filter by specific item Example Configuration:
SyncArdaOrderLines(
"123e4567-e89b-12d3-a456-426614174000", // TenantId
"John Doe", // Author
"", // OrderEid (optional)
"" // ItemEid (optional)
)
Step 6: Configure Lookup Columns
After sync tables are added, configure lookup relationships:
Kanban Loops → Items
Add column: Item (Lookup type) Select ArdaItems sync table as source Map to Name or Eid column Order Groups → Suppliers
Add column: Supplier (Lookup type) Select Suppliers table as source Task List → Items
Add column: Item (Lookup type) Select ArdaItems sync table as source Step 7: Test Sync Tables
For Each Sync Table:
Table should show “Syncing…” initially After sync completes, data should appear Check that columns match expected schema Test Two-Way Sync (Items & Cards): Edit a field in the table Changes should sync to Arda Cloud Refresh to verify changes persisted Verify table is read-only Use workflow action buttons instead Troubleshooting
Sync Table Not Appearing
Verify pack is installed: Insert > Packs > Arda Cloud should be visible Check pack permissions: Pack may need access to document Authentication Errors
Verify TenantId is a valid UUID format Check Author is not blank Ensure Arda Cloud credentials are valid No Data Loading
Check TenantId matches your Arda Cloud account Verify you have items/cards/orders in Arda Cloud Check QueryJson syntax if using filters Look for error messages in sync table status Two-Way Sync Not Working
Verify sync table has executeUpdate enabled (Items, Cards only) Check that field is marked as mutable in pack schema Ensure you have write permissions in Arda Cloud Completion Checklist
Arda Cloud Pack installed ArdaItems sync table added and configured ArdaKanbanCards sync table added and configured ArdaOrders sync table added and configured ArdaOrderLines sync table added (optional) Lookup columns configured Sync tables tested and working Data visible in all sync tables Next Steps
After completing the wiring:
Set up Kanban Loops table with Item lookups Configure Format Templates for printing Create buttons for card generation and order creation Set up printing workflows Test end-to-end workflows See the Blueprint document for detailed implementation guidance.