Gets a collection of earnings and revenue data by participant and plan

get

/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics

Request

Query Parameters
  • When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "". More than one child can be specified using comma as a separator. Example: ?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers).
  • This parameter filters the resource fields. Only the specified fields are returned, which means that if no fields are specified, no fields are returned (useful to get only the links). If an indirect child resource is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?fields=Employees.Managers:Empname" is the same as "?fields=;Employees:;Employees.Managers:Empname" (which will only return the "Empname" field for Managers). the value of this query parameter is a list of resource fields. The attribute can be a direct (Example: Employees) or indirect (Example: Employees.Managers) child. It cannot be combined with expand query parameter. If both are provided, only fields will be considered.

    Format: ?fields=Attribute1,Attribute2

    Format for fields in child resource: ?fields=Accessor1:Attribute1,Attribute2
  • Used as a predefined finder to search the collection.

    Format ?finder=<finderName>;<variableName>=<variableValue>,<variableName2>=<variableValue2>

    The following are the available finder names and corresponding finder variables

    • CompPlanIntNameFinder Finds the earnings and revenue by compensation plan identifier and interval type name for a plan.
      Finder Variables
      • bComp_Plan_Id; integer; The unique identifier of the compensation plan.
      • bEnd_Date; string; The end date until which you want the plan earnings and revenue data by participant.
      • bInterval_Type_Name; string; The name of the interval type.
      • bStart_Date; string; The start date from which you want the plan earnings and revenue data by participant.
    • CompensationPlanFinder Finds the earnings and revenue by compensation plan identifier and interval type identifier for a participant.
      Finder Variables
      • bComp_Plan_Id; integer; The unique identifier of the compensation plan.
      • bEnd_Date; string; The end date until which you want the plan earnings and revenue data by participant.
      • bInterval_Type_Id; integer; The unique identifier of the interval type.
      • bStart_Date; string; The start date from which you want the plan earnings and revenue data by participant.
    • ParticipantFinder Finds the earnings and revenue by participant identifier and interval type identifier for a plan.
      Finder Variables
      • bEnd_Date; string; The end date until which you want the plan earnings and revenue data by participant.
      • bInterval_Type_Id; integer; The unique identifier of the interval type.
      • bParticipant_Id; integer; The unique identifier of the participant.
      • bStart_Date; string; The start date from which you want the plan earnings and revenue data by participant.
    • PrimaryKey Finds the earnings and revenue by compensation plan and participant based on the primary key.
      Finder Variables
      • CompensationPlanId; integer; The unique identifier of the compensation plan.
      • ParticipantId; integer; The unique identifier of the participant.
  • This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
  • This parameter can be used to show only certain links while accessing a singular resource or a resource collection. The parameter value format is a comma-separated list of : <link_relation>

    Example:
    self,canonical
  • Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
  • The resource item payload will be filtered in order to contain only data (no links section, for example).
  • This parameter orders a resource collection based on the specified fields. The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and "asc" or "desc". Specify "asc" for ascending and "desc" for descending. The default value is "asc". For example, ?orderBy=field1:asc,field2:desc
  • This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;Loc!=NY

    Format: ?q=expression1;expression2

    You can use these queryable attributes to filter this collection resource using the q query parameter:
    • CompensationPlanId; integer; The unique identifier of the compensation plan.
    • CompensationPlanName; string; The name of the compensation plan.
    • ComponentDisplayName; string; The display name of the plan component associated with the earnings.
    • CurrencyCode; string; The functional currency code of the earnings.
    • EmailAddress; string; The email address of the participant.
    • IntervalEndDate; string; The end date of the interval.
    • IntervalNumber; string; The interval number for which the earnings or revenue is being displayed.
    • IntervalStartDate; string; The start date of the interval.
    • IntervalType; string; The name of the interval type.
    • IntervalTypeId; integer; The unique identifier of the interval type.
    • OrgId; integer; The unique identifier of the business unit.
    • ParticipantId; integer; The unique identifier of the participant.
    • ParticipantName; string; The name of the participant.
    • PartyId; integer; The party identifier of the participant.
    • PlanComponentId; integer; The unique identifier of the plan component.
    • PlanComponentName; string; The system name of the plan component associated with the earnings.
    • PlanDisplayName; string; The display name of the compensation plan.
    • TotalEarning; number; The total earnings amount.
    • TotalTransactionAmount; number; The total transaction amount or revenue calculated in that plan for the dates specified.
    • WorkerNumber; string; The worker number of the participant.
  • The resource collection representation will include the "estimated row count" when "?totalResults=true", otherwise the count is not included. The default value is "false".
Header Parameters
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Body ()
Root Schema : incentiveCompensationPlanStatistics
Type: object
Show Source
Nested Schema : Items
Type: array
Title: Items
The items in the collection.
Show Source
Nested Schema : incentiveCompensationPlanStatistics-item-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to get all earnings and revenue data by participant and plan by submitting a request on the REST resource using cURL.

cURL Command

curl -u <username:password> \ -X GET https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics \ -H 'Content-Type: application/json'

Example of Response Body

The following shows an example of the response body in JSON format.
{
    "items": [
        {
            "ParticipantId": 999666333000599,
            "CompensationPlanId": 100000015115267,
            "CompensationPlanName": "US Salesrep Commission Compensation Plan",
            "PlanDisplayName": "US Salesrep Commission Compensation Plan",
            "PlanComponentId": 100000015515786,
            "PlanComponentName": "Individual Commission Plan Component",
            "ComponentDisplayName": "Individual Commission Plan Component",
            "PartyId": 100010025532528,
            "ParticipantName": "Joseph   Kerr",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009004",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-04-01",
            "IntervalEndDate": "2009-04-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23970000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23970000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000599,
            "CompensationPlanId": 100000015115267,
            "CompensationPlanName": "US Salesrep Commission Compensation Plan",
            "PlanDisplayName": "US Salesrep Commission Compensation Plan",
            "PlanComponentId": 100000015515786,
            "PlanComponentName": "Individual Commission Plan Component",
            "ComponentDisplayName": "Individual Commission Plan Component",
            "PartyId": 100010025532528,
            "ParticipantName": "Joseph   Kerr",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Semi Annual",
            "IntervalTypeId": -1002,
            "IntervalNumber": "2009002",
            "TotalEarning": 1249.04976,
            "TotalTransactionAmount": 35687.136,
            "IntervalStartDate": "2009-07-01",
            "IntervalEndDate": "2009-12-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23970000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23970000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2002,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330833,
            "PlanComponentName": "CN PAYMENT PC - Per Event, Bonus",
            "ComponentDisplayName": "CN PAYMENT PC - Per Event, Bonus",
            "PartyId": 300100005347188,
            "ParticipantName": "IC_PARTY_VO_20111202141139",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Semi Annual",
            "IntervalTypeId": -1002,
            "IntervalNumber": "2016002",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2016-07-01",
            "IntervalEndDate": "2016-12-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2002,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330838,
            "PlanComponentName": "CN PAYMENT PC - Per Interval, Commission",
            "ComponentDisplayName": "CN PAYMENT PC - Per Interval, Commission",
            "PartyId": 300100005347188,
            "ParticipantName": "IC_PARTY_VO_20111202141139",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2015010",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2015-10-01",
            "IntervalEndDate": "2015-10-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2002,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330838,
            "PlanComponentName": "CN PAYMENT PC - Per Interval, Commission",
            "ComponentDisplayName": "CN PAYMENT PC - Per Interval, Commission",
            "PartyId": 300100005347188,
            "ParticipantName": "IC_PARTY_VO_20111202141139",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2016006",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2016-06-01",
            "IntervalEndDate": "2016-06-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2002,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330828,
            "PlanComponentName": "CN PAYMENT PC - Per event, Commission",
            "ComponentDisplayName": "CN PAYMENT PC - Per event, Commission",
            "PartyId": 300100005347188,
            "ParticipantName": "IC_PARTY_VO_20111202141139",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2015006",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2015-06-01",
            "IntervalEndDate": "2015-06-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2002,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330828,
            "PlanComponentName": "CN PAYMENT PC - Per event, Commission",
            "ComponentDisplayName": "CN PAYMENT PC - Per event, Commission",
            "PartyId": 300100005347188,
            "ParticipantName": "IC_PARTY_VO_20111202141139",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2015008",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2015-08-01",
            "IntervalEndDate": "2015-08-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2002,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330828,
            "PlanComponentName": "CN PAYMENT PC - Per event, Commission",
            "ComponentDisplayName": "CN PAYMENT PC - Per event, Commission",
            "PartyId": 300100005347188,
            "ParticipantName": "IC_PARTY_VO_20111202141139",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2016001",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2016-01-01",
            "IntervalEndDate": "2016-01-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2002,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330828,
            "PlanComponentName": "CN PAYMENT PC - Per event, Commission",
            "ComponentDisplayName": "CN PAYMENT PC - Per event, Commission",
            "PartyId": 300100005347188,
            "ParticipantName": "IC_PARTY_VO_20111202141139",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2016003",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2016-03-01",
            "IntervalEndDate": "2016-03-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2002,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330828,
            "PlanComponentName": "CN PAYMENT PC - Per event, Commission",
            "ComponentDisplayName": "CN PAYMENT PC - Per event, Commission",
            "PartyId": 300100005347188,
            "ParticipantName": "IC_PARTY_VO_20111202141139",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2016009",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2016-09-01",
            "IntervalEndDate": "2016-09-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D20000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000599,
            "CompensationPlanId": 100000015115267,
            "CompensationPlanName": "US Salesrep Commission Compensation Plan",
            "PlanDisplayName": "US Salesrep Commission Compensation Plan",
            "PlanComponentId": 100000015515786,
            "PlanComponentName": "Individual Commission Plan Component",
            "ComponentDisplayName": "Individual Commission Plan Component",
            "PartyId": 100010025532528,
            "ParticipantName": "Joseph   Kerr",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009007",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-07-01",
            "IntervalEndDate": "2009-07-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23970000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23970000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000599,
            "CompensationPlanId": 100000015115267,
            "CompensationPlanName": "US Salesrep Commission Compensation Plan",
            "PlanDisplayName": "US Salesrep Commission Compensation Plan",
            "PlanComponentId": 100000015515786,
            "PlanComponentName": "Individual Commission Plan Component",
            "ComponentDisplayName": "Individual Commission Plan Component",
            "PartyId": 100010025532528,
            "ParticipantName": "Joseph   Kerr",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009006",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-06-01",
            "IntervalEndDate": "2009-06-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23970000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23970000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 2003,
            "CompensationPlanId": 300100052330827,
            "CompensationPlanName": "CN PAYMENT COMPLAN",
            "PlanDisplayName": "CN PAYMENT COMPLAN",
            "PlanComponentId": 300100052330828,
            "PlanComponentName": "CN PAYMENT PC - Per event, Commission",
            "ComponentDisplayName": "CN PAYMENT PC - Per event, Commission",
            "PartyId": 300100005347195,
            "ParticipantName": "IC_PARTY_VO_20111202141952",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2016007",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2016-07-01",
            "IntervalEndDate": "2016-07-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D30000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800000000000007D30000000EACED00057708000110F07D04294B",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000592,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515394,
            "PlanComponentName": "US Manager Bonus Plan Component",
            "ComponentDisplayName": "US Manager Bonus Plan Component",
            "PartyId": 100010025532486,
            "ParticipantName": "Joshua   Adams",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Quarter",
            "IntervalTypeId": -1001,
            "IntervalNumber": "2009004",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-10-01",
            "IntervalEndDate": "2009-12-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23900000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23900000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000592,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515610,
            "PlanComponentName": "US Manager Commission Plan Component",
            "ComponentDisplayName": "US Manager Commission Plan Component",
            "PartyId": 100010025532486,
            "ParticipantName": "Joshua   Adams",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Semi Annual",
            "IntervalTypeId": -1002,
            "IntervalNumber": "2009002",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-07-01",
            "IntervalEndDate": "2009-12-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23900000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23900000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000592,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515610,
            "PlanComponentName": "US Manager Commission Plan Component",
            "ComponentDisplayName": "US Manager Commission Plan Component",
            "PartyId": 100010025532486,
            "ParticipantName": "Joshua   Adams",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009006",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-06-01",
            "IntervalEndDate": "2009-06-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23900000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23900000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000592,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515394,
            "PlanComponentName": "US Manager Bonus Plan Component",
            "ComponentDisplayName": "US Manager Bonus Plan Component",
            "PartyId": 100010025532486,
            "ParticipantName": "Joshua   Adams",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009007",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-07-01",
            "IntervalEndDate": "2009-07-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23900000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23900000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000608,
            "CompensationPlanId": 100000015115267,
            "CompensationPlanName": "US Salesrep Commission Compensation Plan",
            "PlanDisplayName": "US Salesrep Commission Compensation Plan",
            "PlanComponentId": 100000015515786,
            "PlanComponentName": "Individual Commission Plan Component",
            "ComponentDisplayName": "Individual Commission Plan Component",
            "PartyId": 100010025532582,
            "ParticipantName": "Haley   Hall",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Year",
            "IntervalTypeId": -1003,
            "IntervalNumber": "2009001",
            "TotalEarning": 1740.60018,
            "TotalTransactionAmount": 121780.296,
            "IntervalStartDate": "2009-01-01",
            "IntervalEndDate": "2009-12-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23A00000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23A00000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000608,
            "CompensationPlanId": 100000015115267,
            "CompensationPlanName": "US Salesrep Commission Compensation Plan",
            "PlanDisplayName": "US Salesrep Commission Compensation Plan",
            "PlanComponentId": 100000015515786,
            "PlanComponentName": "Individual Commission Plan Component",
            "ComponentDisplayName": "Individual Commission Plan Component",
            "PartyId": 100010025532582,
            "ParticipantName": "Haley   Hall",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009004",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-04-01",
            "IntervalEndDate": "2009-04-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23A00000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23A00000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000608,
            "CompensationPlanId": 100000015115267,
            "CompensationPlanName": "US Salesrep Commission Compensation Plan",
            "PlanDisplayName": "US Salesrep Commission Compensation Plan",
            "PlanComponentId": 100000015515786,
            "PlanComponentName": "Individual Commission Plan Component",
            "ComponentDisplayName": "Individual Commission Plan Component",
            "PartyId": 100010025532582,
            "ParticipantName": "Haley   Hall",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009010",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-10-01",
            "IntervalEndDate": "2009-10-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23A00000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC23A00000000EACED0005770800005AF31160E403",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000586,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515394,
            "PlanComponentName": "US Manager Bonus Plan Component",
            "ComponentDisplayName": "US Manager Bonus Plan Component",
            "PartyId": 100010025531964,
            "ParticipantName": "Allison   Flores",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009007",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-07-01",
            "IntervalEndDate": "2009-07-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000586,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515610,
            "PlanComponentName": "US Manager Commission Plan Component",
            "ComponentDisplayName": "US Manager Commission Plan Component",
            "PartyId": 100010025531964,
            "ParticipantName": "Allison   Flores",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Quarter",
            "IntervalTypeId": -1001,
            "IntervalNumber": "2009003",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-07-01",
            "IntervalEndDate": "2009-09-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000586,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515610,
            "PlanComponentName": "US Manager Commission Plan Component",
            "ComponentDisplayName": "US Manager Commission Plan Component",
            "PartyId": 100010025531964,
            "ParticipantName": "Allison   Flores",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009012",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-12-01",
            "IntervalEndDate": "2009-12-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000586,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515394,
            "PlanComponentName": "US Manager Bonus Plan Component",
            "ComponentDisplayName": "US Manager Bonus Plan Component",
            "PartyId": 100010025531964,
            "ParticipantName": "Allison   Flores",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009004",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-04-01",
            "IntervalEndDate": "2009-04-30",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        },
        {
            "ParticipantId": 999666333000586,
            "CompensationPlanId": 100000015115289,
            "CompensationPlanName": "US Manager Compensation Plan",
            "PlanDisplayName": "US Manager Compensation Plan",
            "PlanComponentId": 100000015515394,
            "PlanComponentName": "US Manager Bonus Plan Component",
            "ComponentDisplayName": "US Manager Bonus Plan Component",
            "PartyId": 100010025531964,
            "ParticipantName": "Allison   Flores",
            "EmailAddress": "sendmail-test-discard@oracle.com",
            "WorkerNumber": null,
            "OrgId": 204,
            "CurrencyCode": "USD",
            "IntervalType": "Period",
            "IntervalTypeId": -1000,
            "IntervalNumber": "2009010",
            "TotalEarning": 0,
            "TotalTransactionAmount": 0,
            "IntervalStartDate": "2009-10-01",
            "IntervalEndDate": "2009-10-31",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics/00020000000EACED0005770800038D30F4AC238A0000000EACED0005770800005AF31160E419",
                    "name": "incentiveCompensationPlanStatistics",
                    "kind": "item"
                }
            ]
        }
    ],
    "count": 25,
    "hasMore": true,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/incentiveCompensationPlanStatistics",
            "name": "incentiveCompensationPlanStatistics",
            "kind": "collection"
        }
    ]
}
Back to Top