netsuite-soap 2025.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.envrc +9 -0
- data/.github/FUNDING.yml +1 -0
- data/.github/dependabot.yml +14 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/main.yml +55 -0
- data/.github/workflows/publish.yml +53 -0
- data/.gitignore +23 -0
- data/.rspec +6 -0
- data/.ruby-version +1 -0
- data/.tool-versions +1 -0
- data/AGENTS.md +150 -0
- data/CLAUDE.md +111 -0
- data/DEVELOPMENT.md +34 -0
- data/Gemfile +10 -0
- data/HISTORY.md +171 -0
- data/LICENSE +22 -0
- data/README.md +87 -0
- data/Rakefile +130 -0
- data/docs/async.md +46 -0
- data/docs/configuration.md +88 -0
- data/docs/contributing.md +36 -0
- data/docs/usage.md +149 -0
- data/lib/netsuite/actions/abstract_action.rb +32 -0
- data/lib/netsuite/actions/add.rb +93 -0
- data/lib/netsuite/actions/async_add_list.rb +74 -0
- data/lib/netsuite/actions/async_delete_list.rb +40 -0
- data/lib/netsuite/actions/async_get_list.rb +46 -0
- data/lib/netsuite/actions/async_initialize_list.rb +85 -0
- data/lib/netsuite/actions/async_response.rb +52 -0
- data/lib/netsuite/actions/async_search.rb +36 -0
- data/lib/netsuite/actions/async_update_list.rb +53 -0
- data/lib/netsuite/actions/async_upsert_list.rb +53 -0
- data/lib/netsuite/actions/attach_file.rb +87 -0
- data/lib/netsuite/actions/check_async_status.rb +29 -0
- data/lib/netsuite/actions/delete.rb +102 -0
- data/lib/netsuite/actions/delete_list.rb +108 -0
- data/lib/netsuite/actions/get.rb +87 -0
- data/lib/netsuite/actions/get_all.rb +78 -0
- data/lib/netsuite/actions/get_async_result.rb +35 -0
- data/lib/netsuite/actions/get_deleted.rb +92 -0
- data/lib/netsuite/actions/get_list.rb +98 -0
- data/lib/netsuite/actions/get_select_value.rb +80 -0
- data/lib/netsuite/actions/initialize.rb +86 -0
- data/lib/netsuite/actions/search.rb +265 -0
- data/lib/netsuite/actions/update.rb +86 -0
- data/lib/netsuite/actions/update_list.rb +113 -0
- data/lib/netsuite/actions/upsert.rb +86 -0
- data/lib/netsuite/actions/upsert_list.rb +118 -0
- data/lib/netsuite/client.rb +19 -0
- data/lib/netsuite/configuration.rb +470 -0
- data/lib/netsuite/errors.rb +18 -0
- data/lib/netsuite/namespaces/act_sched.rb +11 -0
- data/lib/netsuite/namespaces/comm_general.rb +11 -0
- data/lib/netsuite/namespaces/file_cabinet.rb +11 -0
- data/lib/netsuite/namespaces/list_acct.rb +11 -0
- data/lib/netsuite/namespaces/list_emp.rb +12 -0
- data/lib/netsuite/namespaces/list_mkt.rb +12 -0
- data/lib/netsuite/namespaces/list_rel.rb +11 -0
- data/lib/netsuite/namespaces/list_support.rb +11 -0
- data/lib/netsuite/namespaces/list_website.rb +11 -0
- data/lib/netsuite/namespaces/platform_common.rb +11 -0
- data/lib/netsuite/namespaces/platform_core.rb +11 -0
- data/lib/netsuite/namespaces/setup_custom.rb +11 -0
- data/lib/netsuite/namespaces/tran_bank.rb +11 -0
- data/lib/netsuite/namespaces/tran_cust.rb +11 -0
- data/lib/netsuite/namespaces/tran_emp.rb +11 -0
- data/lib/netsuite/namespaces/tran_general.rb +11 -0
- data/lib/netsuite/namespaces/tran_invt.rb +11 -0
- data/lib/netsuite/namespaces/tran_purch.rb +11 -0
- data/lib/netsuite/namespaces/tran_sales.rb +11 -0
- data/lib/netsuite/passports/token.rb +55 -0
- data/lib/netsuite/passports/user.rb +25 -0
- data/lib/netsuite/records/account.rb +30 -0
- data/lib/netsuite/records/accounting_period.rb +25 -0
- data/lib/netsuite/records/address.rb +46 -0
- data/lib/netsuite/records/assembly_build.rb +39 -0
- data/lib/netsuite/records/assembly_component.rb +26 -0
- data/lib/netsuite/records/assembly_component_list.rb +12 -0
- data/lib/netsuite/records/assembly_item.rb +66 -0
- data/lib/netsuite/records/assembly_unbuild.rb +37 -0
- data/lib/netsuite/records/base_ref_list.rb +17 -0
- data/lib/netsuite/records/bill_address.rb +17 -0
- data/lib/netsuite/records/billing_schedule.rb +33 -0
- data/lib/netsuite/records/billing_schedule_milestone.rb +28 -0
- data/lib/netsuite/records/billing_schedule_milestone_list.rb +14 -0
- data/lib/netsuite/records/billing_schedule_recurrence.rb +28 -0
- data/lib/netsuite/records/billing_schedule_recurrence_list.rb +14 -0
- data/lib/netsuite/records/bin.rb +30 -0
- data/lib/netsuite/records/bin_number.rb +18 -0
- data/lib/netsuite/records/bin_number_list.rb +11 -0
- data/lib/netsuite/records/bin_transfer.rb +38 -0
- data/lib/netsuite/records/bin_transfer_inventory.rb +20 -0
- data/lib/netsuite/records/bin_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/campaign.rb +28 -0
- data/lib/netsuite/records/cash_refund.rb +135 -0
- data/lib/netsuite/records/cash_refund_item.rb +32 -0
- data/lib/netsuite/records/cash_refund_item_list.rb +13 -0
- data/lib/netsuite/records/cash_sale.rb +51 -0
- data/lib/netsuite/records/cash_sale_item.rb +40 -0
- data/lib/netsuite/records/cash_sale_item_list.rb +13 -0
- data/lib/netsuite/records/classification.rb +30 -0
- data/lib/netsuite/records/contact.rb +44 -0
- data/lib/netsuite/records/contact_access_roles.rb +23 -0
- data/lib/netsuite/records/contact_access_roles_list.rb +9 -0
- data/lib/netsuite/records/contact_addressbook.rb +64 -0
- data/lib/netsuite/records/contact_addressbook_list.rb +11 -0
- data/lib/netsuite/records/contact_list.rb +49 -0
- data/lib/netsuite/records/contact_role.rb +23 -0
- data/lib/netsuite/records/cost_category.rb +28 -0
- data/lib/netsuite/records/credit_memo.rb +59 -0
- data/lib/netsuite/records/credit_memo_apply.rb +16 -0
- data/lib/netsuite/records/credit_memo_apply_list.rb +15 -0
- data/lib/netsuite/records/credit_memo_item.rb +34 -0
- data/lib/netsuite/records/credit_memo_item_list.rb +11 -0
- data/lib/netsuite/records/currency.rb +30 -0
- data/lib/netsuite/records/currency_rate.rb +34 -0
- data/lib/netsuite/records/custom_field.rb +23 -0
- data/lib/netsuite/records/custom_field_list.rb +186 -0
- data/lib/netsuite/records/custom_list.rb +27 -0
- data/lib/netsuite/records/custom_list_custom_value.rb +22 -0
- data/lib/netsuite/records/custom_list_custom_value_list.rb +13 -0
- data/lib/netsuite/records/custom_record.rb +56 -0
- data/lib/netsuite/records/custom_record_ref.rb +50 -0
- data/lib/netsuite/records/custom_record_type.rb +30 -0
- data/lib/netsuite/records/customer.rb +265 -0
- data/lib/netsuite/records/customer_addressbook.rb +64 -0
- data/lib/netsuite/records/customer_addressbook_list.rb +11 -0
- data/lib/netsuite/records/customer_category.rb +26 -0
- data/lib/netsuite/records/customer_credit_cards.rb +36 -0
- data/lib/netsuite/records/customer_credit_cards_list.rb +10 -0
- data/lib/netsuite/records/customer_currency.rb +28 -0
- data/lib/netsuite/records/customer_currency_list.rb +9 -0
- data/lib/netsuite/records/customer_deposit.rb +47 -0
- data/lib/netsuite/records/customer_deposit_apply.rb +17 -0
- data/lib/netsuite/records/customer_deposit_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_partner.rb +24 -0
- data/lib/netsuite/records/customer_partners_list.rb +9 -0
- data/lib/netsuite/records/customer_payment.rb +56 -0
- data/lib/netsuite/records/customer_payment_apply.rb +17 -0
- data/lib/netsuite/records/customer_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_payment_credit.rb +17 -0
- data/lib/netsuite/records/customer_payment_credit_list.rb +12 -0
- data/lib/netsuite/records/customer_refund.rb +52 -0
- data/lib/netsuite/records/customer_refund_apply.rb +16 -0
- data/lib/netsuite/records/customer_refund_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_refund_deposit.rb +16 -0
- data/lib/netsuite/records/customer_refund_deposit_list.rb +11 -0
- data/lib/netsuite/records/customer_sales_team.rb +24 -0
- data/lib/netsuite/records/customer_sales_team_list.rb +9 -0
- data/lib/netsuite/records/customer_status.rb +29 -0
- data/lib/netsuite/records/department.rb +27 -0
- data/lib/netsuite/records/deposit.rb +40 -0
- data/lib/netsuite/records/deposit_application.rb +64 -0
- data/lib/netsuite/records/deposit_cash_back.rb +42 -0
- data/lib/netsuite/records/deposit_cash_back_list.rb +9 -0
- data/lib/netsuite/records/deposit_other.rb +35 -0
- data/lib/netsuite/records/deposit_other_list.rb +9 -0
- data/lib/netsuite/records/deposit_payment.rb +48 -0
- data/lib/netsuite/records/deposit_payment_list.rb +14 -0
- data/lib/netsuite/records/description_item.rb +34 -0
- data/lib/netsuite/records/discount_item.rb +37 -0
- data/lib/netsuite/records/duration.rb +15 -0
- data/lib/netsuite/records/employee.rb +42 -0
- data/lib/netsuite/records/entity_custom_field.rb +53 -0
- data/lib/netsuite/records/estimate.rb +122 -0
- data/lib/netsuite/records/estimate_item.rb +47 -0
- data/lib/netsuite/records/estimate_item_list.rb +11 -0
- data/lib/netsuite/records/file.rb +31 -0
- data/lib/netsuite/records/folder.rb +26 -0
- data/lib/netsuite/records/gift_cert_redemption.rb +22 -0
- data/lib/netsuite/records/gift_cert_redemption_list.rb +11 -0
- data/lib/netsuite/records/gift_certificate.rb +30 -0
- data/lib/netsuite/records/gift_certificate_item.rb +84 -0
- data/lib/netsuite/records/inbound_shipment.rb +32 -0
- data/lib/netsuite/records/inbound_shipment_item.rb +39 -0
- data/lib/netsuite/records/inbound_shipment_item_list.rb +11 -0
- data/lib/netsuite/records/inter_company_journal_entry.rb +48 -0
- data/lib/netsuite/records/inter_company_journal_entry_line.rb +28 -0
- data/lib/netsuite/records/inter_company_journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/inventory_adjustment.rb +30 -0
- data/lib/netsuite/records/inventory_adjustment_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_adjustment_inventory_list.rb +10 -0
- data/lib/netsuite/records/inventory_assignment.rb +24 -0
- data/lib/netsuite/records/inventory_assignment_list.rb +35 -0
- data/lib/netsuite/records/inventory_detail.rb +18 -0
- data/lib/netsuite/records/inventory_item.rb +341 -0
- data/lib/netsuite/records/inventory_number.rb +34 -0
- data/lib/netsuite/records/inventory_number_locations.rb +16 -0
- data/lib/netsuite/records/inventory_number_locations_list.rb +10 -0
- data/lib/netsuite/records/inventory_transfer.rb +30 -0
- data/lib/netsuite/records/inventory_transfer_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/invoice.rb +167 -0
- data/lib/netsuite/records/invoice_item.rb +46 -0
- data/lib/netsuite/records/invoice_item_list.rb +15 -0
- data/lib/netsuite/records/item_availability.rb +45 -0
- data/lib/netsuite/records/item_fulfillment.rb +62 -0
- data/lib/netsuite/records/item_fulfillment_item.rb +45 -0
- data/lib/netsuite/records/item_fulfillment_item_list.rb +14 -0
- data/lib/netsuite/records/item_fulfillment_package.rb +24 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex.rb +28 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_list.rb +37 -0
- data/lib/netsuite/records/item_fulfillment_package_ups.rb +27 -0
- data/lib/netsuite/records/item_fulfillment_package_ups_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_usps.rb +26 -0
- data/lib/netsuite/records/item_fulfillment_package_usps_list.rb +32 -0
- data/lib/netsuite/records/item_group.rb +37 -0
- data/lib/netsuite/records/item_member.rb +26 -0
- data/lib/netsuite/records/item_member_list.rb +12 -0
- data/lib/netsuite/records/item_option_custom_field.rb +52 -0
- data/lib/netsuite/records/item_receipt.rb +46 -0
- data/lib/netsuite/records/item_receipt_item.rb +43 -0
- data/lib/netsuite/records/item_receipt_item_list.rb +11 -0
- data/lib/netsuite/records/item_vendor.rb +24 -0
- data/lib/netsuite/records/item_vendor_list.rb +11 -0
- data/lib/netsuite/records/job.rb +41 -0
- data/lib/netsuite/records/job_status.rb +25 -0
- data/lib/netsuite/records/journal_entry.rb +48 -0
- data/lib/netsuite/records/journal_entry_line.rb +27 -0
- data/lib/netsuite/records/journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/kit_item.rb +71 -0
- data/lib/netsuite/records/location.rb +40 -0
- data/lib/netsuite/records/locations_list.rb +15 -0
- data/lib/netsuite/records/lot_numbered_assembly_item.rb +64 -0
- data/lib/netsuite/records/lot_numbered_inventory_item.rb +260 -0
- data/lib/netsuite/records/matrix_option_list.rb +71 -0
- data/lib/netsuite/records/member_list.rb +10 -0
- data/lib/netsuite/records/message.rb +30 -0
- data/lib/netsuite/records/non_inventory_purchase_item.rb +52 -0
- data/lib/netsuite/records/non_inventory_resale_item.rb +189 -0
- data/lib/netsuite/records/non_inventory_sale_item.rb +165 -0
- data/lib/netsuite/records/note.rb +33 -0
- data/lib/netsuite/records/note_type.rb +27 -0
- data/lib/netsuite/records/null_field_list.rb +15 -0
- data/lib/netsuite/records/opportunity.rb +45 -0
- data/lib/netsuite/records/opportunity_item.rb +41 -0
- data/lib/netsuite/records/opportunity_item_list.rb +9 -0
- data/lib/netsuite/records/other_charge_sale_item.rb +73 -0
- data/lib/netsuite/records/partner.rb +35 -0
- data/lib/netsuite/records/payment_item.rb +36 -0
- data/lib/netsuite/records/payment_method.rb +28 -0
- data/lib/netsuite/records/payroll_item.rb +36 -0
- data/lib/netsuite/records/phone_call.rb +29 -0
- data/lib/netsuite/records/price.rb +17 -0
- data/lib/netsuite/records/price_level.rb +26 -0
- data/lib/netsuite/records/price_list.rb +9 -0
- data/lib/netsuite/records/pricing.rb +20 -0
- data/lib/netsuite/records/pricing_matrix.rb +11 -0
- data/lib/netsuite/records/promotion_code.rb +38 -0
- data/lib/netsuite/records/promotions.rb +26 -0
- data/lib/netsuite/records/promotions_list.rb +9 -0
- data/lib/netsuite/records/purchase_order.rb +52 -0
- data/lib/netsuite/records/purchase_order_item.rb +42 -0
- data/lib/netsuite/records/purchase_order_item_list.rb +11 -0
- data/lib/netsuite/records/record_ref.rb +38 -0
- data/lib/netsuite/records/record_ref_list.rb +22 -0
- data/lib/netsuite/records/return_authorization.rb +135 -0
- data/lib/netsuite/records/return_authorization_item.rb +43 -0
- data/lib/netsuite/records/return_authorization_item_list.rb +11 -0
- data/lib/netsuite/records/rev_rec_schedule.rb +32 -0
- data/lib/netsuite/records/rev_rec_template.rb +25 -0
- data/lib/netsuite/records/role_list.rb +24 -0
- data/lib/netsuite/records/roles.rb +17 -0
- data/lib/netsuite/records/sales_order.rb +61 -0
- data/lib/netsuite/records/sales_order_item.rb +49 -0
- data/lib/netsuite/records/sales_order_item_list.rb +11 -0
- data/lib/netsuite/records/sales_order_ship_group_list.rb +11 -0
- data/lib/netsuite/records/sales_role.rb +26 -0
- data/lib/netsuite/records/sales_tax_item.rb +34 -0
- data/lib/netsuite/records/serialized_assembly_item.rb +240 -0
- data/lib/netsuite/records/serialized_inventory_item.rb +248 -0
- data/lib/netsuite/records/serialized_inventory_item_location.rb +36 -0
- data/lib/netsuite/records/serialized_inventory_item_locations_list.rb +10 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers.rb +15 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers_list.rb +10 -0
- data/lib/netsuite/records/service_resale_item.rb +154 -0
- data/lib/netsuite/records/service_sale_item.rb +50 -0
- data/lib/netsuite/records/ship_address.rb +17 -0
- data/lib/netsuite/records/site_category.rb +33 -0
- data/lib/netsuite/records/subscription.rb +18 -0
- data/lib/netsuite/records/subscriptions_list.rb +10 -0
- data/lib/netsuite/records/subsidiary.rb +38 -0
- data/lib/netsuite/records/subtotal_item.rb +34 -0
- data/lib/netsuite/records/support_case.rb +32 -0
- data/lib/netsuite/records/support_case_type.rb +26 -0
- data/lib/netsuite/records/task.rb +31 -0
- data/lib/netsuite/records/tax_group.rb +35 -0
- data/lib/netsuite/records/tax_type.rb +22 -0
- data/lib/netsuite/records/term.rb +27 -0
- data/lib/netsuite/records/time_bill.rb +32 -0
- data/lib/netsuite/records/transaction_body_custom_field.rb +61 -0
- data/lib/netsuite/records/transaction_column_custom_field.rb +59 -0
- data/lib/netsuite/records/transaction_ship_group.rb +40 -0
- data/lib/netsuite/records/transfer_order.rb +45 -0
- data/lib/netsuite/records/transfer_order_item.rb +43 -0
- data/lib/netsuite/records/transfer_order_item_list.rb +11 -0
- data/lib/netsuite/records/translation.rb +17 -0
- data/lib/netsuite/records/translation_list.rb +11 -0
- data/lib/netsuite/records/units_type.rb +25 -0
- data/lib/netsuite/records/units_type_uom.rb +20 -0
- data/lib/netsuite/records/units_type_uom_list.rb +12 -0
- data/lib/netsuite/records/vendor.rb +46 -0
- data/lib/netsuite/records/vendor_bill.rb +53 -0
- data/lib/netsuite/records/vendor_bill_expense.rb +40 -0
- data/lib/netsuite/records/vendor_bill_expense_list.rb +13 -0
- data/lib/netsuite/records/vendor_bill_item.rb +46 -0
- data/lib/netsuite/records/vendor_bill_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_category.rb +26 -0
- data/lib/netsuite/records/vendor_credit.rb +54 -0
- data/lib/netsuite/records/vendor_credit_apply.rb +18 -0
- data/lib/netsuite/records/vendor_credit_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_expense.rb +31 -0
- data/lib/netsuite/records/vendor_credit_expense_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_item.rb +34 -0
- data/lib/netsuite/records/vendor_credit_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_currency.rb +26 -0
- data/lib/netsuite/records/vendor_currency_list.rb +9 -0
- data/lib/netsuite/records/vendor_payment.rb +52 -0
- data/lib/netsuite/records/vendor_payment_apply.rb +16 -0
- data/lib/netsuite/records/vendor_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_return_authorization.rb +30 -0
- data/lib/netsuite/records/vendor_return_authorization_item.rb +23 -0
- data/lib/netsuite/records/vendor_return_authorization_item_list.rb +12 -0
- data/lib/netsuite/records/work_order.rb +45 -0
- data/lib/netsuite/records/work_order_item.rb +30 -0
- data/lib/netsuite/records/work_order_item_list.rb +11 -0
- data/lib/netsuite/response.rb +20 -0
- data/lib/netsuite/rest/utilities/request.rb +62 -0
- data/lib/netsuite/rest/utilities/roles.rb +47 -0
- data/lib/netsuite/support/actions.rb +74 -0
- data/lib/netsuite/support/attributes.rb +22 -0
- data/lib/netsuite/support/country.rb +289 -0
- data/lib/netsuite/support/fields.rb +86 -0
- data/lib/netsuite/support/record_refs.rb +30 -0
- data/lib/netsuite/support/records.rb +89 -0
- data/lib/netsuite/support/requests.rb +56 -0
- data/lib/netsuite/support/search_result.rb +150 -0
- data/lib/netsuite/support/sublist.rb +71 -0
- data/lib/netsuite/utilities/data_center.rb +53 -0
- data/lib/netsuite/utilities/strings.rb +15 -0
- data/lib/netsuite/utilities.rb +324 -0
- data/lib/netsuite/version.rb +3 -0
- data/lib/netsuite.rb +348 -0
- data/netsuite.gemspec +30 -0
- data/spec/integration/soap_http_spec.rb +76 -0
- data/spec/netsuite/actions/add_spec.rb +155 -0
- data/spec/netsuite/actions/async_add_list_spec.rb +123 -0
- data/spec/netsuite/actions/async_delete_list_spec.rb +60 -0
- data/spec/netsuite/actions/async_get_list_spec.rb +78 -0
- data/spec/netsuite/actions/async_initialize_list_spec.rb +106 -0
- data/spec/netsuite/actions/async_lifecycle_spec.rb +51 -0
- data/spec/netsuite/actions/async_response_spec.rb +187 -0
- data/spec/netsuite/actions/async_search_spec.rb +27 -0
- data/spec/netsuite/actions/async_update_list_spec.rb +80 -0
- data/spec/netsuite/actions/async_upsert_list_spec.rb +157 -0
- data/spec/netsuite/actions/attach_file_spec.rb +59 -0
- data/spec/netsuite/actions/check_async_status_spec.rb +29 -0
- data/spec/netsuite/actions/delete_list_spec.rb +86 -0
- data/spec/netsuite/actions/delete_spec.rb +93 -0
- data/spec/netsuite/actions/get_all_spec.rb +100 -0
- data/spec/netsuite/actions/get_async_result_spec.rb +78 -0
- data/spec/netsuite/actions/get_deleted_spec.rb +60 -0
- data/spec/netsuite/actions/get_list_spec.rb +157 -0
- data/spec/netsuite/actions/get_select_value_spec.rb +43 -0
- data/spec/netsuite/actions/get_spec.rb +72 -0
- data/spec/netsuite/actions/initialize_spec.rb +34 -0
- data/spec/netsuite/actions/search_spec.rb +387 -0
- data/spec/netsuite/actions/update_list_spec.rb +107 -0
- data/spec/netsuite/actions/update_spec.rb +133 -0
- data/spec/netsuite/actions/upsert_list_spec.rb +112 -0
- data/spec/netsuite/actions/upsert_spec.rb +117 -0
- data/spec/netsuite/configuration_spec.rb +661 -0
- data/spec/netsuite/records/account_spec.rb +107 -0
- data/spec/netsuite/records/accounting_period_spec.rb +138 -0
- data/spec/netsuite/records/address_spec.rb +139 -0
- data/spec/netsuite/records/assembly_item_spec.rb +64 -0
- data/spec/netsuite/records/basic_record_spec.rb +128 -0
- data/spec/netsuite/records/bill_address_spec.rb +52 -0
- data/spec/netsuite/records/billing_schedule_milestone_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_milestone_spec.rb +51 -0
- data/spec/netsuite/records/billing_schedule_recurrence_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_recurrence_spec.rb +49 -0
- data/spec/netsuite/records/billing_schedule_spec.rb +164 -0
- data/spec/netsuite/records/bin_number_spec.rb +23 -0
- data/spec/netsuite/records/campaign_spec.rb +43 -0
- data/spec/netsuite/records/cash_refund_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_item_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_spec.rb +152 -0
- data/spec/netsuite/records/cash_sale_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_sale_item_spec.rb +23 -0
- data/spec/netsuite/records/cash_sale_spec.rb +34 -0
- data/spec/netsuite/records/classification_spec.rb +77 -0
- data/spec/netsuite/records/cost_category_spec.rb +105 -0
- data/spec/netsuite/records/credit_memo_apply_list_spec.rb +27 -0
- data/spec/netsuite/records/credit_memo_apply_spec.rb +14 -0
- data/spec/netsuite/records/credit_memo_item_list_spec.rb +26 -0
- data/spec/netsuite/records/credit_memo_item_spec.rb +29 -0
- data/spec/netsuite/records/credit_memo_spec.rb +213 -0
- data/spec/netsuite/records/currency_rate_spec.rb +45 -0
- data/spec/netsuite/records/custom_field_list_spec.rb +276 -0
- data/spec/netsuite/records/custom_list_spec.rb +21 -0
- data/spec/netsuite/records/custom_record_spec.rb +125 -0
- data/spec/netsuite/records/custom_record_type_spec.rb +114 -0
- data/spec/netsuite/records/customer_addressbook_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_addressbook_spec.rb +105 -0
- data/spec/netsuite/records/customer_credit_cards_list_spec.rb +23 -0
- data/spec/netsuite/records/customer_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_payment_credit_list_spec.rb +26 -0
- data/spec/netsuite/records/customer_payment_spec.rb +168 -0
- data/spec/netsuite/records/customer_refund_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_apply_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_deposit_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_deposit_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_spec.rb +205 -0
- data/spec/netsuite/records/customer_sales_team_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_spec.rb +561 -0
- data/spec/netsuite/records/department_spec.rb +103 -0
- data/spec/netsuite/records/deposit_spec.rb +165 -0
- data/spec/netsuite/records/discount_item_spec.rb +125 -0
- data/spec/netsuite/records/duration_spec.rb +14 -0
- data/spec/netsuite/records/employee_spec.rb +148 -0
- data/spec/netsuite/records/entity_custom_field_spec.rb +34 -0
- data/spec/netsuite/records/estimate_item_list_spec.rb +26 -0
- data/spec/netsuite/records/estimate_item_spec.rb +35 -0
- data/spec/netsuite/records/estimate_spec.rb +274 -0
- data/spec/netsuite/records/file_spec.rb +11 -0
- data/spec/netsuite/records/folder_spec.rb +33 -0
- data/spec/netsuite/records/gift_cert_redemption_list_spec.rb +26 -0
- data/spec/netsuite/records/gift_cert_redemption_spec.rb +21 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_spec.rb +60 -0
- data/spec/netsuite/records/inter_company_journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/inventory_assignment_list_spec.rb +59 -0
- data/spec/netsuite/records/inventory_assignment_spec.rb +21 -0
- data/spec/netsuite/records/inventory_detail_spec.rb +13 -0
- data/spec/netsuite/records/inventory_item_spec.rb +532 -0
- data/spec/netsuite/records/inventory_transfer_spec.rb +79 -0
- data/spec/netsuite/records/invoice_item_list_spec.rb +24 -0
- data/spec/netsuite/records/invoice_item_spec.rb +79 -0
- data/spec/netsuite/records/invoice_spec.rb +494 -0
- data/spec/netsuite/records/item_availability_spec.rb +59 -0
- data/spec/netsuite/records/item_fulfillment_package_fed_ex_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_ups_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_usps_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_spec.rb +49 -0
- data/spec/netsuite/records/item_group_spec.rb +117 -0
- data/spec/netsuite/records/item_member_list_spec.rb +26 -0
- data/spec/netsuite/records/item_option_custom_field_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_list_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_spec.rb +27 -0
- data/spec/netsuite/records/job_spec.rb +201 -0
- data/spec/netsuite/records/journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/journal_entry_line_spec.rb +59 -0
- data/spec/netsuite/records/journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/kit_item_spec.rb +117 -0
- data/spec/netsuite/records/location_spec.rb +51 -0
- data/spec/netsuite/records/lot_numbered_inventory_item_spec.rb +247 -0
- data/spec/netsuite/records/matrix_option_list_spec.rb +61 -0
- data/spec/netsuite/records/message_spec.rb +49 -0
- data/spec/netsuite/records/non_inventory_resale_item_spec.rb +300 -0
- data/spec/netsuite/records/non_inventory_sale_item_spec.rb +278 -0
- data/spec/netsuite/records/note_spec.rb +134 -0
- data/spec/netsuite/records/note_type_spec.rb +88 -0
- data/spec/netsuite/records/null_field_list_spec.rb +30 -0
- data/spec/netsuite/records/partner_spec.rb +143 -0
- data/spec/netsuite/records/payment_item_spec.rb +117 -0
- data/spec/netsuite/records/payment_method_spec.rb +49 -0
- data/spec/netsuite/records/phone_call_spec.rb +17 -0
- data/spec/netsuite/records/pomo_code_spec.rb +40 -0
- data/spec/netsuite/records/price_level_spec.rb +16 -0
- data/spec/netsuite/records/pricing_matrix_spec.rb +27 -0
- data/spec/netsuite/records/record_ref_spec.rb +87 -0
- data/spec/netsuite/records/return_authorization_item_list_spec.rb +26 -0
- data/spec/netsuite/records/return_authorization_item_spec.rb +31 -0
- data/spec/netsuite/records/return_authorization_spec.rb +62 -0
- data/spec/netsuite/records/rev_rec_template_spec.rb +39 -0
- data/spec/netsuite/records/sales_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/sales_order_item_spec.rb +36 -0
- data/spec/netsuite/records/sales_order_spec.rb +250 -0
- data/spec/netsuite/records/sales_tax_item_spec.rb +26 -0
- data/spec/netsuite/records/service_resale_item_spec.rb +239 -0
- data/spec/netsuite/records/service_sale_item_spec.rb +135 -0
- data/spec/netsuite/records/ship_address_spec.rb +36 -0
- data/spec/netsuite/records/site_category_spec.rb +51 -0
- data/spec/netsuite/records/subscription_spec.rb +37 -0
- data/spec/netsuite/records/subscriptions_list_spec.rb +19 -0
- data/spec/netsuite/records/subsidiary_spec.rb +25 -0
- data/spec/netsuite/records/support_case_spec.rb +157 -0
- data/spec/netsuite/records/support_case_type_spec.rb +22 -0
- data/spec/netsuite/records/tax_type_spec.rb +11 -0
- data/spec/netsuite/records/term_spec.rb +96 -0
- data/spec/netsuite/records/transaction_body_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/transaction_column_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/translation_list_spec.rb +34 -0
- data/spec/netsuite/records/translation_spec.rb +28 -0
- data/spec/netsuite/records/units_type_spec.rb +33 -0
- data/spec/netsuite/records/units_type_uom_list_spec.rb +23 -0
- data/spec/netsuite/records/units_type_uom_spec.rb +14 -0
- data/spec/netsuite/records/vendor_bill_expense_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_expense_spec.rb +72 -0
- data/spec/netsuite/records/vendor_bill_item_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_item_spec.rb +118 -0
- data/spec/netsuite/records/vendor_bill_spec.rb +187 -0
- data/spec/netsuite/records/vendor_credit_spec.rb +29 -0
- data/spec/netsuite/records/vendor_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/vendor_payment_apply_spec.rb +15 -0
- data/spec/netsuite/records/vendor_payment_spec.rb +164 -0
- data/spec/netsuite/records/vendor_spec.rb +145 -0
- data/spec/netsuite/records/work_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/work_order_item_spec.rb +45 -0
- data/spec/netsuite/records/work_order_spec.rb +92 -0
- data/spec/netsuite/response_spec.rb +34 -0
- data/spec/netsuite/support/fields_spec.rb +107 -0
- data/spec/netsuite/support/record_refs_spec.rb +14 -0
- data/spec/netsuite/support/records_spec.rb +60 -0
- data/spec/netsuite/support/refresh_spec.rb +28 -0
- data/spec/netsuite/support/requests_spec.rb +38 -0
- data/spec/netsuite/support/search_result_spec.rb +53 -0
- data/spec/netsuite/support/sublist_spec.rb +42 -0
- data/spec/netsuite/utilities/data_center_spec.rb +110 -0
- data/spec/netsuite/utilities/request_spec.rb +29 -0
- data/spec/netsuite/utilities/roles_spec.rb +145 -0
- data/spec/netsuite/utilities_spec.rb +140 -0
- data/spec/netsuite_spec.rb +41 -0
- data/spec/spec_helper.rb +50 -0
- data/spec/support/configuration.rb +23 -0
- data/spec/support/field_matcher.rb +21 -0
- data/spec/support/fixtures/add/add_customer.xml +16 -0
- data/spec/support/fixtures/add/add_file.xml +20 -0
- data/spec/support/fixtures/add/add_invoice.xml +20 -0
- data/spec/support/fixtures/add/add_invoice_error.xml +19 -0
- data/spec/support/fixtures/add/add_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/async_add_list/async_add_list_pending.xml +18 -0
- data/spec/support/fixtures/async_delete_list/async_delete_list_pending.xml +18 -0
- data/spec/support/fixtures/async_get_list/async_get_list_pending.xml +18 -0
- data/spec/support/fixtures/async_initialize_list/async_initialize_list_pending.xml +18 -0
- data/spec/support/fixtures/async_search/async_search_pending.xml +18 -0
- data/spec/support/fixtures/async_update_list/async_update_list_pending.xml +18 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_customers.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_one_customer.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_with_errors.xml +21 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order.xml +16 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order_error.xml +20 -0
- data/spec/support/fixtures/check_async_status/check_async_status_pending.xml +18 -0
- data/spec/support/fixtures/custom_fields/multi_select.xml +47 -0
- data/spec/support/fixtures/delete/delete_customer.xml +16 -0
- data/spec/support/fixtures/delete/delete_customer_error.xml +21 -0
- data/spec/support/fixtures/delete/delete_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/delete_list/delete_list_customers.xml +26 -0
- data/spec/support/fixtures/delete_list/delete_list_customers_with_errors.xml +31 -0
- data/spec/support/fixtures/get/get_customer.xml +61 -0
- data/spec/support/fixtures/get/get_invoice.xml +101 -0
- data/spec/support/fixtures/get_all/get_all_currencies.xml +24 -0
- data/spec/support/fixtures/get_all/get_all_error.xml +15 -0
- data/spec/support/fixtures/get_async_result/get_async_result_finished.xml +22 -0
- data/spec/support/fixtures/get_async_result/get_async_result_upsert_list_finished.xml +26 -0
- data/spec/support/fixtures/get_async_result/get_async_result_write_list_multiple.xml +34 -0
- data/spec/support/fixtures/get_deleted/get_deleted_invoices.xml +38 -0
- data/spec/support/fixtures/get_item_availability/get_item_availability.xml +46 -0
- data/spec/support/fixtures/get_list/get_list_customer_error.xml +22 -0
- data/spec/support/fixtures/get_list/get_list_customers.xml +21 -0
- data/spec/support/fixtures/get_list/get_list_customers_multiple.xml +28 -0
- data/spec/support/fixtures/get_select_value/empty_result.xml +22 -0
- data/spec/support/fixtures/get_select_value/item_fulfillment_ship_method.xml +43 -0
- data/spec/support/fixtures/initialize/initialize_invoice_from_customer.xml +69 -0
- data/spec/support/fixtures/login/failure_concurrent_requests.xml +15 -0
- data/spec/support/fixtures/login/failure_invalid_credentials.xml +15 -0
- data/spec/support/fixtures/login/success.xml +35 -0
- data/spec/support/fixtures/search/basic_search_contact.xml +39 -0
- data/spec/support/fixtures/search/saved_search_customer.xml +54 -0
- data/spec/support/fixtures/search/saved_search_item.xml +55 -0
- data/spec/support/fixtures/search/saved_search_joined_custom_customer.xml +101 -0
- data/spec/support/fixtures/search/single_search_result.xml +46 -0
- data/spec/support/fixtures/soap/v2025_2_0/wsdl/netsuite.wsdl +2531 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/scheduling.xsd +603 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/schedulingTypes.xsd +198 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinet.xsd +159 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinetTypes.xsd +110 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communication.xsd +210 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communicationTypes.xsd +20 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accounting.xsd +6768 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accountingTypes.xsd +1043 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employeeTypes.xsd +344 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employees.xsd +518 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketing.xsd +528 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketingTypes.xsd +145 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationshipTypes.xsd +190 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationships.xsd +1658 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChain.xsd +282 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChainTypes.xsd +26 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/support.xsd +534 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supportTypes.xsd +74 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/website.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/websiteTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/common.xsd +8411 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/commonTypes.xsd +1371 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/core.xsd +1096 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/coreTypes.xsd +877 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faultTypes.xsd +1446 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faults.xsd +82 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/messages.xsd +664 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customization.xsd +1604 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customizationTypes.xsd +119 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bank.xsd +212 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bankTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customerTypes.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customers.xsd +1131 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanning.xsd +173 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanningTypes.xsd +52 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employeeTypes.xsd +10 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employees.xsd +723 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financial.xsd +88 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financialTypes.xsd +9 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/general.xsd +364 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventory.xsd +780 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventoryTypes.xsd +49 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchaseTypes.xsd +44 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchases.xsd +986 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/saleTypes.xsd +754 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/sales.xsd +2025 -0
- data/spec/support/fixtures/update/update_customer.xml +16 -0
- data/spec/support/fixtures/update/update_customer_error.xml +21 -0
- data/spec/support/fixtures/update/update_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/update/update_invoice.xml +16 -0
- data/spec/support/fixtures/update_list/update_list_items.xml +22 -0
- data/spec/support/fixtures/update_list/update_list_one_item.xml +18 -0
- data/spec/support/fixtures/update_list/update_list_with_errors.xml +32 -0
- data/spec/support/fixtures/upsert/upsert_customer.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice_error.xml +20 -0
- data/spec/support/fixtures/upsert/upsert_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/upsert_list/upsert_list_customers.xml +21 -0
- data/spec/support/fixtures/upsert_list/upsert_list_one_customer.xml +17 -0
- data/spec/support/fixtures/upsert_list/upsert_list_with_errors.xml +32 -0
- data/spec/support/read_only_field_matcher.rb +7 -0
- data/spec/support/record_ref_matcher.rb +25 -0
- data/spec/support/savon.rb +5 -0
- data/spec/support/search_only_field_matcher.rb +7 -0
- data/spec/support/webmock_soap_helper.rb +15 -0
- data/workflow.md +368 -0
- metadata +764 -0
|
@@ -0,0 +1,1096 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:platformCore="urn:core_2025_2.platform.webservices.netsuite.com" xmlns:platformCoreTyp="urn:types.core_2025_2.platform.webservices.netsuite.com" xmlns:platformFaultTyp="urn:types.faults_2025_2.platform.webservices.netsuite.com" targetNamespace="urn:core_2025_2.platform.webservices.netsuite.com" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
|
3
|
+
<import namespace="urn:types.core_2025_2.platform.webservices.netsuite.com" schemaLocation="../../../xsd/platform.coreTypes.xsd"/>
|
|
4
|
+
<import namespace="urn:types.faults_2025_2.platform.webservices.netsuite.com" schemaLocation="../../../xsd/platform.faultTypes.xsd"/>
|
|
5
|
+
<!-- TBA Credentials -->
|
|
6
|
+
<complexType name="TokenPassportSignature">
|
|
7
|
+
<simpleContent>
|
|
8
|
+
<extension base="xsd:string">
|
|
9
|
+
<attribute name="algorithm" type="xsd:string" use="required"/>
|
|
10
|
+
</extension>
|
|
11
|
+
</simpleContent>
|
|
12
|
+
</complexType>
|
|
13
|
+
<complexType name="TokenPassport">
|
|
14
|
+
<sequence>
|
|
15
|
+
<element name="account" type="xsd:string"/>
|
|
16
|
+
<element name="consumerKey" type="xsd:string"/>
|
|
17
|
+
<element name="token" type="xsd:string"/>
|
|
18
|
+
<element name="nonce" type="xsd:string"/>
|
|
19
|
+
<element name="timestamp" type="xsd:long"/>
|
|
20
|
+
<element name="signature" type="platformCore:TokenPassportSignature"/>
|
|
21
|
+
</sequence>
|
|
22
|
+
</complexType>
|
|
23
|
+
<!-- TBA Credentials end -->
|
|
24
|
+
<complexType name="ChangePassword">
|
|
25
|
+
<sequence>
|
|
26
|
+
<element name="currentPassword" type="xsd:string"/>
|
|
27
|
+
<element name="newPassword" type="xsd:string" minOccurs="0"/>
|
|
28
|
+
<element name="newPassword2" type="xsd:string" minOccurs="0"/>
|
|
29
|
+
</sequence>
|
|
30
|
+
</complexType>
|
|
31
|
+
<complexType name="ChangeEmail">
|
|
32
|
+
<sequence>
|
|
33
|
+
<element name="currentPassword" type="xsd:string"/>
|
|
34
|
+
<element name="newEmail" type="xsd:string"/>
|
|
35
|
+
<element name="newEmail2" type="xsd:string"/>
|
|
36
|
+
<element name="justThisAccount" type="xsd:boolean" minOccurs="0"/>
|
|
37
|
+
</sequence>
|
|
38
|
+
</complexType>
|
|
39
|
+
<!-- Status -->
|
|
40
|
+
<complexType name="StatusDetail">
|
|
41
|
+
<sequence>
|
|
42
|
+
<element name="code" type="platformFaultTyp:StatusDetailCodeType" minOccurs="0"/>
|
|
43
|
+
<element name="message" type="xsd:string" minOccurs="0"/>
|
|
44
|
+
<element name="afterSubmitFailed" type="xsd:boolean" minOccurs="0"/>
|
|
45
|
+
</sequence>
|
|
46
|
+
<attribute name="type" type="platformFaultTyp:StatusDetailType" default="ERROR"/>
|
|
47
|
+
</complexType>
|
|
48
|
+
<complexType name="Status">
|
|
49
|
+
<sequence>
|
|
50
|
+
<element name="statusDetail" type="platformCore:StatusDetail" minOccurs="0" maxOccurs="unbounded"/>
|
|
51
|
+
</sequence>
|
|
52
|
+
<attribute name="isSuccess" type="xsd:boolean"/>
|
|
53
|
+
</complexType>
|
|
54
|
+
<element name="status" type="platformCore:Status"/>
|
|
55
|
+
<complexType name="WsRole">
|
|
56
|
+
<sequence>
|
|
57
|
+
<element name="role" type="platformCore:RecordRef" minOccurs="0"/>
|
|
58
|
+
<element name="isDefault" type="xsd:boolean" minOccurs="0"/>
|
|
59
|
+
<element name="isInactive" type="xsd:boolean" minOccurs="0"/>
|
|
60
|
+
<element name="isLoggedInRole" type="xsd:boolean" minOccurs="0"/>
|
|
61
|
+
</sequence>
|
|
62
|
+
</complexType>
|
|
63
|
+
<complexType name="WsRoleList">
|
|
64
|
+
<sequence>
|
|
65
|
+
<element name="wsRole" type="platformCore:WsRole" minOccurs="0" maxOccurs="unbounded"/>
|
|
66
|
+
</sequence>
|
|
67
|
+
</complexType>
|
|
68
|
+
<element name="wsRoleList" type="platformCore:WsRoleList"/>
|
|
69
|
+
<!-- Record -->
|
|
70
|
+
<complexType name="Record" abstract="true">
|
|
71
|
+
<sequence>
|
|
72
|
+
<element name="nullFieldList" type="platformCore:NullField" minOccurs="0" maxOccurs="1"/>
|
|
73
|
+
</sequence>
|
|
74
|
+
</complexType>
|
|
75
|
+
<element name="record" type="platformCore:Record"/>
|
|
76
|
+
<complexType name="NullField">
|
|
77
|
+
<sequence>
|
|
78
|
+
<element name="name" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
|
79
|
+
</sequence>
|
|
80
|
+
</complexType>
|
|
81
|
+
<complexType name="SearchRecord" abstract="true"/>
|
|
82
|
+
<element name="searchRecord" type="platformCore:SearchRecord"/>
|
|
83
|
+
<complexType name="SearchRecordBasic" abstract="true">
|
|
84
|
+
<complexContent>
|
|
85
|
+
<extension base="platformCore:SearchRecord"/>
|
|
86
|
+
</complexContent>
|
|
87
|
+
</complexType>
|
|
88
|
+
<element name="searchRecordBasic" type="platformCore:SearchRecordBasic"/>
|
|
89
|
+
<complexType name="SearchRow" abstract="true"/>
|
|
90
|
+
<complexType name="SearchRowBasic" abstract="true">
|
|
91
|
+
<complexContent>
|
|
92
|
+
<extension base="platformCore:SearchRow"/>
|
|
93
|
+
</complexContent>
|
|
94
|
+
</complexType>
|
|
95
|
+
<element name="searchRowBasic" type="platformCore:SearchRowBasic"/>
|
|
96
|
+
<complexType name="SearchResult">
|
|
97
|
+
<sequence>
|
|
98
|
+
<element ref="platformCore:status"/>
|
|
99
|
+
<element name="totalRecords" type="xsd:int" minOccurs="0"/>
|
|
100
|
+
<element name="pageSize" type="xsd:int" minOccurs="0"/>
|
|
101
|
+
<element name="totalPages" type="xsd:int" minOccurs="0"/>
|
|
102
|
+
<element name="pageIndex" type="xsd:int" minOccurs="0"/>
|
|
103
|
+
<element name="searchId" type="xsd:string" minOccurs="0"/>
|
|
104
|
+
<element ref="platformCore:recordList" minOccurs="0"/>
|
|
105
|
+
<element ref="platformCore:searchRowList" minOccurs="0"/>
|
|
106
|
+
</sequence>
|
|
107
|
+
</complexType>
|
|
108
|
+
<element name="searchResult" type="platformCore:SearchResult"/>
|
|
109
|
+
<complexType name="AsyncStatusResult">
|
|
110
|
+
<sequence>
|
|
111
|
+
<element name="jobId" type="xsd:string"/>
|
|
112
|
+
<element name="status" type="platformCoreTyp:AsyncStatusType"/>
|
|
113
|
+
<element name="percentCompleted" type="xsd:double"/>
|
|
114
|
+
<element name="estRemainingDuration" type="xsd:double"/>
|
|
115
|
+
</sequence>
|
|
116
|
+
</complexType>
|
|
117
|
+
<element name="asyncStatusResult" type="platformCore:AsyncStatusResult"/>
|
|
118
|
+
<complexType name="GetAllResult">
|
|
119
|
+
<sequence>
|
|
120
|
+
<element ref="platformCore:status"/>
|
|
121
|
+
<element name="totalRecords" type="xsd:int" minOccurs="0"/>
|
|
122
|
+
<element ref="platformCore:recordList" minOccurs="0"/>
|
|
123
|
+
</sequence>
|
|
124
|
+
</complexType>
|
|
125
|
+
<element name="getAllResult" type="platformCore:GetAllResult"/>
|
|
126
|
+
<complexType name="GetSavedSearchResult">
|
|
127
|
+
<sequence>
|
|
128
|
+
<element ref="platformCore:status"/>
|
|
129
|
+
<element name="totalRecords" type="xsd:int" minOccurs="0"/>
|
|
130
|
+
<element ref="platformCore:recordRefList" minOccurs="0"/>
|
|
131
|
+
</sequence>
|
|
132
|
+
</complexType>
|
|
133
|
+
<element name="getSavedSearchResult" type="platformCore:GetSavedSearchResult"/>
|
|
134
|
+
<complexType name="GetCustomizationIdResult">
|
|
135
|
+
<sequence>
|
|
136
|
+
<element ref="platformCore:status"/>
|
|
137
|
+
<element name="totalRecords" type="xsd:int" minOccurs="0"/>
|
|
138
|
+
<element ref="platformCore:customizationRefList" minOccurs="0"/>
|
|
139
|
+
</sequence>
|
|
140
|
+
</complexType>
|
|
141
|
+
<element name="getCustomizationIdResult" type="platformCore:GetCustomizationIdResult"/>
|
|
142
|
+
<complexType name="GetSelectValueResult">
|
|
143
|
+
<sequence>
|
|
144
|
+
<element ref="platformCore:status"/>
|
|
145
|
+
<element name="totalRecords" type="xsd:int" minOccurs="0"/>
|
|
146
|
+
<element name="totalPages" type="xsd:int" minOccurs="0"/>
|
|
147
|
+
<element ref="platformCore:baseRefList" minOccurs="0"/>
|
|
148
|
+
</sequence>
|
|
149
|
+
</complexType>
|
|
150
|
+
<element name="getSelectValueResult" type="platformCore:GetSelectValueResult"/>
|
|
151
|
+
<complexType name="RecordList">
|
|
152
|
+
<sequence>
|
|
153
|
+
<element name="record" type="platformCore:Record" minOccurs="0" maxOccurs="unbounded"/>
|
|
154
|
+
<!-- record name -->
|
|
155
|
+
</sequence>
|
|
156
|
+
</complexType>
|
|
157
|
+
<element name="recordList" type="platformCore:RecordList"/>
|
|
158
|
+
<complexType name="SearchRowList">
|
|
159
|
+
<sequence>
|
|
160
|
+
<element name="searchRow" type="platformCore:SearchRow" minOccurs="0" maxOccurs="unbounded"/>
|
|
161
|
+
</sequence>
|
|
162
|
+
</complexType>
|
|
163
|
+
<element name="searchRowList" type="platformCore:SearchRowList"/>
|
|
164
|
+
<complexType name="RecordRefList">
|
|
165
|
+
<sequence>
|
|
166
|
+
<element name="recordRef" type="platformCore:RecordRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
167
|
+
<!-- record refs -->
|
|
168
|
+
</sequence>
|
|
169
|
+
</complexType>
|
|
170
|
+
<element name="recordRefList" type="platformCore:RecordRefList"/>
|
|
171
|
+
<complexType name="BaseRef" abstract="true">
|
|
172
|
+
<sequence>
|
|
173
|
+
<element name="name" type="xsd:string" minOccurs="0"/>
|
|
174
|
+
<!-- record name -->
|
|
175
|
+
</sequence>
|
|
176
|
+
</complexType>
|
|
177
|
+
<element name="baseRef" type="platformCore:BaseRef"/>
|
|
178
|
+
<complexType name="BaseRefList">
|
|
179
|
+
<sequence>
|
|
180
|
+
<element name="baseRef" type="platformCore:BaseRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
181
|
+
<!-- record refs -->
|
|
182
|
+
</sequence>
|
|
183
|
+
</complexType>
|
|
184
|
+
<element name="baseRefList" type="platformCore:BaseRefList"/>
|
|
185
|
+
<complexType name="RecordRef">
|
|
186
|
+
<complexContent>
|
|
187
|
+
<extension base="platformCore:BaseRef">
|
|
188
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
189
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
190
|
+
<attribute name="type" type="platformCoreTyp:RecordType"/>
|
|
191
|
+
<!-- primary record internalId -->
|
|
192
|
+
<!-- record type -->
|
|
193
|
+
</extension>
|
|
194
|
+
</complexContent>
|
|
195
|
+
</complexType>
|
|
196
|
+
<complexType name="Duration">
|
|
197
|
+
<sequence>
|
|
198
|
+
<element name="timeSpan" type="xsd:double"/>
|
|
199
|
+
<element name="unit" type="platformCoreTyp:DurationUnit"/>
|
|
200
|
+
</sequence>
|
|
201
|
+
</complexType>
|
|
202
|
+
<complexType name="CustomRecordRef">
|
|
203
|
+
<complexContent>
|
|
204
|
+
<extension base="platformCore:BaseRef">
|
|
205
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
206
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
207
|
+
<attribute name="typeId" type="xsd:string"/>
|
|
208
|
+
<attribute name="scriptId" type="xsd:string"/>
|
|
209
|
+
<!-- primary record internalId -->
|
|
210
|
+
<!-- custom record type id -->
|
|
211
|
+
</extension>
|
|
212
|
+
</complexContent>
|
|
213
|
+
</complexType>
|
|
214
|
+
<complexType name="CustomTransactionRef">
|
|
215
|
+
<complexContent>
|
|
216
|
+
<extension base="platformCore:BaseRef">
|
|
217
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
218
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
219
|
+
<attribute name="typeId" type="xsd:string"/>
|
|
220
|
+
<attribute name="scriptId" type="xsd:string"/>
|
|
221
|
+
<!-- primary record internalId -->
|
|
222
|
+
<!-- custom record type id -->
|
|
223
|
+
</extension>
|
|
224
|
+
</complexContent>
|
|
225
|
+
</complexType>
|
|
226
|
+
<complexType name="CustomizationRef">
|
|
227
|
+
<complexContent>
|
|
228
|
+
<extension base="platformCore:RecordRef">
|
|
229
|
+
<attribute name="scriptId" type="xsd:string"/>
|
|
230
|
+
</extension>
|
|
231
|
+
</complexContent>
|
|
232
|
+
</complexType>
|
|
233
|
+
<complexType name="CustomizationRefList">
|
|
234
|
+
<sequence>
|
|
235
|
+
<element name="customizationRef" type="platformCore:CustomizationRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
236
|
+
</sequence>
|
|
237
|
+
</complexType>
|
|
238
|
+
<element name="customizationRefList" type="platformCore:CustomizationRefList"/>
|
|
239
|
+
<complexType name="InitializeRecord">
|
|
240
|
+
<sequence>
|
|
241
|
+
<element name="type" type="platformCoreTyp:InitializeType" minOccurs="1"/>
|
|
242
|
+
<element name="reference" type="platformCore:InitializeRef" minOccurs="0"/>
|
|
243
|
+
<element name="auxReference" type="platformCore:InitializeAuxRef" minOccurs="0"/>
|
|
244
|
+
<element name="referenceList" type="platformCore:InitializeRefList" minOccurs="0"/>
|
|
245
|
+
</sequence>
|
|
246
|
+
</complexType>
|
|
247
|
+
<complexType name="InitializeRef">
|
|
248
|
+
<complexContent>
|
|
249
|
+
<extension base="platformCore:BaseRef">
|
|
250
|
+
<attribute name="type" type="platformCoreTyp:InitializeRefType"/>
|
|
251
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
252
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
253
|
+
<!-- initialize reference record type -->
|
|
254
|
+
<!-- primary record internalId -->
|
|
255
|
+
<!-- primary record externalId -->
|
|
256
|
+
</extension>
|
|
257
|
+
</complexContent>
|
|
258
|
+
</complexType>
|
|
259
|
+
<complexType name="InitializeRefList">
|
|
260
|
+
<sequence>
|
|
261
|
+
<element name="initializeRef" type="platformCore:InitializeRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
262
|
+
</sequence>
|
|
263
|
+
</complexType>
|
|
264
|
+
<element name="initializeRefList" type="platformCore:InitializeRefList"/>
|
|
265
|
+
<complexType name="InitializeAuxRef">
|
|
266
|
+
<complexContent>
|
|
267
|
+
<extension base="platformCore:BaseRef">
|
|
268
|
+
<attribute name="type" type="platformCoreTyp:InitializeAuxRefType"/>
|
|
269
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
270
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
271
|
+
<attribute name="scriptId" type="xsd:string"/>
|
|
272
|
+
<!-- initialize reference record type -->
|
|
273
|
+
<!-- primary record internalId -->
|
|
274
|
+
<!-- primary record externalId -->
|
|
275
|
+
</extension>
|
|
276
|
+
</complexContent>
|
|
277
|
+
</complexType>
|
|
278
|
+
<complexType name="UpdateInviteeStatusReference">
|
|
279
|
+
<sequence>
|
|
280
|
+
<element name="eventId" type="platformCore:RecordRef" minOccurs="1"/>
|
|
281
|
+
<element name="responseCode" type="platformCoreTyp:CalendarEventAttendeeResponse" minOccurs="1"/>
|
|
282
|
+
</sequence>
|
|
283
|
+
</complexType>
|
|
284
|
+
<complexType name="GetAllRecord">
|
|
285
|
+
<sequence/>
|
|
286
|
+
<attribute name="recordType" type="platformCoreTyp:GetAllRecordType"/>
|
|
287
|
+
</complexType>
|
|
288
|
+
<complexType name="GetSavedSearchRecord">
|
|
289
|
+
<sequence/>
|
|
290
|
+
<attribute name="searchType" type="platformCoreTyp:SearchRecordType"/>
|
|
291
|
+
</complexType>
|
|
292
|
+
<complexType name="CustomizationType">
|
|
293
|
+
<sequence/>
|
|
294
|
+
<attribute name="getCustomizationType" type="platformCoreTyp:GetCustomizationType"/>
|
|
295
|
+
</complexType>
|
|
296
|
+
<!-- ******************************************************************** -->
|
|
297
|
+
<!-- Custom Fields -->
|
|
298
|
+
<!-- ******************************************************************** -->
|
|
299
|
+
<!-- ListOrRecordRef -->
|
|
300
|
+
<complexType name="ListOrRecordRef">
|
|
301
|
+
<sequence>
|
|
302
|
+
<element name="name" type="xsd:string" minOccurs="0"/>
|
|
303
|
+
<!-- record name -->
|
|
304
|
+
</sequence>
|
|
305
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
306
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
307
|
+
<attribute name="typeId" type="xsd:string"/>
|
|
308
|
+
</complexType>
|
|
309
|
+
<!-- CustomFieldRef -->
|
|
310
|
+
<complexType name="CustomFieldRef" abstract="true">
|
|
311
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
312
|
+
<attribute name="scriptId" type="xsd:string"/>
|
|
313
|
+
</complexType>
|
|
314
|
+
<!-- LongCustomFieldRef -->
|
|
315
|
+
<complexType name="LongCustomFieldRef">
|
|
316
|
+
<complexContent>
|
|
317
|
+
<extension base="platformCore:CustomFieldRef">
|
|
318
|
+
<sequence>
|
|
319
|
+
<element name="value" type="xsd:long"/>
|
|
320
|
+
</sequence>
|
|
321
|
+
</extension>
|
|
322
|
+
</complexContent>
|
|
323
|
+
</complexType>
|
|
324
|
+
<!-- DoubleCustomFieldRef -->
|
|
325
|
+
<complexType name="DoubleCustomFieldRef">
|
|
326
|
+
<complexContent>
|
|
327
|
+
<extension base="platformCore:CustomFieldRef">
|
|
328
|
+
<sequence>
|
|
329
|
+
<element name="value" type="xsd:double"/>
|
|
330
|
+
</sequence>
|
|
331
|
+
</extension>
|
|
332
|
+
</complexContent>
|
|
333
|
+
</complexType>
|
|
334
|
+
<!-- BooleanCustomFieldRef -->
|
|
335
|
+
<complexType name="BooleanCustomFieldRef">
|
|
336
|
+
<complexContent>
|
|
337
|
+
<extension base="platformCore:CustomFieldRef">
|
|
338
|
+
<sequence>
|
|
339
|
+
<element name="value" type="xsd:boolean"/>
|
|
340
|
+
</sequence>
|
|
341
|
+
</extension>
|
|
342
|
+
</complexContent>
|
|
343
|
+
</complexType>
|
|
344
|
+
<!-- StringCustomFieldRef -->
|
|
345
|
+
<complexType name="StringCustomFieldRef">
|
|
346
|
+
<complexContent>
|
|
347
|
+
<extension base="platformCore:CustomFieldRef">
|
|
348
|
+
<sequence>
|
|
349
|
+
<element name="value" type="xsd:string"/>
|
|
350
|
+
</sequence>
|
|
351
|
+
</extension>
|
|
352
|
+
</complexContent>
|
|
353
|
+
</complexType>
|
|
354
|
+
<!-- DateCustomFieldRef -->
|
|
355
|
+
<complexType name="DateCustomFieldRef">
|
|
356
|
+
<complexContent>
|
|
357
|
+
<extension base="platformCore:CustomFieldRef">
|
|
358
|
+
<sequence>
|
|
359
|
+
<element name="value" type="xsd:dateTime"/>
|
|
360
|
+
</sequence>
|
|
361
|
+
</extension>
|
|
362
|
+
</complexContent>
|
|
363
|
+
</complexType>
|
|
364
|
+
<!-- SelectCustomFieldRef -->
|
|
365
|
+
<complexType name="SelectCustomFieldRef">
|
|
366
|
+
<complexContent>
|
|
367
|
+
<extension base="platformCore:CustomFieldRef">
|
|
368
|
+
<sequence>
|
|
369
|
+
<element name="value" type="platformCore:ListOrRecordRef"/>
|
|
370
|
+
</sequence>
|
|
371
|
+
</extension>
|
|
372
|
+
</complexContent>
|
|
373
|
+
</complexType>
|
|
374
|
+
<!-- MultiSelectCustomFieldRef -->
|
|
375
|
+
<complexType name="MultiSelectCustomFieldRef">
|
|
376
|
+
<complexContent>
|
|
377
|
+
<extension base="platformCore:CustomFieldRef">
|
|
378
|
+
<sequence>
|
|
379
|
+
<element name="value" type="platformCore:ListOrRecordRef" maxOccurs="unbounded"/>
|
|
380
|
+
</sequence>
|
|
381
|
+
</extension>
|
|
382
|
+
</complexContent>
|
|
383
|
+
</complexType>
|
|
384
|
+
<!-- CustomFieldList -->
|
|
385
|
+
<complexType name="CustomFieldList">
|
|
386
|
+
<sequence>
|
|
387
|
+
<element name="customField" type="platformCore:CustomFieldRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
388
|
+
</sequence>
|
|
389
|
+
</complexType>
|
|
390
|
+
<!--element name="customFieldList" type="platformCore:CustomFieldList"/-->
|
|
391
|
+
<!-- ******************************************************************** -->
|
|
392
|
+
<!-- Dimensions -->
|
|
393
|
+
<!-- ******************************************************************** -->
|
|
394
|
+
<!-- DimensiondRef -->
|
|
395
|
+
<complexType name="DimensionRef" abstract="true">
|
|
396
|
+
<attribute name="scriptId" type="xsd:string"/>
|
|
397
|
+
</complexType>
|
|
398
|
+
<!-- StringDimensiondRef -->
|
|
399
|
+
<complexType name="StringDimensionRef">
|
|
400
|
+
<complexContent>
|
|
401
|
+
<extension base="platformCore:DimensionRef">
|
|
402
|
+
<sequence>
|
|
403
|
+
<element name="value" type="xsd:string"/>
|
|
404
|
+
</sequence>
|
|
405
|
+
</extension>
|
|
406
|
+
</complexContent>
|
|
407
|
+
</complexType>
|
|
408
|
+
<!-- SelectDimensiondRef -->
|
|
409
|
+
<complexType name="SelectDimensionRef">
|
|
410
|
+
<complexContent>
|
|
411
|
+
<extension base="platformCore:DimensionRef">
|
|
412
|
+
<sequence>
|
|
413
|
+
<element name="value" type="platformCore:ListOrRecordRef"/>
|
|
414
|
+
</sequence>
|
|
415
|
+
</extension>
|
|
416
|
+
</complexContent>
|
|
417
|
+
</complexType>
|
|
418
|
+
<!-- DimensionList -->
|
|
419
|
+
<complexType name="DimensionList">
|
|
420
|
+
<sequence>
|
|
421
|
+
<element name="dimension" type="platformCore:DimensionRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
422
|
+
</sequence>
|
|
423
|
+
</complexType>
|
|
424
|
+
<!--element name="dimensionList" type="platformCore:DimensionList"/-->
|
|
425
|
+
<!-- ******************************************************************** -->
|
|
426
|
+
<!-- Search Types -->
|
|
427
|
+
<!-- ******************************************************************** -->
|
|
428
|
+
<!-- SearchBooleanField -->
|
|
429
|
+
<complexType name="SearchBooleanField">
|
|
430
|
+
<sequence>
|
|
431
|
+
<element name="searchValue" type="xsd:boolean" minOccurs="0"/>
|
|
432
|
+
</sequence>
|
|
433
|
+
</complexType>
|
|
434
|
+
<!-- SearchStringField -->
|
|
435
|
+
<complexType name="SearchStringField">
|
|
436
|
+
<sequence>
|
|
437
|
+
<element name="searchValue" type="xsd:string" minOccurs="0"/>
|
|
438
|
+
</sequence>
|
|
439
|
+
<attribute name="operator" type="platformCoreTyp:SearchStringFieldOperator"/>
|
|
440
|
+
</complexType>
|
|
441
|
+
<!-- SearchLongField -->
|
|
442
|
+
<complexType name="SearchLongField">
|
|
443
|
+
<sequence>
|
|
444
|
+
<element name="searchValue" type="xsd:long" minOccurs="0"/>
|
|
445
|
+
<element name="searchValue2" type="xsd:long" minOccurs="0"/>
|
|
446
|
+
</sequence>
|
|
447
|
+
<attribute name="operator" type="platformCoreTyp:SearchLongFieldOperator"/>
|
|
448
|
+
</complexType>
|
|
449
|
+
<!-- SearchTextNumberField -->
|
|
450
|
+
<complexType name="SearchTextNumberField">
|
|
451
|
+
<sequence>
|
|
452
|
+
<element name="searchValue" type="xsd:string" minOccurs="0"/>
|
|
453
|
+
<element name="searchValue2" type="xsd:string" minOccurs="0"/>
|
|
454
|
+
</sequence>
|
|
455
|
+
<attribute name="operator" type="platformCoreTyp:SearchTextNumberFieldOperator"/>
|
|
456
|
+
</complexType>
|
|
457
|
+
<!-- SearchDoubleField -->
|
|
458
|
+
<complexType name="SearchDoubleField">
|
|
459
|
+
<sequence>
|
|
460
|
+
<element name="searchValue" type="xsd:double" minOccurs="0"/>
|
|
461
|
+
<element name="searchValue2" type="xsd:double" minOccurs="0"/>
|
|
462
|
+
</sequence>
|
|
463
|
+
<attribute name="operator" type="platformCoreTyp:SearchDoubleFieldOperator"/>
|
|
464
|
+
</complexType>
|
|
465
|
+
<!-- SearchDateField -->
|
|
466
|
+
<complexType name="SearchDateField">
|
|
467
|
+
<sequence>
|
|
468
|
+
<element name="predefinedSearchValue" type="platformCoreTyp:SearchDate" minOccurs="0"/>
|
|
469
|
+
<element name="searchValue" type="xsd:dateTime" minOccurs="0"/>
|
|
470
|
+
<element name="searchValue2" type="xsd:dateTime" minOccurs="0"/>
|
|
471
|
+
</sequence>
|
|
472
|
+
<attribute name="operator" type="platformCoreTyp:SearchDateFieldOperator"/>
|
|
473
|
+
</complexType>
|
|
474
|
+
<!-- SearchMultiSelectListField -->
|
|
475
|
+
<complexType name="SearchEnumMultiSelectField">
|
|
476
|
+
<sequence>
|
|
477
|
+
<element name="searchValue" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
|
478
|
+
</sequence>
|
|
479
|
+
<attribute name="operator" type="platformCoreTyp:SearchEnumMultiSelectFieldOperator"/>
|
|
480
|
+
</complexType>
|
|
481
|
+
<!-- SearchMultiSelectListField -->
|
|
482
|
+
<complexType name="SearchMultiSelectField">
|
|
483
|
+
<sequence>
|
|
484
|
+
<element name="searchValue" type="platformCore:RecordRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
485
|
+
</sequence>
|
|
486
|
+
<attribute name="operator" type="platformCoreTyp:SearchMultiSelectFieldOperator"/>
|
|
487
|
+
</complexType>
|
|
488
|
+
<!-- ******************************************************************** -->
|
|
489
|
+
<!-- Search Custom Field Types -->
|
|
490
|
+
<!-- ******************************************************************** -->
|
|
491
|
+
<!-- CustomFieldRef -->
|
|
492
|
+
<complexType name="SearchCustomField" abstract="true">
|
|
493
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
494
|
+
<attribute name="scriptId" type="xsd:string"/>
|
|
495
|
+
</complexType>
|
|
496
|
+
<!-- SearchBooleanCustomField -->
|
|
497
|
+
<complexType name="SearchBooleanCustomField">
|
|
498
|
+
<complexContent>
|
|
499
|
+
<extension base="platformCore:SearchCustomField">
|
|
500
|
+
<sequence>
|
|
501
|
+
<element name="searchValue" type="xsd:boolean" minOccurs="0"/>
|
|
502
|
+
</sequence>
|
|
503
|
+
</extension>
|
|
504
|
+
</complexContent>
|
|
505
|
+
</complexType>
|
|
506
|
+
<!-- SearchStringCustomField -->
|
|
507
|
+
<complexType name="SearchStringCustomField">
|
|
508
|
+
<complexContent>
|
|
509
|
+
<extension base="platformCore:SearchCustomField">
|
|
510
|
+
<sequence>
|
|
511
|
+
<element name="searchValue" type="xsd:string" minOccurs="0"/>
|
|
512
|
+
</sequence>
|
|
513
|
+
<attribute name="operator" type="platformCoreTyp:SearchStringFieldOperator"/>
|
|
514
|
+
</extension>
|
|
515
|
+
</complexContent>
|
|
516
|
+
</complexType>
|
|
517
|
+
<!-- SearchIntCustomField -->
|
|
518
|
+
<complexType name="SearchLongCustomField">
|
|
519
|
+
<complexContent>
|
|
520
|
+
<extension base="platformCore:SearchCustomField">
|
|
521
|
+
<sequence>
|
|
522
|
+
<element name="searchValue" type="xsd:long" minOccurs="0"/>
|
|
523
|
+
<element name="searchValue2" type="xsd:long" minOccurs="0"/>
|
|
524
|
+
</sequence>
|
|
525
|
+
<attribute name="operator" type="platformCoreTyp:SearchLongFieldOperator"/>
|
|
526
|
+
</extension>
|
|
527
|
+
</complexContent>
|
|
528
|
+
</complexType>
|
|
529
|
+
<!-- SearchDoubleCustomField -->
|
|
530
|
+
<complexType name="SearchDoubleCustomField">
|
|
531
|
+
<complexContent>
|
|
532
|
+
<extension base="platformCore:SearchCustomField">
|
|
533
|
+
<sequence>
|
|
534
|
+
<element name="searchValue" type="xsd:double" minOccurs="0"/>
|
|
535
|
+
<element name="searchValue2" type="xsd:double" minOccurs="0"/>
|
|
536
|
+
</sequence>
|
|
537
|
+
<attribute name="operator" type="platformCoreTyp:SearchDoubleFieldOperator"/>
|
|
538
|
+
</extension>
|
|
539
|
+
</complexContent>
|
|
540
|
+
</complexType>
|
|
541
|
+
<!-- SearchDateCustomField -->
|
|
542
|
+
<complexType name="SearchDateCustomField">
|
|
543
|
+
<complexContent>
|
|
544
|
+
<extension base="platformCore:SearchCustomField">
|
|
545
|
+
<sequence>
|
|
546
|
+
<element name="predefinedSearchValue" type="platformCoreTyp:SearchDate" minOccurs="0"/>
|
|
547
|
+
<element name="searchValue" type="xsd:dateTime" minOccurs="0"/>
|
|
548
|
+
<element name="searchValue2" type="xsd:dateTime" minOccurs="0"/>
|
|
549
|
+
</sequence>
|
|
550
|
+
<attribute name="operator" type="platformCoreTyp:SearchDateFieldOperator"/>
|
|
551
|
+
</extension>
|
|
552
|
+
</complexContent>
|
|
553
|
+
</complexType>
|
|
554
|
+
<!-- SearchEnumMultiSelectField -->
|
|
555
|
+
<complexType name="SearchEnumMultiSelectCustomField">
|
|
556
|
+
<complexContent>
|
|
557
|
+
<extension base="platformCore:SearchCustomField">
|
|
558
|
+
<sequence>
|
|
559
|
+
<element name="searchValue" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
|
560
|
+
</sequence>
|
|
561
|
+
<attribute name="operator" type="platformCoreTyp:SearchEnumMultiSelectFieldOperator"/>
|
|
562
|
+
</extension>
|
|
563
|
+
</complexContent>
|
|
564
|
+
</complexType>
|
|
565
|
+
<!-- SearchMultiSelectField -->
|
|
566
|
+
<complexType name="SearchMultiSelectCustomField">
|
|
567
|
+
<complexContent>
|
|
568
|
+
<extension base="platformCore:SearchCustomField">
|
|
569
|
+
<sequence>
|
|
570
|
+
<element name="searchValue" type="platformCore:ListOrRecordRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
571
|
+
</sequence>
|
|
572
|
+
<attribute name="operator" type="platformCoreTyp:SearchMultiSelectFieldOperator"/>
|
|
573
|
+
</extension>
|
|
574
|
+
</complexContent>
|
|
575
|
+
</complexType>
|
|
576
|
+
<!-- CustomFieldList -->
|
|
577
|
+
<complexType name="SearchCustomFieldList">
|
|
578
|
+
<sequence>
|
|
579
|
+
<element name="customField" type="platformCore:SearchCustomField" minOccurs="0" maxOccurs="unbounded"/>
|
|
580
|
+
</sequence>
|
|
581
|
+
</complexType>
|
|
582
|
+
<!-- Search Column Types -->
|
|
583
|
+
<!-- ******************************************************************** -->
|
|
584
|
+
<!-- SearchColumnDoubleField -->
|
|
585
|
+
<complexType name="SearchColumnField" abstract="true">
|
|
586
|
+
<sequence>
|
|
587
|
+
<element name="customLabel" type="xsd:string" minOccurs="0"/>
|
|
588
|
+
</sequence>
|
|
589
|
+
</complexType>
|
|
590
|
+
<!-- SearchColumnBooleanField -->
|
|
591
|
+
<complexType name="SearchColumnBooleanField">
|
|
592
|
+
<complexContent>
|
|
593
|
+
<extension base="platformCore:SearchColumnField">
|
|
594
|
+
<sequence>
|
|
595
|
+
<element name="searchValue" type="xsd:boolean" minOccurs="0"/>
|
|
596
|
+
</sequence>
|
|
597
|
+
</extension>
|
|
598
|
+
</complexContent>
|
|
599
|
+
</complexType>
|
|
600
|
+
<!-- SearchColumnStringField -->
|
|
601
|
+
<complexType name="SearchColumnStringField">
|
|
602
|
+
<complexContent>
|
|
603
|
+
<extension base="platformCore:SearchColumnField">
|
|
604
|
+
<sequence>
|
|
605
|
+
<element name="searchValue" type="xsd:string" minOccurs="0"/>
|
|
606
|
+
</sequence>
|
|
607
|
+
</extension>
|
|
608
|
+
</complexContent>
|
|
609
|
+
</complexType>
|
|
610
|
+
<!-- SearchColumnLongField -->
|
|
611
|
+
<complexType name="SearchColumnLongField">
|
|
612
|
+
<complexContent>
|
|
613
|
+
<extension base="platformCore:SearchColumnField">
|
|
614
|
+
<sequence>
|
|
615
|
+
<element name="searchValue" type="xsd:long" minOccurs="0"/>
|
|
616
|
+
</sequence>
|
|
617
|
+
</extension>
|
|
618
|
+
</complexContent>
|
|
619
|
+
</complexType>
|
|
620
|
+
<!-- SearchColumnTextNumberField -->
|
|
621
|
+
<complexType name="SearchColumnTextNumberField">
|
|
622
|
+
<complexContent>
|
|
623
|
+
<extension base="platformCore:SearchColumnField">
|
|
624
|
+
<sequence>
|
|
625
|
+
<element name="searchValue" type="xsd:string" minOccurs="0"/>
|
|
626
|
+
</sequence>
|
|
627
|
+
</extension>
|
|
628
|
+
</complexContent>
|
|
629
|
+
</complexType>
|
|
630
|
+
<!-- SearchColumnDoubleField -->
|
|
631
|
+
<complexType name="SearchColumnDoubleField">
|
|
632
|
+
<complexContent>
|
|
633
|
+
<extension base="platformCore:SearchColumnField">
|
|
634
|
+
<sequence>
|
|
635
|
+
<element name="searchValue" type="xsd:double" minOccurs="0"/>
|
|
636
|
+
</sequence>
|
|
637
|
+
</extension>
|
|
638
|
+
</complexContent>
|
|
639
|
+
</complexType>
|
|
640
|
+
<!-- SearchColumnDateField -->
|
|
641
|
+
<complexType name="SearchColumnDateField">
|
|
642
|
+
<complexContent>
|
|
643
|
+
<extension base="platformCore:SearchColumnField">
|
|
644
|
+
<sequence>
|
|
645
|
+
<element name="searchValue" type="xsd:dateTime" minOccurs="0"/>
|
|
646
|
+
</sequence>
|
|
647
|
+
</extension>
|
|
648
|
+
</complexContent>
|
|
649
|
+
</complexType>
|
|
650
|
+
<!-- SearchColumnEnumSelectField -->
|
|
651
|
+
<complexType name="SearchColumnEnumSelectField">
|
|
652
|
+
<complexContent>
|
|
653
|
+
<extension base="platformCore:SearchColumnField">
|
|
654
|
+
<sequence>
|
|
655
|
+
<element name="searchValue" type="xsd:string" minOccurs="0"/>
|
|
656
|
+
</sequence>
|
|
657
|
+
</extension>
|
|
658
|
+
</complexContent>
|
|
659
|
+
</complexType>
|
|
660
|
+
<!-- SearchColumnSelectField -->
|
|
661
|
+
<complexType name="SearchColumnSelectField">
|
|
662
|
+
<complexContent>
|
|
663
|
+
<extension base="platformCore:SearchColumnField">
|
|
664
|
+
<sequence>
|
|
665
|
+
<element name="searchValue" type="platformCore:RecordRef" minOccurs="0"/>
|
|
666
|
+
</sequence>
|
|
667
|
+
</extension>
|
|
668
|
+
</complexContent>
|
|
669
|
+
</complexType>
|
|
670
|
+
<!-- ******************************************************************** -->
|
|
671
|
+
<!-- Search Column Custom Field Types -->
|
|
672
|
+
<!-- ******************************************************************** -->
|
|
673
|
+
<complexType name="SearchColumnCustomField" abstract="true">
|
|
674
|
+
<sequence>
|
|
675
|
+
<element name="customLabel" type="xsd:string" minOccurs="0"/>
|
|
676
|
+
</sequence>
|
|
677
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
678
|
+
<attribute name="scriptId" type="xsd:string"/>
|
|
679
|
+
</complexType>
|
|
680
|
+
<!-- SearchColumnBooleanCustomField -->
|
|
681
|
+
<complexType name="SearchColumnBooleanCustomField">
|
|
682
|
+
<complexContent>
|
|
683
|
+
<extension base="platformCore:SearchColumnCustomField">
|
|
684
|
+
<sequence>
|
|
685
|
+
<element name="searchValue" type="xsd:boolean" minOccurs="0"/>
|
|
686
|
+
</sequence>
|
|
687
|
+
</extension>
|
|
688
|
+
</complexContent>
|
|
689
|
+
</complexType>
|
|
690
|
+
<!-- SearchColumnStringCustomField -->
|
|
691
|
+
<complexType name="SearchColumnStringCustomField">
|
|
692
|
+
<complexContent>
|
|
693
|
+
<extension base="platformCore:SearchColumnCustomField">
|
|
694
|
+
<sequence>
|
|
695
|
+
<element name="searchValue" type="xsd:string" minOccurs="0"/>
|
|
696
|
+
</sequence>
|
|
697
|
+
</extension>
|
|
698
|
+
</complexContent>
|
|
699
|
+
</complexType>
|
|
700
|
+
<!-- SearchColumnLongCustomField -->
|
|
701
|
+
<complexType name="SearchColumnLongCustomField">
|
|
702
|
+
<complexContent>
|
|
703
|
+
<extension base="platformCore:SearchColumnCustomField">
|
|
704
|
+
<sequence>
|
|
705
|
+
<element name="searchValue" type="xsd:long" minOccurs="0"/>
|
|
706
|
+
</sequence>
|
|
707
|
+
</extension>
|
|
708
|
+
</complexContent>
|
|
709
|
+
</complexType>
|
|
710
|
+
<!-- SearchColumnDoubleCustomField -->
|
|
711
|
+
<complexType name="SearchColumnDoubleCustomField">
|
|
712
|
+
<complexContent>
|
|
713
|
+
<extension base="platformCore:SearchColumnCustomField">
|
|
714
|
+
<sequence>
|
|
715
|
+
<element name="searchValue" type="xsd:double" minOccurs="0"/>
|
|
716
|
+
</sequence>
|
|
717
|
+
</extension>
|
|
718
|
+
</complexContent>
|
|
719
|
+
</complexType>
|
|
720
|
+
<!-- SearchColumnDateCustomField -->
|
|
721
|
+
<complexType name="SearchColumnDateCustomField">
|
|
722
|
+
<complexContent>
|
|
723
|
+
<extension base="platformCore:SearchColumnCustomField">
|
|
724
|
+
<sequence>
|
|
725
|
+
<element name="searchValue" type="xsd:dateTime" minOccurs="0"/>
|
|
726
|
+
</sequence>
|
|
727
|
+
</extension>
|
|
728
|
+
</complexContent>
|
|
729
|
+
</complexType>
|
|
730
|
+
<!-- SearchColumnEnumMultiSelectField -->
|
|
731
|
+
<complexType name="SearchColumnEnumMultiSelectCustomField">
|
|
732
|
+
<complexContent>
|
|
733
|
+
<extension base="platformCore:SearchColumnCustomField">
|
|
734
|
+
<sequence>
|
|
735
|
+
<element name="searchValue" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
|
736
|
+
</sequence>
|
|
737
|
+
</extension>
|
|
738
|
+
</complexContent>
|
|
739
|
+
</complexType>
|
|
740
|
+
<!-- SearchColumnSelectField -->
|
|
741
|
+
<complexType name="SearchColumnSelectCustomField">
|
|
742
|
+
<complexContent>
|
|
743
|
+
<extension base="platformCore:SearchColumnCustomField">
|
|
744
|
+
<sequence>
|
|
745
|
+
<element name="searchValue" type="platformCore:ListOrRecordRef" minOccurs="0"/>
|
|
746
|
+
</sequence>
|
|
747
|
+
</extension>
|
|
748
|
+
</complexContent>
|
|
749
|
+
</complexType>
|
|
750
|
+
<!-- SearchColumnMultiSelectField -->
|
|
751
|
+
<complexType name="SearchColumnMultiSelectCustomField">
|
|
752
|
+
<complexContent>
|
|
753
|
+
<extension base="platformCore:SearchColumnCustomField">
|
|
754
|
+
<sequence>
|
|
755
|
+
<element name="searchValue" type="platformCore:ListOrRecordRef" minOccurs="0" maxOccurs="unbounded"/>
|
|
756
|
+
</sequence>
|
|
757
|
+
</extension>
|
|
758
|
+
</complexContent>
|
|
759
|
+
</complexType>
|
|
760
|
+
<complexType name="SearchColumnCustomFieldList">
|
|
761
|
+
<sequence>
|
|
762
|
+
<element name="customField" type="platformCore:SearchColumnCustomField" minOccurs="0" maxOccurs="unbounded"/>
|
|
763
|
+
</sequence>
|
|
764
|
+
</complexType>
|
|
765
|
+
<!-- ******************************************************************** -->
|
|
766
|
+
<!-- Item Availability-->
|
|
767
|
+
<!-- ******************************************************************** -->
|
|
768
|
+
<complexType name="ItemAvailabilityFilter">
|
|
769
|
+
<sequence>
|
|
770
|
+
<element name="item" type="platformCore:RecordRefList" minOccurs="1" maxOccurs="1"/>
|
|
771
|
+
<element name="lastQtyAvailableChange" type="xsd:dateTime" minOccurs="0" maxOccurs="1"/>
|
|
772
|
+
</sequence>
|
|
773
|
+
</complexType>
|
|
774
|
+
<complexType name="ItemAvailability">
|
|
775
|
+
<sequence>
|
|
776
|
+
<element name="item" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
777
|
+
<element name="lastQtyAvailableChange" type="xsd:dateTime" minOccurs="0" maxOccurs="1"/>
|
|
778
|
+
<element name="locationId" type="platformCore:RecordRef" minOccurs="0"/>
|
|
779
|
+
<element name="quantityOnHand" type="xsd:double" minOccurs="0"/>
|
|
780
|
+
<element name="onHandValueMli" type="xsd:double" minOccurs="0"/>
|
|
781
|
+
<element name="reorderPoint" type="xsd:double" minOccurs="0"/>
|
|
782
|
+
<element name="preferredStockLevel" type="xsd:double" minOccurs="0"/>
|
|
783
|
+
<element name="quantityOnOrder" type="xsd:double" minOccurs="0"/>
|
|
784
|
+
<element name="quantityCommitted" type="xsd:double" minOccurs="0"/>
|
|
785
|
+
<element name="quantityBackOrdered" type="xsd:double" minOccurs="0"/>
|
|
786
|
+
<element name="quantityAvailable" type="xsd:double" minOccurs="0"/>
|
|
787
|
+
</sequence>
|
|
788
|
+
</complexType>
|
|
789
|
+
<complexType name="ItemAvailabilityList">
|
|
790
|
+
<sequence>
|
|
791
|
+
<element name="itemAvailability" type="platformCore:ItemAvailability" maxOccurs="unbounded"/>
|
|
792
|
+
</sequence>
|
|
793
|
+
</complexType>
|
|
794
|
+
<complexType name="GetItemAvailabilityResult">
|
|
795
|
+
<sequence>
|
|
796
|
+
<element ref="platformCore:status" minOccurs="1" maxOccurs="1"/>
|
|
797
|
+
<element name="itemAvailabilityList" type="platformCore:ItemAvailabilityList" minOccurs="0" maxOccurs="1"/>
|
|
798
|
+
</sequence>
|
|
799
|
+
</complexType>
|
|
800
|
+
<element name="getItemAvailabilityResult" type="platformCore:GetItemAvailabilityResult"/>
|
|
801
|
+
<!--itemAvailability/end-->
|
|
802
|
+
<!-- ******************************************************************** -->
|
|
803
|
+
<!-- Budget Exchange Rate-->
|
|
804
|
+
<!-- ******************************************************************** -->
|
|
805
|
+
<complexType name="BudgetExchangeRateFilter">
|
|
806
|
+
<sequence>
|
|
807
|
+
<element name="period" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
808
|
+
<element name="fromSubsidiary" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
809
|
+
<element name="toSubsidiary" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
810
|
+
</sequence>
|
|
811
|
+
</complexType>
|
|
812
|
+
<complexType name="BudgetExchangeRate">
|
|
813
|
+
<sequence>
|
|
814
|
+
<element name="period" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
815
|
+
<element name="fromSubsidiary" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
816
|
+
<element name="toSubsidiary" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
817
|
+
<element name="currentRate" type="xsd:double" minOccurs="0" maxOccurs="1"/>
|
|
818
|
+
<element name="averageRate" type="xsd:double" minOccurs="0" maxOccurs="1"/>
|
|
819
|
+
<element name="historicalRate" type="xsd:double" minOccurs="0" maxOccurs="1"/>
|
|
820
|
+
</sequence>
|
|
821
|
+
</complexType>
|
|
822
|
+
<complexType name="BudgetExchangeRateList">
|
|
823
|
+
<sequence>
|
|
824
|
+
<element name="budgetExchangeRate" type="platformCore:BudgetExchangeRate" maxOccurs="unbounded"/>
|
|
825
|
+
</sequence>
|
|
826
|
+
</complexType>
|
|
827
|
+
<complexType name="GetBudgetExchangeRateResult">
|
|
828
|
+
<sequence>
|
|
829
|
+
<element ref="platformCore:status" minOccurs="1" maxOccurs="1"/>
|
|
830
|
+
<element name="budgetExchangeRateList" type="platformCore:BudgetExchangeRateList" minOccurs="0" maxOccurs="1"/>
|
|
831
|
+
</sequence>
|
|
832
|
+
</complexType>
|
|
833
|
+
<element name="getBudgetExchangeRateResult" type="platformCore:GetBudgetExchangeRateResult"/>
|
|
834
|
+
<!--Budget Exchange Rate/end-->
|
|
835
|
+
<!-- ******************************************************************** -->
|
|
836
|
+
<!-- Currency Rate-->
|
|
837
|
+
<!-- ******************************************************************** -->
|
|
838
|
+
<complexType name="CurrencyRateFilter">
|
|
839
|
+
<sequence>
|
|
840
|
+
<element name="baseCurrency" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
841
|
+
<element name="fromCurrency" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
842
|
+
<element name="effectiveDate" type="xsd:dateTime" minOccurs="0" maxOccurs="1"/>
|
|
843
|
+
</sequence>
|
|
844
|
+
</complexType>
|
|
845
|
+
<complexType name="CurrencyRate">
|
|
846
|
+
<sequence>
|
|
847
|
+
<element name="baseCurrency" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
848
|
+
<element name="fromCurrency" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
849
|
+
<element name="exchangeRate" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
|
850
|
+
<element name="effectiveDate" type="xsd:dateTime" minOccurs="1" maxOccurs="1"/>
|
|
851
|
+
</sequence>
|
|
852
|
+
</complexType>
|
|
853
|
+
<complexType name="CurrencyRateList">
|
|
854
|
+
<sequence>
|
|
855
|
+
<element name="currencyRate" type="platformCore:CurrencyRate" minOccurs="0" maxOccurs="unbounded"/>
|
|
856
|
+
</sequence>
|
|
857
|
+
</complexType>
|
|
858
|
+
<complexType name="GetCurrencyRateResult">
|
|
859
|
+
<sequence>
|
|
860
|
+
<element ref="platformCore:status" minOccurs="1" maxOccurs="1"/>
|
|
861
|
+
<element name="currencyRateList" type="platformCore:CurrencyRateList" minOccurs="0" maxOccurs="1"/>
|
|
862
|
+
</sequence>
|
|
863
|
+
</complexType>
|
|
864
|
+
<element name="getCurrencyRateResult" type="platformCore:GetCurrencyRateResult"/>
|
|
865
|
+
<!-- Currency Rate/end-->
|
|
866
|
+
<!-- ******************************************************************** -->
|
|
867
|
+
<!-- Data Center URLs -->
|
|
868
|
+
<!-- ******************************************************************** -->
|
|
869
|
+
<complexType name="DataCenterUrls">
|
|
870
|
+
<sequence>
|
|
871
|
+
<element name="restDomain" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
872
|
+
<element name="webservicesDomain" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
873
|
+
<element name="systemDomain" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
874
|
+
</sequence>
|
|
875
|
+
</complexType>
|
|
876
|
+
<complexType name="GetDataCenterUrlsResult">
|
|
877
|
+
<sequence>
|
|
878
|
+
<element ref="platformCore:status" minOccurs="1" maxOccurs="1"/>
|
|
879
|
+
<element name="dataCenterUrls" type="platformCore:DataCenterUrls" minOccurs="0" maxOccurs="1"/>
|
|
880
|
+
</sequence>
|
|
881
|
+
</complexType>
|
|
882
|
+
<element name="getDataCenterUrlsResult" type="platformCore:GetDataCenterUrlsResult"/>
|
|
883
|
+
<!-- Data Center URLs-->
|
|
884
|
+
<!-- ******************************************************************** -->
|
|
885
|
+
<!-- Posting Activity-->
|
|
886
|
+
<!-- ******************************************************************** -->
|
|
887
|
+
<complexType name="PostingTransactionSummaryField">
|
|
888
|
+
<sequence>
|
|
889
|
+
<element name="period" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
890
|
+
<element name="account" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
891
|
+
<element name="parentItem" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
892
|
+
<element name="item" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
893
|
+
<element name="entity" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
894
|
+
<element name="department" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
895
|
+
<element name="class" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
896
|
+
<element name="location" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
897
|
+
<element name="subsidiary" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
898
|
+
<element name="book" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
|
899
|
+
</sequence>
|
|
900
|
+
</complexType>
|
|
901
|
+
<complexType name="PostingTransactionSummaryFilter">
|
|
902
|
+
<sequence>
|
|
903
|
+
<element name="period" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
904
|
+
<element name="account" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
905
|
+
<element name="parentItem" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
906
|
+
<element name="item" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
907
|
+
<element name="entity" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
908
|
+
<element name="department" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
909
|
+
<element name="class" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
910
|
+
<element name="location" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
911
|
+
<element name="subsidiary" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
912
|
+
<element name="book" type="platformCore:RecordRefList" minOccurs="0" maxOccurs="1"/>
|
|
913
|
+
</sequence>
|
|
914
|
+
</complexType>
|
|
915
|
+
<complexType name="PostingTransactionSummary">
|
|
916
|
+
<sequence>
|
|
917
|
+
<element name="period" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
918
|
+
<element name="account" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
919
|
+
<element name="parentItem" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
920
|
+
<element name="item" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
921
|
+
<element name="entity" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
922
|
+
<element name="department" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
923
|
+
<element name="class" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
924
|
+
<element name="location" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
925
|
+
<element name="subsidiary" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
926
|
+
<element name="book" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
927
|
+
<element name="amount" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
|
928
|
+
</sequence>
|
|
929
|
+
</complexType>
|
|
930
|
+
<complexType name="PostingTransactionSummaryList">
|
|
931
|
+
<sequence>
|
|
932
|
+
<element name="postingTransactionSummary" type="platformCore:PostingTransactionSummary" maxOccurs="unbounded"/>
|
|
933
|
+
</sequence>
|
|
934
|
+
</complexType>
|
|
935
|
+
<complexType name="GetPostingTransactionSummaryResult">
|
|
936
|
+
<sequence>
|
|
937
|
+
<element ref="platformCore:status" minOccurs="1" maxOccurs="1"/>
|
|
938
|
+
<element name="totalRecords" type="xsd:int" minOccurs="0"/>
|
|
939
|
+
<element name="pageSize" type="xsd:int" minOccurs="0"/>
|
|
940
|
+
<element name="totalPages" type="xsd:int" minOccurs="0"/>
|
|
941
|
+
<element name="pageIndex" type="xsd:int" minOccurs="0"/>
|
|
942
|
+
<element name="operationId" type="xsd:string" minOccurs="0"/>
|
|
943
|
+
<element name="postingTransactionSummaryList" type="platformCore:PostingTransactionSummaryList" minOccurs="0" maxOccurs="1"/>
|
|
944
|
+
</sequence>
|
|
945
|
+
</complexType>
|
|
946
|
+
<element name="getPostingTransactionSummaryResult" type="platformCore:GetPostingTransactionSummaryResult"/>
|
|
947
|
+
<!--Posting Activity/end-->
|
|
948
|
+
<!-- ******************************************************************** -->
|
|
949
|
+
<!-- GetSelectValue Fields -->
|
|
950
|
+
<!-- ******************************************************************** -->
|
|
951
|
+
<complexType name="GetSelectValueFieldDescription">
|
|
952
|
+
<sequence>
|
|
953
|
+
<element name="recordType" type="platformCoreTyp:RecordType" minOccurs="0" maxOccurs="1"/>
|
|
954
|
+
<element name="customRecordType" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
955
|
+
<element name="customTransactionType" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
956
|
+
<element name="sublist" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
|
957
|
+
<element name="field" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
958
|
+
<element name="customForm" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
959
|
+
<element name="filter" type="platformCore:GetSelectValueFilter" minOccurs="0" maxOccurs="1"/>
|
|
960
|
+
<element name="filterByValueList" type="platformCore:GetSelectFilterByFieldValueList" minOccurs="0" maxOccurs="1"/>
|
|
961
|
+
</sequence>
|
|
962
|
+
</complexType>
|
|
963
|
+
<complexType name="GetSelectValueFilter">
|
|
964
|
+
<sequence>
|
|
965
|
+
<element name="filterValue" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
966
|
+
</sequence>
|
|
967
|
+
<attribute name="operator" type="platformCoreTyp:GetSelectValueFilterOperator" use="required"/>
|
|
968
|
+
</complexType>
|
|
969
|
+
<complexType name="GetSelectFilterByFieldValueList">
|
|
970
|
+
<sequence>
|
|
971
|
+
<element name="filterBy" type="platformCore:GetSelectFilterByFieldValue" minOccurs="1" maxOccurs="unbounded"/>
|
|
972
|
+
</sequence>
|
|
973
|
+
</complexType>
|
|
974
|
+
<complexType name="GetSelectFilterByFieldValue">
|
|
975
|
+
<sequence>
|
|
976
|
+
<element name="sublist" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
|
977
|
+
<element name="field" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
978
|
+
<element name="internalId" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
979
|
+
</sequence>
|
|
980
|
+
</complexType>
|
|
981
|
+
<!--getSelectValue/end-->
|
|
982
|
+
<!-- ******************************************************************** -->
|
|
983
|
+
<!-- Server Time-->
|
|
984
|
+
<!-- ******************************************************************** -->
|
|
985
|
+
<complexType name="GetServerTimeResult">
|
|
986
|
+
<sequence>
|
|
987
|
+
<element ref="platformCore:status" minOccurs="1" maxOccurs="1"/>
|
|
988
|
+
<element name="serverTime" type="xsd:dateTime" minOccurs="1" maxOccurs="1"/>
|
|
989
|
+
</sequence>
|
|
990
|
+
</complexType>
|
|
991
|
+
<element name="getServerTimeResult" type="platformCore:GetServerTimeResult"/>
|
|
992
|
+
<!--Server Time/end-->
|
|
993
|
+
<!-- ******************************************************************** -->
|
|
994
|
+
<!-- Deletion-->
|
|
995
|
+
<!-- ******************************************************************** -->
|
|
996
|
+
<complexType name="DeletedRecord">
|
|
997
|
+
<sequence>
|
|
998
|
+
<element name="deletedDate" type="xsd:dateTime" minOccurs="0" maxOccurs="1"/>
|
|
999
|
+
<element name="record" type="platformCore:BaseRef" minOccurs="0" maxOccurs="1"/>
|
|
1000
|
+
</sequence>
|
|
1001
|
+
</complexType>
|
|
1002
|
+
<complexType name="DeletedRecordList">
|
|
1003
|
+
<sequence>
|
|
1004
|
+
<element name="deletedRecord" type="platformCore:DeletedRecord" minOccurs="0" maxOccurs="unbounded"/>
|
|
1005
|
+
</sequence>
|
|
1006
|
+
</complexType>
|
|
1007
|
+
<element name="deletedRecordList" type="platformCore:DeletedRecordList"/>
|
|
1008
|
+
<complexType name="GetDeletedResult">
|
|
1009
|
+
<sequence>
|
|
1010
|
+
<element ref="platformCore:status"/>
|
|
1011
|
+
<element name="totalRecords" type="xsd:int" minOccurs="0"/>
|
|
1012
|
+
<element name="pageSize" type="xsd:int" minOccurs="0"/>
|
|
1013
|
+
<element name="totalPages" type="xsd:int" minOccurs="0"/>
|
|
1014
|
+
<element name="pageIndex" type="xsd:int" minOccurs="0"/>
|
|
1015
|
+
<element ref="platformCore:deletedRecordList" minOccurs="0"/>
|
|
1016
|
+
</sequence>
|
|
1017
|
+
</complexType>
|
|
1018
|
+
<element name="getDeletedResult" type="platformCore:GetDeletedResult"/>
|
|
1019
|
+
<complexType name="GetDeletedFilter">
|
|
1020
|
+
<sequence>
|
|
1021
|
+
<element name="deletedDate" type="platformCore:SearchDateField" minOccurs="0" maxOccurs="1"/>
|
|
1022
|
+
<element name="type" type="platformCore:SearchEnumMultiSelectField" minOccurs="0" maxOccurs="1"/>
|
|
1023
|
+
<element name="scriptId" type="platformCore:SearchStringField" minOccurs="0" maxOccurs="1"/>
|
|
1024
|
+
</sequence>
|
|
1025
|
+
</complexType>
|
|
1026
|
+
<!-- ******************************************************************** -->
|
|
1027
|
+
<!-- Attach -->
|
|
1028
|
+
<!-- ******************************************************************** -->
|
|
1029
|
+
<complexType name="AttachReference" abstract="true">
|
|
1030
|
+
<sequence>
|
|
1031
|
+
<element name="attachTo" type="platformCore:BaseRef" minOccurs="1" maxOccurs="1"/>
|
|
1032
|
+
</sequence>
|
|
1033
|
+
</complexType>
|
|
1034
|
+
<complexType name="DetachReference" abstract="true">
|
|
1035
|
+
<sequence>
|
|
1036
|
+
<element name="detachFrom" type="platformCore:BaseRef" minOccurs="1" maxOccurs="1"/>
|
|
1037
|
+
</sequence>
|
|
1038
|
+
</complexType>
|
|
1039
|
+
<complexType name="AttachContactReference">
|
|
1040
|
+
<complexContent>
|
|
1041
|
+
<extension base="platformCore:AttachReference">
|
|
1042
|
+
<sequence>
|
|
1043
|
+
<element name="contact" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
1044
|
+
<element name="contactRole" type="platformCore:RecordRef" minOccurs="0" maxOccurs="1"/>
|
|
1045
|
+
</sequence>
|
|
1046
|
+
</extension>
|
|
1047
|
+
</complexContent>
|
|
1048
|
+
</complexType>
|
|
1049
|
+
<complexType name="AttachBasicReference">
|
|
1050
|
+
<complexContent>
|
|
1051
|
+
<extension base="platformCore:AttachReference">
|
|
1052
|
+
<sequence>
|
|
1053
|
+
<element name="attachedRecord" type="platformCore:BaseRef" minOccurs="1" maxOccurs="1"/>
|
|
1054
|
+
</sequence>
|
|
1055
|
+
</extension>
|
|
1056
|
+
</complexContent>
|
|
1057
|
+
</complexType>
|
|
1058
|
+
<complexType name="DetachBasicReference">
|
|
1059
|
+
<complexContent>
|
|
1060
|
+
<extension base="platformCore:DetachReference">
|
|
1061
|
+
<sequence>
|
|
1062
|
+
<element name="detachedRecord" type="platformCore:BaseRef" minOccurs="1" maxOccurs="1"/>
|
|
1063
|
+
</sequence>
|
|
1064
|
+
</extension>
|
|
1065
|
+
</complexContent>
|
|
1066
|
+
</complexType>
|
|
1067
|
+
<!--attach/end-->
|
|
1068
|
+
<!--deletionReason/start-->
|
|
1069
|
+
<complexType name="DeletionReason">
|
|
1070
|
+
<sequence>
|
|
1071
|
+
<element name="deletionReasonCode" type="platformCore:RecordRef" minOccurs="1" maxOccurs="1"/>
|
|
1072
|
+
<element name="deletionReasonMemo" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
|
1073
|
+
</sequence>
|
|
1074
|
+
</complexType>
|
|
1075
|
+
<!--deletionReason/end-->
|
|
1076
|
+
<!-- getAccountGovernanceInfo/start -->
|
|
1077
|
+
<complexType name="GetAccountGovernanceInfoResult">
|
|
1078
|
+
<sequence>
|
|
1079
|
+
<element ref="platformCore:status"/>
|
|
1080
|
+
<element name="accountConcurrencyLimit" type="xsd:long" minOccurs="0"/>
|
|
1081
|
+
<element name="unallocatedConcurrencyLimit" type="xsd:long" minOccurs="0"/>
|
|
1082
|
+
</sequence>
|
|
1083
|
+
</complexType>
|
|
1084
|
+
<element name="getAccountGovernanceInfoResult" type="platformCore:GetAccountGovernanceInfoResult"/>
|
|
1085
|
+
<!-- getAccountGovernanceInfo/end -->
|
|
1086
|
+
<!-- getIntegrationGovernanceInfo/start -->
|
|
1087
|
+
<complexType name="GetIntegrationGovernanceInfoResult">
|
|
1088
|
+
<sequence>
|
|
1089
|
+
<element ref="platformCore:status"/>
|
|
1090
|
+
<element name="integrationConcurrencyLimit" type="xsd:long" minOccurs="0"/>
|
|
1091
|
+
<element name="limitType" type="platformCoreTyp:GetIntegrationGovernanceInfoLimitType" minOccurs="0"/>
|
|
1092
|
+
</sequence>
|
|
1093
|
+
</complexType>
|
|
1094
|
+
<element name="getIntegrationGovernanceInfoResult" type="platformCore:GetIntegrationGovernanceInfoResult"/>
|
|
1095
|
+
<!-- getIntegrationGovernanceInfo/end -->
|
|
1096
|
+
</schema>
|