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

# Change Orders: cost impact and schedule impact

> Why schedule impact can sit at TBD, and how a change order relates to the T&M tickets and RFIs behind it.

export const Video = ({id, title, runtime, url}) => {
  const meta = VIDEOS[id] || ({});
  const label = title || meta.title || "Tutorial video";
  const length = runtime || meta.runtime || "";
  const track = meta.track || "";
  const src = toEmbedUrl(url || meta.url);
  const frame = {
    position: "relative",
    width: "100%",
    paddingTop: "56.25%",
    borderRadius: "10px",
    overflow: "hidden",
    background: "rgba(127,127,127,0.09)",
    border: src ? "1px solid rgba(127,127,127,0.24)" : "1px dashed rgba(127,127,127,0.42)"
  };
  const fill = {
    position: "absolute",
    inset: 0,
    width: "100%",
    height: "100%",
    border: 0
  };
  const center = {
    position: "absolute",
    inset: 0,
    display: "flex",
    flexDirection: "column",
    alignItems: "center",
    justifyContent: "center",
    gap: "10px",
    padding: "24px",
    textAlign: "center"
  };
  const idBadge = {
    fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
    fontSize: "12px",
    letterSpacing: "0.06em",
    padding: "2px 8px",
    borderRadius: "4px",
    background: "rgba(184,82,40,0.14)",
    color: "#B85228",
    fontWeight: 600
  };
  const caption = {
    display: "flex",
    flexWrap: "wrap",
    alignItems: "center",
    gap: "8px",
    marginTop: "8px",
    fontSize: "13px",
    opacity: 0.66,
    fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace"
  };
  return <div style={{
    margin: "0 0 28px"
  }}>
      <div style={frame}>
        {src ? <iframe style={fill} src={src} title={label} frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" allowFullScreen /> : <div style={center}>
            <svg width="44" height="44" viewBox="0 0 44 44" fill="none" aria-hidden="true">
              <circle cx="22" cy="22" r="20" stroke="currentColor" strokeOpacity="0.28" strokeWidth="2" />
              <path d="M18 15.5L29 22L18 28.5V15.5Z" fill="currentColor" fillOpacity="0.32" />
            </svg>
            <div style={{
    fontWeight: 600,
    fontSize: "15px",
    maxWidth: "36ch",
    lineHeight: 1.35
  }}>{label}</div>
            <div style={{
    fontSize: "13px",
    opacity: 0.6
  }}>
              Video coming soon{length ? " · " + length : ""}
            </div>
          </div>}
      </div>
      <div style={caption}>
        {id ? <span style={idBadge}>{id}</span> : null}
        {length ? <span>{length}</span> : null}
        {track ? <span>{track} track</span> : null}
      </div>
    </div>;
};

<Video id="50.7" />

<Note>
  **The short version.** A change order is a proposed change to the contract — money, time, or both. It's the end of a trail that usually starts with an RFI and a stack of T\&M tickets.
</Note>

## Two impacts, tracked separately

<CardGroup cols={2}>
  <Card title="Cost impact" icon="dollar-sign">
    What the change costs. Built up from labor, material and equipment — the same things on your T\&M tickets.
  </Card>

  <Card title="Schedule impact" icon="calendar-days">
    How many days it adds. Often genuinely unknown when you write the change order.
  </Card>
</CardGroup>

## Why schedule impact sits at TBD

Because it honestly often is. You know the extra work costs \$14,000 on the day you price it; whether it costs you eight days depends on weather, on the crew you can get, and on three other trades.

<Warning>
  **TBD is a placeholder, not a waiver.** Leaving schedule impact at TBD keeps the claim open — but only if you come back and fill it in. Get a habit: review every TBD change order weekly and put a number on it as soon as you have one.
</Warning>

## The paper trail behind it

A defensible change order points at the documents that created it:

<Steps>
  <Step title="The RFI that revealed the change">
    The answer that changed the work. → [Answering an RFI](/approvals/answer-an-rfi)
  </Step>

  <Step title="The T&M tickets for the work already done">
    Signed on site, the day it happened. → [T\&M tickets](/tm-tickets/create-a-ticket)
  </Step>

  <Step title="The drawing revision, if there is one">
    Which sheet superseded which, and on what date. → [Revisions](/drawings/revisions)
  </Step>
</Steps>

<Tip>
  The change order is where you get paid. The RFI, the ticket and the revision are what make it stick. Do those three well and the change order writes itself.
</Tip>

## Next

<CardGroup cols={2}>
  <Card title="T&M tickets" icon="ticket" href="/tm-tickets/create-a-ticket">
    The six-step ticket.
  </Card>

  <Card title="Cost Code vs. PCO" icon="barcode" href="/tm-tickets/cost-code-vs-pco">
    Which number does accounting need?
  </Card>
</CardGroup>
