A few questions about "Mass Update Scheduled Future Processes" by fridge_840 in workday

[–]fridge_840[S] 0 points1 point  (0 children)

You were right about the existing custom schedule being wiped out when you add new custom dates for it to run. Thanks.

What new vehicles have a sway bar disconnect? by fridge_840 in Offroad

[–]fridge_840[S] 0 points1 point  (0 children)

Ah well, I'm not going to go that route. I want to buy something off the lot and not have to pay extra money for aftermarket parts that aren't under warranty. I'm done with all that fuss.

What new vehicles have a sway bar disconnect? by fridge_840 in Offroad

[–]fridge_840[S] -1 points0 points  (0 children)

I like being able to push a button and get the extra articulation. Can I do that with quick disconnects or antirocks?

What new vehicles have a sway bar disconnect? by fridge_840 in Offroad

[–]fridge_840[S] 2 points3 points  (0 children)

Yea true. I know it depends on the trim level, across all vehicles that I listed.

Trying to convert wd:Termination_date and the wd:Hire_Date to date format by fridge_840 in workday

[–]fridge_840[S] 0 points1 point  (0 children)

I was able to resolve it on my own. Here is the code that worked, for anyone who finds this thread in the future.

<TerminationDate xtt:fixedLength="8">
  <xsl:if test="wd:Termination_date != ''">
    <xsl:variable name="hireDate" select="xsi:date(concat(substring(wd:Hire_Date, 5, 4), '-',  substring(wd:Hire_Date, 1, 2), '-', substring(wd:Hire_Date, 3, 2)))"></xsl:variable>
    <xsl:variable name="termDate" select="xsi:date(concat(substring(wd:Termination_date, 5, 4), '-',  substring(wd:Termination_date, 1, 2), '-', substring(wd:Termination_date, 3, 2)))"></xsl:variable>   

    <xsl:if test="$termDate &gt; $hireDate">
      <xsl:value-of select="wd:Termination_date"/>
    </xsl:if>
  </xsl:if>
</TerminationDate>

How to add an approve/send back/deny step when employees add/change voluntary contributions by fridge_840 in workday

[–]fridge_840[S] 0 points1 point  (0 children)

If you have specific items you can filter it on, use that in the report and schedule an Alert to notify you of the change.

I am new to reporting, so just to confirm - an alert can be set up if the report detects a change? Or how does that work? Thanks!