Overview
This web service splits one or more time cards. A split time card adjustment divides a time card into two separate cards.
...
Panel | ||
---|---|---|
| ||
|
...
Element | Data Type | Required? | Default | Description | Sample Data | ||||
---|---|---|---|---|---|---|---|---|---|
RequestId | Int32 | No | Click here for more information | 1 | |||||
SessionTicket | String | Yes | Click here for more information | AWuKIeUvHQC5lNzuzE3Ugg== | |||||
AdjustmentCodeIdentity | PwsAdjustmentCodeRef | No | This structure represents the unique key fields associated with identifying an adjustment code. | ||||||
Explanation | String (1024) | No | An explanation as to why this adjustment was applied. | Time Card Split | |||||
SplitOrders | PwsTimeSplitOrder | Yes | This structure contains the unique key fields associated with a location. | TimeCardIdentities | PwsVersionedTimeCardRef | Yes | This 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 | ||||||
---|---|---|---|---|---|---|
| ||||||
<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 | ||
---|---|---|
| ||
|
...