Skip to main content

Budget

General

Web service type: Command & Query Web Services

Resource location: /webservices/BudgetService.svc?wsdl

Queries

GetBudgetByProfitAndLoss

public class GetBudgetByProfitAndLoss : Query
{
public String Code; // Code of the budget to be retrieved.
public Int Year; // Year to be retrieved.
public Int PeriodFrom; // Start period to be retrieved.
public Int PeriodTo; // End period to be retrieved.
public Bool IncludeProvisional; // Include provisional transactions.
public Bool IncludeFinal; // Include final transactions.
public String Dim1From; // General ledger start code.
public String Dim1To; // General ledger end code.
public String Dim2From; // Cost center start code.
public String Dim2To; // Cost center end code.
public String Dim3From; // Project start code.
public String Dim3To; // Project end code.
}

GetBudgetByCostCenter

public class GetBudgetByCostCenter : Query
{
public String Code; // Code of the budget to be retrieved.
public Int Year; // Year to be retrieved.
public Int PeriodFrom; // Start period to be retrieved.
public Int PeriodTo; // End period to be retrieved.
public Bool IncludeProvisional; // Include provisional transactions.
public Bool IncludeFinal; // Include final transactions.
public String Dim1From; // General ledger start code.
public String Dim1To; // General ledger end code.
public String Dim2From; // Cost center start code.
public String Dim2To; // Cost center end code.
public String Dim3From; // Project start code.
public String Dim3To; // Project end code.
}

GetBudgetByProject

public class GetBudgetByProject : Query
{
public String Code; // Code of the budget to be retrieved.
public Int Year; // Year to be retrieved.
public Int PeriodFrom; // Start period to be retrieved.
public Int PeriodTo; // End period to be retrieved.
public Bool IncludeProvisional; // Include provisional transactions.
public Bool IncludeFinal; // Include final transactions.
public String Dim1From; // General ledger start code.
public String Dim1To; // General ledger end code.
public String Dim2From; // Cost center start code.
public String Dim2To; // Cost center end code.
public String Dim3From; // Project start code.
public String Dim3To; // Project end code.
}