CData Sync App は、Tally データをデータベース、データレイク、またはデータウェアハウスに継続的にパイプライン化する簡単な方法を提供し、分析、レポート、AI、および機械学習で簡単に利用できるようにします。
Tally コネクタはCData Sync アプリケーションから使用可能で、Tally からデータを取得して、サポートされている任意の同期先に移動できます。
Sync App アプリケーションの接続 ページに移動し、接続の追加 パネルで対応するアイコンを選択して、Tally への接続を作成します。Tally アイコンが利用できない場合は、Add More アイコンをクリックしてCData サイトからTally コネクタをダウンロードおよびインストールします。
必須プロパティは[設定]タブにリストされています。[Advanced]タブには、通常は必要ない接続プロパティが表示されます。
Tally インスタンスに接続するには、次の接続プロパティを設定します。
このセクションでは、Tally Sync App の高度な機能を厳選して説明します。
Sync App を使用すると、事前設定されたクエリによって内容が決定されるユーザー定義ビューと呼ばれる仮想テーブルを定義できます。 このビューは、ドライバーに発行されるクエリを直接制御できない場合に有効です。 カスタムビューの作成と設定の概要については、ユーザー定義ビュー を参照してください。
SSL の設定 を使用して、Sync App が証明書のネゴシエーションをどのように扱うかを調整します。さまざまな証明書形式を選択できます。 詳しくは、接続文字列オプションにあるSSLServerCert プロパティを参照してください。
Windows プロキシとHTTP プロキシを含むファイアウォールとプロキシ に合致するようSync App を設定します。トンネル接続を設定することもできます。
Sync App は、Tally にできるだけ多くのSELECT ステートメント処理をオフロードし、残りのクエリをクライアント側のインメモリで処理します。
詳しくはクエリ処理 を参照してください。
CData ログを調整するために使用可能な設定の概要については、ログ を参照してください。基本的なロギングでは、 次の2つの接続プロパティを設定するだけです。LogModules 接続プロパティを使用してログに記録する情報のサブセットを選択できる、 より洗練されたロギングをサポートする多数の機能があります。
デフォルトでは、Sync App はサーバーの証明書をシステムの信頼できる証明書ストアと照合してSSL / TLS のネゴシエーションを試みます。
別の証明書を指定するには、利用可能なフォーマットについてSSLServerCert プロパティを参照してください。
Windows のシステムプロキシ経由の接続では、接続プロパティを追加で設定する必要はありません。他のプロキシに接続するには、ProxyAutoDetect をfalse に設定します。
さらにHTTP プロキシへの認証には、ProxyServer とProxyPort に加えてProxyAuthScheme、ProxyUser、およびProxyPassword を設定します。
次のプロパティを設定します。
このセクションでは、利用可能なAPI オブジェクトを示し、Tally API へのSQL の実行について詳しく説明します。
ビュー では、利用可能なビューを説明します。ビューは、Company、Employees、Ledgers などのエンティティに対して静的に定義されます。
ストアドプロシージャ は、Tally のファンクションライクなインターフェースです。ストアドプロシージャを使用すると、オブジェクトのダウンロードやエンベロープの移動など、Tally の操作を実行できます。
ビューは、カラムと疑似カラムで構成されます。ビューは、データを示すという点でテーブルに似ていますが、ビューでは更新はサポートされません。通常、ビューとして表されるエンティティは、読み取り専用のエンティティです。多くの場合、これらのデータはストアドプロシージャを使用することで更新できます(その機能がデータソースに適用できる場合)。
ビューに対しては、通常のテーブルと同じようにクエリを実行でき、このときに返されるデータも同様です。
ビューとして公開されるクエリなどの動的ビューや、project_team ワークアイテムの特定の組み合わせを検索するためのビューがサポートされています。
Name | Description |
Company | Retrieve Company Details. |
Employees | Retrieve Employee Details. |
Ledger | Retrieve Ledger Details. |
Payhead | Retrieve Payhead Details. |
PriceList | Retrieve PriceList. |
Report_BalanceSheet | Balance Sheet Report of Tally |
Report_BankGroupSummary | Bank Group Summary Report of Tally |
Report_BillsPayable | Bills Payable Report of Tally |
Report_BillsReceivable | Bills Receivable Report of Tally |
Report_GodownSummary | Godown Summary Report of Tally |
Report_GroupOutstandings | Group Outstandings Report of Tally |
Report_GroupSummary | Group Summary Report of Tally |
Report_GroupVouchers | Group Vouchers Report of Tally |
Report_ItemMonthlySummary | ItemMonthlySummary Report of Tally |
Report_LedgerOutstandings | Ledger Outstandings Report of Tally |
Report_LedgerVouchers | Ledger Vouchers Report of Tally |
Report_NegativeLedger | Negative Ledger Report of Tally |
Report_NegativeStock | Negative Stock Report of Tally |
Report_ProfitAndLoss | Profit and Loss Report of Tally |
Report_RatioAnalysis | Ratio Analysis Report of Tally |
Report_Statistics | Statistics Report of Tally |
Report_StockGroupSummary | Stock Summary Report of Tally |
Report_StockItemSummary | Stock Summary Report of Tally |
Report_StockVouchers | StockVouchers Report of Tally |
Report_TrialBalance | Trial Balance Report of Tally |
Report_VoucherRegister | Voucher Register Report of Tally |
StockItem | Retrieve StockItems. |
Retrieve Company Details.
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Company WHERE Name LIKE 'cdata%' SELECT * FROM Company WHERE CompanyFBTAssesseeType != 'Default' SELECT * FROM Company WHERE StateName = 'Karnataka' AND PINCode >= '560034' SELECT * FROM Company WHERE CountryName = 'India' OR CountryName = 'US' SELECT * FROM Company WHERE PINCode > '560034' SELECT * FROM Company ORDER BY DBName ASC
Name | Type | Description |
StartingFrom | Date | The StartingFrom value of the Company. |
BooksFrom | Date | The BooksFrom value of the Company. |
VatApplDate | Date | The VatApplDate value of the Company. |
CompositeApplicableDate | Date | The CompositeApplicableDate value of the Company. |
VATRegDate | Date | The VATRegDate value of the Company. |
DeactivateExciseFrom | Date | The DeactivateExciseFrom value of the Company. |
STRegDate | Date | The STRegDate value of the Company. |
DeactivateServiceTaxFrom | Date | The DeactivateServiceTaxFrom value of the Company. |
LBTRegnDate | Date | The LBTRegnDate value of the Company. |
DeactivateVATFrom | Date | The DeactivateVATFrom value of the Company. |
CSTApplDate | Date | The CSTApplDate value of the Company. |
GSTApplicableDate | Date | The GSTApplicableDate value of the Company. |
AuditedUpto | Date | The AuditedUpto value of the Company. |
FIFOApplicableFrom | Date | The FIFOApplicableFrom value of the Company. |
ReturnsStartFrom | Date | The ReturnsStartFrom value of the Company. |
Name | String | The Name value of the Company. |
BasicCompanyFormalName | String | The BasicCompanyFormalName value of the Company. |
Guid | String | The Guid value of the Company. |
String | The Email value of the Company. | |
StateName | String | The StateName value of the Company. |
PINCode | String | The PINCode value of the Company. |
PhoneNumber | String | The PhoneNumber value of the Company. |
CMPEmployerId | String | The CMPEmployerId value of the Company. |
FaxNumber | String | The FaxNumber value of the Company. |
Website | String | The Website value of the Company. |
IncomeTaxNumber | String | The IncomeTaxNumber value of the Company. |
SalesTaxNumber | String | The SalesTaxNumber value of the Company. |
InterStateSTNumber | String | The InterStateSTNumber value of the Company. |
TANumber | String | The TANumber value of the Company. |
VATTINNumber | String | The VATTINNumber value of the Company. |
CompositeTIN | String | The CompositeTIN value of the Company. |
EECDebtors | String | The EECDebtors value of the Company. |
EECCreditors | String | The EECCreditors value of the Company. |
CountryName | String | The CountryName value of the Company. |
VATPymtPeriod | String | The VATPymtPeriod value of the Company. |
CSTPymtPeriod | String | The CSTPymtPeriod value of the Company. |
STPymtPeriod | String | The STPymtPeriod value of the Company. |
TDSPymtPeriod | String | The TDSPymtPeriod value of the Company. |
TCSPymtPeriod | String | The TCSPymtPeriod value of the Company. |
PFPymtPeriod | String | The PFPymtPeriod value of the Company. |
PTPymtPeriod | String | The PTPymtPeriod value of the Company. |
ESIPymtPeriod | String | The ESIPymtPeriod value of the Company. |
FBTPymtPeriod | String | The FBTPymtPeriod value of the Company. |
FBTYearEndPymtPeriod | String | The FBTYearEndPymtPeriod value of the Company. |
ITDeductorWard | String | The ITDeductorWard value of the Company. |
ITDeductorRespPersonName | String | The ITDeductorRespPersonName value of the Company. |
ITDeductorRespPersonFatherName | String | The ITDeductorRespPersonFatherName value of the Company. |
ITDeductorRespPersonDesig | String | The ITDeductorRespPersonDesig value of the Company. |
TANRegNo | String | The TANRegNo value of the Company. |
VATFilingPeriodicity | String | The VATFilingPeriodicity value of the Company. |
ITDeductorBranch | String | The ITDeductorBranch value of the Company. |
ExciseRegn | String | The ExciseRegn value of the Company. |
ExciseRange | String | The ExciseRange value of the Company. |
ExciseRangeAddress | String | The ExciseRangeAddress value of the Company. |
ExciseDivision | String | The ExciseDivision value of the Company. |
ExciseDivisionAddress | String | The ExciseDivisionAddress value of the Company. |
CMPIECCode | String | The CMPIECCode value of the Company. |
ExciseAssesseeType | String | The ExciseAssesseeType value of the Company. |
ExciseCommissionerate | String | The ExciseCommissionerate value of the Company. |
ExciseRangeCode | String | The ExciseRangeCode value of the Company. |
ExciseDivisionCode | String | The ExciseDivisionCode value of the Company. |
ExciseFocalBankCode | String | The ExciseFocalBankCode value of the Company. |
ExciseFocalBankName | String | The ExciseFocalBankName value of the Company. |
ExciseFocalBankAddr | String | The ExciseFocalBankAddr value of the Company. |
STRegNumber | String | The STRegNumber value of the Company. |
STAssesseeCode | String | The STAssesseeCode value of the Company. |
STOrgType | String | The STOrgType value of the Company. |
STMajorService | String | The STMajorService value of the Company. |
STDivisionCode | String | The STDivisionCode value of the Company. |
STDivisionName | String | The STDivisionName value of the Company. |
STRangeCode | String | The STRangeCode value of the Company. |
STRangeName | String | The STRangeName value of the Company. |
STCommrtCode | String | The STCommrtCode value of the Company. |
STCommrtName | String | The STCommrtName value of the Company. |
STFocalBankCode | String | The STFocalBankCode value of the Company. |
STFocalBankName | String | The STFocalBankName value of the Company. |
STFocalBankAddr | String | The STFocalBankAddr value of the Company. |
STAdjExpenses | String | The STAdjExpenses value of the Company. |
STLargeTaxPayerUnit | String | The STLargeTaxPayerUnit value of the Company. |
STPremisesCodeNo | String | The STPremisesCodeNo value of the Company. |
ServiceTaxLiabilityType | String | The ServiceTaxLiabilityType value of the Company. |
RevChargeType | String | The RevChargeType value of the Company. |
DeductorWard | String | The DeductorWard value of the Company. |
DeductorStatus | String | The DeductorStatus value of the Company. |
DeductorRespPersonName | String | The DeductorRespPersonName value of the Company. |
DeductorRespPersonDesig | String | The DeductorRespPersonDesig value of the Company. |
DeductorRespPersonFatherName | String | The DeductorRespPersonFatherName value of the Company. |
HeadOfficeTANumber | String | The HeadOfficeTANumber value of the Company. |
TDSDeductorType | String | The TDSDeductorType value of the Company. |
PersonResponsiblePAN | String | The PersonResponsiblePAN value of the Company. |
PersonResponsibleFlatNo | String | The PersonResponsibleFlatNo value of the Company. |
PersonResponsiblePremises | String | The PersonResponsiblePremises value of the Company. |
PersonResponsibleRoad | String | The PersonResponsibleRoad value of the Company. |
PersonResponsibleArea | String | The PersonResponsibleArea value of the Company. |
PersonResponsibleCity | String | The PersonResponsibleCity value of the Company. |
PersonResponsibleState | String | The PersonResponsibleState value of the Company. |
PersonResponsiblePincode | String | The PersonResponsiblePincode value of the Company. |
PersonResponsibleMobile | String | The PersonResponsibleMobile value of the Company. |
PersonResponsibleSTDCode | String | The PersonResponsibleSTDCode value of the Company. |
PersonResponsiblePhone | String | The PersonResponsiblePhone value of the Company. |
PersonResponsibleEMail | String | The PersonResponsibleEMail value of the Company. |
PersonResponsibleAltSTDCode | String | The PersonResponsibleAltSTDCode value of the Company. |
PersonResponsibleAltPhone | String | The PersonResponsibleAltPhone value of the Company. |
PersonResponsibleAltEMail | String | The PersonResponsibleAltEMail value of the Company. |
PersonResponsibleAltMobile | String | The PersonResponsibleAltMobile value of the Company. |
DeductorResponsibleAltSTDCode | String | The DeductorResponsibleAltSTDCode value of the Company. |
DeductorResponsibleAltPhone | String | The DeductorResponsibleAltPhone value of the Company. |
DeductorResponsibleAltEMail | String | The DeductorResponsibleAltEMail value of the Company. |
DeductorResponsibleAltMobile | String | The DeductorResponsibleAltMobile value of the Company. |
ITDeductorRespPersonPAN | String | The ITDeductorRespPersonPAN value of the Company. |
DeductorBranch | String | The DeductorBranch value of the Company. |
CompanyFBTAssesseeType | String | The CompanyFBTAssesseeType value of the Company. |
CompanyFBTAssesseeCategory | String | The CompanyFBTAssesseeCategory value of the Company. |
CMPPFCode | String | The CMPPFCode value of the Company. |
CMPPFAccountGroupCode | String | The CMPPFAccountGroupCode value of the Company. |
CMPPFSecurityCode | String | The CMPPFSecurityCode value of the Company. |
CMPESICode | String | The CMPESICode value of the Company. |
CMPESIBranchOffice | String | The CMPESIBranchOffice value of the Company. |
CMPESIWorkingDays | String | The CMPESIWorkingDays value of the Company. |
XBRLCIN | String | The XBRLCIN value of the Company. |
XBRLIndustryType | String | The XBRLIndustryType value of the Company. |
LBTRegnNo | String | The LBTRegnNo value of the Company. |
LBTZone | String | The LBTZone value of the Company. |
EconomicActivityCode | String | The EconomicActivityCode value of the Company. |
AuthorisedPersonName | String | The AuthorisedPersonName value of the Company. |
AuthorisedPersonDesignation | String | The AuthorisedPersonDesignation value of the Company. |
AuthorisedPlace | String | The AuthorisedPlace value of the Company. |
CircleSector | String | The CircleSector value of the Company. |
CircleDivision | String | The CircleDivision value of the Company. |
ExportImportCode | String | The ExportImportCode value of the Company. |
TaxAuthorisedPerson | String | The TaxAuthorisedPerson value of the Company. |
CircleWard | String | The CircleWard value of the Company. |
VATReturnForm | String | The VATReturnForm value of the Company. |
GSTRegistrationNumber | String | The GSTRegistrationNumber value of the Company. |
GSTRegistrationType | String | The GSTRegistrationType value of the Company. |
CmpTypeOfSupply | String | The CmpTypeOfSupply value of the Company. |
CompanyNameNative | String | The CompanyNameNative value of the Company. |
CompanyEmirateNative | String | The CompanyEmirateNative value of the Company. |
CompanyCountryNative | String | The CompanyCountryNative value of the Company. |
VATDealerType | String | The VATDealerType value of the Company. |
ConnectName | String | The ConnectName value of the Company. |
SMSShortCode | String | The SMSShortCode value of the Company. |
SMSPrefix | String | The SMSPrefix value of the Company. |
CompanyContactPerson | String | The CompanyContactPerson value of the Company. |
CompanyContactNumber | String | The CompanyContactNumber value of the Company. |
CompanySMSName | String | The CompanySMSName value of the Company. |
LogoPath | String | The LogoPath value of the Company. |
CompanyChequeName | String | The CompanyChequeName value of the Company. |
TDSNatureOfPayment | String | The TDSNatureOfPayment value of the Company. |
TCSNatureofGood | String | The TCSNatureofGood value of the Company. |
CRNumber | String | The CRNumber value of the Company. |
BranchCRNumber | String | The BranchCRNumber value of the Company. |
ShowBankDetails | String | The ShowBankDetails value of the Company. |
GenerateBatchesOn | String | The GenerateBatchesOn value of the Company. |
UploadLastRefresh | String | The UploadLastRefresh value of the Company. |
IsAggregate | String | The IsAggregate value of the Company. |
IndianVat | String | The IndianVat value of the Company. |
IsVATRegdDealer | String | The IsVATRegdDealer value of the Company. |
IsVATCompositeDealer | String | The IsVATCompositeDealer value of the Company. |
IsDaywiseCashAggregate | String | The IsDaywiseCashAggregate value of the Company. |
ITDeductorType | String | The ITDeductorType value of the Company. |
IsAuditWorkingPaperOn | String | The IsAuditWorkingPaperOn value of the Company. |
IsAuditCategoryOn | String | The IsAuditCategoryOn value of the Company. |
IsRoundOffExceOn | String | The IsRoundOffExceOn value of the Company. |
IsCSTWithAddlTax | String | The IsCSTWithAddlTax value of the Company. |
IsSalesTaxCessOn | String | The IsSalesTaxCessOn value of the Company. |
IsExciseClassificationOn | String | The IsExciseClassificationOn value of the Company. |
STIsSTLargeTaxPayer | String | The STIsSTLargeTaxPayer value of the Company. |
STXIsRoundOffApplicable | String | The STXIsRoundOffApplicable value of the Company. |
ServiceTaxIsSEZ | String | The ServiceTaxIsSEZ value of the Company. |
STIsMultiUnit | String | The STIsMultiUnit value of the Company. |
STUserDefinedClass | String | The STUserDefinedClass value of the Company. |
STIsInputServDistributor | String | The STIsInputServDistributor value of the Company. |
IsSTStockItemOn | String | The IsSTStockItemOn value of the Company. |
IsReverseApplicable | String | The IsReverseApplicable value of the Company. |
STIsMonthlyReturns | String | The STIsMonthlyReturns value of the Company. |
DeductorType | String | The DeductorType value of the Company. |
IgnoreITExemption | String | The IgnoreITExemption value of the Company. |
IgnoreTCSITExemption | String | The IgnoreTCSITExemption value of the Company. |
IsTDSStockItemOn | String | The IsTDSStockItemOn value of the Company. |
IsFBTSurchargeApplicable | String | The IsFBTSurchargeApplicable value of the Company. |
XBRLIsConsolidatedRepType | String | The XBRLIsConsolidatedRepType value of the Company. |
IsLBTOn | String | The IsLBTOn value of the Company. |
IsVATClassOn | String | The IsVATClassOn value of the Company. |
IsMRPOn | String | The IsMRPOn value of the Company. |
IsRevisedAnnexureOn | String | The IsRevisedAnnexureOn value of the Company. |
EnableVATOnItemRate | String | The EnableVATOnItemRate value of the Company. |
EnableVATOnQuantity | String | The EnableVATOnQuantity value of the Company. |
IsInZRBasicServices | String | The IsInZRBasicServices value of the Company. |
IsDesignatedZone | String | The IsDesignatedZone value of the Company. |
STMaintainSepAccForExempt | String | The STMaintainSepAccForExempt value of the Company. |
IsDeviceDetailsReq | String | The IsDeviceDetailsReq value of the Company. |
CMPIsUnderNPVScheme | String | The CMPIsUnderNPVScheme value of the Company. |
IsSecurityOn | String | The IsSecurityOn value of the Company. |
IsAccountingOn | String | The IsAccountingOn value of the Company. |
IsInventoryOn | String | The IsInventoryOn value of the Company. |
IsIntegrated | String | The IsIntegrated value of the Company. |
IsBillWiseOn | String | The IsBillWiseOn value of the Company. |
IsAllBillWiseOn | String | The IsAllBillWiseOn value of the Company. |
IsCostCentresOn | String | The IsCostCentresOn value of the Company. |
IsCostCategoryOn | String | The IsCostCategoryOn value of the Company. |
IsStockCategoryOn | String | The IsStockCategoryOn value of the Company. |
IsBatchWiseOn | String | The IsBatchWiseOn value of the Company. |
IsPerishableOn | String | The IsPerishableOn value of the Company. |
IsMultiGodownOn | String | The IsMultiGodownOn value of the Company. |
IsMultiCurrencyOn | String | The IsMultiCurrencyOn value of the Company. |
IsInvoicingOn | String | The IsInvoicingOn value of the Company. |
IsRevJrnlOn | String | The IsRevJrnlOn value of the Company. |
IsRemindersOn | String | The IsRemindersOn value of the Company. |
IsDCNoteOn | String | The IsDCNoteOn value of the Company. |
IsRejectionOn | String | The IsRejectionOn value of the Company. |
IsTrackingOn | String | The IsTrackingOn value of the Company. |
IsExciseOn | String | The IsExciseOn value of the Company. |
IsChqPrintingOn | String | The IsChqPrintingOn value of the Company. |
DiffActualQty | String | The DiffActualQty value of the Company. |
UseZeroEntries | String | The UseZeroEntries value of the Company. |
AddlAmount | String | The AddlAmount value of the Company. |
IsTallyAuditOn | String | The IsTallyAuditOn value of the Company. |
IsBudgetsOn | String | The IsBudgetsOn value of the Company. |
IsPayrollOn | String | The IsPayrollOn value of the Company. |
IsTDSOn | String | The IsTDSOn value of the Company. |
IsServiceTaxOn | String | The IsServiceTaxOn value of the Company. |
IsJobCostingOn | String | The IsJobCostingOn value of the Company. |
IsTCSOn | String | The IsTCSOn value of the Company. |
IsExciseReportsOn | String | The IsExciseReportsOn value of the Company. |
IsCompositeDealer | String | The IsCompositeDealer value of the Company. |
IsBOMOn | String | The IsBOMOn value of the Company. |
IsSalesOrdersOn | String | The IsSalesOrdersOn value of the Company. |
IsPurcOrdersOn | String | The IsPurcOrdersOn value of the Company. |
IsDiscountsOn | String | The IsDiscountsOn value of the Company. |
CNoteAsInvoice | String | The CNoteAsInvoice value of the Company. |
UKVATReturns | String | The UKVATReturns value of the Company. |
UsePriceLevels | String | The UsePriceLevels value of the Company. |
IsInterestOn | String | The IsInterestOn value of the Company. |
IsAdvInterestOn | String | The IsAdvInterestOn value of the Company. |
PurcAsInvoice | String | The PurcAsInvoice value of the Company. |
UseAutoCost | String | The UseAutoCost value of the Company. |
DNoteAsInvoice | String | The DNoteAsInvoice value of the Company. |
PLasIncomeExpense | String | The PLasIncomeExpense value of the Company. |
AllowinMobile | String | The AllowinMobile value of the Company. |
IsIndentOn | String | The IsIndentOn value of the Company. |
IsFBTOn | String | The IsFBTOn value of the Company. |
IsExciseMfgrTraderOn | String | The IsExciseMfgrTraderOn value of the Company. |
IsSalesTaxOn | String | The IsSalesTaxOn value of the Company. |
IsPayrollStatOn | String | The IsPayrollStatOn value of the Company. |
ConnectCompany | String | The ConnectCompany value of the Company. |
ConnectCompanyOnLoad | String | The ConnectCompanyOnLoad value of the Company. |
IsEntryTaxApplicable | String | The IsEntryTaxApplicable value of the Company. |
RevenueLedForOpBal | String | The RevenueLedForOpBal value of the Company. |
EnableSMSAccess | String | The EnableSMSAccess value of the Company. |
IsRcptsPymtsOn | String | The IsRcptsPymtsOn value of the Company. |
IsLogoEnabled | String | The IsLogoEnabled value of the Company. |
IsXBRLOn | String | The IsXBRLOn value of the Company. |
IsProprietorship | String | The IsProprietorship value of the Company. |
IsYearWise | String | The IsYearWise value of the Company. |
IsCmpLTUOn | String | The IsCmpLTUOn value of the Company. |
IsGSTOn | String | The IsGSTOn value of the Company. |
IsGSTClassifOn | String | The IsGSTClassifOn value of the Company. |
IsDisallowInEduMode | String | The IsDisallowInEduMode value of the Company. |
IsMultiAddressOn | String | The IsMultiAddressOn value of the Company. |
IsEbankingOn | String | The IsEbankingOn value of the Company. |
IsJobWorkOn | String | The IsJobWorkOn value of the Company. |
IsMaterialTransferOn | String | The IsMaterialTransferOn value of the Company. |
IsCostTrackingOn | String | The IsCostTrackingOn value of the Company. |
EnablePwdPolicy | String | The EnablePwdPolicy value of the Company. |
RestrictPwdReuse | String | The RestrictPwdReuse value of the Company. |
ResetPwdOnFirstLogin | String | The ResetPwdOnFirstLogin value of the Company. |
AllowPwdReset | String | The AllowPwdReset value of the Company. |
NotifyOfExpiry | String | The NotifyOfExpiry value of the Company. |
IsDefPwdPolicyAltered | String | The IsDefPwdPolicyAltered value of the Company. |
IsBankingVchMigrated | String | The IsBankingVchMigrated value of the Company. |
IsBeneficiaryCodeOn | String | The IsBeneficiaryCodeOn value of the Company. |
IsTransferModeOn | String | The IsTransferModeOn value of the Company. |
IsBankingforCCOn | String | The IsBankingforCCOn value of the Company. |
IsImpBankDetailsOn | String | The IsImpBankDetailsOn value of the Company. |
IsApprovalOn | String | The IsApprovalOn value of the Company. |
IsExportOnVchCreate | String | The IsExportOnVchCreate value of the Company. |
IsExportWithErrors | String | The IsExportWithErrors value of the Company. |
IsResetBankStatus | String | The IsResetBankStatus value of the Company. |
IsISOCurrencyApplicable | String | The IsISOCurrencyApplicable value of the Company. |
IsIgnoreWithWarnings | String | The IsIgnoreWithWarnings value of the Company. |
IsFIFOApplied | String | The IsFIFOApplied value of the Company. |
IsTrackVouchersOn | String | The IsTrackVouchersOn value of the Company. |
ResetTrackedChanges | String | The ResetTrackedChanges value of the Company. |
CompanyNumber | Decimal | The CompanyNumber value of the Company. |
StatutoryVersion | Decimal | The StatutoryVersion value of the Company. |
VATPymtDueDate | Decimal | The VATPymtDueDate value of the Company. |
CSTPymtDueDate | Decimal | The CSTPymtDueDate value of the Company. |
STPymtDueDate | Decimal | The STPymtDueDate value of the Company. |
TDSPymtDueDate | Decimal | The TDSPymtDueDate value of the Company. |
TCSPymtDueDate | Decimal | The TCSPymtDueDate value of the Company. |
PFPymtDueDate | Decimal | The PFPymtDueDate value of the Company. |
PTPymtDueDate | Decimal | The PTPymtDueDate value of the Company. |
ESIPymtDueDate | Decimal | The ESIPymtDueDate value of the Company. |
FBTPymtDueDate | Decimal | The FBTPymtDueDate value of the Company. |
FBTYearEndPymtDueDate | Decimal | The FBTYearEndPymtDueDate value of the Company. |
STCrAdjPercent | Decimal | The STCrAdjPercent value of the Company. |
CmpTaxAmountTolerence | Decimal | The CmpTaxAmountTolerence value of the Company. |
PwdLength | Decimal | The PwdLength value of the Company. |
LettersInPwd | Decimal | The LettersInPwd value of the Company. |
NumeralsInPwd | Decimal | The NumeralsInPwd value of the Company. |
SpclCharsInPwd | Decimal | The SpclCharsInPwd value of the Company. |
PwdHistory | Decimal | The PwdHistory value of the Company. |
PwdExpiry | Decimal | The PwdExpiry value of the Company. |
ExpiryNotifPeriod | Decimal | The ExpiryNotifPeriod value of the Company. |
NACHVersion | Decimal | The NACHVersion value of the Company. |
MaxCashValue | String | The MaxCashValue value of the Company. |
MinCashValue | String | The MinCashValue value of the Company. |
CMPESIEligibleAmount | String | The CMPESIEligibleAmount value of the Company. |
RTGSLimit | String | The RTGSLimit value of the Company. |
Address | String | The Address value of the Company. |
CompanyAddressNative | String | The CompanyAddressNative value of the Company. |
PriceLevel | String | The PriceLevel value of the Company. |
MobileNumbers | String | The MobileNumbers value of the Company. |
UserAccountIds | Decimal | The UserAccountIds value of the Company. |
Dbname | String | The Dbname value of the Company. |
Thisyearbeg | Date | The Thisyearbeg value of the Company. |
Thisyearend | Date | The Thisyearend value of the Company. |
Prevyearbeg | Date | The Prevyearbeg value of the Company. |
Prevyearend | Date | The Prevyearend value of the Company. |
Thisquarterbeg | Date | The Thisquarterbeg value of the Company. |
Thisquarterend | Date | The Thisquarterend value of the Company. |
Prevquarterbeg | Date | The Prevquarterbeg value of the Company. |
Prevquarterend | Date | The Prevquarterend value of the Company. |
Name | String | The Name value of the Company. |
Address1 | String | The Address1 value of the Company. |
Address2 | String | The Address2 value of the Company. |
Address3 | String | The Address3 value of the Company. |
Address4 | String | The Address4 value of the Company. |
Address5 | String | The Address5 value of the Company. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Retrieve Employee Details.
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Employees WHERE EMailID LIKE '%cdata%' SELECT * FROM Employees WHERE BloodGroup != 'A Positive' SELECT * FROM Employees WHERE Gender = 'Male' AND FatherName >= 'abc' SELECT * FROM Employees WHERE BankBranch = 'Delhi' OR BankBranch = 'Bangalore' SELECT * FROM Employees WHERE ForPayroll > 'No' SELECT * FROM Employees ORDER BY Guid ASC
Name | Type | Description |
Name | String | The Name value of the Employees. |
ActiveFrom | Date | The ActiveFrom value of the Employees. |
ActiveTo | Date | The ActiveTo value of the Employees. |
DateOfBirth | Date | The DateOfBirth value of the Employees. |
DateOfJoin | Date | The DateOfJoin value of the Employees. |
DeactivationDate | Date | The DeactivationDate value of the Employees. |
VisaExpiryDate | Date | The VisaExpiryDate value of the Employees. |
ContractStartDate | Date | The ContractStartDate value of the Employees. |
ContractExpiryDate | Date | The ContractExpiryDate value of the Employees. |
PassportExpiryDate | Date | The PassportExpiryDate value of the Employees. |
PFJoiningDate | Date | The PFJoiningDate value of the Employees. |
PFRelievingDate | Date | The PFRelievingDate value of the Employees. |
IdentityExpiryDate | Date | The IdentityExpiryDate value of the Employees. |
Guid | String | The Guid value of the Employees. |
Parent | String | The Parent value of the Employees. |
Category | String | The Category value of the Employees. |
MobileNumber | String | The MobileNumber value of the Employees. |
MICRCode | String | The MICRCode value of the Employees. |
IFSCode | String | The IFSCode value of the Employees. |
Narration | String | The Narration value of the Employees. |
RemoteGUID | String | The RemoteGUID value of the Employees. |
RemoteAltGUID | String | The RemoteAltGUID value of the Employees. |
RequestorRule | String | The RequestorRule value of the Employees. |
BankDetails | String | The BankDetails value of the Employees. |
BankDetailsBankID | String | The BankDetailsBankID value of the Employees. |
Function | String | The Function value of the Employees. |
Location | String | The Location value of the Employees. |
Designation | String | The Designation value of the Employees. |
PFAccountNumber | String | The PFAccountNumber value of the Employees. |
PanNumber | String | The PanNumber value of the Employees. |
ESINumber | String | The ESINumber value of the Employees. |
PassportDetails | String | The PassportDetails value of the Employees. |
Gender | String | The Gender value of the Employees. |
BloodGroup | String | The BloodGroup value of the Employees. |
FatherName | String | The FatherName value of the Employees. |
ContactNumbers | String | The ContactNumbers value of the Employees. |
EMailID | String | The EMailID value of the Employees. |
BankAccountNumber | String | The BankAccountNumber value of the Employees. |
BankBranch | String | The BankBranch value of the Employees. |
VisaNumber | String | The VisaNumber value of the Employees. |
WorkPermitNumber | String | The WorkPermitNumber value of the Employees. |
CountryofIssue | String | The CountryofIssue value of the Employees. |
SpouseName | String | The SpouseName value of the Employees. |
FPFAccountNumber | String | The FPFAccountNumber value of the Employees. |
ReasonsForLeaving | String | The ReasonsForLeaving value of the Employees. |
ESIDispensaryName | String | The ESIDispensaryName value of the Employees. |
EmpDisplayName | String | The EmpDisplayName value of the Employees. |
IdentityNumber | String | The IdentityNumber value of the Employees. |
PRAccountNumber | String | The PRAccountNumber value of the Employees. |
AadharNumber | String | The AadharNumber value of the Employees. |
UANNumber | String | The UANNumber value of the Employees. |
RevenueLedForOpBal | String | The RevenueLedForOpBal value of the Employees. |
IsMstFromSync | String | The IsMstFromSync value of the Employees. |
IsUpdatingTargetId | String | The IsUpdatingTargetId value of the Employees. |
AsOriginal | String | The AsOriginal value of the Employees. |
AffectsStock | String | The AffectsStock value of the Employees. |
ForPayroll | String | The ForPayroll value of the Employees. |
ForJobCosting | String | The ForJobCosting value of the Employees. |
IsEmployeeGroup | String | The IsEmployeeGroup value of the Employees. |
SortPosition | Decimal | The SortPosition value of the Employees. |
Alterid | Decimal | The Alterid value of the Employees. |
RemoteAlterID | Decimal | The RemoteAlterID value of the Employees. |
DefaultLanguage | Decimal | The DefaultLanguage value of the Employees. |
Address | String | The Address value of the Employees. |
MailingName | String | The MailingName value of the Employees. |
TargetRemoteId | String | The $TargetRemoteId value of the Employees. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Retrieve Ledger Details.
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Ledger WHERE TaxType LIKE '%GST%' SELECT * FROM Ledger WHERE GSTType != 'Applicable' SELECT * FROM Ledger WHERE GSTTypeofSupply = 'Goods' AND GSTDutyHead = 'Central Tax' SELECT * FROM Ledger WHERE Parent = 'Sales Accounts' OR Parent = 'Bank Accounts' SELECT * FROM Ledger WHERE IsChequePrintingEnabled > 'No' SELECT * FROM Ledger ORDER BY Guid Desc
Name | Type | Description |
Name | String | The Name value of the Ledger. |
StartingFrom | Date | The StartingFrom value of the Ledger. |
STRegDate | Date | The STRegDate value of the Ledger. |
LBTRegnDate | Date | The LBTRegnDate value of the Ledger. |
SamplingDateOneFactor | Date | The SamplingDateOneFactor value of the Ledger. |
SamplingDateTwoFactor | Date | The SamplingDateTwoFactor value of the Ledger. |
ActiveFrom | Date | The ActiveFrom value of the Ledger. |
ActiveTo | Date | The ActiveTo value of the Ledger. |
CreatedDate | Date | The CreatedDate value of the Ledger. |
AlteredOn | Date | The AlteredOn value of the Ledger. |
VATApplicableDate | Date | The VATApplicableDate value of the Ledger. |
ExciseRegistrationDate | Date | The ExciseRegistrationDate value of the Ledger. |
PANApplicableFrom | Date | The PANApplicableFrom value of the Ledger. |
PayInsRunningFileDate | Date | The PayInsRunningFileDate value of the Ledger. |
VATTaxExemptionDate | Date | The VATTaxExemptionDate value of the Ledger. |
Guid | String | The Guid value of the Ledger. |
CurrencyName | String | The CurrencyName value of the Ledger. |
String | The Email value of the Ledger. | |
StateName | String | The StateName value of the Ledger. |
PINCode | String | The PINCode value of the Ledger. |
Website | String | The Website value of the Ledger. |
IncomeTaxNumber | String | The IncomeTaxNumber value of the Ledger. |
SalesTaxNumber | String | The SalesTaxNumber value of the Ledger. |
InterStateSTNumber | String | The InterStateSTNumber value of the Ledger. |
VATTINNumber | String | The VATTINNumber value of the Ledger. |
CountryName | String | The CountryName value of the Ledger. |
ExciseRange | String | The ExciseRange value of the Ledger. |
ExciseDivision | String | The ExciseDivision value of the Ledger. |
ExciseCommissionerate | String | The ExciseCommissionerate value of the Ledger. |
LBTRegnNo | String | The LBTRegnNo value of the Ledger. |
LBTZone | String | The LBTZone value of the Ledger. |
ExportImportCode | String | The ExportImportCode value of the Ledger. |
GSTRegistrationType | String | The GSTRegistrationType value of the Ledger. |
VATDealerType | String | The VATDealerType value of the Ledger. |
PriceLevel | String | The PriceLevel value of the Ledger. |
UploadLastRefresh | String | The UploadLastRefresh value of the Ledger. |
Parent | String | The Parent value of the Ledger. |
SamplingMethod | String | The SamplingMethod value of the Ledger. |
SamplingStrOneFactor | String | The SamplingStrOneFactor value of the Ledger. |
IFSCode | String | The IFSCode value of the Ledger. |
Narration | String | The Narration value of the Ledger. |
RemoteGUID | String | The RemoteGUID value of the Ledger. |
RemoteAltGUID | String | The RemoteAltGUID value of the Ledger. |
RequestorRule | String | The RequestorRule value of the Ledger. |
GrpDebitParent | String | The GrpDebitParent value of the Ledger. |
GrpCreditParent | String | The GrpCreditParent value of the Ledger. |
SysDebitParent | String | The SysDebitParent value of the Ledger. |
SysCreditParent | String | The SysCreditParent value of the Ledger. |
TDSApplicable | String | The TDSApplicable value of the Ledger. |
TCSApplicable | String | The TCSApplicable value of the Ledger. |
GSTApplicable | String | The GSTApplicable value of the Ledger. |
CreatedBy | String | The CreatedBy value of the Ledger. |
AlteredBy | String | The AlteredBy value of the Ledger. |
TaxClassificationName | String | The TaxClassificationName value of the Ledger. |
TaxType | String | The TaxType value of the Ledger. |
BillCreditPeriod | String | The BillCreditPeriod value of the Ledger. |
BankDetails | String | The BankDetails value of the Ledger. |
BankBranchName | String | The BankBranchName value of the Ledger. |
BankBSRCode | String | The BankBSRCode value of the Ledger. |
DeducteeType | String | The DeducteeType value of the Ledger. |
BusinessType | String | The BusinessType value of the Ledger. |
TypeOfNotification | String | The TypeOfNotification value of the Ledger. |
MSMERegNumber | String | The MSMERegNumber value of the Ledger. |
CountryofResidence | String | The CountryofResidence value of the Ledger. |
RelatedPartyId | String | The RelatedPartyId value of the Ledger. |
RelPartyIssuingAuthority | String | The RelPartyIssuingAuthority value of the Ledger. |
ImporterExporterCode | String | The ImporterExporterCode value of the Ledger. |
EMailCC | String | The EMailCC value of the Ledger. |
Description | String | The Description value of the Ledger. |
LedAddlAllocType | String | The LedAddlAllocType value of the Ledger. |
TransporterId | String | The TransporterId value of the Ledger. |
LedgerPhone | String | The LedgerPhone value of the Ledger. |
LedgerFax | String | The LedgerFax value of the Ledger. |
LedgerContact | String | The LedgerContact value of the Ledger. |
LedgerMobile | String | The LedgerMobile value of the Ledger. |
RelationType | String | The RelationType value of the Ledger. |
MailingNameNative | String | The MailingNameNative value of the Ledger. |
StateNameNative | String | The StateNameNative value of the Ledger. |
CountryNameNative | String | The CountryNameNative value of the Ledger. |
BasicTypeOfDuty | String | The BasicTypeOfDuty value of the Ledger. |
GSTType | String | The GSTType value of the Ledger. |
ExemptionType | String | The ExemptionType value of the Ledger. |
AppropriateFor | String | The AppropriateFor value of the Ledger. |
SubTaxType | String | The SubTaxType value of the Ledger. |
STXNatureOfParty | String | The STXNatureOfParty value of the Ledger. |
NameOnPAN | String | The NameOnPAN value of the Ledger. |
UsedForTaxType | String | The UsedForTaxType value of the Ledger. |
eCommMerchantID | String | The eCommMerchantID value of the Ledger. |
PartyGSTIN | String | The PartyGSTIN value of the Ledger. |
GSTDutyHead | String | The GSTDutyHead value of the Ledger. |
GSTAppropriateTo | String | The GSTAppropriateTo value of the Ledger. |
GSTTypeofSupply | String | The GSTTypeofSupply value of the Ledger. |
GSTNatureofSupply | String | The GSTNatureofSupply value of the Ledger. |
CessValuationMethod | String | The CessValuationMethod value of the Ledger. |
PayType | String | The PayType value of the Ledger. |
PayslipName | String | The PayslipName value of the Ledger. |
AttendanceType | String | The AttendanceType value of the Ledger. |
LeaveType | String | The LeaveType value of the Ledger. |
CalculationPeriod | String | The CalculationPeriod value of the Ledger. |
RoundingMethod | String | The RoundingMethod value of the Ledger. |
ComputationType | String | The ComputationType value of the Ledger. |
CalculationType | String | The CalculationType value of the Ledger. |
PayStatType | String | The PayStatType value of the Ledger. |
ProfessionalTaxNumber | String | The ProfessionalTaxNumber value of the Ledger. |
UserDefinedCalenderType | String | The UserDefinedCalenderType value of the Ledger. |
ITNature | String | The ITNature value of the Ledger. |
ITComponent | String | The ITComponent value of the Ledger. |
NotificationNumber | String | The NotificationNumber value of the Ledger. |
RegistrationNumber | String | The RegistrationNumber value of the Ledger. |
ServiceCategory | String | The ServiceCategory value of the Ledger. |
AbatementNotificationNo | String | The AbatementNotificationNo value of the Ledger. |
STXDutyHead | String | The STXDutyHead value of the Ledger. |
STXClassification | String | The STXClassification value of the Ledger. |
NotificationSlNo | String | The NotificationSlNo value of the Ledger. |
ServiceTaxApplicable | String | The ServiceTaxApplicable value of the Ledger. |
ExciseLedgerClassification | String | The ExciseLedgerClassification value of the Ledger. |
ExciseRegistrationNumber | String | The ExciseRegistrationNumber value of the Ledger. |
ExciseAccountHead | String | The ExciseAccountHead value of the Ledger. |
ExciseDutyType | String | The ExciseDutyType value of the Ledger. |
ExciseDutyHeadCode | String | The ExciseDutyHeadCode value of the Ledger. |
ExciseAllocType | String | The ExciseAllocType value of the Ledger. |
ExciseDutyHead | String | The ExciseDutyHead value of the Ledger. |
NatureOfSales | String | The NatureOfSales value of the Ledger. |
ExciseNotificationNo | String | The ExciseNotificationNo value of the Ledger. |
ExciseImportsRegistartionNo | String | The ExciseImportsRegistartionNo value of the Ledger. |
ExciseApplicability | String | The ExciseApplicability value of the Ledger. |
ExciseTypeofBranch | String | The ExciseTypeofBranch value of the Ledger. |
ExciseDefaultRemoval | String | The ExciseDefaultRemoval value of the Ledger. |
ExciseNotificationSlNo | String | The ExciseNotificationSlNo value of the Ledger. |
TypeOfTariff | String | The TypeOfTariff value of the Ledger. |
ExciseRegNo | String | The ExciseRegNo value of the Ledger. |
ExciseNatureofPurchase | String | The ExciseNatureofPurchase value of the Ledger. |
TDSDeducteeTypeMst | String | The TDSDeducteeTypeMst value of the Ledger. |
TdsRateName | String | The TdsRateName value of the Ledger. |
TDSDeducteeSectionNumber | String | The TDSDeducteeSectionNumber value of the Ledger. |
PANStatus | String | The PANStatus value of the Ledger. |
DeducteeReference | String | The DeducteeReference value of the Ledger. |
TDSDeducteeType | String | The TDSDeducteeType value of the Ledger. |
ITExemptApplicable | String | The ITExemptApplicable value of the Ledger. |
TaxIdentificationNo | String | The TaxIdentificationNo value of the Ledger. |
LedgerFBTCategory | String | The LedgerFBTCategory value of the Ledger. |
BranchCode | String | The BranchCode value of the Ledger. |
ClientCode | String | The ClientCode value of the Ledger. |
BankingConfigBank | String | The BankingConfigBank value of the Ledger. |
BankingConfigBankID | String | The BankingConfigBankID value of the Ledger. |
BankAccHolderName | String | The BankAccHolderName value of the Ledger. |
UseForPOSType | String | The UseForPOSType value of the Ledger. |
PaymentGateway | String | The PaymentGateway value of the Ledger. |
TypeOfInterestOn | String | The TypeOfInterestOn value of the Ledger. |
BankConfigIFSC | String | The BankConfigIFSC value of the Ledger. |
BankConfigMICR | String | The BankConfigMICR value of the Ledger. |
BankConfigShortCode | String | The BankConfigShortCode value of the Ledger. |
PymtInstoutputName | String | The PymtInstoutputName value of the Ledger. |
ProductCodeType | String | The ProductCodeType value of the Ledger. |
SalaryPymtProductCode | String | The SalaryPymtProductCode value of the Ledger. |
OtherPymtProductCode | String | The OtherPymtProductCode value of the Ledger. |
PaymentInstLocation | String | The PaymentInstLocation value of the Ledger. |
EncrptionLocation | String | The EncrptionLocation value of the Ledger. |
NewIMFLocation | String | The NewIMFLocation value of the Ledger. |
ImportedIMFLocation | String | The ImportedIMFLocation value of the Ledger. |
BankNewStatements | String | The BankNewStatements value of the Ledger. |
BankImportedStatements | String | The BankImportedStatements value of the Ledger. |
BankMICR | String | The BankMICR value of the Ledger. |
CorporateUserNoECS | String | The CorporateUserNoECS value of the Ledger. |
CorporateUserNoACH | String | The CorporateUserNoACH value of the Ledger. |
CorporateUserName | String | The CorporateUserName value of the Ledger. |
IMFName | String | The IMFName value of the Ledger. |
PayInsBatchName | String | The PayInsBatchName value of the Ledger. |
LastUsedBatchName | String | The LastUsedBatchName value of the Ledger. |
PayInsFileNumPeriod | String | The PayInsFileNumPeriod value of the Ledger. |
EncryptedBy | String | The EncryptedBy value of the Ledger. |
EncryptedId | String | The EncryptedId value of the Ledger. |
ISOCurrencyCode | String | The ISOCurrencyCode value of the Ledger. |
BankCapsuleID | String | The BankCapsuleID value of the Ledger. |
SalesTaxCessApplicable | String | The SalesTaxCessApplicable value of the Ledger. |
BankIBAN | String | The BankIBAN value of the Ledger. |
VATTaxExemptionNature | String | The VATTaxExemptionNature value of the Ledger. |
VATTaxExemptionNumber | String | The VATTaxExemptionNumber value of the Ledger. |
LedStateName | String | The LedStateName value of the Ledger. |
VATApplicable | String | The VATApplicable value of the Ledger. |
PartyBusinessType | String | The PartyBusinessType value of the Ledger. |
PartyBusinessStyle | String | The PartyBusinessStyle value of the Ledger. |
IsBillWiseOn | String | The IsBillWiseOn value of the Ledger. |
IsCostCentresOn | String | The IsCostCentresOn value of the Ledger. |
IsInterestOn | String | The IsInterestOn value of the Ledger. |
AllowinMobile | String | The AllowinMobile value of the Ledger. |
IsCostTrackingOn | String | The IsCostTrackingOn value of the Ledger. |
IsBeneficiaryCodeOn | String | The IsBeneficiaryCodeOn value of the Ledger. |
IsMstFromSync | String | The IsMstFromSync value of the Ledger. |
IsUpdatingTargetId | String | The IsUpdatingTargetId value of the Ledger. |
AsOriginal | String | The AsOriginal value of the Ledger. |
IsCondensed | String | The IsCondensed value of the Ledger. |
AffectsStock | String | The AffectsStock value of the Ledger. |
IsRateInclusiveVAT | String | The IsRateInclusiveVAT value of the Ledger. |
ForPayroll | String | The ForPayroll value of the Ledger. |
IsABCEnabled | String | The IsABCEnabled value of the Ledger. |
IsCreditDaysChkOn | String | The IsCreditDaysChkOn value of the Ledger. |
InterestonBillwise | String | The InterestonBillwise value of the Ledger. |
OverrideInterest | String | The OverrideInterest value of the Ledger. |
OverrideAdvInterest | String | The OverrideAdvInterest value of the Ledger. |
UseForVAT | String | The UseForVAT value of the Ledger. |
IgnoreTDSExempt | String | The IgnoreTDSExempt value of the Ledger. |
IsTCSApplicable | String | The IsTCSApplicable value of the Ledger. |
IsTDSApplicable | String | The IsTDSApplicable value of the Ledger. |
IsFBTApplicable | String | The IsFBTApplicable value of the Ledger. |
IsGSTApplicable | String | The IsGSTApplicable value of the Ledger. |
IsExciseApplicable | String | The IsExciseApplicable value of the Ledger. |
IsTDSExpense | String | The IsTDSExpense value of the Ledger. |
IsEDLIApplicable | String | The IsEDLIApplicable value of the Ledger. |
IsRelatedParty | String | The IsRelatedParty value of the Ledger. |
UseForESIEligibility | String | The UseForESIEligibility value of the Ledger. |
IsInterestInclLastDay | String | The IsInterestInclLastDay value of the Ledger. |
AppropriateTaxValue | String | The AppropriateTaxValue value of the Ledger. |
IsBehaveAsDuty | String | The IsBehaveAsDuty value of the Ledger. |
InterestInclDayOfAddition | String | The InterestInclDayOfAddition value of the Ledger. |
InterestInclDayOfDeduction | String | The InterestInclDayOfDeduction value of the Ledger. |
IsOthTerritoryAssessee | String | The IsOthTerritoryAssessee value of the Ledger. |
OverRideCreditLimit | String | The OverRideCreditLimit value of the Ledger. |
IsAgainstFormC | String | The IsAgainstFormC value of the Ledger. |
IsChequePrintingEnabled | String | The IsChequePrintingEnabled value of the Ledger. |
IsPayUpLoad | String | The IsPayUpLoad value of the Ledger. |
IsPayBatchOnlySAL | String | The IsPayBatchOnlySAL value of the Ledger. |
IsBNFCodeSupported | String | The IsBNFCodeSupported value of the Ledger. |
AllowExportWithErrors | String | The AllowExportWithErrors value of the Ledger. |
ConsiderPurchaseforExport | String | The ConsiderPurchaseforExport value of the Ledger. |
IsTransporter | String | The IsTransporter value of the Ledger. |
UseForNotionalITC | String | The UseForNotionalITC value of the Ledger. |
IseCommOperator | String | The IseCommOperator value of the Ledger. |
ShowinPayslip | String | The ShowinPayslip value of the Ledger. |
UseForGratuity | String | The UseForGratuity value of the Ledger. |
IsTDSProjected | String | The IsTDSProjected value of the Ledger. |
ForServiceTax | String | The ForServiceTax value of the Ledger. |
IsInputCredit | String | The IsInputCredit value of the Ledger. |
IsExempted | String | The IsExempted value of the Ledger. |
IsAbatementApplicable | String | The IsAbatementApplicable value of the Ledger. |
IsSTXParty | String | The IsSTXParty value of the Ledger. |
IsSTXNonRealizedType | String | The IsSTXNonRealizedType value of the Ledger. |
IsUsedForCVD | String | The IsUsedForCVD value of the Ledger. |
LedBelongsToNonTaxable | String | The LedBelongsToNonTaxable value of the Ledger. |
IsExciseMerchantExporter | String | The IsExciseMerchantExporter value of the Ledger. |
IsPartyExempted | String | The IsPartyExempted value of the Ledger. |
IsSEZParty | String | The IsSEZParty value of the Ledger. |
TDSDeducteeIsSpecialRate | String | The TDSDeducteeIsSpecialRate value of the Ledger. |
IseChequeSupported | String | The IseChequeSupported value of the Ledger. |
IseDDSupported | String | The IseDDSupported value of the Ledger. |
HaseChequeDeliveryMode | String | The HaseChequeDeliveryMode value of the Ledger. |
HaseChequeDeliveryTo | String | The HaseChequeDeliveryTo value of the Ledger. |
HaseChequePrintLocation | String | The HaseChequePrintLocation value of the Ledger. |
HaseChequePayableLocation | String | The HaseChequePayableLocation value of the Ledger. |
HaseChequeBankLocation | String | The HaseChequeBankLocation value of the Ledger. |
HaseDDDeliveryMode | String | The HaseDDDeliveryMode value of the Ledger. |
HaseDDDeliveryTo | String | The HaseDDDeliveryTo value of the Ledger. |
HaseDDPrintLocation | String | The HaseDDPrintLocation value of the Ledger. |
HaseDDPayableLocation | String | The HaseDDPayableLocation value of the Ledger. |
HaseDDBankLocation | String | The HaseDDBankLocation value of the Ledger. |
IseBankingEnabled | String | The IseBankingEnabled value of the Ledger. |
IsExportFileEncrypted | String | The IsExportFileEncrypted value of the Ledger. |
IsBatchEnabled | String | The IsBatchEnabled value of the Ledger. |
IsProductCodeBased | String | The IsProductCodeBased value of the Ledger. |
HaseDDCity | String | The HaseDDCity value of the Ledger. |
HaseChequeCity | String | The HaseChequeCity value of the Ledger. |
IsFileNameFormatSupported | String | The IsFileNameFormatSupported value of the Ledger. |
HasClientCode | String | The HasClientCode value of the Ledger. |
PayInsIsBatchApplicable | String | The PayInsIsBatchApplicable value of the Ledger. |
PayInsIsFileNumApp | String | The PayInsIsFileNumApp value of the Ledger. |
IsSalaryTransGroupedForBRS | String | The IsSalaryTransGroupedForBRS value of the Ledger. |
IseBankingSupported | String | The IseBankingSupported value of the Ledger. |
IsSCBUAE | String | The IsSCBUAE value of the Ledger. |
IsBankStatusApp | String | The IsBankStatusApp value of the Ledger. |
IsSalaryGrouped | String | The IsSalaryGrouped value of the Ledger. |
UseForPurchaseTax | String | The UseForPurchaseTax value of the Ledger. |
Audited | String | The Audited value of the Ledger. |
SamplingNumOneFactor | Decimal | The SamplingNumOneFactor value of the Ledger. |
SamplingNumTwoFactor | Decimal | The SamplingNumTwoFactor value of the Ledger. |
SortPosition | Decimal | The SortPosition value of the Ledger. |
Alterid | Decimal | The Alterid value of the Ledger. |
RemoteAlterID | Decimal | The RemoteAlterID value of the Ledger. |
DefaultLanguage | Decimal | The DefaultLanguage value of the Ledger. |
RateofTaxCalculation | Decimal | The RateofTaxCalculation value of the Ledger. |
GratuityMonthDays | Decimal | The GratuityMonthDays value of the Ledger. |
GratuityLimitMonths | Decimal | The GratuityLimitMonths value of the Ledger. |
CalculationBasis | Decimal | The CalculationBasis value of the Ledger. |
RoundingLimit | Decimal | The RoundingLimit value of the Ledger. |
AbatementPercentage | Decimal | The AbatementPercentage value of the Ledger. |
TDSDeducteeSpecialRate | Decimal | The TDSDeducteeSpecialRate value of the Ledger. |
BeneficiaryCodeMaxLength | Decimal | The BeneficiaryCodeMaxLength value of the Ledger. |
eChequePrintLocationVersion | Decimal | The eChequePrintLocationVersion value of the Ledger. |
eChequePayableLocationVersion | Decimal | The eChequePayableLocationVersion value of the Ledger. |
eDDPrintLocationVersion | Decimal | The eDDPrintLocationVersion value of the Ledger. |
eDDPayableLocationVersion | Decimal | The eDDPayableLocationVersion value of the Ledger. |
PayInsRunningFileNum | Decimal | The PayInsRunningFileNum value of the Ledger. |
TransactionTypeVersion | Decimal | The TransactionTypeVersion value of the Ledger. |
PayInsFileNumLength | Decimal | The PayInsFileNumLength value of the Ledger. |
SamplingAmtOneFactor | String | The SamplingAmtOneFactor value of the Ledger. |
SamplingAmtTwoFactor | String | The SamplingAmtTwoFactor value of the Ledger. |
OpeningBalance | Decimal | The OpeningBalance value of the Ledger. |
CreditLimit | String | The CreditLimit value of the Ledger. |
GratuityLimitAmount | String | The GratuityLimitAmount value of the Ledger. |
ODLimit | String | The ODLimit value of the Ledger. |
tempGSTCGSTRate | Decimal | The tempGSTCGSTRate value of the Ledger. |
tempGSTSGSTRate | Decimal | The tempGSTSGSTRate value of the Ledger. |
tempGSTIGSTRate | Decimal | The tempGSTIGSTRate value of the Ledger. |
tempGSTStateCessRate | Decimal | The tempGSTStateCessRate value of the Ledger. |
tempIsVATfieldsEdited | String | The tempIsVATfieldsEdited value of the Ledger. |
tempApplDate | Date | The tempApplDate value of the Ledger. |
tempClassification | String | The tempClassification value of the Ledger. |
tempNature | String | The tempNature value of the Ledger. |
tempPartyEntity | String | The tempPartyEntity value of the Ledger. |
tempBusinessNature | String | The tempBusinessNature value of the Ledger. |
tempVATRate | Decimal | The tempVATRate value of the Ledger. |
tempAddlTax | Decimal | The tempAddlTax value of the Ledger. |
tempCessOnVat | Decimal | The tempCessOnVat value of the Ledger. |
tempTaxType | String | The tempTaxType value of the Ledger. |
tempMajorCommodityName | String | The tempMajorCommodityName value of the Ledger. |
tempCommodityName | String | The tempCommodityName value of the Ledger. |
tempCommodityCode | String | The tempCommodityCode value of the Ledger. |
tempSubCommodityCode | String | The tempSubCommodityCode value of the Ledger. |
tempUOM | String | The tempUOM value of the Ledger. |
tempTypeofGoods | String | The tempTypeofGoods value of the Ledger. |
tempTradeName | String | The tempTradeName value of the Ledger. |
tempGoodsNature | String | The tempGoodsNature value of the Ledger. |
tempSchedule | String | The tempSchedule value of the Ledger. |
tempScheduleslNo | String | The tempScheduleslNo value of the Ledger. |
tempIsInvDetailsEnable | String | The tempIsInvDetailsEnable value of the Ledger. |
tempLocalVATRate | Decimal | The tempLocalVATRate value of the Ledger. |
tempValuationType | String | The tempValuationType value of the Ledger. |
tempIsCalcOnQty | String | The tempIsCalcOnQty value of the Ledger. |
tempIsSaletoLocalCitizen | String | The tempIsSaletoLocalCitizen value of the Ledger. |
LEDIsTDSApplicableCurrLiab | String | The LEDIsTDSApplicableCurrLiab value of the Ledger. |
IsProductCodeEdited | String | The IsProductCodeEdited value of the Ledger. |
Address | String | The Address value of the Ledger. |
MailingName | String | The MailingName value of the Ledger. |
TargetRemoteId | String | The TargetRemoteId value of the Ledger. |
AddressNative | String | The AddressNative value of the Ledger. |
BankUserLoginID | String | The BankUserLoginID value of the Ledger. |
OldAuditEntryIds | Decimal | The OldAuditEntryIds value of the Ledger. |
Closingbalance | Decimal | The Closingbalance value of the Ledger. |
Address1 | String | The Address1 value of the Ledger. |
Address2 | String | The Address2 value of the Ledger. |
Address3 | String | The Address3 value of the Ledger. |
Address4 | String | The Address4 value of the Ledger. |
Address5 | String | The Address5 value of the Ledger. |
Primarygroup | String | The Primarygroup value of the Ledger. |
Overduebills | Decimal | The Overduebills value of the Ledger. |
Onaccountvalue | String | The Onaccountvalue value of the Ledger. |
Cashinflow | Decimal | The Cashinflow value of the Ledger. |
Cashoutflow | Decimal | The Cashoutflow value of the Ledger. |
Performance | Decimal | The Performance value of the Ledger. |
Drinterest | Decimal | The Drinterest value of the Ledger. |
Crinterest | String | The Crinterest value of the Ledger. |
Lastinterestdate | Date | The Lastinterestdate value of the Ledger. |
Thisyearbalance | Decimal | The Thisyearbalance value of the Ledger. |
Prevyearbalance | String | The Prevyearbalance value of the Ledger. |
Thisquarterbalance | Decimal | The Thisquarterbalance value of the Ledger. |
Prevquarterbalance | String | The Prevquarterbalance value of the Ledger. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Retrieve Payhead Details.
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM PayHead WHERE Parent LIKE '%Maruti%' SELECT * FROM PayHead WHERE RemoteAltGUID != NULL SELECT * FROM PayHead WHERE TCSApplicable = 'True' AND OpeningValue > '0.00' SELECT * FROM PayHead WHERE BaseUnits = 'Nos' OR BaseUnits = 'POS' SELECT * FROM PayHead ORDER BY BaseUnits Desc
Name | Type | Description |
StartingFrom | String | The StartingFrom value of the Payhead. |
STRegDate | String | The STRegDate value of the Payhead. |
LBTRegnDate | String | The LBTRegnDate value of the Payhead. |
SamplingDateOneFactor | String | The SamplingDateOneFactor value of the Payhead. |
SamplingDateTwoFactor | String | The SamplingDateTwoFactor value of the Payhead. |
ActiveFrom | String | The ActiveFrom value of the Payhead. |
ActiveTo | String | The ActiveTo value of the Payhead. |
CreatedDate | String | The CreatedDate value of the Payhead. |
AlteredOn | String | The AlteredOn value of the Payhead. |
VATApplicableDate | String | The VATApplicableDate value of the Payhead. |
ExciseRegistrationDate | String | The ExciseRegistrationDate value of the Payhead. |
PANApplicableFrom | String | The PANApplicableFrom value of the Payhead. |
PayInsRunningFileDate | String | The PayInsRunningFileDate value of the Payhead. |
VATTaxExemptionDate | String | The VATTaxExemptionDate value of the Payhead. |
Name | String | The Name value of the Payhead. |
Address | String | The Address value of the Payhead. |
GUID | String | The GUID value of the Payhead. |
CurrencyName | String | The CurrencyName value of the Payhead. |
String | The EMail value of the Payhead. | |
StateName | String | The StateName value of the Payhead. |
PINCode | String | The PINCode value of the Payhead. |
Website | String | The Website value of the Payhead. |
IncomeTaxNumber | String | The IncomeTaxNumber value of the Payhead. |
SalesTaxNumber | String | The SalesTaxNumber value of the Payhead. |
InterStateSTNumber | String | The InterStateSTNumber value of the Payhead. |
VATTINNumber | String | The VATTINNumber value of the Payhead. |
CountryName | String | The CountryName value of the Payhead. |
ExciseRange | String | The ExciseRange value of the Payhead. |
ExciseDivision | String | The ExciseDivision value of the Payhead. |
ExciseCommissionerate | String | The ExciseCommissionerate value of the Payhead. |
LBTRegnNo | String | The LBTRegnNo value of the Payhead. |
LBTZone | String | The LBTZone value of the Payhead. |
ExportImportCode | String | The ExportImportCode value of the Payhead. |
GSTRegistrationType | String | The GSTRegistrationType value of the Payhead. |
VATDealerType | String | The VATDealerType value of the Payhead. |
PriceLevel | String | The PriceLevel value of the Payhead. |
UploadLastRefresh | String | The UploadLastRefresh value of the Payhead. |
Parent | String | The Parent value of the Payhead. |
MailingName | String | The MailingName value of the Payhead. |
SamplingMethod | String | The SamplingMethod value of the Payhead. |
SamplingStrOneFactor | String | The SamplingStrOneFactor value of the Payhead. |
IFSCode | String | The IFSCode value of the Payhead. |
Narration | String | The Narration value of the Payhead. |
RemoteGUID | String | The RemoteGUID value of the Payhead. |
RemoteAltGUID | String | The RemoteAltGUID value of the Payhead. |
TargetRemoteId | String | The TargetRemoteId value of the Payhead. |
RequestorRule | String | The RequestorRule value of the Payhead. |
GrpDebitParent | String | The GrpDebitParent value of the Payhead. |
GrpCreditParent | String | The GrpCreditParent value of the Payhead. |
SysDebitParent | String | The SysDebitParent value of the Payhead. |
SysCreditParent | String | The SysCreditParent value of the Payhead. |
TDSApplicable | String | The TDSApplicable value of the Payhead. |
TCSApplicable | String | The TCSApplicable value of the Payhead. |
GSTApplicable | String | The GSTApplicable value of the Payhead. |
CreatedBy | String | The CreatedBy value of the Payhead. |
AlteredBy | String | The AlteredBy value of the Payhead. |
TaxClassificationName | String | The TaxClassificationName value of the Payhead. |
TaxType | String | The TaxType value of the Payhead. |
BillCreditPeriod | String | The BillCreditPeriod value of the Payhead. |
BankDetails | String | The BankDetails value of the Payhead. |
BankBranchName | String | The BankBranchName value of the Payhead. |
BankBSRCode | String | The BankBSRCode value of the Payhead. |
DeducteeType | String | The DeducteeType value of the Payhead. |
BusinessType | String | The BusinessType value of the Payhead. |
TypeOfNotification | String | The TypeOfNotification value of the Payhead. |
MSMERegNumber | String | The MSMERegNumber value of the Payhead. |
CountryofResidence | String | The CountryofResidence value of the Payhead. |
RelatedPartyId | String | The RelatedPartyId value of the Payhead. |
RelPartyIssuingAuthority | String | The RelPartyIssuingAuthority value of the Payhead. |
ImporterExporterCode | String | The ImporterExporterCode value of the Payhead. |
EmailCC | String | The EmailCC value of the Payhead. |
Description | String | The Description value of the Payhead. |
LedAddlAllocType | String | The LedAddlAllocType value of the Payhead. |
TransporterId | String | The TransporterId value of the Payhead. |
LedgerPhone | String | The LedgerPhone value of the Payhead. |
LedgerFax | String | The LedgerFax value of the Payhead. |
LedgerContact | String | The LedgerContact value of the Payhead. |
LedgerMobile | String | The LedgerMobile value of the Payhead. |
RelationType | String | The RelationType value of the Payhead. |
MailingNameNative | String | The MailingNameNative value of the Payhead. |
AddressNative | String | The AddressNative value of the Payhead. |
StateNameNative | String | The StateNameNative value of the Payhead. |
CountryNameNative | String | The CountryNameNative value of the Payhead. |
BasicTypeOfDuty | String | The BasicTypeOfDuty value of the Payhead. |
GSTType | String | The GSTType value of the Payhead. |
ExemptionType | String | The ExemptionType value of the Payhead. |
AppropriateFor | String | The AppropriateFor value of the Payhead. |
SubTaxType | String | The SubTaxType value of the Payhead. |
STXNatureOfParty | String | The STXNatureOfParty value of the Payhead. |
NameOnPAN | String | The NameOnPAN value of the Payhead. |
UsedForTaxType | String | The UsedForTaxType value of the Payhead. |
eCommMerchantID | String | The eCommMerchantID value of the Payhead. |
PartyGSTIN | String | The PartyGSTIN value of the Payhead. |
GSTDutyHead | String | The GSTDutyHead value of the Payhead. |
GSTAppropriateTo | String | The GSTAppropriateTo value of the Payhead. |
GSTTypeofSupply | String | The GSTTypeofSupply value of the Payhead. |
GSTNatureofSupply | String | The GSTNatureofSupply value of the Payhead. |
CessValuationMethod | String | The CessValuationMethod value of the Payhead. |
PayType | String | The PayType value of the Payhead. |
PayslipName | String | The PayslipName value of the Payhead. |
AttendanceType | String | The AttendanceType value of the Payhead. |
LeaveType | String | The LeaveType value of the Payhead. |
CalculationPeriod | String | The CalculationPeriod value of the Payhead. |
RoundingMethod | String | The RoundingMethod value of the Payhead. |
ComputationType | String | The ComputationType value of the Payhead. |
CalculationType | String | The CalculationType value of the Payhead. |
PayStatType | String | The PayStatType value of the Payhead. |
ProfessionalTaxNumber | String | The ProfessionalTaxNumber value of the Payhead. |
UserDefinedCalenderType | String | The UserDefinedCalenderType value of the Payhead. |
ITNature | String | The ITNature value of the Payhead. |
ITComponent | String | The ITComponent value of the Payhead. |
NotificationNumber | String | The NotificationNumber value of the Payhead. |
RegistrationNumber | String | The RegistrationNumber value of the Payhead. |
ServiceCategory | String | The ServiceCategory value of the Payhead. |
AbatementNotificationNo | String | The AbatementNotificationNo value of the Payhead. |
STXDutyHead | String | The STXDutyHead value of the Payhead. |
STXClassification | String | The STXClassification value of the Payhead. |
NotificationSlNo | String | The NotificationSlNo value of the Payhead. |
ServiceTaxApplicable | String | The ServiceTaxApplicable value of the Payhead. |
ExciseLedgerClassification | String | The ExciseLedgerClassification value of the Payhead. |
ExciseRegistrationNumber | String | The ExciseRegistrationNumber value of the Payhead. |
ExciseAccountHead | String | The ExciseAccountHead value of the Payhead. |
ExciseDutyType | String | The ExciseDutyType value of the Payhead. |
ExciseDutyHeadCode | String | The ExciseDutyHeadCode value of the Payhead. |
ExciseAllocType | String | The ExciseAllocType value of the Payhead. |
ExciseDutyHead | String | The ExciseDutyHead value of the Payhead. |
NatureOfSales | String | The NatureOfSales value of the Payhead. |
ExciseNotificationNo | String | The ExciseNotificationNo value of the Payhead. |
ExciseImportsRegistartionNo | String | The ExciseImportsRegistartionNo value of the Payhead. |
ExciseApplicability | String | The ExciseApplicability value of the Payhead. |
ExciseTypeofBranch | String | The ExciseTypeofBranch value of the Payhead. |
ExciseDefaultRemoval | String | The ExciseDefaultRemoval value of the Payhead. |
ExciseNotificationSlNo | String | The ExciseNotificationSlNo value of the Payhead. |
TypeOfTariff | String | The TypeOfTariff value of the Payhead. |
ExciseRegNo | String | The ExciseRegNo value of the Payhead. |
ExciseNatureofPurchase | String | The ExciseNatureofPurchase value of the Payhead. |
TDSDeducteeTypeMst | String | The TDSDeducteeTypeMst value of the Payhead. |
TDSRateName | String | The TDSRateName value of the Payhead. |
TDSDeducteeSectionNumber | String | The TDSDeducteeSectionNumber value of the Payhead. |
PANStatus | String | The PANStatus value of the Payhead. |
DeducteeReference | String | The DeducteeReference value of the Payhead. |
TDSDeducteeType | String | The TDSDeducteeType value of the Payhead. |
ITExemptApplicable | String | The ITExemptApplicable value of the Payhead. |
TaxIdentificationNo | String | The TaxIdentificationNo value of the Payhead. |
LedgerFBTCategory | String | The LedgerFBTCategory value of the Payhead. |
BranchCode | String | The BranchCode value of the Payhead. |
ClientCode | String | The ClientCode value of the Payhead. |
BankingConfigBank | String | The BankingConfigBank value of the Payhead. |
BankingConfigBankID | String | The BankingConfigBankID value of the Payhead. |
BankAccHolderName | String | The BankAccHolderName value of the Payhead. |
UseForPOSType | String | The UseForPOSType value of the Payhead. |
PaymentGateway | String | The PaymentGateway value of the Payhead. |
TypeOfInterestOn | String | The TypeOfInterestOn value of the Payhead. |
BankConfigIFSC | String | The BankConfigIFSC value of the Payhead. |
BankConfigMICR | String | The BankConfigMICR value of the Payhead. |
BankConfigShortCode | String | The BankConfigShortCode value of the Payhead. |
PymtInstoutputName | String | The PymtInstoutputName value of the Payhead. |
ProductCodeType | String | The ProductCodeType value of the Payhead. |
SalaryPymtProductCode | String | The SalaryPymtProductCode value of the Payhead. |
OtherPymtProductCode | String | The OtherPymtProductCode value of the Payhead. |
PaymentInstLocation | String | The PaymentInstLocation value of the Payhead. |
EncrptionLocation | String | The EncrptionLocation value of the Payhead. |
NewIMFLocation | String | The NewIMFLocation value of the Payhead. |
ImportedIMFLocation | String | The ImportedIMFLocation value of the Payhead. |
BankNewStatements | String | The BankNewStatements value of the Payhead. |
BankImportedStatements | String | The BankImportedStatements value of the Payhead. |
BankMICR | String | The BankMICR value of the Payhead. |
CorporateUserNoECS | String | The CorporateUserNoECS value of the Payhead. |
CorporateUserNoACH | String | The CorporateUserNoACH value of the Payhead. |
CorporateUserName | String | The CorporateUserName value of the Payhead. |
BankUserLoginID | String | The BankUserLoginID value of the Payhead. |
IMFName | String | The IMFName value of the Payhead. |
PayInsBatchName | String | The PayInsBatchName value of the Payhead. |
LastUsedBatchName | String | The LastUsedBatchName value of the Payhead. |
PayInsFileNumPeriod | String | The PayInsFileNumPeriod value of the Payhead. |
EncryptedBy | String | The EncryptedBy value of the Payhead. |
EncryptedId | String | The EncryptedId value of the Payhead. |
ISOCurrencyCode | String | The ISOCurrencyCode value of the Payhead. |
BankCapsuleID | String | The BankCapsuleID value of the Payhead. |
SalesTaxCessApplicable | String | The SalesTaxCessApplicable value of the Payhead. |
BankIBAN | String | The BankIBAN value of the Payhead. |
VATTaxExemptionNature | String | The VATTaxExemptionNature value of the Payhead. |
VATTaxExemptionNumber | String | The VATTaxExemptionNumber value of the Payhead. |
LedStateName | String | The LedStateName value of the Payhead. |
VATApplicable | String | The VATApplicable value of the Payhead. |
PartyBusinessType | String | The PartyBusinessType value of the Payhead. |
PartyBusinessStyle | String | The PartyBusinessStyle value of the Payhead. |
IsBillWiseOn | String | The IsBillWiseOn value of the Payhead. |
IsCostCentresOn | String | The IsCostCentresOn value of the Payhead. |
IsInterestOn | String | The IsInterestOn value of the Payhead. |
AllowinMobile | String | The AllowinMobile value of the Payhead. |
IsCostTrackingOn | String | The IsCostTrackingOn value of the Payhead. |
IsBeneficiaryCodeOn | String | The IsBeneficiaryCodeOn value of the Payhead. |
IsMstFromSync | String | The IsMstFromSync value of the Payhead. |
IsUpdatingTargetId | String | The IsUpdatingTargetId value of the Payhead. |
AsOriginal | String | The AsOriginal value of the Payhead. |
IsCondensed | String | The IsCondensed value of the Payhead. |
AffectsStock | String | The AffectsStock value of the Payhead. |
IsRateInclusiveVAT | String | The IsRateInclusiveVAT value of the Payhead. |
ForPayroll | String | The ForPayroll value of the Payhead. |
IsABCEnabled | String | The IsABCEnabled value of the Payhead. |
IsCreditDaysChkOn | String | The IsCreditDaysChkOn value of the Payhead. |
InterestonBillwise | String | The InterestonBillwise value of the Payhead. |
OverrideInterest | String | The OverrideInterest value of the Payhead. |
OverrideAdvInterest | String | The OverrideAdvInterest value of the Payhead. |
UseForVAT | String | The UseForVAT value of the Payhead. |
IgnoreTDSExempt | String | The IgnoreTDSExempt value of the Payhead. |
IsTCSApplicable | String | The IsTCSApplicable value of the Payhead. |
IsTDSApplicable | String | The IsTDSApplicable value of the Payhead. |
IsFBTApplicable | String | The IsFBTApplicable value of the Payhead. |
IsGSTApplicable | String | The IsGSTApplicable value of the Payhead. |
IsExciseApplicable | String | The IsExciseApplicable value of the Payhead. |
IsTDSExpense | String | The IsTDSExpense value of the Payhead. |
IsEDLIApplicable | String | The IsEDLIApplicable value of the Payhead. |
IsRelatedParty | String | The IsRelatedParty value of the Payhead. |
UseForESIEligibility | String | The UseForESIEligibility value of the Payhead. |
IsInterestInclLastDay | String | The IsInterestInclLastDay value of the Payhead. |
AppropriateTaxValue | String | The AppropriateTaxValue value of the Payhead. |
IsBehaveAsDuty | String | The IsBehaveAsDuty value of the Payhead. |
InterestInclDayOfAddition | String | The InterestInclDayOfAddition value of the Payhead. |
InterestInclDayOfDeduction | String | The InterestInclDayOfDeduction value of the Payhead. |
IsOthTerritoryAssessee | String | The IsOthTerritoryAssessee value of the Payhead. |
OverRideCreditLimit | String | The OverRideCreditLimit value of the Payhead. |
IsAgainstFormC | String | The IsAgainstFormC value of the Payhead. |
IsChequePrintingEnabled | String | The IsChequePrintingEnabled value of the Payhead. |
IsPayUpLoad | String | The IsPayUpLoad value of the Payhead. |
IsPayBatchOnlySAL | String | The IsPayBatchOnlySAL value of the Payhead. |
IsBNFCodeSupported | String | The IsBNFCodeSupported value of the Payhead. |
AllowExportWithErrors | String | The AllowExportWithErrors value of the Payhead. |
ConsiderPurchaseforExport | String | The ConsiderPurchaseforExport value of the Payhead. |
IsTransporter | String | The IsTransporter value of the Payhead. |
UseForNotionalITC | String | The UseForNotionalITC value of the Payhead. |
IseCommOperator | String | The IseCommOperator value of the Payhead. |
ShowinPayslip | String | The ShowinPayslip value of the Payhead. |
UseForGratuity | String | The UseForGratuity value of the Payhead. |
IsTDSProjected | String | The IsTDSProjected value of the Payhead. |
ForServiceTax | String | The ForServiceTax value of the Payhead. |
IsInputCredit | String | The IsInputCredit value of the Payhead. |
IsExempted | String | The IsExempted value of the Payhead. |
IsAbatementApplicable | String | The IsAbatementApplicable value of the Payhead. |
IsSTXParty | String | The IsSTXParty value of the Payhead. |
IsSTXNonRealizedType | String | The IsSTXNonRealizedType value of the Payhead. |
IsUsedForCVD | String | The IsUsedForCVD value of the Payhead. |
LedBelongsToNonTaxable | String | The LedBelongsToNonTaxable value of the Payhead. |
IsExciseMerchantExporter | String | The IsExciseMerchantExporter value of the Payhead. |
IsPartyExempted | String | The IsPartyExempted value of the Payhead. |
IsSEZParty | String | The IsSEZParty value of the Payhead. |
TDSDeducteeIsSpecialRate | String | The TDSDeducteeIsSpecialRate value of the Payhead. |
IseChequeSupported | String | The IseChequeSupported value of the Payhead. |
IseDDSupported | String | The IseDDSupported value of the Payhead. |
HaseChequeDeliveryMode | String | The HaseChequeDeliveryMode value of the Payhead. |
HaseChequeDeliveryTo | String | The HaseChequeDeliveryTo value of the Payhead. |
HaseChequePrintLocation | String | The HaseChequePrintLocation value of the Payhead. |
HaseChequePayableLocation | String | The HaseChequePayableLocation value of the Payhead. |
HaseChequeBankLocation | String | The HaseChequeBankLocation value of the Payhead. |
HaseDDDeliveryMode | String | The HaseDDDeliveryMode value of the Payhead. |
HaseDDDeliveryTo | String | The HaseDDDeliveryTo value of the Payhead. |
HaseDDPrintLocation | String | The HaseDDPrintLocation value of the Payhead. |
HaseDDPayableLocation | String | The HaseDDPayableLocation value of the Payhead. |
HaseDDBankLocation | String | The HaseDDBankLocation value of the Payhead. |
IsEBankingEnabled | String | The IsEBankingEnabled value of the Payhead. |
IsExportFileEncrypted | String | The IsExportFileEncrypted value of the Payhead. |
IsBatchEnabled | String | The IsBatchEnabled value of the Payhead. |
IsProductCodeBased | String | The IsProductCodeBased value of the Payhead. |
HaseDDCity | String | The HaseDDCity value of the Payhead. |
HaseChequeCity | String | The HaseChequeCity value of the Payhead. |
IsFileNameFormatSupported | String | The IsFileNameFormatSupported value of the Payhead. |
HasClientCode | String | The HasClientCode value of the Payhead. |
PayInsIsBatchApplicable | String | The PayInsIsBatchApplicable value of the Payhead. |
PayInsIsFileNumApp | String | The PayInsIsFileNumApp value of the Payhead. |
IsSalaryTransGroupedForBRS | String | The IsSalaryTransGroupedForBRS value of the Payhead. |
IseBankingSupported | String | The IseBankingSupported value of the Payhead. |
IsSCBUAE | String | The IsSCBUAE value of the Payhead. |
IsBankStatusApp | String | The IsBankStatusApp value of the Payhead. |
IsSalaryGrouped | String | The IsSalaryGrouped value of the Payhead. |
UseForPurchaseTax | String | The UseForPurchaseTax value of the Payhead. |
Audited | String | The Audited value of the Payhead. |
SamplingNumOneFactor | String | The SamplingNumOneFactor value of the Payhead. |
SamplingNumTwoFactor | String | The SamplingNumTwoFactor value of the Payhead. |
SortPosition | String | The SortPosition value of the Payhead. |
AlterID | String | The AlterID value of the Payhead. |
RemoteAlterID | String | The RemoteAlterID value of the Payhead. |
DefaultLanguage | String | The DefaultLanguage value of the Payhead. |
OldAuditEntryIds | String | The OldAuditEntryIds value of the Payhead. |
RateOfTaxCalculation | String | The RateOfTaxCalculation value of the Payhead. |
GratuityMonthDays | String | The GratuityMonthDays value of the Payhead. |
GratuityLimitMonths | String | The GratuityLimitMonths value of the Payhead. |
CalculationBasis | String | The CalculationBasis value of the Payhead. |
RoundingLimit | String | The RoundingLimit value of the Payhead. |
AbatementPercentage | String | The AbatementPercentage value of the Payhead. |
TDSDeducteeSpecialRate | String | The TDSDeducteeSpecialRate value of the Payhead. |
BeneficiaryCodeMaxLength | String | The BeneficiaryCodeMaxLength value of the Payhead. |
eChequePrintLocationVersion | String | The eChequePrintLocationVersion value of the Payhead. |
eChequePayableLocationVersion | String | The eChequePayableLocationVersion value of the Payhead. |
eDDPrintLocationVersion | String | The eDDPrintLocationVersion value of the Payhead. |
eDDPayableLocationVersion | String | The eDDPayableLocationVersion value of the Payhead. |
PayInsRunningFileNum | String | The PayInsRunningFileNum value of the Payhead. |
TransactionTypeVersion | String | The TransactionTypeVersion value of the Payhead. |
PayInsFileNumLength | String | The PayInsFileNumLength value of the Payhead. |
SamplingAmtOneFactor | String | The SamplingAmtOneFactor value of the Payhead. |
SamplingAmtTwoFactor | String | The SamplingAmtTwoFactor value of the Payhead. |
OpeningBalance | String | The OpeningBalance value of the Payhead. |
CreditLimit | String | The CreditLimit value of the Payhead. |
GratuityLimitAmount | String | The GratuityLimitAmount value of the Payhead. |
ODLimit | String | The ODLimit value of the Payhead. |
Closingbalance | String | The Closingbalance value of the Payhead. |
Address1 | String | The Address1 value of the Payhead. |
Address2 | String | The Address2 value of the Payhead. |
Address3 | String | The Address3 value of the Payhead. |
Address4 | String | The Address4 value of the Payhead. |
Address5 | String | The Address5 value of the Payhead. |
Primarygroup | String | The Primarygroup value of the Payhead. |
Overduebills | String | The Overduebills value of the Payhead. |
Onaccountvalue | String | The Onaccountvalue value of the Payhead. |
Cashinflow | String | The Cashinflow value of the Payhead. |
Cashoutflow | String | The Cashoutflow value of the Payhead. |
Performance | String | The Performance value of the Payhead. |
Drinterest | String | The Drinterest value of the Payhead. |
Crinterest | String | The Crinterest value of the Payhead. |
Lastinterestdate | String | The Lastinterestdate value of the Payhead. |
Thisyearbalance | String | The Thisyearbalance value of the Payhead. |
Prevyearbalance | String | The Prevyearbalance value of the Payhead. |
Thisquarterbalance | String | The Thisquarterbalance value of the Payhead. |
Prevquarterbalance | String | The Prevquarterbalance value of the Payhead. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Retrieve PriceList.
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM PriceList WHERE Guid LIKE '%4da0-b84f5%' SELECT * FROM PriceList WHERE RemoteGUID != NULL SELECT * FROM PriceList WHERE GSTApplicable = 'Applicable' AND CostingMethod = 'Avg. Cost' SELECT * FROM PriceList WHERE Parent = 'Ashok Leyland' OR Parent = 'Maruti Limited' SELECT * FROM PriceList WHERE IsBatchWiseOn > 'No' SELECT * FROM PriceList ORDER BY Guid Asc
Name | Type | Description |
Name | String | The Name value of the PriceList. |
ActiveFrom | Date | The ActiveFrom value of the PriceList. |
ActiveTo | Date | The ActiveTo value of the PriceList. |
Guid | String | The Guid value of the PriceList. |
Parent | String | The Parent value of the PriceList. |
Narration | String | The Narration value of the PriceList. |
RemoteGUID | String | The RemoteGUID value of the PriceList. |
RemoteAltGUID | String | The RemoteAltGUID value of the PriceList. |
RequestorRule | String | The RequestorRule value of the PriceList. |
TDSApplicable | String | The TDSApplicable value of the PriceList. |
TCSApplicable | String | The TCSApplicable value of the PriceList. |
GSTApplicable | String | The GSTApplicable value of the PriceList. |
CostingMethod | String | The CostingMethod value of the PriceList. |
ValuationMethod | String | The ValuationMethod value of the PriceList. |
BaseUnits | String | The BaseUnits value of the PriceList. |
AdditionalUnits | String | The AdditionalUnits value of the PriceList. |
ExciseTaxType | String | The ExciseTaxType value of the PriceList. |
IsBatchWiseOn | String | The IsBatchWiseOn value of the PriceList. |
IsPerishableOn | String | The IsPerishableOn value of the PriceList. |
IsAddable | String | The IsAddable value of the PriceList. |
IsMstFromSync | String | The IsMstFromSync value of the PriceList. |
IsUpdatingTargetId | String | The IsUpdatingTargetId value of the PriceList. |
AsOriginal | String | The AsOriginal value of the PriceList. |
IgnorePhysicalDifference | String | The IgnorePhysicalDifference value of the PriceList. |
IgnoreNegativeStock | String | The IgnoreNegativeStock value of the PriceList. |
TreatSalesasManufactured | String | The TreatSalesasManufactured value of the PriceList. |
TreatPurchasesasConsumed | String | The TreatPurchasesasConsumed value of the PriceList. |
TreatRejectsasScrap | String | The TreatRejectsasScrap value of the PriceList. |
HasMfgDate | String | The HasMfgDate value of the PriceList. |
AllowUseofExpiredItems | String | The AllowUseofExpiredItems value of the PriceList. |
IgnoreBatches | String | The IgnoreBatches value of the PriceList. |
IgnoreGodowns | String | The IgnoreGodowns value of the PriceList. |
SortPosition | Decimal | The SortPosition value of the PriceList. |
Alterid | Decimal | The Alterid value of the PriceList. |
RemoteAlterID | Decimal | The RemoteAlterID value of the PriceList. |
Denominator | Decimal | The Denominator value of the PriceList. |
Conversion | Decimal | The Conversion value of the PriceList. |
tempGSTCGSTRate | Decimal | The tempGSTCGSTRate value of the PriceList. |
tempGSTSGSTRate | Decimal | The tempGSTSGSTRate value of the PriceList. |
tempGSTIGSTRate | Decimal | The tempGSTIGSTRate value of the PriceList. |
tempGSTStateCessRate | Decimal | The tempGSTStateCessRate value of the PriceList. |
tempIsVATfieldsEdited | String | The tempIsVATfieldsEdited value of the PriceList. |
tempApplDate | Date | The tempApplDate value of the PriceList. |
tempClassification | String | The tempClassification value of the PriceList. |
tempNature | String | The tempNature value of the PriceList. |
tempPartyEntity | String | The tempPartyEntity value of the PriceList. |
tempBusinessNature | String | The tempBusinessNature value of the PriceList. |
tempVATRate | Decimal | The tempVATRate value of the PriceList. |
tempAddlTax | Decimal | The tempAddlTax value of the PriceList. |
tempCessOnVat | Decimal | The tempCessOnVat value of the PriceList. |
tempTaxType | String | The tempTaxType value of the PriceList. |
tempMajorCommodityName | String | The tempMajorCommodityName value of the PriceList. |
tempCommodityName | String | The tempCommodityName value of the PriceList. |
tempCommodityCode | String | The tempCommodityCode value of the PriceList. |
tempSubCommodityCode | String | The tempSubCommodityCode value of the PriceList. |
tempUOM | String | The tempUOM value of the PriceList. |
tempTypeofGoods | String | The tempTypeofGoods value of the PriceList. |
tempTradeName | String | The tempTradeName value of the PriceList. |
tempGoodsNature | String | The tempGoodsNature value of the PriceList. |
tempSchedule | String | The tempSchedule value of the PriceList. |
tempScheduleslNo | String | The tempScheduleslNo value of the PriceList. |
tempIsInvDetailsEnable | String | The tempIsInvDetailsEnable value of the PriceList. |
tempValuationType | String | The tempValuationType value of the PriceList. |
tempIsCalcOnQty | String | The tempIsCalcOnQty value of the PriceList. |
tempMRPRate | String | The tempMRPRate value of the PriceList. |
tempMRPApplDate | Date | The tempMRPApplDate value of the PriceList. |
TargetRemoteId | String | The TargetRemoteId value of the PriceList. |
Closingbalance | String | The Closingbalance value of the PriceList. |
Inwardquantity | String | The Inwardquantity value of the PriceList. |
Outwardquantity | String | The Outwardquantity value of the PriceList. |
Closingvalue | String | The Closingvalue value of the PriceList. |
Inwardvalue | String | The Inwardvalue value of the PriceList. |
Outwardvalue | String | The Outwardvalue value of the PriceList. |
Closingrate | String | The Closingrate value of the PriceList. |
Lastsaledate | String | The Lastsaledate value of the PriceList. |
Lastsaleparty | String | The Lastsaleparty value of the PriceList. |
Lastsaleprice | String | The Lastsaleprice value of the PriceList. |
Lastsaleqty | String | The Lastsaleqty value of the PriceList. |
Lastpurcdate | String | The Lastpurcdate value of the PriceList. |
Lastpurcparty | String | The Lastpurcparty value of the PriceList. |
Lastpurcprice | String | The Lastpurcprice value of the PriceList. |
Lastpurccost | String | The Lastpurccost value of the PriceList. |
Lastpurcqty | String | The Lastpurcqty value of the PriceList. |
Consumption | String | The Consumption value of the PriceList. |
Thisyearbalance | String | The Thisyearbalance value of the PriceList. |
Prevyearbalance | String | The Prevyearbalance value of the PriceList. |
Thisquarterbalance | String | The Thisquarterbalance value of the PriceList. |
Prevquarterbalance | String | The Prevquarterbalance value of the PriceList. |
Baseunits | String | The Baseunits value of the PriceList. |
Additionalunits | String | The Additionalunits value of the PriceList. |
Conversion | Decimal | The Conversion value of the PriceList. |
Openingbalance | String | The Openingbalance value of the PriceList. |
Credittotals | String | The Credittotals value of the PriceList. |
Debittotals | String | The Debittotals value of the PriceList. |
Openingvalue | String | The Openingvalue value of the PriceList. |
Denominator | Decimal | The Denominator value of the PriceList. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Balance Sheet Report of Tally
Name | Type | Description |
Name | String | Name for Report BalanceSheet. |
MainAmount | Decimal | Main amount for Report BalanceSheet. |
SubAmount | Decimal | Sub amount for Report BalanceSheet. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Bank Group Summary Report of Tally
Name | Type | Description |
Name | String | Name for Report BankGroupSummary. |
DebitAmount | Decimal | DebitAmount for Report BankGroupSummary. |
CreditAmount | Decimal | CreditAmount for Report BankGroupSummary. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Bills Payable Report of Tally
Name | Type | Description |
BillParty | String | Bill party for Report BillsPayable. |
BillRef | String | Bill reference for Report BillsPayable. |
BillDate | Date | Bill date for Report BillsPayable. |
BillAmount | Decimal | Bill amount for Report BillsPayable. |
BillDueDate | Date | Bill due date for Report BillsPayable. |
BillOverdue | Boolean | Bill overdue for Report BillsPayable. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Bills Receivable Report of Tally
Name | Type | Description |
BillParty | String | Bill party for Report BillsReceivable. |
BillRef | String | Bill reference for Report BillsReceivable. |
BillDate | Date | Bill date for Report BillsReceivable. |
BillAmount | Decimal | Bill Amount for Report BillsReceivable. |
BillDueDate | Date | Bill due date for Report BillsReceivable. |
BillOverdue | Boolean | Bill overdue for Report BillsReceivable. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Godown Summary Report of Tally
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The DspGodownName is required to make a request and the rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Report_GodownSummary WHERE DspGodownName = 'Karnataka' SELECT * FROM Report_GodownSummary WHERE DspGodownName = 'Karnataka' AND FromDate = '01/01/2019' AND ToDate = '01/01/2020'
Name | Type | Description |
Name | String | Name for Report GodownSummary. |
Quantity | String | Quantity for Report GodownSummary. |
Rate | String | Rate for Report GodownSummary. |
Amount | Decimal | Amount for Report GodownSummary. |
DspGodownName | String | This is a mirror column. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Group Outstandings Report of Tally
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The GroupName is required to make a request and the rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Report_GroupOutstandings WHERE GroupName = 'Group1' SELECT * FROM Report_GroupOutstandings WHERE GroupName = 'Group1' AND FromDate = '01/01/2019' AND ToDate = '01/01/2020'
Name | Type | Description |
Name | String | Name for Report GroupOutstandings. |
DebitAmount | Decimal | Debit amount for Report GroupOutstandings. |
CreditAmount | Decimal | Credit amount for Report GroupOutstandings. |
GroupName | String | This is a mirror column. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Group Summary Report of Tally
Name | Type | Description |
Name | String | Name for Report GroupSummary. |
DebitAmount | Decimal | Debit amount for Report GroupSummary. |
CreditAmount | Decimal | Credit amount for Report GroupSummary. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Group Vouchers Report of Tally
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The GroupName is required to make a request and the rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Report_GroupVouchers WHERE GroupName = 'Group1' SELECT * FROM Report_GroupVouchers WHERE GroupName = 'Group1' AND FromDate = '01/01/2019' AND ToDate = '01/01/2020'
Name | Type | Description |
Account | String | Account for Report GroupVouchers. |
Date | Date | Date for Report GroupVouchers. |
Type | String | Type for Report GroupVouchers. |
DebitAmount | Decimal | Debit amount for Report GroupVouchers. |
CreditAmount | Decimal | Credit amount for Report GroupVouchers. |
GroupName | String | This is a mirror column. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in selected state at the moment. |
ItemMonthlySummary Report of Tally
Name | Type | Description |
Month | String | Month for Report ItemMonthlySummary. |
Quantity | String | Quantity for Report ItemMonthlySummary. |
Rate | String | Rate for Report ItemMonthlySummary. |
Amount | Decimal | Amount for Report ItemMonthlySummary. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Ledger Outstandings Report of Tally
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The LedgerName is required to make a request and the rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Report_LedgerOutstandings WHERE LedgerName = 'Ledger1' SELECT * FROM Report_LedgerOutstandings WHERE LedgerName = 'Ledger1' AND FromDate = '01/01/2019' AND ToDate = '01/01/2020'
Name | Type | Description |
BillDate | Date | Bill date for Report LedgerOutstandings. |
BillRef | String | Bill reference for Report LedgerOutstandings. |
BillAmount | Decimal | Bill amount for Report LedgerOutstandings. |
BillDueDate | Date | Bill due date for Report LedgerOutstandings. |
BillOverdue | Boolean | Bill overdue for Report LedgerOutstandings. |
LedgerName | String | This is a mirror column. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Ledger Vouchers Report of Tally
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The LedgerName is required to make a request and the rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Report_LedgerVouchers WHERE LedgerName = 'Ledger1' SELECT * FROM Report_LedgerVouchers WHERE LedgerName = 'Ledger1' AND FromDate = '01/01/2019' AND ToDate = '01/01/2020'
Name | Type | Description |
Account | String | Acoount for Report LedgerVouchers. |
Date | Date | Date for Report LedgerVouchers. |
Type | String | Type for Report LedgerVouchers. |
DebitAmount | Decimal | Debit amount for Report LedgerVouchers. |
CreditAmount | Decimal | Credit amount for Report LedgerVouchers. |
LedgerName | String | This is a mirror column. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Negative Ledger Report of Tally
Name | Type | Description |
Name | String | Name for Report NegativeLedger. |
DebitAmount | Decimal | Debit amount Report NegativeLedger. |
CreditAmount | Decimal | Credit amount Report NegativeLedger. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Negative Stock Report of Tally
Name | Type | Description |
Name | String | Name for Report NegativeStock. |
Quantity | String | Quantity for Report NegativeStock. |
Rate | String | Rate for Report NegativeStock. |
Amount | Decimal | Amount for Report NegativeStock. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Profit and Loss Report of Tally
Name | Type | Description |
Name | String | Name for Report ProfitAndLoss |
MainAmount | Decimal | Main amount for Report ProfitAndLoss |
SubAmount | Decimal | Sub amount for Report ProfitAndLoss |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Ratio Analysis Report of Tally
Name | Type | Description |
RatioName | String | Ratio name for Report RatioAnalysis. |
RatioValue | String | Ratio value for Report RatioAnalysis. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Statistics Report of Tally
Name | Type | Description |
StatisticName | String | Statistic name for Report Statistics. |
StatisticDirectValue | Integer | Statistic direct value for Report Statistics. |
StatisticCancelled | String | Statistic cancelled value for Report Statistics. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Stock Summary Report of Tally
Name | Type | Description |
Name | String | Name for Report StockGroupSummary. |
Quantity | String | Quantity for Report StockGroupSummary. |
Rate | String | Rate for Report StockGroupSummary. |
Amount | Decimal | Amount for Report StockGroupSummary. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Stock Summary Report of Tally
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The STOCKGROUPNAME is required to make a request and the rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Report_StockItemSummary WHERE STOCKGROUPNAME = 'StockItem1' SELECT * FROM Report_StockItemSummary WHERE STOCKGROUPNAME = 'StockItem1' AND FromDate = '01/01/2019' AND ToDate = '01/01/2020'
Name | Type | Description |
Name | String | Name for Report StockItemSummary. |
Quantity | String | Quantity for StockItemSummary. |
Rate | String | Rate for StockItemSummary. |
Amount | Decimal | Amount for StockItemSummary. |
STOCKGROUPNAME | String | This is a mirror column. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
StockVouchers Report of Tally
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The StockItemName is required to make a request and the rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM Report_StockVouchers WHERE StockItemName = 'StockItem1' SELECT * FROM Report_StockVouchers WHERE StockItemName = 'StockItem1' AND FromDate = '01/01/2019' AND ToDate = '01/01/2020'
Name | Type | Description |
Account | String | Account for Report StockVouchers. |
Date | Date | Date for Report StockVouchers. |
Type | String | Type for Report StockVouchers. |
InQuantity | String | Quantity for Report StockVouchers. |
InAmount | Decimal | Amount for Report StockVouchers. |
OutQuantity | String | OutQuantity for Report StockVouchers. |
OutAmount | Decimal | OutAmount for Report StockVouchers. |
StockItemName | String | This is a mirror column. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Trial Balance Report of Tally
Name | Type | Description |
Name | String | Name for Report TrialBalance. |
DebitAmount | Decimal | DebitAmount for Report TrialBalance. |
CreditAmount | Decimal | CreditAmount for Report TrialBalance. |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Voucher Register Report of Tally
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator.
For example these queries are processed server side:
SELECT * FROM Report_VoucherRegister WHERE VOUCHERTYPENAME = 'Stock Journal' SELECT * FROM Report_VoucherRegister WHERE VOUCHERTYPENAME = 'Stock Journal' AND FromDate = '01/01/2019' AND ToDate = '01/01/2020'
Name | Type | Description |
OBJVIEW | String | OBJVIEW for Report VoucherRegister |
REMOTEID | String | REMOTEID for Report VoucherRegister |
SENDERID | String | SENDERID for Report VoucherRegister |
VCHKEY | String | VCHKEY for Report VoucherRegister |
VCHTYPE | String | VCHTYPE for Report VoucherRegister |
OLDAUDITENTRYIDS_LIST | String | OLDAUDITENTRYIDS_LIST for Report VoucherRegister |
ACCOUNTAUDITENTRIES_LIST | String | ACCOUNTAUDITENTRIES_LIST for Report VoucherRegister |
ACTIVETO | String | ACTIVETO for Report VoucherRegister |
ADDITIONALNARRATION | String | ADDITIONALNARRATION for Report VoucherRegister |
ADDRESS_LIST | String | ADDRESS_LIST for Report VoucherRegister |
ADJFROMDATE | Date | ADJFROMDATE for Report VoucherRegister |
ADJPARTYGSTIN | String | ADJPARTYGSTIN for Report VoucherRegister |
ADJPARTYINVOICEDATE | Date | ADJPARTYINVOICEDATE for Report VoucherRegister |
ADJPARTYINVOICENO | String | ADJPARTYINVOICENO for Report VoucherRegister |
ADJPARTYINVOICEVALUE | String | ADJPARTYINVOICEVALUE for Report VoucherRegister |
ADJPARTYPAYMENTDATE | Date | ADJPARTYPAYMENTDATE for Report VoucherRegister |
ADJTODATE | Date | ADJTODATE for Report VoucherRegister |
ADVANCERECEIPTDATE | Date | ADVANCERECEIPTDATE for Report VoucherRegister |
ADVANCERECEIPTNUMBER | String | ADVANCERECEIPTNUMBER for Report VoucherRegister |
AGGREMENTORDERDATE | Date | AGGREMENTORDERDATE for Report VoucherRegister |
AGGREMENTORDERNO | String | AGGREMENTORDERNO for Report VoucherRegister |
AIRPORTNAME | String | AIRPORTNAME for Report VoucherRegister |
AIRWAYBILLDATE | Date | AIRWAYBILLDATE for Report VoucherRegister |
AIRWAYBILLNO | String | AIRWAYBILLNO for Report VoucherRegister |
ALLINVENTORYENTRIES_LIST | String | ALLINVENTORYENTRIES_LIST for Report VoucherRegister |
ALLLEDGERENTRIES_LIST | String | ALLLEDGERENTRIES_LIST for Report VoucherRegister |
ALLOWCONSUMPTION | String | ALLOWCONSUMPTION for Report VoucherRegister |
ALTEREDBY | String | ALTEREDBY for Report VoucherRegister |
ALTEREDON | String | ALTEREDON for Report VoucherRegister |
ALTERID | String | ALTERID for Report VoucherRegister |
AREFORMTYPE | String | AREFORMTYPE for Report VoucherRegister |
ARESERIALMASTER | String | ARESERIALMASTER for Report VoucherRegister |
ARESERIALNUMBER | String | ARESERIALNUMBER for Report VoucherRegister |
ASORIGINAL | String | ASORIGINAL for Report VoucherRegister |
ASPAYSLIP | String | ASPAYSLIP for Report VoucherRegister |
ATTDRECORDS_LIST | String | ATTDRECORDS_LIST for Report VoucherRegister |
ATTENDANCEENTRIES_LIST | String | ATTENDANCEENTRIES_LIST for Report VoucherRegister |
AUDITED | String | AUDITED for Report VoucherRegister |
AUDITEDON | String | AUDITEDON for Report VoucherRegister |
AUDITENTRIES_LIST | String | AUDITENTRIES_LIST for Report VoucherRegister |
AUTHORITYADDRESS | String | AUTHORITYADDRESS for Report VoucherRegister |
AUTHORITYNAME | String | AUTHORITYNAME for Report VoucherRegister |
AUTOCOSTLEVEL | String | AUTOCOSTLEVEL for Report VoucherRegister |
BASICBASEPARTYNAME | String | BASICBASEPARTYNAME for Report VoucherRegister |
BASICBUYERADDRESS_LIST | String | BASICBUYERADDRESS_LIST for Report VoucherRegister |
BASICBUYERNAME | String | BASICBUYERNAME for Report VoucherRegister |
BASICBUYERSSALESTAXNO | String | BASICBUYERSSALESTAXNO for Report VoucherRegister |
BASICDATETIMEOFINVOICE | String | BASICDATETIMEOFINVOICE for Report VoucherRegister |
BASICDATETIMEOFREMOVAL | String | BASICDATETIMEOFREMOVAL for Report VoucherRegister |
BASICDESTINATIONCOUNTRY | String | BASICDESTINATIONCOUNTRY for Report VoucherRegister |
BASICDUEDATEOFPYMT | String | BASICDUEDATEOFPYMT for Report VoucherRegister |
BASICDUEDATEOFPYMT | String | BASICDUEDATEOFPYMT for Report VoucherRegister |
BASICFINALDESTINATION | String | BASICFINALDESTINATION for Report VoucherRegister |
BASICORDERREF | String | BASICORDERREF for Report VoucherRegister |
BASICPLACEOFRECEIPT | String | BASICPLACEOFRECEIPT for Report VoucherRegister |
BASICPORTOFDISCHARGE | String | BASICPORTOFDISCHARGE for Report VoucherRegister |
BASICPORTOFLOADING | String | BASICPORTOFLOADING for Report VoucherRegister |
BASICSERIALNUMINPLA | String | BASICSERIALNUMINPLA for Report VoucherRegister |
BASICSHIPDOCUMENTNO | String | BASICSHIPDOCUMENTNO for Report VoucherRegister |
BASICSHIPPEDBY | String | BASICSHIPPEDBY for Report VoucherRegister |
BASICSHIPVESSELNO | String | BASICSHIPVESSELNO for Report VoucherRegister |
BASICVOUCHERCHEQUENAME | String | BASICVOUCHERCHEQUENAME for Report VoucherRegister |
BASICVOUCHERCROSSCOMMENT | String | BASICVOUCHERCROSSCOMMENT for Report VoucherRegister |
BILLOFENTRYDATE | Date | BILLOFENTRYDATE for Report VoucherRegister |
BILLOFENTRYNO | String | BILLOFENTRYNO for Report VoucherRegister |
BILLOFLADINGDATE | Date | BILLOFLADINGDATE for Report VoucherRegister |
BILLOFLADINGNO | String | BILLOFLADINGNO for Report VoucherRegister |
BONDAMOUNT | String | BONDAMOUNT for Report VoucherRegister |
BONDDATEOFISSUE | Date | BONDDATEOFISSUE for Report VoucherRegister |
BONDEXPIRYDATE | Date | BONDEXPIRYDATE for Report VoucherRegister |
BONDNUMBER | String | BONDNUMBER for Report VoucherRegister |
BUYERADDRESSTYPE | String | BUYERADDRESSTYPE for Report VoucherRegister |
BUYERPINNUMBER | String | BUYERPINNUMBER for Report VoucherRegister |
BUYERSCSTNUMBER | String | BUYERSCSTNUMBER for Report VoucherRegister |
CARRIERNAME | String | CARRIERNAME for Report VoucherRegister |
CASHPARTYDEDTYPE | String | CASHPARTYDEDTYPE for Report VoucherRegister |
CASHPARTYPAN | String | CASHPARTYPAN for Report VoucherRegister |
CERTIFICATEDATE | Date | CERTIFICATEDATE for Report VoucherRegister |
CERTIFICATENUMBER | String | CERTIFICATENUMBER for Report VoucherRegister |
CERTIFICATETYPE | String | CERTIFICATETYPE for Report VoucherRegister |
CHALLANTYPE | String | CHALLANTYPE for Report VoucherRegister |
CHANGEVCHMODE | String | CHANGEVCHMODE for Report VoucherRegister |
CHEQUEDEPOSITORNAME | String | CHEQUEDEPOSITORNAME for Report VoucherRegister |
CLASSNAME | String | CLASSNAME for Report VoucherRegister |
CLEARINGAGENTNAME | String | CLEARINGAGENTNAME for Report VoucherRegister |
COMMONNATUREOFPAYMENT | String | COMMONNATUREOFPAYMENT for Report VoucherRegister |
CONSIGNEECIRCLE | String | CONSIGNEECIRCLE for Report VoucherRegister |
CONSIGNEECITY | String | CONSIGNEECITY for Report VoucherRegister |
CONSIGNEECSTNUMBER | String | CONSIGNEECSTNUMBER for Report VoucherRegister |
CONSIGNEEGSTIN | String | CONSIGNEEGSTIN for Report VoucherRegister |
CONSIGNEEIECODE | String | CONSIGNEEIECODE for Report VoucherRegister |
CONSIGNEELBTREGNNO | String | CONSIGNEELBTREGNNO for Report VoucherRegister |
CONSIGNEELBTZONE | String | CONSIGNEELBTZONE for Report VoucherRegister |
CONSIGNEEMAIL | String | CONSIGNEEMAIL for Report VoucherRegister |
CONSIGNEEMOBILENUMBER | String | CONSIGNEEMOBILENUMBER for Report VoucherRegister |
CONSIGNEEOTHERS | String | CONSIGNEEOTHERS for Report VoucherRegister |
CONSIGNEEPINCODE | String | CONSIGNEEPINCODE for Report VoucherRegister |
CONSIGNEEPINNUMBER | String | CONSIGNEEPINNUMBER for Report VoucherRegister |
CONSIGNEESTATENAME | String | CONSIGNEESTATENAME for Report VoucherRegister |
CONSUMERIDENTIFICATIONNUMBER | String | CONSUMERIDENTIFICATIONNUMBER for Report VoucherRegister |
CONTRACTORTIN | String | CONTRACTORTIN for Report VoucherRegister |
COSTCENTRENAME | String | COSTCENTRENAME for Report VoucherRegister |
COUNTRYOFRESIDENCE | String | COUNTRYOFRESIDENCE for Report VoucherRegister |
CREDITLETTERDATE | Date | CREDITLETTERDATE for Report VoucherRegister |
CREDITLETTERREF | String | CREDITLETTERREF for Report VoucherRegister |
CSTFORMISSUEDATE | Date | CSTFORMISSUEDATE for Report VoucherRegister |
CSTFORMISSUENUMBER | String | CSTFORMISSUENUMBER for Report VoucherRegister |
CSTFORMISSUESERIESNUM | String | CSTFORMISSUESERIESNUM for Report VoucherRegister |
CSTFORMISSUETYPE | String | CSTFORMISSUETYPE for Report VoucherRegister |
CSTFORMRECVDATE | Date | CSTFORMRECVDATE for Report VoucherRegister |
CSTFORMRECVNUMBER | String | CSTFORMRECVNUMBER for Report VoucherRegister |
CSTFORMRECVSERIESNUM | String | CSTFORMRECVSERIESNUM for Report VoucherRegister |
CSTFORMRECVTYPE | String | CSTFORMRECVTYPE for Report VoucherRegister |
CURBOMNAME | String | CURBOMNAME for Report VoucherRegister |
CURRBASICBUYERNAME | String | CURRBASICBUYERNAME for Report VoucherRegister |
CURRBASICPURCHASEORDERNO | String | CURRBASICPURCHASEORDERNO for Report VoucherRegister |
CURRBASICSHIPDELIVERYNOTE | String | CURRBASICSHIPDELIVERYNOTE for Report VoucherRegister |
CURRBUYERADDRESSTYPE | String | CURRBUYERADDRESSTYPE for Report VoucherRegister |
CURRPARTYADDRESSTYPE | String | CURRPARTYADDRESSTYPE for Report VoucherRegister |
CURRPARTYLEDGERNAME | String | CURRPARTYLEDGERNAME for Report VoucherRegister |
CURRPARTYNAME | String | CURRPARTYNAME for Report VoucherRegister |
CURRSTATENAME | String | CURRSTATENAME for Report VoucherRegister |
CUSTOMDUTYPAID | String | CUSTOMDUTYPAID for Report VoucherRegister |
DATE | Date | DATE for Report VoucherRegister |
DELIVERYCITY | String | DELIVERYCITY for Report VoucherRegister |
DELIVERYOTHERS | String | DELIVERYOTHERS for Report VoucherRegister |
DELIVERYPINCODE | String | DELIVERYPINCODE for Report VoucherRegister |
DELIVERYSTATE | String | DELIVERYSTATE for Report VoucherRegister |
DESTINATIONGODOWN | String | DESTINATIONGODOWN for Report VoucherRegister |
DESTINATIONPERMITNUMBER | String | DESTINATIONPERMITNUMBER for Report VoucherRegister |
DESTINATIONTAXUNIT | String | DESTINATIONTAXUNIT for Report VoucherRegister |
DIFFACTUALQTY | String | DIFFACTUALQTY for Report VoucherRegister |
DISPATCHCITY | String | DISPATCHCITY for Report VoucherRegister |
DISPATCHDATE | Date | DISPATCHDATE for Report VoucherRegister |
DISPATCHPINCODE | String | DISPATCHPINCODE for Report VoucherRegister |
DUTYHEADDETAILS_LIST | String | DUTYHEADDETAILS_LIST for Report VoucherRegister |
ECDATE | Date | ECDATE for Report VoucherRegister |
ECFEEAMOUNT | String | ECFEEAMOUNT for Report VoucherRegister |
ECFEEDEPOSITBYAWARDER | String | ECFEEDEPOSITBYAWARDER for Report VoucherRegister |
ECFEEDEPOSITBYCONTRACTOR | String | ECFEEDEPOSITBYCONTRACTOR for Report VoucherRegister |
ECFEERATE | String | ECFEERATE for Report VoucherRegister |
ECISSUINGAUTHORITY | String | ECISSUINGAUTHORITY for Report VoucherRegister |
ECNUMBER | String | ECNUMBER for Report VoucherRegister |
EFFECTIVEDATE | Date | EFFECTIVEDATE for Report VoucherRegister |
EICHECKPOST | String | EICHECKPOST for Report VoucherRegister |
EIDEFAULTLED_CLASSADDLRATE | String | EIDEFAULTLED_CLASSADDLRATE for Report VoucherRegister |
EIDEFAULTLED_CLASSNAME | String | EIDEFAULTLED_CLASSNAME for Report VoucherRegister |
EIDEFAULTLED_CLASSRATE | String | EIDEFAULTLED_CLASSRATE for Report VoucherRegister |
EIDEFAULTLED_ISUSERDEFINED | String | EIDEFAULTLED_ISUSERDEFINED for Report VoucherRegister |
EIDEFAULTLED_ISZRBASICSERVICE | String | EIDEFAULTLED_ISZRBASICSERVICE for Report VoucherRegister |
EMIRATEPOS | String | EMIRATEPOS for Report VoucherRegister |
ENTEREDBY | String | ENTEREDBY for Report VoucherRegister |
ENTRYCHECKPOSTLOCATION | String | ENTRYCHECKPOSTLOCATION for Report VoucherRegister |
EWAYBILLDETAILS_LIST | String | EWAYBILLDETAILS_LIST for Report VoucherRegister |
EXCHGCURRENCYNAME | String | EXCHGCURRENCYNAME for Report VoucherRegister |
EXCHGRATE | String | EXCHGRATE for Report VoucherRegister |
EXCISECLASSIFICATIONNAME | String | EXCISECLASSIFICATIONNAME for Report VoucherRegister |
EXCISENOTIFICATIONNO | String | EXCISENOTIFICATIONNO for Report VoucherRegister |
EXCISENOTIFICATIONSERIALNO | String | EXCISENOTIFICATIONSERIALNO for Report VoucherRegister |
EXCISEOPENING | String | EXCISEOPENING for Report VoucherRegister |
EXCISETARIFFTYPE | String | EXCISETARIFFTYPE for Report VoucherRegister |
EXCISETAXOVERRIDE | String | EXCISETAXOVERRIDE for Report VoucherRegister |
EXCISETREASURYNAME | String | EXCISETREASURYNAME for Report VoucherRegister |
EXCISETREASURYNUMBER | String | EXCISETREASURYNUMBER for Report VoucherRegister |
EXCISEUNITNAME | String | EXCISEUNITNAME for Report VoucherRegister |
EXCLUDEDTAXATIONS_LIST | String | EXCLUDEDTAXATIONS_LIST for Report VoucherRegister |
EXITCHECKPOSTLOCATION | String | EXITCHECKPOSTLOCATION for Report VoucherRegister |
EXPORTERCOUNTRY | String | EXPORTERCOUNTRY for Report VoucherRegister |
FBTFROMDATE | Date | FBTFROMDATE for Report VoucherRegister |
FBTPAYMENTTYPE | String | FBTPAYMENTTYPE for Report VoucherRegister |
FBTTODATE | Date | FBTTODATE for Report VoucherRegister |
FOREIGNSELLERNAME | String | FOREIGNSELLERNAME for Report VoucherRegister |
FORJOBCOSTING | String | FORJOBCOSTING for Report VoucherRegister |
FORM16ISSUEDATE | Date | FORM16ISSUEDATE for Report VoucherRegister |
FWDAGENTNAME | String | FWDAGENTNAME for Report VoucherRegister |
GOODSRCPTDATE | Date | GOODSRCPTDATE for Report VoucherRegister |
GOODSVEHICLENUMBER | String | GOODSVEHICLENUMBER for Report VoucherRegister |
GSTACTIVITYSTATUS | String | GSTACTIVITYSTATUS for Report VoucherRegister |
GSTADDITIONALDETAILS | String | GSTADDITIONALDETAILS for Report VoucherRegister |
GSTBANKACCOUNTHOLDER | String | GSTBANKACCOUNTHOLDER for Report VoucherRegister |
GSTBANKACCOUNTNUMBER | String | GSTBANKACCOUNTNUMBER for Report VoucherRegister |
GSTBANKACCOUNTTYPE | String | GSTBANKACCOUNTTYPE for Report VoucherRegister |
GSTBANKBRANCHADDRESS | String | GSTBANKBRANCHADDRESS for Report VoucherRegister |
GSTBANKBRANCHNAME | String | GSTBANKBRANCHNAME for Report VoucherRegister |
GSTBANKIFSCCODE | String | GSTBANKIFSCCODE for Report VoucherRegister |
GSTBANKMICRCODE | String | GSTBANKMICRCODE for Report VoucherRegister |
GSTBANKNAME | String | GSTBANKNAME for Report VoucherRegister |
GSTCHALLANDATE | Date | GSTCHALLANDATE for Report VoucherRegister |
GSTCHALLANEXPIRYDATE | Date | GSTCHALLANEXPIRYDATE for Report VoucherRegister |
GSTCHALLANNUMBER | String | GSTCHALLANNUMBER for Report VoucherRegister |
GSTCINNUMBER | String | GSTCINNUMBER for Report VoucherRegister |
GSTCPINNUMBER | String | GSTCPINNUMBER for Report VoucherRegister |
GSTDEBITDOCNUMBER | String | GSTDEBITDOCNUMBER for Report VoucherRegister |
GSTEWAYCONSIGNEEADDRESS_LIST | String | GSTEWAYCONSIGNEEADDRESS_LIST for Report VoucherRegister |
GSTEWAYCONSIGNORADDRESS_LIST | String | GSTEWAYCONSIGNORADDRESS_LIST for Report VoucherRegister |
GSTINSTRUMENTNUMBER | String | GSTINSTRUMENTNUMBER for Report VoucherRegister |
GSTINVASSESSABLEVALUE | String | GSTINVASSESSABLEVALUE for Report VoucherRegister |
GSTITCDOCUMENTTYPE | String | GSTITCDOCUMENTTYPE for Report VoucherRegister |
GSTITCREVERSALDETAILS | String | GSTITCREVERSALDETAILS for Report VoucherRegister |
GSTMERCHANTID | String | GSTMERCHANTID for Report VoucherRegister |
GSTNATUREOFRETURN | String | GSTNATUREOFRETURN for Report VoucherRegister |
GSTNOTEXPORTED | String | GSTNOTEXPORTED for Report VoucherRegister |
GSTPYMTMODEOFDEPOSIT | String | GSTPYMTMODEOFDEPOSIT for Report VoucherRegister |
GSTREASONFORREJECTION | String | GSTREASONFORREJECTION for Report VoucherRegister |
GSTRECONSTATUS | String | GSTRECONSTATUS for Report VoucherRegister |
GSTREGISTRATIONTYPE | String | GSTREGISTRATIONTYPE for Report VoucherRegister |
GUID | String | GUID for Report VoucherRegister |
HASCASHFLOW | String | HASCASHFLOW for Report VoucherRegister |
HASDISCOUNTS | String | HASDISCOUNTS for Report VoucherRegister |
HOLDREFERENCE | String | HOLDREFERENCE for Report VoucherRegister |
IGNOREGSTINVALIDATION | String | IGNOREGSTINVALIDATION for Report VoucherRegister |
IGNOREORIGVCHDATE | String | IGNOREORIGVCHDATE for Report VoucherRegister |
IGNOREPOSVALIDATION | String | IGNOREPOSVALIDATION for Report VoucherRegister |
IMPORTEREXPORTERCODE | String | IMPORTEREXPORTERCODE for Report VoucherRegister |
INCLUDEADVPYMTVCH | String | INCLUDEADVPYMTVCH for Report VoucherRegister |
INSPDOCDATE | Date | INSPDOCDATE for Report VoucherRegister |
INSPDOCNO | String | INSPDOCNO for Report VoucherRegister |
INVDELIVERYDATE | Date | INVDELIVERYDATE for Report VoucherRegister |
INVENTORYENTRIESIN_LIST | String | INVENTORYENTRIESIN_LIST for Report VoucherRegister |
INVENTORYENTRIESOUT_LIST | String | INVENTORYENTRIESOUT_LIST for Report VoucherRegister |
INVOICEDELNOTES_LIST | String | INVOICEDELNOTES_LIST for Report VoucherRegister |
INVOICEEXPORTLIST_LIST | String | INVOICEEXPORTLIST_LIST for Report VoucherRegister |
INVOICEINDENTLIST_LIST | String | INVOICEINDENTLIST_LIST for Report VoucherRegister |
INVOICEORDERLIST_LIST | String | INVOICEORDERLIST_LIST for Report VoucherRegister |
ISATTDDATAPRESERVED | String | ISATTDDATAPRESERVED for Report VoucherRegister |
ISBLANKCHEQUE | String | ISBLANKCHEQUE for Report VoucherRegister |
ISBOENOTAPPLICABLE | String | ISBOENOTAPPLICABLE for Report VoucherRegister |
ISCANCELLED | String | ISCANCELLED for Report VoucherRegister |
ISCOSTCENTRE | String | ISCOSTCENTRE for Report VoucherRegister |
ISCSTAGTFORMC | String | ISCSTAGTFORMC for Report VoucherRegister |
ISDECLAREDTOCUSTOMS | String | ISDECLAREDTOCUSTOMS for Report VoucherRegister |
ISDELETED | String | ISDELETED for Report VoucherRegister |
ISDELIVERYSAMEASCONSIGNEE | String | ISDELIVERYSAMEASCONSIGNEE for Report VoucherRegister |
ISDESIGNATEDZONEPARTY | String | ISDESIGNATEDZONEPARTY for Report VoucherRegister |
ISDISPATCHSAMEASCONSIGNOR | String | ISDISPATCHSAMEASCONSIGNOR for Report VoucherRegister |
ISEXCISEMANUFACTURERON | String | ISEXCISEMANUFACTURERON for Report VoucherRegister |
ISEXCISEOVERRIDDEN | String | ISEXCISEOVERRIDDEN for Report VoucherRegister |
ISEXCISESUPPLYVCH | String | ISEXCISESUPPLYVCH for Report VoucherRegister |
ISEXCISEVOUCHER | String | ISEXCISEVOUCHER for Report VoucherRegister |
ISFORJOBWORKIN | String | ISFORJOBWORKIN for Report VoucherRegister |
ISGSTOVERRIDDEN | String | ISGSTOVERRIDDEN for Report VoucherRegister |
ISINVOICE | String | ISINVOICE for Report VoucherRegister |
ISISDVOUCHER | String | ISISDVOUCHER for Report VoucherRegister |
ISMSTFROMSYNC | String | ISMSTFROMSYNC for Report VoucherRegister |
ISONHOLD | String | ISONHOLD for Report VoucherRegister |
ISOPTIONAL | String | ISOPTIONAL for Report VoucherRegister |
ISOVERSEASTOURISTTRANS | String | ISOVERSEASTOURISTTRANS for Report VoucherRegister |
ISPOSTDATED | String | ISPOSTDATED for Report VoucherRegister |
ISSERVICETAXOVERRIDDEN | String | ISSERVICETAXOVERRIDDEN for Report VoucherRegister |
ISSHIPPINGWITHINSTATE | String | ISSHIPPINGWITHINSTATE for Report VoucherRegister |
ISSTXNONREALIZEDVCH | String | ISSTXNONREALIZEDVCH for Report VoucherRegister |
ISSUBWORKSCONTRACT | String | ISSUBWORKSCONTRACT for Report VoucherRegister |
ISTCSOVERRIDDEN | String | ISTCSOVERRIDDEN for Report VoucherRegister |
ISTDSOVERRIDDEN | String | ISTDSOVERRIDDEN for Report VoucherRegister |
ISTDSTCSCASHVCH | String | ISTDSTCSCASHVCH for Report VoucherRegister |
ISVATDUTYPAID | String | ISVATDUTYPAID for Report VoucherRegister |
ISVATOVERRIDDEN | String | ISVATOVERRIDDEN for Report VoucherRegister |
ISVATPAIDATCUSTOMS | String | ISVATPAIDATCUSTOMS for Report VoucherRegister |
ISVATPRINCIPALACCOUNT | String | ISVATPRINCIPALACCOUNT for Report VoucherRegister |
ISVATRESTAXINVOICE | String | ISVATRESTAXINVOICE for Report VoucherRegister |
ISVOID | String | ISVOID for Report VoucherRegister |
LBTMAPPEDCATEGORY | String | LBTMAPPEDCATEGORY for Report VoucherRegister |
LBTMAPPEDZONE | String | LBTMAPPEDZONE for Report VoucherRegister |
LBTNATUREOFLIABILITY | String | LBTNATUREOFLIABILITY for Report VoucherRegister |
LEDGERENTRIES_LIST | String | LEDGERENTRIES_LIST for Report VoucherRegister |
LORRYRECPTDATE | Date | LORRYRECPTDATE for Report VoucherRegister |
LORRYRECPTNO | String | LORRYRECPTNO for Report VoucherRegister |
LUTDATEOFISSUE | Date | LUTDATEOFISSUE for Report VoucherRegister |
LUTEXPIRYDATE | Date | LUTEXPIRYDATE for Report VoucherRegister |
LUTNUMBER | String | LUTNUMBER for Report VoucherRegister |
MASTERID | String | MASTERID for Report VoucherRegister |
MFGJOURNAL | String | MFGJOURNAL for Report VoucherRegister |
MFGRADDRESSTYPE | String | MFGRADDRESSTYPE for Report VoucherRegister |
NARRATION | String | NARRATION for Report VoucherRegister |
NATUREOFSALES | String | NATUREOFSALES for Report VoucherRegister |
OLDAUDITENTRIES_LIST | String | OLDAUDITENTRIES_LIST for Report VoucherRegister |
ORDERLINESTATUS | String | ORDERLINESTATUS for Report VoucherRegister |
ORIGINVOICEDETAILS_LIST | String | ORIGINVOICEDETAILS_LIST for Report VoucherRegister |
PARTYADDRESSTYPE | String | PARTYADDRESSTYPE for Report VoucherRegister |
PARTYGSTIN | String | PARTYGSTIN for Report VoucherRegister |
PARTYINVDATE | Date | PARTYINVDATE for Report VoucherRegister |
PARTYINVNO | String | PARTYINVNO for Report VoucherRegister |
PARTYLEDGERNAME | String | PARTYLEDGERNAME for Report VoucherRegister |
PARTYNAME | String | PARTYNAME for Report VoucherRegister |
PARTYORDERDATE | Date | PARTYORDERDATE for Report VoucherRegister |
PARTYORDERNO | String | PARTYORDERNO for Report VoucherRegister |
PAYROLLMODEOFPAYMENT_LIST | String | PAYROLLMODEOFPAYMENT_LIST for Report VoucherRegister |
PERSISTEDVIEW | String | PERSISTEDVIEW for Report VoucherRegister |
PLACEOFSUPPLY | String | PLACEOFSUPPLY for Report VoucherRegister |
PLACEOFSUPPLYCOUNTRY | String | PLACEOFSUPPLYCOUNTRY for Report VoucherRegister |
PLACEOFSUPPLYSTATE | String | PLACEOFSUPPLYSTATE for Report VoucherRegister |
POINTOFTRANSACTION | String | POINTOFTRANSACTION for Report VoucherRegister |
PORTCODE | String | PORTCODE for Report VoucherRegister |
PORTNAME | String | PORTNAME for Report VoucherRegister |
POSCARDLEDGER | String | POSCARDLEDGER for Report VoucherRegister |
POSCARDNUMBER | String | POSCARDNUMBER for Report VoucherRegister |
POSCASHLEDGER | String | POSCASHLEDGER for Report VoucherRegister |
POSCASHRECEIVED | String | POSCASHRECEIVED for Report VoucherRegister |
POSCHEQUEBANKNAME | String | POSCHEQUEBANKNAME for Report VoucherRegister |
POSCHEQUELEDGER | String | POSCHEQUELEDGER for Report VoucherRegister |
POSCHEQUENUMBER | String | POSCHEQUENUMBER for Report VoucherRegister |
POSGIFTLEDGER | String | POSGIFTLEDGER for Report VoucherRegister |
POSSTAXPARTYLEDGERNAME | String | POSSTAXPARTYLEDGERNAME for Report VoucherRegister |
PREVBOMNAME | String | PREVBOMNAME for Report VoucherRegister |
PRICELEVEL | String | PRICELEVEL for Report VoucherRegister |
PRIORITYSTATECONFLICT | String | PRIORITYSTATECONFLICT for Report VoucherRegister |
PROCESSINGDURATION | String | PROCESSINGDURATION for Report VoucherRegister |
PURPOSEOFPURCHASE | String | PURPOSEOFPURCHASE for Report VoucherRegister |
RECONCILATIONDATE | Date | RECONCILATIONDATE for Report VoucherRegister |
REFERENCE | String | REFERENCE for Report VoucherRegister |
REFERENCEDATE | Date | REFERENCEDATE for Report VoucherRegister |
REFUNDVOUCHERDATE | Date | REFUNDVOUCHERDATE for Report VoucherRegister |
REFUNDVOUCHERNUMBER | String | REFUNDVOUCHERNUMBER for Report VoucherRegister |
REQUESTORRULE | String | REQUESTORRULE for Report VoucherRegister |
RETURNINVOICEDATE | Date | RETURNINVOICEDATE for Report VoucherRegister |
SERIALMASTER | String | SERIALMASTER for Report VoucherRegister |
SERIALNUMBER | String | SERIALNUMBER for Report VoucherRegister |
SETTLEMENTTYPE | String | SETTLEMENTTYPE for Report VoucherRegister |
SHIPAGENTNAME | String | SHIPAGENTNAME for Report VoucherRegister |
SHIPNAME | String | SHIPNAME for Report VoucherRegister |
SHIPPINGBILLDATE | Date | SHIPPINGBILLDATE for Report VoucherRegister |
SHIPPINGBILLNO | String | SHIPPINGBILLNO for Report VoucherRegister |
SRVTREGNUMBER | String | SRVTREGNUMBER for Report VoucherRegister |
STATADJUSTMENTTYPE | String | STATADJUSTMENTTYPE for Report VoucherRegister |
STATENAME | String | STATENAME for Report VoucherRegister |
STATPAYMENTTYPE | String | STATPAYMENTTYPE for Report VoucherRegister |
STTAXBANKCHALLANNUMBER | String | STTAXBANKCHALLANNUMBER for Report VoucherRegister |
STTAXCHALLANDATE | Date | STTAXCHALLANDATE for Report VoucherRegister |
STTVCHRHANDLE | String | STTVCHRHANDLE for Report VoucherRegister |
SUMAUTOVCHNUM | String | SUMAUTOVCHNUM for Report VoucherRegister |
SUPPLEMENTARYDUTYHEADDETAILS_LIST | String | SUPPLEMENTARYDUTYHEADDETAILS_LIS for Report VoucherRegister |
SUPPLIERIECODE | String | SUPPLIERIECODE for Report VoucherRegister |
SUPPLIERLBTREGNNO | String | SUPPLIERLBTREGNNO for Report VoucherRegister |
SUPPLIERLBTZONE | String | SUPPLIERLBTZONE for Report VoucherRegister |
TAXADJUSTMENT | String | TAXADJUSTMENT for Report VoucherRegister |
TAXBANKACCOUNTNUMBER | String | TAXBANKACCOUNTNUMBER for Report VoucherRegister |
TAXBANKBRANCHNAME | String | TAXBANKBRANCHNAME for Report VoucherRegister |
TAXBANKCHALLANNUMBER | String | TAXBANKCHALLANNUMBER for Report VoucherRegister |
TAXBANKNAME | String | TAXBANKNAME for Report VoucherRegister |
TAXCHALLANBSRCODE | String | TAXCHALLANBSRCODE for Report VoucherRegister |
TAXCHALLANDATE | Date | TAXCHALLANDATE for Report VoucherRegister |
TAXCHEQUEDATE | Date | TAXCHEQUEDATE for Report VoucherRegister |
TAXCHEQUENUMBER | String | TAXCHEQUENUMBER for Report VoucherRegister |
TAXPAYMENTTYPE | String | TAXPAYMENTTYPE for Report VoucherRegister |
TAXPAYPERIODFROMDATE | Date | TAXPAYPERIODFROMDATE for Report VoucherRegister |
TAXPAYPERIODTODATE | Date | TAXPAYPERIODTODATE for Report VoucherRegister |
TAXUNITNAME | String | TAXUNITNAME for Report VoucherRegister |
TDNOFAWARDER | String | TDNOFAWARDER for Report VoucherRegister |
TDSDEDNSTATUS | String | TDSDEDNSTATUS for Report VoucherRegister |
TDSDEDUCTED | String | TDSDEDUCTED for Report VoucherRegister |
TDSNATUREOFPAYMENT | String | TDSNATUREOFPAYMENT for Report VoucherRegister |
TDSSECTIONNO | String | TDSSECTIONNO for Report VoucherRegister |
TEMPCLASSNATURE | String | TEMPCLASSNATURE for Report VoucherRegister |
TEMPCONSIGNEEPINCODENUMBER | String | TEMPCONSIGNEEPINCODENUMBER for Report VoucherRegister |
TEMPCONSIGNORPINCODENUMBER | String | TEMPCONSIGNORPINCODENUMBER for Report VoucherRegister |
TEMPGSTEWAYBILLDATE | Date | TEMPGSTEWAYBILLDATE for Report VoucherRegister |
TEMPGSTEWAYBILLNUMBER | String | TEMPGSTEWAYBILLNUMBER for Report VoucherRegister |
TEMPGSTEWAYCONSADDRESS | String | TEMPGSTEWAYCONSADDRESS for Report VoucherRegister |
TEMPGSTEWAYCONSBILLDATE | Date | TEMPGSTEWAYCONSBILLDATE for Report VoucherRegister |
TEMPGSTEWAYCONSBILLNUMBER | String | TEMPGSTEWAYCONSBILLNUMBER for Report VoucherRegister |
TEMPGSTEWAYCONSFROMPLACE | String | TEMPGSTEWAYCONSFROMPLACE for Report VoucherRegister |
TEMPGSTEWAYCONSIGNEE | String | TEMPGSTEWAYCONSIGNEE for Report VoucherRegister |
TEMPGSTEWAYCONSIGNEEADDRESSTYPE | String | TEMPGSTEWAYCONSIGNEEADDRESSTYPE for Report VoucherRegister |
TEMPGSTEWAYCONSIGNOR | String | TEMPGSTEWAYCONSIGNOR for Report VoucherRegister |
TEMPGSTEWAYCONSIGNORADDRESS | String | TEMPGSTEWAYCONSIGNORADDRESS for Report VoucherRegister |
TEMPGSTEWAYCONSIGNORADDRESSTYPE | String | TEMPGSTEWAYCONSIGNORADDRESSTYPE for Report VoucherRegister |
TEMPGSTEWAYCONSIGNORSTATE | String | TEMPGSTEWAYCONSIGNORSTATE for Report VoucherRegister |
TEMPGSTEWAYCONSIGNORTIN | String | TEMPGSTEWAYCONSIGNORTIN for Report VoucherRegister |
TEMPGSTEWAYCONSPINCODE | String | TEMPGSTEWAYCONSPINCODE for Report VoucherRegister |
TEMPGSTEWAYCONSPINCODENUMBER | String | TEMPGSTEWAYCONSPINCODENUMBER for Report VoucherRegister |
TEMPGSTEWAYCONSSHIPFROMSTATE | String | TEMPGSTEWAYCONSSHIPFROMSTATE for Report VoucherRegister |
TEMPGSTEWAYCONSSHIPTOSTATE | String | TEMPGSTEWAYCONSSHIPTOSTATE for Report VoucherRegister |
TEMPGSTEWAYCONSSTATE | String | TEMPGSTEWAYCONSSTATE for Report VoucherRegister |
TEMPGSTEWAYCONSTIN | String | TEMPGSTEWAYCONSTIN for Report VoucherRegister |
TEMPGSTEWAYDISTANCE | String | TEMPGSTEWAYDISTANCE for Report VoucherRegister |
TEMPGSTEWAYDOCUMENTTYPE | String | TEMPGSTEWAYDOCUMENTTYPE for Report VoucherRegister |
TEMPGSTEWAYFROMPLACE | String | TEMPGSTEWAYFROMPLACE for Report VoucherRegister |
TEMPGSTEWAYPINCODE | String | TEMPGSTEWAYPINCODE for Report VoucherRegister |
TEMPGSTEWAYPINCODENUMBER | String | TEMPGSTEWAYPINCODENUMBER for Report VoucherRegister |
TEMPGSTEWAYSTATUS | String | TEMPGSTEWAYSTATUS for Report VoucherRegister |
TEMPGSTEWAYSUBTYPE | String | TEMPGSTEWAYSUBTYPE for Report VoucherRegister |
TEMPGSTEWAYTRANSPORTERDOCDATE | Date | TEMPGSTEWAYTRANSPORTERDOCDATE for Report VoucherRegister |
TEMPGSTEWAYTRANSPORTERDOCNO | String | TEMPGSTEWAYTRANSPORTERDOCNO for Report VoucherRegister |
TEMPGSTEWAYTRANSPORTERID | String | TEMPGSTEWAYTRANSPORTERID for Report VoucherRegister |
TEMPGSTEWAYTRANSPORTERNAME | String | TEMPGSTEWAYTRANSPORTERNAME for Report VoucherRegister |
TEMPGSTEWAYTRANSPORTMODE | String | TEMPGSTEWAYTRANSPORTMODE for Report VoucherRegister |
TEMPGSTEWAYVEHICLENUMBER | String | TEMPGSTEWAYVEHICLENUMBER for Report VoucherRegister |
TEMPGSTEWAYVEHICLETYPE | String | TEMPGSTEWAYVEHICLETYPE for Report VoucherRegister |
TEMPGSTOVRDNINELIGIBLEITC | String | TEMPGSTOVRDNINELIGIBLEITC for Report VoucherRegister |
TEMPGSTOVRDNINELIGIBLEITCSTR | String | TEMPGSTOVRDNINELIGIBLEITCSTR for Report VoucherRegister |
TEMPGSTOVRDNISREVCHARGEAPPL | String | TEMPGSTOVRDNISREVCHARGEAPPL for Report VoucherRegister |
TEMPGSTOVRDNISREVCHARGEAPPLSTR | String | TEMPGSTOVRDNISREVCHARGEAPPLSTR for Report VoucherRegister |
TEMPGSTOVRDNTAXABILITY | String | TEMPGSTOVRDNTAXABILITY for Report VoucherRegister |
TEMPGSTRATEDETAILS.LIST | String | TEMPGSTRATEDETAILS.LIST for Report VoucherRegister |
TEMPISUSERDEFINEDCLASS | String | TEMPISUSERDEFINEDCLASS for Report VoucherRegister |
TEMPISVCHSUPPLFILLED | String | TEMPISVCHSUPPLFILLED for Report VoucherRegister |
TEMPVATCLASSIFICATION | String | TEMPVATCLASSIFICATION for Report VoucherRegister |
TRANSBUYERLANDINGDATE | Date | TRANSBUYERLANDINGDATE for Report VoucherRegister |
TRANSCATEGORY | String | TRANSCATEGORY for Report VoucherRegister |
TRANSPORTERADDRAREA | String | TRANSPORTERADDRAREA for Report VoucherRegister |
TRANSPORTERADDRBLDG | String | TRANSPORTERADDRBLDG for Report VoucherRegister |
TRANSPORTERADDRDIST | String | TRANSPORTERADDRDIST for Report VoucherRegister |
TRANSPORTERADDRFAX | String | TRANSPORTERADDRFAX for Report VoucherRegister |
TRANSPORTERADDRPHONE | String | TRANSPORTERADDRPHONE for Report VoucherRegister |
TRANSPORTERADDRPINCODE | String | TRANSPORTERADDRPINCODE for Report VoucherRegister |
TRANSPORTERADDRROAD | String | TRANSPORTERADDRROAD for Report VoucherRegister |
TRANSPORTERADDRROOM | String | TRANSPORTERADDRROOM for Report VoucherRegister |
TRANSPORTERADDRSTATE | String | TRANSPORTERADDRSTATE for Report VoucherRegister |
TRANSPORTERADDRTOWN | String | TRANSPORTERADDRTOWN for Report VoucherRegister |
TRANSPORTERNAME | String | TRANSPORTERNAME for Report VoucherRegister |
TRANSPORTERVEHICLE2 | String | TRANSPORTERVEHICLE2 for Report VoucherRegister |
TRANSPORTLOCALTIN | String | TRANSPORTLOCALTIN for Report VoucherRegister |
TRANSPORTMODE | String | TRANSPORTMODE for Report VoucherRegister |
TRANSSALELANDINGDATE | Date | TRANSSALELANDINGDATE for Report VoucherRegister |
TRANSSOURCEPLACE | String | TRANSSOURCEPLACE for Report VoucherRegister |
TYPEOFEXCISEVOUCHER | String | TYPEOFEXCISEVOUCHER for Report VoucherRegister |
URDORIGINALSALEVALUE | String | URDORIGINALSALEVALUE for Report VoucherRegister |
USEFORCOMPOUND | String | USEFORCOMPOUND for Report VoucherRegister |
USEFOREXCISE | String | USEFOREXCISE for Report VoucherRegister |
USEFORFINALPRODUCTION | String | USEFORFINALPRODUCTION for Report VoucherRegister |
USEFORGAINLOSS | String | USEFORGAINLOSS for Report VoucherRegister |
USEFORGODOWNTRANSFER | String | USEFORGODOWNTRANSFER for Report VoucherRegister |
USEFORINTEREST | String | USEFORINTEREST for Report VoucherRegister |
USEFORSERVICETAX | String | USEFORSERVICETAX for Report VoucherRegister |
USEFORTAXUNITTRANSFER | String | USEFORTAXUNITTRANSFER for Report VoucherRegister |
USETRACKINGNUMBER | String | USETRACKINGNUMBER for Report VoucherRegister |
VALUEOFSUBWORKSCONT | String | VALUEOFSUBWORKSCONT for Report VoucherRegister |
VALUEOFWORKSCONTRACT | String | VALUEOFWORKSCONTRACT for Report VoucherRegister |
VATADJADDLDETAILS | String | VATADJADDLDETAILS for Report VoucherRegister |
VATADJUSTMENTTYPE | String | VATADJUSTMENTTYPE for Report VoucherRegister |
VATBANKACCNUMBER | String | VATBANKACCNUMBER for Report VoucherRegister |
VATBANKBRANCH | String | VATBANKBRANCH for Report VoucherRegister |
VATBANKNAME | String | VATBANKNAME for Report VoucherRegister |
VATBRANCHCODE | String | VATBRANCHCODE for Report VoucherRegister |
VATBRANCHNAME | String | VATBRANCHNAME for Report VoucherRegister |
VATBRIEFDESCRIPTION | String | VATBRIEFDESCRIPTION for Report VoucherRegister |
VATCANCINVDATE | Date | VATCANCINVDATE for Report VoucherRegister |
VATCANCINVNO | String | VATCANCINVNO for Report VoucherRegister |
VATCANCPURCNAME | String | VATCANCPURCNAME for Report VoucherRegister |
VATCANCPURCTIN | String | VATCANCPURCTIN for Report VoucherRegister |
VATCERTIFICATENO | String | VATCERTIFICATENO for Report VoucherRegister |
VATCFORMISSUESTATE | String | VATCFORMISSUESTATE for Report VoucherRegister |
VATCHALLANDATE | Date | VATCHALLANDATE for Report VoucherRegister |
VATCHALLANNUMBER | String | VATCHALLANNUMBER for Report VoucherRegister |
VATCONSIGNMENTNO | String | VATCONSIGNMENTNO for Report VoucherRegister |
VATCONTRACTEEDISTRICT | String | VATCONTRACTEEDISTRICT for Report VoucherRegister |
VATCONTRACTEENAME | String | VATCONTRACTEENAME for Report VoucherRegister |
VATCONTRACTEETDN | String | VATCONTRACTEETDN for Report VoucherRegister |
VATCSTE1DATE | Date | VATCSTE1DATE for Report VoucherRegister |
VATCSTE1SERIALNO | String | VATCSTE1SERIALNO for Report VoucherRegister |
VATCSTE1SERIESNO | String | VATCSTE1SERIESNO for Report VoucherRegister |
VATDDCHEQUEDATE | Date | VATDDCHEQUEDATE for Report VoucherRegister |
VATDDCHEQUENO | String | VATDDCHEQUENO for Report VoucherRegister |
VATDEALERTYPE | String | VATDEALERTYPE for Report VoucherRegister |
VATDEPOSITDATE | Date | VATDEPOSITDATE for Report VoucherRegister |
VATDESIGOFPURCHASER | String | VATDESIGOFPURCHASER for Report VoucherRegister |
VATDESTINATIONPLACE | String | VATDESTINATIONPLACE for Report VoucherRegister |
VATDESTINATIONSTATE | String | VATDESTINATIONSTATE for Report VoucherRegister |
VATDEVICENO | String | VATDEVICENO for Report VoucherRegister |
VATDISPATCHTIME | String | VATDISPATCHTIME for Report VoucherRegister |
VATDOCUMENTDATE | Date | VATDOCUMENTDATE for Report VoucherRegister |
VATDOCUMENTNUMBER | String | VATDOCUMENTNUMBER for Report VoucherRegister |
VATDOCUMENTTYPE | String | VATDOCUMENTTYPE for Report VoucherRegister |
VATEFORMAPPLICABLE | String | VATEFORMAPPLICABLE for Report VoucherRegister |
VATEFORMAPPLICABLENO | String | VATEFORMAPPLICABLENO for Report VoucherRegister |
VATEXEMPTCERTIFICATENO | String | VATEXEMPTCERTIFICATENO for Report VoucherRegister |
VATEXPORTENTRYNO | String | VATEXPORTENTRYNO for Report VoucherRegister |
VATFORMSTATUS | String | VATFORMSTATUS for Report VoucherRegister |
VATGOODSRCPTNO | String | VATGOODSRCPTNO for Report VoucherRegister |
VATGOODSRECEIPTDATE | Date | VATGOODSRECEIPTDATE for Report VoucherRegister |
VATGOODSRECEIPTNUMBER | String | VATGOODSRECEIPTNUMBER for Report VoucherRegister |
VATGOODSVALUE | String | VATGOODSVALUE for Report VoucherRegister |
VATINCOURSEOF | String | VATINCOURSEOF for Report VoucherRegister |
VATISAGNSTCANCSALES | String | VATISAGNSTCANCSALES for Report VoucherRegister |
VATISASSESABLECALCVCH | String | VATISASSESABLECALCVCH for Report VoucherRegister |
VATISPURCEXEMPTED | String | VATISPURCEXEMPTED for Report VoucherRegister |
VATMOBILENUMBER | String | VATMOBILENUMBER for Report VoucherRegister |
VATORDERDATE | Date | VATORDERDATE for Report VoucherRegister |
VATORDERNO | String | VATORDERNO for Report VoucherRegister |
VATPAIDAGAINST | String | VATPAIDAGAINST for Report VoucherRegister |
VATPARTYITCCLAIMED | String | VATPARTYITCCLAIMED for Report VoucherRegister |
VATPARTYORGNAME | String | VATPARTYORGNAME for Report VoucherRegister |
VATPARTYORGTYPE | String | VATPARTYORGTYPE for Report VoucherRegister |
VATPARTYTAXLIABILITY | String | VATPARTYTAXLIABILITY for Report VoucherRegister |
VATPARTYTRANSRETURNDATE | Date | VATPARTYTRANSRETURNDATE for Report VoucherRegister |
VATPARTYTRANSRETURNNUMBER | String | VATPARTYTRANSRETURNNUMBER for Report VoucherRegister |
VATPARTYTYPE | String | VATPARTYTYPE for Report VoucherRegister |
VATPERMITFORM | String | VATPERMITFORM for Report VoucherRegister |
VATPURCHASERCPTTYPE | String | VATPURCHASERCPTTYPE for Report VoucherRegister |
VATPYMTMODEOFDEPOSIT | String | VATPYMTMODEOFDEPOSIT for Report VoucherRegister |
VATPYMTTAXDESC | String | VATPYMTTAXDESC for Report VoucherRegister |
VATSELLERTIN | String | VATSELLERTIN for Report VoucherRegister |
VATSOURCESTATE | String | VATSOURCESTATE for Report VoucherRegister |
VATSUBMISSIONDATE | Date | VATSUBMISSIONDATE for Report VoucherRegister |
VATTDSAMT | String | VATTDSAMT for Report VoucherRegister |
VATTDSBARCODE | String | VATTDSBARCODE for Report VoucherRegister |
VATTDSDATE | Date | VATTDSDATE for Report VoucherRegister |
VATTDSDEDUCTORNAME | String | VATTDSDEDUCTORNAME for Report VoucherRegister |
VATTDSRATE | String | VATTDSRATE for Report VoucherRegister |
VATTRANSBILLNO | String | VATTRANSBILLNO for Report VoucherRegister |
VATTRANSBILLQTY | String | VATTRANSBILLQTY for Report VoucherRegister |
VATTRANSPORTERADDRESS | String | VATTRANSPORTERADDRESS for Report VoucherRegister |
VATTRANSSOURCE | String | VATTRANSSOURCE for Report VoucherRegister |
VATTYPEOFDEVICE | String | VATTYPEOFDEVICE for Report VoucherRegister |
VATVEHICLENUMBER | String | VATVEHICLENUMBER for Report VoucherRegister |
VCHGSTCLASS | String | VCHGSTCLASS for Report VoucherRegister |
VCHTAXTYPE | String | VCHTAXTYPE for Report VoucherRegister |
VCHTAXUNIT | String | VCHTAXUNIT for Report VoucherRegister |
VOUCHERDESTINATIONGODOWN | String | VOUCHERDESTINATIONGODOWN for Report VoucherRegister |
VOUCHERKEY | Long | VOUCHERKEY for Report VoucherRegister |
VOUCHERNUMBER | String | VOUCHERNUMBER for Report VoucherRegister |
VOUCHERSOURCEGODOWN | String | VOUCHERSOURCEGODOWN for Report VoucherRegister |
VOUCHERTIME | String | VOUCHERTIME for Report VoucherRegister |
VOUCHERTYPENAME | String | VOUCHERTYPENAME for Report VoucherRegister |
VOUCHERTYPEORIGNAME | String | VOUCHERTYPEORIGNAME for Report VoucherRegister |
FromDate | Date | This is a mirror column. |
ToDate | Date | This is a mirror column. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
Retrieve StockItems.
The Sync App will use the Tally API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the Sync App.
For example these queries are processed server side:
SELECT * FROM StockItem WHERE Narration LIKE 'Item%' SELECT * FROM StockItem WHERE GSTApplicable != NULL SELECT * FROM StockItem WHERE ValuationMethod = 'Default' AND CostingMethod = 'Avg. Cost' SELECT * FROM StockItem WHERE LastSaleParty = 'OutState Party [GST Test]' OR OutwardQuantity = '0 Nos' SELECT * FROM StockItem WHERE IsBatchWiseOn > 'No' SELECT * FROM StockItem ORDER BY RemoteAltGUID Desc
Name | Type | Description |
Name | String | The Name value of the StockItem. |
ActiveFrom | Date | The ActiveFrom value of the StockItem. |
ActiveTo | Date | The ActiveTo value of the StockItem. |
PriceLevelDate | Date | The PriceLevelDate value of the StockItem. |
Guid | String | The Guid value of the StockItem. |
PriceLevel | String | The PriceLevel value of the StockItem. |
Parent | String | The Parent value of the StockItem. |
Category | String | The Category value of the StockItem. |
Narration | String | The Narration value of the StockItem. |
RemoteGUID | String | The RemoteGUID value of the StockItem. |
RemoteAltGUID | String | The RemoteAltGUID value of the StockItem. |
RequestorRule | String | The RequestorRule value of the StockItem. |
TDSApplicable | String | The TDSApplicable value of the StockItem. |
TCSApplicable | String | The TCSApplicable value of the StockItem. |
GSTApplicable | String | The GSTApplicable value of the StockItem. |
TaxClassificationName | String | The TaxClassificationName value of the StockItem. |
Description | String | The Description value of the StockItem. |
GSTTypeofSupply | String | The GSTTypeofSupply value of the StockItem. |
ServiceTaxApplicable | String | The ServiceTaxApplicable value of the StockItem. |
ExciseApplicability | String | The ExciseApplicability value of the StockItem. |
SalesTaxCessApplicable | String | The SalesTaxCessApplicable value of the StockItem. |
VATApplicable | String | The VATApplicable value of the StockItem. |
LedgerName | String | The LedgerName value of the StockItem. |
CostingMethod | String | The CostingMethod value of the StockItem. |
ValuationMethod | String | The ValuationMethod value of the StockItem. |
BaseUnits | String | The BaseUnits value of the StockItem. |
AdditionalUnits | String | The AdditionalUnits value of the StockItem. |
ExciseTaxType | String | The ExciseTaxType value of the StockItem. |
NatureofItem | String | The NatureofItem value of the StockItem. |
ExciseItemClassification | String | The ExciseItemClassification value of the StockItem. |
OldBasicTariffType | String | The OldBasicTariffType value of the StockItem. |
TCSCategory | String | The TCSCategory value of the StockItem. |
BasicTariffType | String | The BasicTariffType value of the StockItem. |
VatCommodity | String | The VatCommodity value of the StockItem. |
EntryTaxCommodity | String | The EntryTaxCommodity value of the StockItem. |
VatBaseUnit | String | The VatBaseUnit value of the StockItem. |
VatTrailUnit | String | The VatTrailUnit value of the StockItem. |
ReOrderPeriod | String | The ReOrderPeriod value of the StockItem. |
ReOrderRoundType | String | The ReOrderRoundType value of the StockItem. |
MinOrderPeriod | String | The MinOrderPeriod value of the StockItem. |
MinOrderRoundType | String | The MinOrderRoundType value of the StockItem. |
GSTRepUoM | String | The GSTRepUoM value of the StockItem. |
GSTConvUnit | String | The GSTConvUnit value of the StockItem. |
IsCostCentresOn | String | The IsCostCentresOn value of the StockItem. |
IsBatchWiseOn | String | The IsBatchWiseOn value of the StockItem. |
IsPerishableOn | String | The IsPerishableOn value of the StockItem. |
IsEntryTaxApplicable | String | The IsEntryTaxApplicable value of the StockItem. |
IsCostTrackingOn | String | The IsCostTrackingOn value of the StockItem. |
IsMstFromSync | String | The IsMstFromSync value of the StockItem. |
IsUpdatingTargetId | String | The IsUpdatingTargetId value of the StockItem. |
AsOriginal | String | The AsOriginal value of the StockItem. |
IsRateInclusiveVAT | String | The IsRateInclusiveVAT value of the StockItem. |
IgnorePhysicalDifference | String | The IgnorePhysicalDifference value of the StockItem. |
IgnoreNegativeStock | String | The IgnoreNegativeStock value of the StockItem. |
TreatSalesasManufactured | String | The TreatSalesasManufactured value of the StockItem. |
TreatPurchasesasConsumed | String | The TreatPurchasesasConsumed value of the StockItem. |
TreatRejectsasScrap | String | The TreatRejectsasScrap value of the StockItem. |
HasMfgDate | String | The HasMfgDate value of the StockItem. |
AllowUseofExpiredItems | String | The AllowUseofExpiredItems value of the StockItem. |
IgnoreBatches | String | The IgnoreBatches value of the StockItem. |
IgnoreGodowns | String | The IgnoreGodowns value of the StockItem. |
CalcOnMRP | String | The CalcOnMRP value of the StockItem. |
ExcludeJrnlForValuation | String | The ExcludeJrnlForValuation value of the StockItem. |
IsMRPInclOfTax | String | The IsMRPInclOfTax value of the StockItem. |
IsAddlTaxExempt | String | The IsAddlTaxExempt value of the StockItem. |
IsSupplementryDutyOn | String | The IsSupplementryDutyOn value of the StockItem. |
GVATIsExciseAppl | String | The GVATIsExciseAppl value of the StockItem. |
ReOrderAsHigher | String | The ReOrderAsHigher value of the StockItem. |
MinOrderAsHigher | String | The MinOrderAsHigher value of the StockItem. |
IsExciseCalculateonMRP | String | The IsExciseCalculateonMRP value of the StockItem. |
InclusiveTax | String | The InclusiveTax value of the StockItem. |
GSTCalcSlabOnMRP | String | The GSTCalcSlabOnMRP value of the StockItem. |
ModifyMRPRate | String | The ModifyMRPRate value of the StockItem. |
SortPosition | Decimal | The SortPosition value of the StockItem. |
Alterid | Decimal | The Alterid value of the StockItem. |
RemoteAlterID | Decimal | The RemoteAlterID value of the StockItem. |
Denominator | Decimal | The Denominator value of the StockItem. |
Conversion | Decimal | The Conversion value of the StockItem. |
RateofMRP | Decimal | The RateofMRP value of the StockItem. |
BasicRateOfExcise | Decimal | The BasicRateOfExcise value of the StockItem. |
RateOfEntryTax | Decimal | The RateOfEntryTax value of the StockItem. |
RateofVAT | Decimal | The RateofVAT value of the StockItem. |
RateofSAT | Decimal | The RateofSAT value of the StockItem. |
VatBaseNo | Decimal | The VatBaseNo value of the StockItem. |
VatTrailNo | Decimal | The VatTrailNo value of the StockItem. |
VatActualRatio | Decimal | The VatActualRatio value of the StockItem. |
ReOrderPeriodLength | Decimal | The ReOrderPeriodLength value of the StockItem. |
ReOrderRoundLimit | Decimal | The ReOrderRoundLimit value of the StockItem. |
MinOrderPeriodLength | Decimal | The MinOrderPeriodLength value of the StockItem. |
MinOrderRoundLimit | Decimal | The MinOrderRoundLimit value of the StockItem. |
GSTItemUnits | Decimal | The GSTItemUnits value of the StockItem. |
GSTRepUnits | Decimal | The GSTRepUnits value of the StockItem. |
OpeningBalance | String | The OpeningBalance value of the StockItem. |
OpeningValue | Decimal | The OpeningValue value of the StockItem. |
BasicValue | String | The BasicValue value of the StockItem. |
BasicQty | String | The BasicQty value of the StockItem. |
ReorderBase | String | The ReorderBase value of the StockItem. |
MinimumOrderBase | String | The MinimumOrderBase value of the StockItem. |
OpeningRate | String | The OpeningRate value of the StockItem. |
tempGSTCGSTRate | Decimal | The tempGSTCGSTRate value of the StockItem. |
tempGSTSGSTRate | Decimal | The tempGSTSGSTRate value of the StockItem. |
tempGSTIGSTRate | Decimal | The tempGSTIGSTRate value of the StockItem. |
tempGSTStateCessRate | Decimal | The tempGSTStateCessRate value of the StockItem. |
tempIsVATfieldsEdited | String | The tempIsVATfieldsEdited value of the StockItem. |
tempApplDate | Date | The tempApplDate value of the StockItem. |
tempClassification | String | The tempClassification value of the StockItem. |
tempNature | String | The tempNature value of the StockItem. |
tempPartyEntity | String | The tempPartyEntity value of the StockItem. |
tempBusinessNature | String | The tempBusinessNature value of the StockItem. |
tempVATRate | Decimal | The tempVATRate value of the StockItem. |
tempAddlTax | Decimal | The tempAddlTax value of the StockItem. |
tempCessOnVat | Decimal | The tempCessOnVat value of the StockItem. |
tempTaxType | String | The tempTaxType value of the StockItem. |
tempMajorCommodityName | String | The tempMajorCommodityName value of the StockItem. |
tempCommodityName | String | The tempCommodityName value of the StockItem. |
tempCommodityCode | String | The tempCommodityCode value of the StockItem. |
tempSubCommodityCode | String | The tempSubCommodityCode value of the StockItem. |
tempUOM | String | The tempUOM value of the StockItem. |
tempTypeofGoods | String | The tempTypeofGoods value of the StockItem. |
tempTradeName | String | The tempTradeName value of the StockItem. |
tempGoodsNature | String | The tempGoodsNature value of the StockItem. |
tempSchedule | String | The tempSchedule value of the StockItem. |
tempScheduleslNo | String | The tempScheduleslNo value of the StockItem. |
tempIsInvDetailsEnable | String | The tempIsInvDetailsEnable value of the StockItem. |
tempValuationType | String | The tempValuationType value of the StockItem. |
tempIsCalcOnQty | String | The tempIsCalcOnQty value of the StockItem. |
tempMRPRate | String | The tempMRPRate value of the StockItem. |
tempMRPApplDate | Date | The tempMRPApplDate value of the StockItem. |
MailingName | String | The MailingName value of the StockItem. |
TargetRemoteId | String | The TargetRemoteId value of the StockItem. |
OldAuditEntryIds | Decimal | The OldAuditEntryIds value of the StockItem. |
Closingbalance | String | The Closingbalance value of the StockItem. |
Inwardquantity | String | The Inwardquantity value of the StockItem. |
Outwardquantity | String | The Outwardquantity value of the StockItem. |
Closingvalue | Decimal | The Closingvalue value of the StockItem. |
Inwardvalue | String | The Inwardvalue value of the StockItem. |
Outwardvalue | Decimal | The Outwardvalue value of the StockItem. |
Closingrate | String | The Closingrate value of the StockItem. |
Lastsaledate | Date | The Lastsaledate value of the StockItem. |
Lastsaleparty | String | The Lastsaleparty value of the StockItem. |
Lastsaleprice | String | The Lastsaleprice value of the StockItem. |
Lastsaleqty | String | The Lastsaleqty value of the StockItem. |
Lastpurcdate | Date | The Lastpurcdate value of the StockItem. |
Lastpurcparty | String | The Lastpurcparty value of the StockItem. |
Lastpurcprice | String | The Lastpurcprice value of the StockItem. |
Lastpurccost | String | The Lastpurccost value of the StockItem. |
Lastpurcqty | String | The Lastpurcqty value of the StockItem. |
Consumption | Decimal | The Consumption value of the StockItem. |
Thisyearbalance | Decimal | The Thisyearbalance value of the StockItem. |
Prevyearbalance | Decimal | The Prevyearbalance value of the StockItem. |
Thisquarterbalance | Decimal | The Thisquarterbalance value of the StockItem. |
Prevquarterbalance | Decimal | The Prevquarterbalance value of the StockItem. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Company | String | Name of the Company whose data need to be fetched. Please make sure it is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. |
プロパティ | 説明 |
URL | The URL of the Tally instance. Default value is http://{hostname or server ip}:9000 |
Company | The Name of the Company in Tally. |
プロパティ | 説明 |
SSLServerCert | TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。 |
プロパティ | 説明 |
FirewallType | プロキシベースのファイアウォールで使われるプロトコル。 |
FirewallServer | プロキシベースのファイアウォールの名前もしくはIP アドレス。 |
FirewallPort | プロキシベースのファイアウォールのTCP ポート。 |
FirewallUser | プロキシベースのファイアウォールに認証するために使うユーザー名。 |
FirewallPassword | プロキシベースのファイアウォールへの認証に使われるパスワード。 |
プロパティ | 説明 |
ProxyAutoDetect | これは、システムプロキシ設定を使用するかどうかを示します。これは他のプロキシ設定よりも優先されるため、カスタムプロキシ設定を使用するにはProxyAutoDetect をFALSE に設定する必要があります。 |
ProxyServer | HTTP トラフィックをルートするためのプロキシのホストネームもしくはIP アドレス。 |
ProxyPort | ProxyServer プロキシが起動しているTCP ポート。 |
ProxyAuthScheme | ProxyServer プロキシへの認証で使われる認証タイプ。 |
ProxyUser | ProxyServer プロキシへの認証に使われるユーザー名。 |
ProxyPassword | ProxyServer プロキシへの認証に使われるパスワード。 |
ProxySSLType | ProxyServer プロキシへの接続時に使用するSSL タイプ。 |
ProxyExceptions | ProxyServer 経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。 |
プロパティ | 説明 |
LogModules | ログファイルに含めるコアモジュール。 |
プロパティ | 説明 |
Location | テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリへのパス。 |
BrowsableSchemas | このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
Tables | このプロパティは、使用可能なテーブルのサブセットにレポートされるテーブルを制限します。例えば、Tables=TableA,TableB,TableC です。 |
Views | 使用可能なテーブルのサブセットにレポートされるビューを制限します。例えば、Views=ViewA,ViewB,ViewC です。 |
プロパティ | 説明 |
MaxRows | クエリで集計またはグループ化を使用しない場合に返される行数を制限します。これにより、設計時にパフォーマンスの問題を回避できます。 |
Other | これらの隠しプロパティは特定のユースケースでのみ使用されます。 |
PseudoColumns | このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。 |
Timeout | タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。 |
UserDefinedViews | カスタムビューを含むJSON コンフィギュレーションファイルを指すファイルパス。 |
The URL of the Tally instance. Default value is http://{hostname or server ip}:9000
The URL of the Tally instance. Default value is http://{hostname or server ip}:9000
The Name of the Company in Tally.
Enter the Name of the Company if you want to fetch data of the Company which is not selected in the tool at the moment. Please make sure that Company is selected and unlocked atleast once in the Tally tool after the tool is launched. It need not be in the selected state at the moment. Default value is blank. In case of blank it will fetch data of the Company that is selected in the Tally Tool.
このセクションでは、本プロバイダーの接続文字列で設定可能なSSL プロパティの全リストを提供します。
プロパティ | 説明 |
SSLServerCert | TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。 |
TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。
TLS/SSL 接続を使用する場合は、このプロパティを使用して、サーバーが受け入れるTLS/SSL 証明書を指定できます。コンピュータによって信頼されていない他の証明書はすべて拒否されます。
このプロパティは、次のフォームを取ります:
説明 | 例 |
フルPEM 証明書(例では省略されています) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
証明書を保有するローカルファイルへのパス。 | C:\cert.cer |
公開鍵(例では省略されています) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
MD5 Thumbprint (hex 値はスペースおよびコロン区切り) | ecadbdda5a1529c58a1e9e09828d70e4 |
SHA1 Thumbprint (hex 値はスペースおよびコロン区切り) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
これを指定しない場合は、マシンが信用するすべての証明書が受け入れられます。
すべての証明書の受け入れを示すには、'*'を使用します。セキュリティ上の理由から、これはお勧めできません。
このセクションでは、本プロバイダーの接続文字列で設定可能なFirewall プロパティの全リストを提供します。
プロパティ | 説明 |
FirewallType | プロキシベースのファイアウォールで使われるプロトコル。 |
FirewallServer | プロキシベースのファイアウォールの名前もしくはIP アドレス。 |
FirewallPort | プロキシベースのファイアウォールのTCP ポート。 |
FirewallUser | プロキシベースのファイアウォールに認証するために使うユーザー名。 |
FirewallPassword | プロキシベースのファイアウォールへの認証に使われるパスワード。 |
プロキシベースのファイアウォールで使われるプロトコル。
このプロパティは、Sync App がFirewallServer プロキシ経由でトンネルトラフィックを使うためのプロトコルを指定します。デフォルトでは、Sync App はシステムプロキシに接続します。この動作を無効化し次のプロキシタイプのどれかで接続するには、ProxyAutoDetect をfalse に設定します。
タイプ | デフォルトポート | 説明 |
TUNNEL | 80 | これが設定されている場合、Sync App はTally への接続を開き、プロキシを経由して通信が行われます。 |
SOCKS4 | 1080 | これが設定されている場合、Sync App はデータをFirewallServer およびFirewallPort で指定されたSOCS 4 プロキシ経由で送信し、接続リクエストが許容されるかどうかを決定します。 |
SOCKS5 | 1080 | これが設定されている場合、Sync App はデータをFirewallServer およびFirewallPort で指定されたSOCS 5 プロキシ経由で送信します。プロキシに認証が必要な場合には、FirewallUser およびFirewallPassword をプロキシが認識する認証情報に設定します。 |
HTTP プロキシへの接続には、ProxyServer およびProxyPort ポートを使ってください。HTTP プロキシへの認証には、ProxyAuthScheme、ProxyUser、およびProxyPassword を使ってください。
プロキシベースのファイアウォールの名前もしくはIP アドレス。
ファイアウォールトラバーサルを許容するために設定するIP アドレス、DNS 名、もしくはプロキシホスト名を指定するプロパティです。プロトコルはFirewallType で指定されます。このプロパティとFirewallServer を使って、SOCKS 経由での接続、もしくはトンネリングが可能です。HTTP プロキシへの接続には、ProxyServer を使用します。
Sync App はデフォルトでシステムプロキシを使うので注意してください。他のプロキシを使う場合には、ProxyAutoDetect をfalse に設定してください。
プロキシベースのファイアウォールのTCP ポート。
ファイアウォールトラバーサルを許容するために設定するプロキシベースのファイアウォールのTCP ポート。名前もしくはIP アドレスを指定するには、FirewallServer を使います。FirewallType でプロトコルを指定します。
プロキシベースのファイアウォールに認証するために使うユーザー名。
FirewallUser およびFirewallPassword プロパティは、FirewallType により指定された認証方式に則り、FirewallServer、およびFirewallPort で指定されたプロキシに対しての認証に使われます。
プロキシベースのファイアウォールへの認証に使われるパスワード。
このプロパティは、FirewallType により指定された認証メソッドに則り、FirewallServer およびFirewallPort で指定されたプロキシに渡されます。
このセクションでは、本プロバイダーの接続文字列で設定可能なProxy プロパティの全リストを提供します。
プロパティ | 説明 |
ProxyAutoDetect | これは、システムプロキシ設定を使用するかどうかを示します。これは他のプロキシ設定よりも優先されるため、カスタムプロキシ設定を使用するにはProxyAutoDetect をFALSE に設定する必要があります。 |
ProxyServer | HTTP トラフィックをルートするためのプロキシのホストネームもしくはIP アドレス。 |
ProxyPort | ProxyServer プロキシが起動しているTCP ポート。 |
ProxyAuthScheme | ProxyServer プロキシへの認証で使われる認証タイプ。 |
ProxyUser | ProxyServer プロキシへの認証に使われるユーザー名。 |
ProxyPassword | ProxyServer プロキシへの認証に使われるパスワード。 |
ProxySSLType | ProxyServer プロキシへの接続時に使用するSSL タイプ。 |
ProxyExceptions | ProxyServer 経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。 |
これは、システムプロキシ設定を使用するかどうかを示します。これは他のプロキシ設定よりも優先されるため、カスタムプロキシ設定を使用するにはProxyAutoDetect をFALSE に設定する必要があります。
これは他のプロキシ設定よりも優先されるため、カスタムプロキシ設定を使用するにはProxyAutoDetect をFALSE に設定する必要があります。
HTTP プロキシへの接続には、ProxyServer を参照してください。SOCKS やトンネリングなどの他のプロキシには、FirewallType を参照してください。
HTTP トラフィックをルートするためのプロキシのホストネームもしくはIP アドレス。
HTTP トラフィックをルートするためのプロキシのホストネームもしくはIP アドレス。HTTP プロキシへの認証には、Sync App はHTTP、Windows(NTLM)、もしくはKerberos 認証タイプを使用することができます。
SOCKS プロキシを経由して接続する、もしくは接続をトンネルするには、FirewallType を参照してください。
デフォルトで、Sync App はsystem プロキシを使います。他のプロキシを使う場合には、ProxyAutoDetect をfalse に設定します。
ProxyServer プロキシが起動しているTCP ポート。
HTTP トラフィックをリダイレクトするHTTP プロキシが実行されているポート。ProxyServer でHTTP プロキシを指定します。その他のプロキシタイプについては、FirewallType を参照してください。
ProxyServer プロキシへの認証で使われる認証タイプ。
この値は、ProxyServer およびProxyPort で指定されるHTTP プロキシに認証するために使われる認証タイプを指定します。
Sync App は、デフォルトでsystem proxy settings を使い、追加での設定が不要です。他のプロキシへの接続をする場合には、ProxyServer およびProxyPort に加え、ProxyAutoDetect をfalse に設定します。認証するには、ProxyAuthScheme を設定し、必要な場合にはProxyUser およびProxyPassword を設定します。
認証タイプは、次のどれかになります。
SOCKS 5 認証のような他の認証タイプを使用するには、FirewallType を参照してください。
ProxyServer プロキシへの認証に使われるユーザー名。
ProxyUser および ProxyPassword オプションは、ProxyServer で指定されたHTTP プロキシに対して接続および認証するために使用されます。
ProxyAuthScheme で使用可能な認証タイプを選択することができます。HTTP 認証を使う場合、これをHTTP プロキシで識別可能なユーザーのユーザー名に設定します。Windows もしくはKerberos 認証を使用する場合、このプロパティを次の形式のどれかでユーザー名に設定します。
user@domain domain\user
ProxyServer プロキシへの認証に使われるパスワード。
このプロパティは、NTLM(Windows)、Kerberos、もしくはHTTP 認証をサポートするHTTP プロキシサーバーに認証するために使われます。HTTP プロキシを指定するためには、ProxyServer およびProxyPort を設定します。認証タイプを指定するためにはProxyAuthScheme を設定します。
HTTP 認証を使う場合、さらにHTTP プロキシにProxyUser およびProxyPassword を設定します。
NTLM 認証を使う場合、Windows パスワードにProxyUser およびProxyPassword を設定します。Kerberos 認証には、これらを入力する必要があります。
SOCKS 5 認証もしくは、トンネリングは、FirewallType を参照してください。
デフォルトで、Sync App はsystem プロキシを使います。他のプロキシに接続する場合には、これをfalse に設定します。
ProxyServer プロキシへの接続時に使用するSSL タイプ。
このプロパティは、ProxyServer で指定されたHTTP プロキシへの接続にSSL を使用するかどうかを決定します。この値は、AUTO、ALWAYS、NEVER、TUNNEL のいずれかです。有効な値は次のとおりです。
AUTO | デフォルト設定。URL がHTTPS URL の場合、Sync App は、TUNNEL オプションを使います。URL がHTTP URL の場合、コンポーネントはNEVER オプションを使います。 |
ALWAYS | 接続は、常にSSL 有効となります。 |
NEVER | 接続は、SSL 有効になりません。 |
TUNNEL | 接続は、トンネリングプロキシを経由します。プロキシサーバーがリモートホストへの接続を開き、プロキシを経由して通信が行われます。 |
ProxyServer 経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。
ProxyServer は、このプロパティで定義されたアドレスを除くすべてのアドレスに使用されます。セミコロンを使用してエントリを区切ります。
Sync App は、追加設定なしにデフォルトでシステムのプロキシ設定を使います。この接続のプロキシ例外を明示的に構成するには、ProxyAutoDetect をfalse に設定して、ProxyServer およびProxyPort を設定する必要があります。認証するには、ProxyAuthScheme を設定し、必要な場合にはProxyUser およびProxyPassword を設定します。
ログファイルに含めるコアモジュール。
指定された(';' で区切られた)モジュールのみがログファイルに含まれます。デフォルトではすべてのモジュールが含まれます。
概要はログ ページを参照してください。
このセクションでは、本プロバイダーの接続文字列で設定可能なSchema プロパティの全リストを提供します。
プロパティ | 説明 |
Location | テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリへのパス。 |
BrowsableSchemas | このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
Tables | このプロパティは、使用可能なテーブルのサブセットにレポートされるテーブルを制限します。例えば、Tables=TableA,TableB,TableC です。 |
Views | 使用可能なテーブルのサブセットにレポートされるビューを制限します。例えば、Views=ViewA,ViewB,ViewC です。 |
テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリへのパス。
Sync App のスキーマファイル(テーブルとビューの場合は.rsd ファイル、ストアドプロシージャの場合は.rsb ファイル)を含むディレクトリへのパス。このフォルダの場所は、実行ファイルの場所からの相対パスにすることができます。Location プロパティは、定義をカスタマイズしたり(例えば、カラム名を変更する、カラムを無視するなど)、新しいテーブル、ビュー、またはストアドプロシージャでデータモデルを拡張する場合にのみ必要です。
指定しない場合、デフォルトの場所は"%APPDATA%\\CData\\Tally Data Provider\\Schema" となり、%APPDATA% はユーザーのコンフィギュレーションディレクトリに設定されます:
このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。
スキーマをデータベースからリストすると、負荷がかかる可能性があります。接続文字列でスキーマのリストを提供すると、 パフォーマンスが向上します。
このプロパティは、使用可能なテーブルのサブセットにレポートされるテーブルを制限します。例えば、Tables=TableA,TableB,TableC です。
テーブルを複数のデータベースからリストすると、負荷がかかる可能性があります。接続文字列でテーブルのリストを提供すると、Sync App のパフォーマンスが向上します。
このプロパティは、作業したいビューがすでにわかっていて、ビューが多すぎる場合に、ビューを自動的にリストする代わりに使用することもできます。
カンマ区切りのリストで使用したいテーブルを指定します。各テーブルは、角かっこ、二重引用符、またはバッククオートを使用してエスケープされた特殊文字列を含む有効なSQL 識別子である必要があります。 例えば、Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space` です。
複数のスキーマまたはカタログを持つデータソースに接続する場合は、複数のカタログやスキーマに存在するテーブル間の曖昧さを避けるため、最後の例のように、このプロパティにテーブルの完全修飾名を指定する必要があることに注意してください。
使用可能なテーブルのサブセットにレポートされるビューを制限します。例えば、Views=ViewA,ViewB,ViewC です。
ビューを複数のデータベースからリストすると、負荷がかかる可能性があります。接続文字列でビューのリストを提供すると、Sync App のパフォーマンスが向上します。
このプロパティは、作業したいビューがすでにわかっていて、ビューが多すぎる場合に、ビューを自動的にリストする代わりに使用することもできます。
カンマ区切りのリストで使用したいビューを指定します。各ビューは、角かっこ、二重引用符、またはバッククオートを使用してエスケープされた特殊文字列を含む有効なSQL 識別子である必要があります。 例えば、Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space` です。
複数のスキーマまたはカタログを持つデータソースに接続する場合は、複数のカタログやスキーマに存在するテーブル間の曖昧さを避けるため、最後の例のように、このプロパティにテーブルの完全修飾名を指定する必要があることに注意してください。
このセクションでは、本プロバイダーの接続文字列で設定可能なMiscellaneous プロパティの全リストを提供します。
プロパティ | 説明 |
MaxRows | クエリで集計またはグループ化を使用しない場合に返される行数を制限します。これにより、設計時にパフォーマンスの問題を回避できます。 |
Other | これらの隠しプロパティは特定のユースケースでのみ使用されます。 |
PseudoColumns | このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。 |
Timeout | タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。 |
UserDefinedViews | カスタムビューを含むJSON コンフィギュレーションファイルを指すファイルパス。 |
クエリで集計またはグループ化を使用しない場合に返される行数を制限します。これにより、設計時にパフォーマンスの問題を回避できます。
クエリで集計またはグループ化を使用しない場合に返される行数を制限します。これにより、設計時にパフォーマンスの問題を回避できます。
これらの隠しプロパティは特定のユースケースでのみ使用されます。
以下にリストされているプロパティは、特定のユースケースで使用可能です。通常のドライバーのユースケースおよび機能では、これらのプロパティは必要ありません。
複数のプロパティをセミコロン区切りリストで指定します。
DefaultColumnSize | データソースがメタデータにカラムの長さを提供しない場合に、文字列フィールドのデフォルトの長さを設定します。デフォルト値は2000です。 |
ConvertDateTimeToGMT | 日時の値を、マシンのローカルタイムではなくGMT グリニッジ標準時に変換するかどうかを決定します。 |
RecordToFile=filename | 基底のソケットデータ転送を指定のファイルに記録します。 |
このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。
Entity Framework ではテーブルカラムでない疑似カラムに値を設定できないため、この設定はEntity Framework で特に便利です。この接続設定の値は、"Table1=Column1, Table1=Column2, Table2=Column3" の形式です。"*=*" のように"*" 文字を使用して、すべてのテーブルとすべてのカラムを含めることができます。
タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。
Timeout が0に設定されている場合は、操作がタイムアウトしません。処理が正常に完了するか、エラー状態になるまで実行されます。
Timeout の有効期限が切れても処理が完了していない場合は、Sync App は例外をスローします。
カスタムビューを含むJSON コンフィギュレーションファイルを指すファイルパス。
ユーザー定義ビューは、UserDefinedViews.json というJSON 形式のコンフィギュレーションファイルで定義されています。Sync App は、このファイルで指定されたビューを自動的に検出します。
また、複数のビュー定義を持ち、UserDefinedViews 接続プロパティを使用して制御することも可能です。このプロパティを使用すると、指定されたビューのみがSync App によって検知されます。
このユーザー定義ビューのコンフィギュレーションファイルは、次のようにフォーマットされています。
次に例を示します。
{ "MyView": { "query": "SELECT * FROM Company WHERE MyColumn = 'value'" }, "MyView2": { "query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)" } }UserDefinedViews 接続プロパティを使用して、JSON コンフィギュレーションファイルの場所を指定します。次に例を示します。
"UserDefinedViews", "C:\\Users\\yourusername\\Desktop\\tmp\\UserDefinedViews.json"