@yousolution/node-red-contrib-you-sap-service-layer 0.0.3 → 0.0.6
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.
- package/CHANGELOG.md +13 -3
- package/data/package.json +2 -2
- package/nodes/closeSap.html +2 -2
- package/nodes/createSap.html +7 -7
- package/nodes/crossJoinSap.html +269 -263
- package/nodes/deleteSap.html +7 -7
- package/nodes/getSap.html +7 -7
- package/nodes/listSap.html +5 -5
- package/nodes/manipulateEntitySap.html +177 -0
- package/nodes/manipulateEntitySap.js +43 -0
- package/nodes/nextLink.html +1 -1
- package/nodes/patchSap.html +6 -6
- package/nodes/serviceSap.html +207 -0
- package/nodes/serviceSap.js +41 -0
- package/nodes/support.js +29 -3
- package/package.json +4 -2
- package/resources/entities.json +59 -0
- package/resources/services.json +343 -0
- package/test/manipulateEntitySap.spec.js +191 -0
- package/test/serviceSap.spec.js +170 -0
- package/test/support.spec.js +280 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
|
2
|
+
const axios = require('axios');
|
|
3
|
+
const Support = require('./support');
|
|
4
|
+
const services = require('../resources/services.json');
|
|
5
|
+
|
|
6
|
+
module.exports = function (RED) {
|
|
7
|
+
function ServiceSapNode(config) {
|
|
8
|
+
RED.nodes.createNode(this, config);
|
|
9
|
+
const node = this;
|
|
10
|
+
// reset status
|
|
11
|
+
node.status({});
|
|
12
|
+
|
|
13
|
+
node.on('input', async (msg, send, done) => {
|
|
14
|
+
// reset status
|
|
15
|
+
node.status({});
|
|
16
|
+
try {
|
|
17
|
+
const data = msg[config.bodyPost];
|
|
18
|
+
// if (!data) {
|
|
19
|
+
// node.status({ fill: 'red', shape: 'dot', text: 'bodyPost must have value' });
|
|
20
|
+
// done(new Error('bodyPost must have value'));
|
|
21
|
+
// return;
|
|
22
|
+
// }
|
|
23
|
+
const options = { method: 'POST', hasRawQuery: false, isService: true, data: data };
|
|
24
|
+
const login = Support.login;
|
|
25
|
+
const result = await Support.sendRequest({ node, msg, config, axios, login, options });
|
|
26
|
+
msg.payload = result;
|
|
27
|
+
msg.statusCode = result.status;
|
|
28
|
+
node.status({ fill: 'green', shape: 'dot', text: 'success' });
|
|
29
|
+
node.send(msg);
|
|
30
|
+
} catch (error) {
|
|
31
|
+
node.status({ fill: 'red', shape: 'dot', text: 'Error' });
|
|
32
|
+
done(error);
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
RED.httpAdmin.get('/services', RED.auth.needsPermission('serviceSap.read'), (req, res) => {
|
|
37
|
+
res.json(services);
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
RED.nodes.registerType('serviceSap', ServiceSapNode, {});
|
|
41
|
+
};
|
package/nodes/support.js
CHANGED
|
@@ -148,6 +148,8 @@ function generateRequest(node, msg, config, options) {
|
|
|
148
148
|
hasEntityId: false,
|
|
149
149
|
isClose: false,
|
|
150
150
|
isCrossJoin: false,
|
|
151
|
+
service: null,
|
|
152
|
+
manipulateMethod: null,
|
|
151
153
|
method: 'GET',
|
|
152
154
|
data: null,
|
|
153
155
|
};
|
|
@@ -160,10 +162,15 @@ function generateRequest(node, msg, config, options) {
|
|
|
160
162
|
options.hasEntityId = options.hasEntityId || false;
|
|
161
163
|
options.isClose = options.isClose || false;
|
|
162
164
|
options.isCrossJoin = options.isCrossJoin || false;
|
|
165
|
+
options.isManipulate = options.isManipulate || false;
|
|
166
|
+
options.isService = options.isService || false;
|
|
167
|
+
options.service = options.service || null;
|
|
168
|
+
options.manipulateMethod = options.manipulateMethod || null;
|
|
163
169
|
|
|
164
170
|
const { idAuthNode, host, port, version, cookies } = getSapParams(node, msg, config);
|
|
165
171
|
|
|
166
172
|
let rawQuery = null;
|
|
173
|
+
let url;
|
|
167
174
|
if (options.hasRawQuery) {
|
|
168
175
|
try {
|
|
169
176
|
rawQuery = eval(config.query);
|
|
@@ -173,10 +180,16 @@ function generateRequest(node, msg, config, options) {
|
|
|
173
180
|
}
|
|
174
181
|
|
|
175
182
|
let entity = config.entity;
|
|
176
|
-
if (!entity) {
|
|
183
|
+
if (!entity && !options.isService) {
|
|
177
184
|
throw new Error('Missing entity');
|
|
178
185
|
}
|
|
179
186
|
|
|
187
|
+
if (options.isService) {
|
|
188
|
+
if (!config.service) {
|
|
189
|
+
throw new Error('Missing service');
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
180
193
|
if (entity == 'UDO') {
|
|
181
194
|
entity = config.udo;
|
|
182
195
|
}
|
|
@@ -191,8 +204,6 @@ function generateRequest(node, msg, config, options) {
|
|
|
191
204
|
url = `https://${host}:${port}/b1s/${version}/${entity}/${partnerName}/${scriptName}`;
|
|
192
205
|
}
|
|
193
206
|
|
|
194
|
-
let url;
|
|
195
|
-
|
|
196
207
|
const odataNextLink = msg[config.nextLink];
|
|
197
208
|
|
|
198
209
|
if (!odataNextLink) {
|
|
@@ -240,6 +251,21 @@ function generateRequest(node, msg, config, options) {
|
|
|
240
251
|
if (options.isClose) {
|
|
241
252
|
url += `/Close`;
|
|
242
253
|
}
|
|
254
|
+
|
|
255
|
+
if (options.isManipulate) {
|
|
256
|
+
if (!config.manipulateMethod) {
|
|
257
|
+
throw new Error('Missing method');
|
|
258
|
+
}
|
|
259
|
+
if (thickIdApi.includes(entity)) {
|
|
260
|
+
url = `https://${host}:${port}/b1s/${version}/${entity}('${entityId}')/${config.manipulateMethod}`;
|
|
261
|
+
} else {
|
|
262
|
+
url = `https://${host}:${port}/b1s/${version}/${entity}(${entityId})/${config.manipulateMethod}`;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
if (config.service) {
|
|
268
|
+
url = `https://${host}:${port}/b1s/${version}/${config.service}`;
|
|
243
269
|
}
|
|
244
270
|
|
|
245
271
|
if (rawQuery && !odataNextLink) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yousolution/node-red-contrib-you-sap-service-layer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Unofficial module SAP Service Layer for NODE-RED",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -28,7 +28,9 @@
|
|
|
28
28
|
"patchSap": "/nodes/patchSap.js",
|
|
29
29
|
"closeSap": "/nodes/closeSap.js",
|
|
30
30
|
"crossJoinSap": "/nodes/crossJoinSap.js",
|
|
31
|
-
"nextLink": "/nodes/nextLink.js"
|
|
31
|
+
"nextLink": "/nodes/nextLink.js",
|
|
32
|
+
"serviceSap": "/nodes/serviceSap.js",
|
|
33
|
+
"manipulateEntitySap": "/nodes/manipulateEntitySap.js"
|
|
32
34
|
}
|
|
33
35
|
},
|
|
34
36
|
"dependencies": {
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AlertManagementsShow": ["GetAlertManagement", "GetAlertManagementList"],
|
|
3
|
+
"ApprovalStages": ["GetApprovalStage", "RemoveApprovalStage"],
|
|
4
|
+
"ApprovalTemplates": ["GetApprovalTemplate", "RemoveApprovalTemplate"],
|
|
5
|
+
"BankChargesAllocationCodes": ["SetDefaultBankChargesAllocationCode"],
|
|
6
|
+
"BlanketAgreements": ["CancelBlanketAgreement", "GetRelatedDocuments"],
|
|
7
|
+
"BrazilMultiIndexers": ["GetIndexerTypeList"],
|
|
8
|
+
"BrazilNumericIndexers": ["GetIndexerTypeList"],
|
|
9
|
+
"BrazilStringIndexers": ["GetIndexerTypeList"],
|
|
10
|
+
"Campaigns": ["Cancel"],
|
|
11
|
+
"CorrectionInvoice": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
12
|
+
"CorrectionInvoiceReversal": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
13
|
+
"CorrectionPurchaseInvoice": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
14
|
+
"CorrectionPurchaseInvoiceReversal": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
15
|
+
"CreditNotes": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
16
|
+
"DeliveryNotes": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
17
|
+
"Deposits": ["CancelDeposit", "CancelDepositbyCurrentSystemDate"],
|
|
18
|
+
"DownPayments": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
19
|
+
"Drafts": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
20
|
+
"EmployeesInfo": ["Close", "Cancel"],
|
|
21
|
+
"GoodsReturnRequest": ["Close", "Cancel", "Reopen", "SaveDraftToDocument", "CreateCancellationDocument"],
|
|
22
|
+
"IncomingPayments": ["Cancel", "GetApprovalTemplates", "CancelbyCurrentSystemDate"],
|
|
23
|
+
"InventoryCountings": ["Close"],
|
|
24
|
+
"InventoryGenEntries": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
25
|
+
"InventoryGenExits": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
26
|
+
"InventoryTransferRequests": ["Close", "Cancel", "SaveDraftToDocument"],
|
|
27
|
+
"Invoices": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
28
|
+
"Items": ["Cancel"],
|
|
29
|
+
"JournalEntries": ["Cancel"],
|
|
30
|
+
"LandedCosts": ["CloseLandedCost", "CancelLandedCost"],
|
|
31
|
+
"MaterialRevaluation": ["Cancel", "Close"],
|
|
32
|
+
"Messages": ["GetMessage"],
|
|
33
|
+
"Orders": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
34
|
+
"PaymentDrafts": ["Cancel", "SaveDraftToDocument", "GetApprovalTemplates", "CancelbyCurrentSystemDate"],
|
|
35
|
+
"PickLists": ["GetReleasedAllocation"],
|
|
36
|
+
"ProductionOrders": ["Cancel"],
|
|
37
|
+
"ProjectManagements": ["CancelProject"],
|
|
38
|
+
"PurchaseCreditNotes": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
39
|
+
"PurchaseDeliveryNotes": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
40
|
+
"PurchaseDownPayments": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
41
|
+
"PurchaseInvoices": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
42
|
+
"PurchaseOrders": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
43
|
+
"PurchaseQuotations": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
44
|
+
"PurchaseRequests": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
45
|
+
"PurchaseReturns": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
46
|
+
"Quotations": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
47
|
+
"Resources": ["CreateLinkedItem"],
|
|
48
|
+
"ReturnRequest": ["Close", "Cancel", "Reopen", "SaveDraftToDocument", "CreateCancellationDocument"],
|
|
49
|
+
"Returns": ["Close", "Cancel", "Reopen", "CreateCancellationDocument"],
|
|
50
|
+
"SalesOpportunities": ["Close"],
|
|
51
|
+
"ServiceCalls": ["Close"],
|
|
52
|
+
"ServiceContracts": ["Cancel", "Close"],
|
|
53
|
+
"StockTransferDrafts": ["Cancel", "Close", "SaveDraftToDocument"],
|
|
54
|
+
"StockTransfers": ["Cancel", "Close"],
|
|
55
|
+
"TaxInvoiceReport": ["CancelTaxInvoiceReport"],
|
|
56
|
+
"TaxWebSites": ["SetAsDefault"],
|
|
57
|
+
"Users": ["Close"],
|
|
58
|
+
"VendorPayments": ["Cancel", "GetApprovalTemplates", "CancelbyCurrentSystemDate"]
|
|
59
|
+
}
|
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AccountCategoryService": ["AccountCategoryService_GetCategoryList"],
|
|
3
|
+
"AccountsService": ["AccountsService_CreateOpenBalance"],
|
|
4
|
+
"AccrualTypesService": ["AccrualTypesService_GetAccrualTypeList"],
|
|
5
|
+
"ActivitiesService": [
|
|
6
|
+
"ActivitiesService_GetActivityList",
|
|
7
|
+
"ActivitiesService_GetSingleInstanceFromSeries",
|
|
8
|
+
"ActivitiesService_UpdateSingleInstanceInSeries",
|
|
9
|
+
"ActivitiesService_DeleteSingleInstanceFromSeries",
|
|
10
|
+
"ActivitiesService_GetTopNActivityInstances"
|
|
11
|
+
],
|
|
12
|
+
"ActivityRecipientListsService": ["ActivityRecipientListsService_GetList"],
|
|
13
|
+
"AlternativeItemsService": [
|
|
14
|
+
"AlternativeItemsService_AddItem",
|
|
15
|
+
"AlternativeItemsService_UpdateItem",
|
|
16
|
+
"AlternativeItemsService_DeleteItem",
|
|
17
|
+
"AlternativeItemsService_GetItem"
|
|
18
|
+
],
|
|
19
|
+
"ApprovalRequestsService": [
|
|
20
|
+
"ApprovalRequestsService_GetApprovalRequestList",
|
|
21
|
+
"ApprovalRequestsService_GetOpenApprovalRequestList",
|
|
22
|
+
"ApprovalRequestsService_GetAllApprovalRequestsList"
|
|
23
|
+
],
|
|
24
|
+
"ApprovalStagesService": ["ApprovalStagesService_GetApprovalStageList"],
|
|
25
|
+
"ApprovalTemplatesService": ["ApprovalTemplatesService_GetApprovalTemplateList"],
|
|
26
|
+
"AssetCapitalizationCreditMemoService": ["AssetCapitalizationCreditMemoService_Cancel", "AssetCapitalizationCreditMemoService_GetList"],
|
|
27
|
+
"AssetCapitalizationService": ["AssetCapitalizationService_Cancel", "AssetCapitalizationService_GetList"],
|
|
28
|
+
"AssetClassesService": ["AssetClassesService_GetList"],
|
|
29
|
+
"AssetDepreciationGroupsService": ["AssetDepreciationGroupsService_GetList"],
|
|
30
|
+
"AssetGroupsService": ["AssetGroupsService_GetList"],
|
|
31
|
+
"AssetManualDepreciationService": ["AssetManualDepreciationService_Cancel", "AssetManualDepreciationService_GetList"],
|
|
32
|
+
"AssetRetirementService": ["AssetRetirementService_Cancel", "AssetRetirementService_GetList"],
|
|
33
|
+
"AssetTransferService": ["AssetTransferService_Cancel", "AssetTransferService_GetList"],
|
|
34
|
+
"AttributeGroupsService": ["AttributeGroupsService_GetList"],
|
|
35
|
+
"BankChargesAllocationCodesService": ["BankChargesAllocationCodesService_GetBankChargesAllocationCodeList"],
|
|
36
|
+
"BankStatementsService": ["BankStatementsService_GetBankStatementList"],
|
|
37
|
+
"BarCodesService": ["BarCodesService_GetList"],
|
|
38
|
+
"BinLocationAttributesService": ["BinLocationAttributesService_GetList"],
|
|
39
|
+
"BinLocationFieldsService": ["BinLocationFieldsService_GetList"],
|
|
40
|
+
"BinLocationsService": ["BinLocationsService_GetList"],
|
|
41
|
+
"BlanketAgreementsService": ["BlanketAgreementsService_GetBlanketAgreementList"],
|
|
42
|
+
"BOEDocumentTypesService": ["BOEDocumentTypesService_GetBOEDocumentTypeList"],
|
|
43
|
+
"BOEInstructionsService": ["BOEInstructionsService_GetBOEInstructionList"],
|
|
44
|
+
"BOELinesService": ["BOELinesService_GetBOELine"],
|
|
45
|
+
"BOEPortfoliosService": ["BOEPortfoliosService_GetBOEPortfolioList"],
|
|
46
|
+
"BPOpeningBalanceService": ["BPOpeningBalanceService_CreateOpenBalance"],
|
|
47
|
+
"BranchesService": ["BranchesService_GetBranchList"],
|
|
48
|
+
"BrazilBeverageIndexersService": ["BrazilBeverageIndexersService_GetList"],
|
|
49
|
+
"BrazilFuelIndexersService": ["BrazilFuelIndexersService_GetList"],
|
|
50
|
+
"BusinessPartnerPropertiesService": ["BusinessPartnerPropertiesService_GetBusinessPartnerPropertyList"],
|
|
51
|
+
"BusinessPartnersService": ["BusinessPartnersService_CreateOpenBalance"],
|
|
52
|
+
"CampaignResponseTypeService": ["CampaignResponseTypeService_GetResponseTypeList"],
|
|
53
|
+
"CampaignsService": ["CampaignsService_GetList"],
|
|
54
|
+
"CashDiscountsService": ["CashDiscountsService_GetCashDiscountList"],
|
|
55
|
+
"CashFlowLineItemsService": ["CashFlowLineItemsService_GetCashFlowLineItemList"],
|
|
56
|
+
"CertificateSeriesService": ["CertificateSeriesService_GetCertificateSeriesList"],
|
|
57
|
+
"ChangeLogsService": ["ChangeLogsService_GetChangeLog", "ChangeLogsService_GetChangeLogDifferences"],
|
|
58
|
+
"CheckLinesService": ["CheckLinesService_GetCheckLine", "CheckLinesService_GetValidCheckLineList"],
|
|
59
|
+
"CockpitsService": [
|
|
60
|
+
"CockpitsService_GetCockpitList",
|
|
61
|
+
"CockpitsService_PublishCockpit",
|
|
62
|
+
"CockpitsService_GetUserCockpitList",
|
|
63
|
+
"CockpitsService_GetTemplateCockpitList"
|
|
64
|
+
],
|
|
65
|
+
"CompanyService": [
|
|
66
|
+
"CompanyService_GetCompanyInfo",
|
|
67
|
+
"CompanyService_UpdateCompanyInfo",
|
|
68
|
+
"CompanyService_GetAdminInfo",
|
|
69
|
+
"CompanyService_UpdateAdminInfo",
|
|
70
|
+
"CompanyService_CreatePeriod",
|
|
71
|
+
"CompanyService_GetPeriods",
|
|
72
|
+
"CompanyService_GetPeriod",
|
|
73
|
+
"CompanyService_UpdatePeriod",
|
|
74
|
+
"CompanyService_GetFinancePeriods",
|
|
75
|
+
"CompanyService_GetFinancePeriod",
|
|
76
|
+
"CompanyService_UpdateFinancePeriod",
|
|
77
|
+
"CompanyService_RemoveFinancePeriod",
|
|
78
|
+
"CompanyService_CreatePeriodWithFinanceParams",
|
|
79
|
+
"CompanyService_GetFeaturesStatus",
|
|
80
|
+
"CompanyService_GetPathAdmin",
|
|
81
|
+
"CompanyService_UpdatePathAdmin",
|
|
82
|
+
"CompanyService_RoundDecimal",
|
|
83
|
+
"CompanyService_GetItemPrice",
|
|
84
|
+
"CompanyService_GetAdvancedGLAccount"
|
|
85
|
+
],
|
|
86
|
+
"CorrectionInvoiceReversalService": ["CorrectionInvoiceReversalService_GetApprovalTemplates", "CorrectionInvoiceReversalService_HandleApprovalRequest"],
|
|
87
|
+
"CorrectionInvoiceService": ["CorrectionInvoiceService_GetApprovalTemplates", "CorrectionInvoiceService_HandleApprovalRequest"],
|
|
88
|
+
"CorrectionPurchaseInvoiceReversalService": [
|
|
89
|
+
"CorrectionPurchaseInvoiceReversalService_GetApprovalTemplates",
|
|
90
|
+
"CorrectionPurchaseInvoiceReversalService_HandleApprovalRequest"
|
|
91
|
+
],
|
|
92
|
+
"CorrectionPurchaseInvoiceService": ["CorrectionPurchaseInvoiceService_GetApprovalTemplates", "CorrectionPurchaseInvoiceService_HandleApprovalRequest"],
|
|
93
|
+
"CostCenterTypesService": ["CostCenterTypesService_GetCostCenterTypeList"],
|
|
94
|
+
"CostElementService": ["CostElementService_GetCostElementList"],
|
|
95
|
+
"CountriesService": ["CountriesService_GetCountryList"],
|
|
96
|
+
"CreditLinesService": ["CreditLinesService_GetCreditLine", "CreditLinesService_GetValidCreditLineList"],
|
|
97
|
+
"CreditNotesService": ["CreditNotesService_GetApprovalTemplates", "CreditNotesService_HandleApprovalRequest"],
|
|
98
|
+
"CycleCountDeterminationsService": ["CycleCountDeterminationsService_GetList"],
|
|
99
|
+
"DashboardPackagesService": ["DashboardPackagesService_ImportDashboardPackage"],
|
|
100
|
+
"DeductionTaxSubGroupsService": ["DeductionTaxSubGroupsService_GetDeductionTaxSubGroupList"],
|
|
101
|
+
"DeliveryNotesService": ["DeliveryNotesService_GetApprovalTemplates", "DeliveryNotesService_HandleApprovalRequest"],
|
|
102
|
+
"DepartmentsService": ["DepartmentsService_GetDepartmentList"],
|
|
103
|
+
"DepositsService": ["DepositsService_GetDepositList", "DepositsService_CancelCheckRow", "DepositsService_CancelCheckRowbyCurrentSystemDate"],
|
|
104
|
+
"DepreciationAreasService": ["DepreciationAreasService_GetList"],
|
|
105
|
+
"DepreciationTypePoolsService": ["DepreciationTypePoolsService_GetList"],
|
|
106
|
+
"DepreciationTypesService": ["DepreciationTypesService_GetList"],
|
|
107
|
+
"DeterminationCriteriasService": ["DeterminationCriteriasService_GetList"],
|
|
108
|
+
"DimensionsService": ["DimensionsService_GetDimensionList"],
|
|
109
|
+
"DistributionRulesService": ["DistributionRulesService_GetDistributionRuleList"],
|
|
110
|
+
"DNFCodeSetupService": ["DNFCodeSetupService_GetDNFCodeSetupList"],
|
|
111
|
+
"DownPaymentsService": ["DownPaymentsService_GetApprovalTemplates", "DownPaymentsService_HandleApprovalRequest"],
|
|
112
|
+
"DraftsService": ["DraftsService_GetApprovalTemplates", "DraftsService_HandleApprovalRequest", "DraftsService_SaveDraftToDocument"],
|
|
113
|
+
"DunningTermsService": ["DunningTermsService_GetDunningTermList"],
|
|
114
|
+
"ElectronicCommunicationActionService": [
|
|
115
|
+
"ElectronicCommunicationActionService_UpdateAction",
|
|
116
|
+
"ElectronicCommunicationActionService_ConfirmSuccessOfCommunication",
|
|
117
|
+
"ElectronicCommunicationActionService_ReportErrorAndContinue",
|
|
118
|
+
"ElectronicCommunicationActionService_ReportErrorAndStop"
|
|
119
|
+
],
|
|
120
|
+
"ElectronicCommunicationActionsService": [
|
|
121
|
+
"ElectronicCommunicationActionsService_GetEcmAction",
|
|
122
|
+
"ElectronicCommunicationActionsService_AddEcmAction",
|
|
123
|
+
"ElectronicCommunicationActionsService_UpdateEcmAction",
|
|
124
|
+
"ElectronicCommunicationActionsService_DeleteEcmAction",
|
|
125
|
+
"ElectronicCommunicationActionsService_GetEcmActionByDoc",
|
|
126
|
+
"ElectronicCommunicationActionsService_GetEcmActionLogList",
|
|
127
|
+
"ElectronicCommunicationActionsService_GetEcmActionLog",
|
|
128
|
+
"ElectronicCommunicationActionsService_AddEcmActionLog"
|
|
129
|
+
],
|
|
130
|
+
"ElectronicFileFormatsService": ["ElectronicFileFormatsService_GetElectronicFileFormatList"],
|
|
131
|
+
"EmailGroupsService": ["EmailGroupsService_GetList"],
|
|
132
|
+
"EmployeeIDTypeService": ["EmployeeIDTypeService_GetList"],
|
|
133
|
+
"EmployeePositionService": ["EmployeePositionService_GetList"],
|
|
134
|
+
"EmployeeRolesSetupService": ["EmployeeRolesSetupService_GetEmployeeRoleSetupList"],
|
|
135
|
+
"EmployeeStatusService": ["EmployeeStatusService_GetList"],
|
|
136
|
+
"EmployeeTransfersService": ["EmployeeTransfersService_GetEmployeeTransferList"],
|
|
137
|
+
"EnhancedDiscountGroupsService": ["EnhancedDiscountGroupsService_GetList"],
|
|
138
|
+
"ExtendedTranslationsService": ["ExtendedTranslationsService_GetExtendedTranslationList"],
|
|
139
|
+
"ExternalCallsService": ["ExternalCallsService_SendCall", "ExternalCallsService_UpdateCall", "ExternalCallsService_GetCall"],
|
|
140
|
+
"ExternalReconciliationsService": [
|
|
141
|
+
"ExternalReconciliationsService_Reconcile",
|
|
142
|
+
"ExternalReconciliationsService_GetReconciliation",
|
|
143
|
+
"ExternalReconciliationsService_CancelReconciliation",
|
|
144
|
+
"ExternalReconciliationsService_GetReconciliationList"
|
|
145
|
+
],
|
|
146
|
+
"FAAccountDeterminationsService": ["FAAccountDeterminationsService_GetList"],
|
|
147
|
+
"FinancialYearsService": ["FinancialYearsService_GetFinancialYearList"],
|
|
148
|
+
"FiscalPrinterService": ["FiscalPrinterService_GetFiscalPrinterList"],
|
|
149
|
+
"FixedAssetItemsService": [
|
|
150
|
+
"FixedAssetItemsService_GetAssetValuesList",
|
|
151
|
+
"FixedAssetItemsService_GetAssetEndBalance",
|
|
152
|
+
"FixedAssetItemsService_UpdateAssetEndBalanceCorrectionInvoiceReversalService",
|
|
153
|
+
"CorrectionInvoiceReversalService_GetApprovalTemplates",
|
|
154
|
+
"CorrectionInvoiceReversalService_HandleApprovalRequest"
|
|
155
|
+
],
|
|
156
|
+
"GLAccountAdvancedRulesService": ["GLAccountAdvancedRulesService_GetList"],
|
|
157
|
+
"GoodsReturnRequestService": [
|
|
158
|
+
"GoodsReturnRequestService_GetApprovalTemplates",
|
|
159
|
+
"GoodsReturnRequestService_Preview",
|
|
160
|
+
"GoodsReturnRequestService_HandleApprovalRequest"
|
|
161
|
+
],
|
|
162
|
+
"GovPayCodesService": ["GovPayCodesService_GetList"],
|
|
163
|
+
"GTIsService": ["GTIsService_Import"],
|
|
164
|
+
"IntegrationPackagesConfigureService": ["IntegrationPackagesConfigureService_GetList"],
|
|
165
|
+
"InternalReconciliationsService": ["InternalReconciliationsService_GetOpenTransactions", "InternalReconciliationsService_Cancel"],
|
|
166
|
+
"IntrastatConfigurationService": ["IntrastatConfigurationService_GetList"],
|
|
167
|
+
"InventoryCountingsService": ["InventoryCountingsService_GetList"],
|
|
168
|
+
"InventoryGenEntryService": ["InventoryGenEntryService_GetApprovalTemplates", "InventoryGenEntryService_HandleApprovalRequest"],
|
|
169
|
+
"InventoryGenExitService": ["InventoryGenExitService_GetApprovalTemplates", "InventoryGenExitService_HandleApprovalRequest"],
|
|
170
|
+
"InventoryOpeningBalancesService": ["InventoryOpeningBalancesService_GetList"],
|
|
171
|
+
"InventoryPostingsService": ["InventoryPostingsService_GetList", "InventoryPostingsService_SetCopyOption"],
|
|
172
|
+
"InventoryTransferRequestsService": ["InventoryTransferRequestsService_GetApprovalTemplates", "InventoryTransferRequestsService_HandleApprovalRequest"],
|
|
173
|
+
"InvoicesService": ["InvoicesService_GetApprovalTemplates", "InvoicesService_HandleApprovalRequest"],
|
|
174
|
+
"JournalEntryDocumentTypeService": ["JournalEntryDocumentTypeService_GetList"],
|
|
175
|
+
"JournalVouchersService": ["JournalVouchersService_Add"],
|
|
176
|
+
"KPIsService": ["KPIsService_GetList"],
|
|
177
|
+
"LandedCostsService": ["LandedCostsService_GetLandedCostList"],
|
|
178
|
+
"LicenseService": ["LicenseService_GetInstallationNumber"],
|
|
179
|
+
"Login": ["Login"],
|
|
180
|
+
"Logout": ["Logout"],
|
|
181
|
+
"MaterialGroupsService": ["MaterialGroupsService_GetMaterialGroupList"],
|
|
182
|
+
"MaterialRevaluationFIFOService": ["MaterialRevaluationFIFOService_GetMaterialRevaluationFIFO"],
|
|
183
|
+
"MaterialRevaluationSNBService": ["MaterialRevaluationSNBService_GetList"],
|
|
184
|
+
"MessagesService": ["MessagesService_GetInbox", "MessagesService_GetOutbox", "MessagesService_GetSentMessages"],
|
|
185
|
+
"MobileAddOnSettingService": ["MobileAddOnSettingService_GetMobileAddOnSettingList"],
|
|
186
|
+
"MobileAppService": [
|
|
187
|
+
"MobileAppService_GetTechnicianSchedulings",
|
|
188
|
+
"MobileAppService_GetEmployeeFullNames",
|
|
189
|
+
"MobileAppService_GetTechnicianSettings",
|
|
190
|
+
"MobileAppService_UpdateTechnicianSettings",
|
|
191
|
+
"MobileAppService_GetTechnicianSettingsGroup",
|
|
192
|
+
"MobileAppService_UpdateTechnicianSettingsGroup",
|
|
193
|
+
"MobileAppService_GetServiceAppReportContent",
|
|
194
|
+
"MobileAppService_UpdateServiceAppReportContent",
|
|
195
|
+
"MobileAppService_GetServiceAppReport",
|
|
196
|
+
"MobileAppService_UpdateServiceAppReport"
|
|
197
|
+
],
|
|
198
|
+
"NatureOfAssesseesService": ["NatureOfAssesseesService_GetNatureOfAssesseeList"],
|
|
199
|
+
"NCMCodesSetupService": ["NCMCodesSetupService_GetNCMCodeSetupList"],
|
|
200
|
+
"NFModelsService": ["NFModelsService_GetList"],
|
|
201
|
+
"NFTaxCategoriesService": ["NFTaxCategoriesService_GetList"],
|
|
202
|
+
"OccurrenceCodesService": ["OccurrenceCodesService_GetList"],
|
|
203
|
+
"OrdersService": ["OrdersService_GetApprovalTemplates", "OrdersService_HandleApprovalRequest"],
|
|
204
|
+
"PartnersSetupsService": ["PartnersSetupsService_GetList"],
|
|
205
|
+
"PaymentBlocksService": ["PaymentBlocksService_GetPaymentBlockList"],
|
|
206
|
+
"PaymentCalculationService": ["PaymentCalculationService_GetPaymentAmount"],
|
|
207
|
+
"PaymentTermsTypesService": ["PaymentTermsTypesService_UpdateWithBPs"],
|
|
208
|
+
"PickListsService": ["PickListsService_Close", "PickListsService_UpdateReleasedAllocation"],
|
|
209
|
+
"PredefinedTextsService": ["PredefinedTextsService_GetPredefinedTextList"],
|
|
210
|
+
"ProfitCentersService": ["ProfitCentersService_GetProfitCenterList"],
|
|
211
|
+
"ProjectManagementConfigurationService": [
|
|
212
|
+
"ProjectManagementConfigurationService_GetSubprojectTypes",
|
|
213
|
+
"ProjectManagementConfigurationService_AddSubprojectTypes",
|
|
214
|
+
"ProjectManagementConfigurationService_UpdateSubprojectTypes",
|
|
215
|
+
"ProjectManagementConfigurationService_DeleteSubprojectTypes",
|
|
216
|
+
"ProjectManagementConfigurationService_GetStageTypes",
|
|
217
|
+
"ProjectManagementConfigurationService_AddStageTypes",
|
|
218
|
+
"ProjectManagementConfigurationService_UpdateStageTypes",
|
|
219
|
+
"ProjectManagementConfigurationService_DeleteStageTypes",
|
|
220
|
+
"ProjectManagementConfigurationService_GetAreas",
|
|
221
|
+
"ProjectManagementConfigurationService_AddAreas",
|
|
222
|
+
"ProjectManagementConfigurationService_UpdateAreas",
|
|
223
|
+
"ProjectManagementConfigurationService_DeleteAreas",
|
|
224
|
+
"ProjectManagementConfigurationService_GetPriorities",
|
|
225
|
+
"ProjectManagementConfigurationService_AddPriorities",
|
|
226
|
+
"ProjectManagementConfigurationService_UpdatePriorities",
|
|
227
|
+
"ProjectManagementConfigurationService_DeletePriorities",
|
|
228
|
+
"ProjectManagementConfigurationService_GetActivities",
|
|
229
|
+
"ProjectManagementConfigurationService_AddActivities",
|
|
230
|
+
"ProjectManagementConfigurationService_UpdateActivities",
|
|
231
|
+
"ProjectManagementConfigurationService_DeleteActivities",
|
|
232
|
+
"ProjectManagementConfigurationService_GetTasks",
|
|
233
|
+
"ProjectManagementConfigurationService_AddTasks",
|
|
234
|
+
"ProjectManagementConfigurationService_UpdateTasks",
|
|
235
|
+
"ProjectManagementConfigurationService_DeleteTasks"
|
|
236
|
+
],
|
|
237
|
+
"ProjectManagementService": [
|
|
238
|
+
"ProjectManagementService_GetSubprojectsList",
|
|
239
|
+
"ProjectManagementService_GetSubproject",
|
|
240
|
+
"ProjectManagementService_AddSubproject",
|
|
241
|
+
"ProjectManagementService_UpdateSubproject",
|
|
242
|
+
"ProjectManagementService_DeleteSubproject"
|
|
243
|
+
],
|
|
244
|
+
"ProjectsService": ["ProjectsService_GetProjectList"],
|
|
245
|
+
"PurchaseCreditNotesService": ["PurchaseCreditNotesService_GetApprovalTemplates", "PurchaseCreditNotesService_HandleApprovalRequest"],
|
|
246
|
+
"PurchaseDeliveryNotesService": ["PurchaseDeliveryNotesService_GetApprovalTemplates", "PurchaseDeliveryNotesService_HandleApprovalRequest"],
|
|
247
|
+
"PurchaseDownPaymentsService": ["PurchaseDownPaymentsService_GetApprovalTemplates", "PurchaseDownPaymentsService_HandleApprovalRequest"],
|
|
248
|
+
"PurchaseInvoicesService": ["PurchaseInvoicesService_GetApprovalTemplates", "PurchaseInvoicesService_HandleApprovalRequest"],
|
|
249
|
+
"PurchaseOrdersService": ["PurchaseOrdersService_GetApprovalTemplates", "PurchaseOrdersService_HandleApprovalRequest"],
|
|
250
|
+
"PurchaseQuotationsService": ["PurchaseQuotationsService_GetApprovalTemplates", "PurchaseQuotationsService_HandleApprovalRequest"],
|
|
251
|
+
"PurchaseRequestService": ["PurchaseRequestService_GetApprovalTemplates", "PurchaseRequestService_HandleApprovalRequest"],
|
|
252
|
+
"PurchaseReturnsService": ["PurchaseReturnsService_GetApprovalTemplates", "PurchaseReturnsService_HandleApprovalRequest"],
|
|
253
|
+
"QueryService": ["QueryService_PostQuery"],
|
|
254
|
+
"QuotationsService": ["QuotationsService_GetApprovalTemplates", "QuotationsService_HandleApprovalRequest"],
|
|
255
|
+
"RecurringTransactionService": ["RecurringTransactionService_GetAvailableRecurringTransactions", "RecurringTransactionService_ExecuteRecurringTransactions"],
|
|
256
|
+
"ReportFilterService": ["ReportFilterService_GetTaxReportFilterList"],
|
|
257
|
+
"ReportLayoutsService": [
|
|
258
|
+
"ReportLayoutsService_SetDefaultReport",
|
|
259
|
+
"ReportLayoutsService_GetDefaultReport",
|
|
260
|
+
"ReportLayoutsService_AddReportLayout",
|
|
261
|
+
"ReportLayoutsService_UpdatePrinterSettings",
|
|
262
|
+
"ReportLayoutsService_DeleteReportLayout",
|
|
263
|
+
"ReportLayoutsService_GetReportLayout",
|
|
264
|
+
"ReportLayoutsService_GetDefaultReportLayout",
|
|
265
|
+
"ReportLayoutsService_GetReportLayoutList",
|
|
266
|
+
"ReportLayoutsService_UpdateLanguageReport",
|
|
267
|
+
"ReportLayoutsService_AddReportLayoutToMenu",
|
|
268
|
+
"ReportLayoutsService_DeleteReportLayoutAndMenu"
|
|
269
|
+
],
|
|
270
|
+
"ReportTypesService": ["ReportTypesService_GetReportTypeList"],
|
|
271
|
+
"ResourceCapacitiesService": ["ResourceCapacitiesService_GetList", "ResourceCapacitiesService_GetListWithFilter"],
|
|
272
|
+
"ResourceGroupsService": ["ResourceGroupsService_GetList"],
|
|
273
|
+
"ResourcePropertiesService": ["ResourcePropertiesService_GetList"],
|
|
274
|
+
"ResourcesService": ["ResourcesService_GetList"],
|
|
275
|
+
"RetornoCodesService": ["RetornoCodesService_GetList"],
|
|
276
|
+
"ReturnRequestService": ["ReturnRequestService_GetApprovalTemplates", "ReturnRequestService_Preview", "ReturnRequestService_HandleApprovalRequest"],
|
|
277
|
+
"ReturnsService": ["ReturnsService_GetApprovalTemplates", "ReturnsService_HandleApprovalRequest"],
|
|
278
|
+
"RouteStagesService": ["RouteStagesService_GetList"],
|
|
279
|
+
"SalesOpportunityCompetitorsSetupService": ["SalesOpportunityCompetitorsSetupService_GetSalesOpportunityCompetitorSetupList"],
|
|
280
|
+
"SalesOpportunityInterestsSetupService": ["SalesOpportunityInterestsSetupService_GetSalesOpportunityInterestSetupList"],
|
|
281
|
+
"SalesOpportunityReasonsSetupService": ["SalesOpportunityReasonsSetupService_GetSalesOpportunityReasonSetupList"],
|
|
282
|
+
"SalesOpportunitySourcesSetupService": ["SalesOpportunitySourcesSetupService_GetSalesOpportunitySourceSetupList"],
|
|
283
|
+
"SBOBobService": [
|
|
284
|
+
"SBOBobService_GetSystemPermission",
|
|
285
|
+
"SBOBobService_GetSystemCurrency",
|
|
286
|
+
"SBOBobService_GetDueDate",
|
|
287
|
+
"SBOBobService_GetLocalCurrency",
|
|
288
|
+
"SBOBobService_GetCurrencyRate",
|
|
289
|
+
"SBOBobService_GetIndexRate",
|
|
290
|
+
"SBOBobService_SetCurrencyRate"
|
|
291
|
+
],
|
|
292
|
+
"SectionsService": ["SectionsService_GetSectionList"],
|
|
293
|
+
"SeriesService": [
|
|
294
|
+
"SeriesService_AddSeries",
|
|
295
|
+
"SeriesService_RemoveSeries",
|
|
296
|
+
"SeriesService_AttachSeriesToDocument",
|
|
297
|
+
"SeriesService_UnattachSeriesFromDocument",
|
|
298
|
+
"SeriesService_SetDefaultSeriesForAllUsers",
|
|
299
|
+
"SeriesService_SetDefaultSeriesForCurrentUser",
|
|
300
|
+
"SeriesService_SetDefaultSeriesForUser",
|
|
301
|
+
"SeriesService_UpdateSeries",
|
|
302
|
+
"SeriesService_GetDefaultSeries",
|
|
303
|
+
"SeriesService_GetDocumentSeries",
|
|
304
|
+
"SeriesService_GetSeries",
|
|
305
|
+
"SeriesService_GetDocumentChangedMenuName",
|
|
306
|
+
"SeriesService_ChangeDocumentMenuName",
|
|
307
|
+
"SeriesService_GetElectronicSeries",
|
|
308
|
+
"SeriesService_AddElectronicSeries",
|
|
309
|
+
"SeriesService_RemoveElectronicSeries",
|
|
310
|
+
"SeriesService_UpdateElectronicSeries",
|
|
311
|
+
"SeriesService_GetDefaultElectronicSeries",
|
|
312
|
+
"SeriesService_SetDefaultElectronicSeries"
|
|
313
|
+
],
|
|
314
|
+
"ServiceCallOriginsService": ["ServiceCallOriginsService_GetServiceCallOriginList"],
|
|
315
|
+
"ServiceCallProblemSubTypesService": ["ServiceCallProblemSubTypesService_GetServiceCallProblemSubTypeList"],
|
|
316
|
+
"ServiceCallProblemTypesService": ["ServiceCallProblemTypesService_GetServiceCallProblemTypeList"],
|
|
317
|
+
"ServiceCallSolutionStatusService": ["ServiceCallSolutionStatusService_GetServiceCallSolutionStatusList"],
|
|
318
|
+
"ServiceCallStatusService": ["ServiceCallStatusService_GetServiceCallStatusList"],
|
|
319
|
+
"ServiceCallTypesService": ["ServiceCallTypesService_GetServiceCallTypeList"],
|
|
320
|
+
"ServiceGroupsService": ["ServiceGroupsService_GetServiceGroupList"],
|
|
321
|
+
"ServiceTaxPostingService": ["ServiceTaxPostingService_PostServiceTax", "ServiceTaxPostingService_GetTaxableDeliveries"],
|
|
322
|
+
"StatesService": ["StatesService_GetStateList"],
|
|
323
|
+
"StockTransferDraftService": ["StockTransferDraftService_GetApprovalTemplates", "StockTransferDraftService_HandleApprovalRequest"],
|
|
324
|
+
"StockTransferService": ["StockTransferService_GetApprovalTemplates", "StockTransferService_HandleApprovalRequest"],
|
|
325
|
+
"TargetGroupsService": ["TargetGroupsService_GetList"],
|
|
326
|
+
"TaxCodeDeterminationsService": ["TaxCodeDeterminationsService_GetTaxCodeDeterminationList"],
|
|
327
|
+
"TaxCodeDeterminationsTCDService": ["TaxCodeDeterminationsTCDService_GetTaxCodeDeterminationTCDList"],
|
|
328
|
+
"TaxWebSitesService": ["TaxWebSitesService_GetTaxWebSiteList", "TaxWebSitesService_GetDefaultWebSite"],
|
|
329
|
+
"TerminationReasonService": ["TerminationReasonService_GetList"],
|
|
330
|
+
"TrackingNotesService": ["TrackingNotesService_GetList"],
|
|
331
|
+
"TransactionCodesService": ["TransactionCodesService_GetList"],
|
|
332
|
+
"UnitOfMeasurementGroupsService": ["UnitOfMeasurementGroupsService_GetList"],
|
|
333
|
+
"UnitOfMeasurementsService": ["UnitOfMeasurementsService_GetList"],
|
|
334
|
+
"UserMenuService": [
|
|
335
|
+
"UserMenuService_GetCurrentUserMenu",
|
|
336
|
+
"UserMenuService_UpdateCurrentUserMenu",
|
|
337
|
+
"UserMenuService_GetUserMenu",
|
|
338
|
+
"UserMenuService_UpdateUserMenu"
|
|
339
|
+
],
|
|
340
|
+
"ValueMappingService": ["ValueMappingService_GetMappedB1Value", "ValueMappingService_GetThirdPartyValuesForB1Value", "ValueMappingService_RemoveMappedValue"],
|
|
341
|
+
"WarehouseSublevelCodesService": ["WarehouseSublevelCodesService_GetList"],
|
|
342
|
+
"WorkflowTaskService": ["WorkflowTaskService_Complete", "WorkflowTaskService_GetApprovalTaskList"]
|
|
343
|
+
}
|