> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Save Operations Guides

> Nextedy POWERSHEET provides inline editing with full save operation support, allowing users to create, update, and link work items directly from the sheet view in Siemens Polarion ALM.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

<Columns cols={3}>
  <Card title="Create a Work Item" icon="circle-plus" href="/powersheet/guides/save-operations/create-work-item">
    Add new work items directly from the sheet with automatic document routing and constraint enforcement.
  </Card>

  <Card title="Update a Work Item" icon="file" href="/powersheet/guides/save-operations/update-work-item">
    Edit existing work item fields inline with change tracking, undo/redo, and review mode.
  </Card>

  <Card title="Create a Link" icon="file" href="/powersheet/guides/save-operations/create-link">
    Establish relationships between work items using linking mode with visual target selection.
  </Card>

  <Card title="Handle Validation Errors" icon="file" href="/powersheet/guides/save-operations/handle-validation-errors">
    Identify, review, and resolve validation errors before and after save operations.
  </Card>
</Columns>

<Tip title="Save workflow">
  Powersheet tracks all pending changes locally until you explicitly save. Use the **review mode** to inspect added, modified, and deleted rows before committing changes to the server. The save operation is atomic -- either all changes succeed or none are persisted.
</Tip>

## Related Guides

* [Configure Constraints](/powersheet/guides/data-model/configure-constraints) -- control where new work items can be created
* [Configure a Relationship](/powersheet/guides/data-model/configure-relationship) -- define link roles for entity linking
* [Resolve Validation Errors](/powersheet/guides/troubleshooting/resolve-validation-errors) -- troubleshoot persistent save failures

<LastReviewed date="2026-07-02" />
