@theredspace/spp-client
    Preparing search index...

    Interface ScheduleRequest_item

    A ScheduleRequest_item represents a request for a resource's time on a schedule or project. These are sub-records of a ScheduleRequest.

    Supports: Add, Read, Modify, Delete

    interface ScheduleRequest_item {
    categoryid ?: string ;
    created : string ;
    customerid ?: string ;
    end_date : string ;
    externalid ?: string ;
    hours ?: number ;
    id : string ;
    name ?: string ;
    percent ?: number ;
    project_taskid ?: string ;
    projectid ?: string ;
    request_reference_number ?: number ;
    requestid : string ;
    resourceid : string ;
    schedule_requestid ?: String ;
    start_date : string ;
    timetypeid ?: string ;
    type ?: string ;
    updated : string ;
    userid ?: string ;
    }
    Index

    Properties

    categoryid ?: string
    created : string
    customerid ?: string
    end_date : string
    externalid ?: string
    hours ?: number
    id : string
    name ?: string
    percent ?: number
    project_taskid ?: string
    projectid ?: string
    request_reference_number ?: number
    requestid : string
    resourceid : string
    schedule_requestid ?: String
    start_date : string
    timetypeid ?: string
    type ?: string
    updated : string
    userid ?: string

    Usage and Relationships

    The ScheduleRequest_item represents a detailed request for a resource's time allocation within a schedule or project. It is a sub-record of ScheduleRequest.

    Important: When deleting related records, ensure that child records are deleted before parent records. For example:

    1. Delete ScheduleException first.
    2. Delete ScheduleRequest_item second.
    3. Delete ScheduleRequest last.

    Related Types:

    Key Fields:

    • schedule_requestid: Links to the parent ScheduleRequest.
    • userid: Identifies the user associated with the request.