Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview


This web service splits one or more time cards. A split time card adjustment divides a time card into two separate cards. 

...

Panel
titlePwsSplitTimeCards Request

...

Yes

Element

Data Type

Required?

Default

Description

Sample Data

RequestIdInt32No
Click here for more information
1
SessionTicket

String

Yes
Click here for more information
AWuKIeUvHQC5lNzuzE3Ugg==
AdjustmentCodeIdentityPwsAdjustmentCodeRefNo
This structure represents the unique key fields associated with identifying an adjustment code. 
ExplanationSttring String (1024)No
An explanation as to why this adjustment was applied.
Time Card Split
SplitOrdersPwsTimeSplitOrderYes
This structure contains the unique key fields associated with a location.TimeCardIdentitiesPwsVersionedTimeCardRefThis structure represents the unique key fields associated with identifying a Time Card. Time Cards can be identified with a TimeCardUid. 

Request Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://projectorpsa.com/PwsProjectorServices/" xmlns:req="http://projectorpsa.com/DataContracts/Requests/" xmlns:tim="http://projectorpsa.com/DataContracts/Shared/TimeAndCost/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/">
   <soapenv:Header/>
   <soapenv:Body>
      <pws:PwsSplitTimeCards>
         <pws:serviceRequest>
            <req:RequestId>1</req:RequestId>
            <req:SessionTicket>AWuKIeUvHQC5lNzuzE3Ugg==</req:SessionTicket>
            <!--tim:AdjustmentCodeIdentity>
               <com:AdjustmentCodeUid>1152921504606858479</com:AdjustmentCodeUid>
            </tim:AdjustmentCodeIdentity-->
            <tim:Explanation>Time Card Split</tim:Explanation>
            <tim:SplitOrders>
               <tim:PwsTimeSplitOrder>
                  <tim:SplitPercent>.35</tim:SplitPercent>
                  <tim:TimeCardIdentity>
                     <com:TimecardType>T</com:TimecardType>
                     <com:TimecardUid>1152921504652486584</com:TimecardUid>
                  </tim:TimeCardIdentity>
               </tim:PwsTimeSplitOrder>
            </tim:SplitOrders>
         </pws:serviceRequest>
      </pws:PwsSplitTimeCards>
   </soapenv:Body>
</soapenv:Envelope>	

...

Panel
titlePwsSplitTimeCards Response

...

Code Block
languagexml
titleExample 01
collapsetrue
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <PwsSplitTimeCardsResponse xmlns="http://projectorpsa.com/PwsProjectorServices/">
         <PwsSplitTimeCardsResult xmlns:a="http://projectorpsa.com/DataContracts/Shared/TimeAndCost/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <Messages xmlns="http://projectorpsa.com/CommonServices/" xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"/>           </Messages>
            <ResponseId xmlns="http://projectorpsa.com/CommonServices/">1</ResponseId>
            <Status xmlns="http://projectorpsa.com/CommonServices/">Ok</Status>
            <ServerTimestampUtc xmlns="http://projectorpsa.com/CommonServices/">2019-11-07T20:07:08.3533516Z</ServerTimestampUtc>
            <a:TimeCardSplits>
               <a:PwsTimeCardSplit>
                  <a:OriginalTimeCardIdentity xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/">
                     <b:ReferenceId i:nil="true"/>
                     <b:TimecardId>45639608</b:TimecardId>
                     <b:TimecardType>T</b:TimecardType>
                     <b:TimecardUid>1152921504652486584</b:TimecardUid>
                  </a:OriginalTimeCardIdentity>
                  <a:SplitTimeCardIdentity xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/">
                     <b:ReferenceId i:nil="true"/>
                     <b:TimecardId>45639615</b:TimecardId>
                     <b:TimecardType>T</b:TimecardType>
                     <b:TimecardUid>1152921504652486591</b:TimecardUid>
                  </a:SplitTimeCardIdentity>
               </a:PwsTimeCardSplit>
            </a:TimeCardSplits>
         </PwsSplitTimeCardsResult>
      </PwsSplitTimeCardsResponse>
   </s:Body>
</s:Envelope>

...