(36 intermediate revisions by the same user not shown) | |||
Line 41: | Line 41: | ||
===Example 2 - Cloud/Mobile System=== | ===Example 2 - Cloud/Mobile System=== | ||
[[File:LinkFlow-Example02.jpg|600px|center]] | [[File:LinkFlow-Example02.jpg|600px|center]] | ||
===Example 3 - Cloud/Mobile System with SQL Connect Public=== | |||
[[File:LinkFlow-Example03.jpg|600px|center]] | |||
{| style="margin: 1em auto 1em auto;" | |||
|- | |||
| | |||
---------------------------------------------------------------------------------------------------------------------------------------------------- | |||
{| | |||
|- | |||
| [[File:Template.Warning-01.jpg|80px]]|| | |||
: Using this method the respond might very slow. | |||
: It depending on user internet speed & stabilities. | |||
|} | |||
---------------------------------------------------------------------------------------------------------------------------------------------------- | |||
|} | |||
:* The SDK can be build in in your system or a Standalone windows Application(Middle Application). | :* The SDK can be build in in your system or a Standalone windows Application(Middle Application). | ||
Line 91: | Line 106: | ||
* [[#JScript/JavaScript| JavaScript]] | * [[#JScript/JavaScript| JavaScript]] | ||
* [[#Delphi| Delphi]] | * [[#Delphi| Delphi]] | ||
[https://docs.google.com/spreadsheets/d/1dGUXIM0aWAG7xIyE1D1IsPmdq7paF9gpq3h0NqzFQDc/edit?usp=sharing Summary Document Flow by Programming Language] | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
Line 1,609: | Line 1,626: | ||
====Stock Adjustment==== | ====Stock Adjustment==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! ST_AJ | ||
|- | |- | ||
| | | | ||
Line 2,680: | Line 2,697: | ||
ComServer.Logout() | ComServer.Logout() | ||
finally: | finally: | ||
ComServer = None | |||
Common.KillApp() | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Customer Due Listing==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Customer Due Listing | |||
|- | |||
| | |||
<syntaxhighlight lang="Python"> | |||
#Updated 08 Oct 2024 | |||
import Common | |||
import datetime | |||
def GetData(): | |||
RptObject = ComServer.RptObjects.Find('Customer.DueDocument.RO') | |||
#RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is true | |||
RptObject.Params.Find("AllAgent").Value = True | |||
RptObject.Params.Find("AllArea").Value = True | |||
RptObject.Params.Find("AllCompany").Value = False | |||
RptObject.Params.Find("AllCompanyCategory").Value = True | |||
RptObject.Params.Find("AllCurrency").Value = True | |||
RptObject.Params.Find("AllDocProject").Value = True | |||
RptObject.Params.Find("AllItemProject").Value = True | |||
#RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is true | |||
#RptObject.Params.Find("CompanyCategoryData").Value = 'Not use if AllCompanyCategory is true | |||
RptObject.Params.Find("CompanyData").Value = "300-C0001" | |||
#RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is true | |||
#RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is true | |||
#RptObject.Params.Find("GroupBy").Value = # | |||
#RptObject.Params.Find("ItemProjectData").Value = # | |||
RptObject.Params.Find("PrintContra").Value = True | |||
RptObject.Params.Find("PrintCreditNote").Value = True | |||
RptObject.Params.Find("PrintDebitNote").Value = True | |||
RptObject.Params.Find("PrintInvoice").Value = True | |||
RptObject.Params.Find("PrintOverDue").Value = True | |||
RptObject.Params.Find("PrintUnDue").Value = False | |||
RptObject.Params.Find("ShowForeignCurrency").Value = True | |||
RptObject.Params.Find("ShowLocalCurrency").Value = True | |||
RptObject.Params.Find("SortBy").Value = "DocDate;DueDate;DocNo" | |||
lDateTo = datetime.datetime(2024, 9, 30, 13, 0) | |||
lDateTo.strftime('%m/%d/%Y') | |||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
RptObject.Params.Find("IncludePDCheque").Value = True | |||
RptObject.CalculateReport() | |||
lDataSet = RptObject.DataSets.Find("cdsMain") | |||
print("Record count : ", lDataSet.RecordCount) | |||
if lDataSet.RecordCount > 0: | |||
while not lDataSet.eof: | |||
print(lDataSet.FindField('CODE').AsString) | |||
print(lDataSet.FindField('DOCTYPE').AsString) | |||
print(lDataSet.FindField('DOCDATE').AsString) | |||
print(lDataSet.FindField('DOCNO').AsString) | |||
print(lDataSet.FindField('DUEDATE').AsString) | |||
print(lDataSet.FindField('DOCAMT').AsString) | |||
print(lDataSet.FindField('OUTSTANDING').AsString) | |||
print(lDataSet.FindField('AGE').AsString) | |||
print("===") | |||
lDataSet.Next() | |||
else: | |||
print ("Record Not Found") | |||
try: | |||
Common.CheckLogin() | |||
global ComServer | |||
ComServer = Common.ComServer | |||
GetData() | |||
ComServer.Logout() | |||
finally: | |||
ComServer = None | ComServer = None | ||
Common.KillApp() | Common.KillApp() | ||
Line 2,738: | Line 2,831: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 22 Oct 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 2,776: | Line 2,869: | ||
echo "Record Not Found"; | echo "Record Not Found"; | ||
} | } | ||
$lDataSet = null; | |||
} | } | ||
Line 2,986: | Line 3,080: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 14 Mar 2025<br>"; | ||
#This will doing following posting | #This will doing following posting | ||
#01. Cash Sales | #01. Cash Sales | ||
#02. Sales Credit Note | #02. Sales Credit Note | ||
#03. Customer Payment With Knock off | #03. Customer Payment With Knock off | ||
#04. Edit Credit Note Posted in Step 02 & Knock Off | #04. Edit Credit Note Posted in Step 02 & Knock Off | ||
#05. Customer Refund to Knock off Credit Note | #05. Customer Refund to Knock off Credit Note | ||
$ComServer = null; | $ComServer = null; | ||
Line 2,999: | Line 3,093: | ||
{ | { | ||
global $ComServer; | global $ComServer; | ||
$ComServer = new COM("SQLAcc.BizApp") or die("Could not initialise SQLAcc.BizApp object."); | $ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | ||
$status = $ComServer->IsLogin(); | $status = $ComServer->IsLogin(); | ||
if ($status == true) | if ($status == true) | ||
{ | { | ||
# $ComServer->Logout(); | |||
} | } else | ||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | $ComServer->Login("ADMIN", "ADMIN", #UserName, Password | ||
"C: | "D:\Happy\DB\Default.DCF", #"C:\eStream\SQLAccounting\Share\Default.DCF", #DCF file | ||
"ACC-0082.FDB"); #Database Name | "ACC-0082.FDB"); #Database Name | ||
Line 3,018: | Line 3,112: | ||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | $lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | ||
$lDetail = $BizObject->DataSets->Find("cdsDocDetail"); #lDetail contains detail data | $lDetail = $BizObject->DataSets->Find("cdsDocDetail"); #lDetail contains detail data | ||
$lSN = $BizObject->DataSets->Find("cdsSerialNumber"); #lSN contains Serial Number data | |||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--CS Test--"; | $lMain->FindField("DocNo")->AsString = "--CS Test--"; | ||
$lMain->FindField("DocDate")->value = " | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = " | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales"; | ||
Line 3,036: | Line 3,130: | ||
#For Tax Inclusive = True with override Tax Amount | #For Tax Inclusive = True with override Tax Amount | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 1; | $lDetail->FindField("Seq")->value = 1; | ||
$lDetail->FindField("Account")->AsString = "500-000"; #Sales Account | $lDetail->FindField("Account")->AsString = "500-000"; #Sales Account | ||
Line 3,051: | Line 3,143: | ||
$lDetail->FindField("Tax")->AsString = "SV"; | $lDetail->FindField("Tax")->AsString = "SV"; | ||
$lDetail->FindField("TaxRate")->AsString = "6%"; | $lDetail->FindField("TaxRate")->AsString = "6%"; | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = False; | ||
$lDetail->FindField("UnitPrice")->AsFloat = 435; | $lDetail->FindField("UnitPrice")->AsFloat = 435; | ||
$lDetail->FindField("Amount")->AsFloat = 410.37; #Exclding GST Amt | $lDetail->FindField("Amount")->AsFloat = 410.37; #Exclding GST Amt | ||
Line 3,057: | Line 3,149: | ||
$lDetail->DisableControls(); | $lDetail->DisableControls(); | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = True; | ||
$lDetail->EnableControls(); | $lDetail->EnableControls(); | ||
$lDetail->Post(); | $lDetail->Post(); | ||
Line 3,063: | Line 3,155: | ||
#For Tax Inclusive = False with override Tax Amount | #For Tax Inclusive = False with override Tax Amount | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 2; | $lDetail->FindField("Seq")->value = 2; | ||
$lDetail->FindField("Account")->AsString = "500-000"; | $lDetail->FindField("Account")->AsString = "500-000"; | ||
Line 3,071: | Line 3,161: | ||
$lDetail->FindField("Tax")->AsString = "SV"; | $lDetail->FindField("Tax")->AsString = "SV"; | ||
$lDetail->FindField("TaxRate")->AsString = "6%"; | $lDetail->FindField("TaxRate")->AsString = "6%"; | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = False; | ||
$lDetail->FindField("UnitPrice")->AsFloat = 94.43; | $lDetail->FindField("UnitPrice")->AsFloat = 94.43; | ||
$lDetail->FindField("Amount")->AsFloat = 94.43; | $lDetail->FindField("Amount")->AsFloat = 94.43; | ||
Line 3,079: | Line 3,169: | ||
#For With Item Code | #For With Item Code | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 3; | $lDetail->FindField("Seq")->value = 3; | ||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | $lDetail->FindField("ItemCode")->AsString = "ANT"; | ||
$lDetail->FindField("Description")->AsString = "Sales Item B"; | $lDetail->FindField("Description")->AsString = "Sales Item B"; | ||
#$lDetail->FindField("Account")->AsString = "500-000"; #If you wanted override the Sales Account Code | #$lDetail->FindField("Account")->AsString = "500-000"; #If you wanted override the Sales Account Code | ||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lDetail->FindField("UOM")->AsString = "UNIT"; | $lDetail->FindField("UOM")->AsString = "UNIT"; | ||
#$lDetail->FindField("DISC")->AsString = "5%+3"; #Optional(eg 5% plus 3 Discount) | #$lDetail->FindField("DISC")->AsString = "5%+3"; #Optional(eg 5% plus 3 Discount) | ||
$lDetail->FindField("Tax")->AsString = "SV"; | $lDetail->FindField("Tax")->AsString = "SV"; | ||
$lDetail->FindField("TaxRate")->AsString = "6%"; | $lDetail->FindField("TaxRate")->AsString = "6%"; | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = False; | ||
$lDetail->FindField("UnitPrice")->AsFloat = 100; | $lDetail->FindField("UnitPrice")->AsFloat = 100; | ||
$lDetail->FindField("Amount")->AsFloat = 200; | $lDetail->FindField("Amount")->AsFloat = 200; | ||
$lDetail->FindField("TaxAmt")->AsFloat = 12; | $lDetail->FindField("TaxAmt")->AsFloat = 12; | ||
$lDetail->Post(); | |||
#For Item Code with Serial Number | |||
$lDetail->Append; | |||
$lDetail->FindField("SEQ")->Value = 4; | |||
$lDetail->FindField("ItemCode")->AsString = "SN1"; | |||
$lDetail->FindField("DESCRIPTION")->AsString = "Sales Serial Number Item"; | |||
$lSN->Append(); | |||
$lSN->FindField("SERIALNUMBER")->AsString = "SN520606|23.74"; | |||
$lSN->Post(); | |||
$lSN->Append(); | |||
$lSN->FindField("SERIALNUMBER")->AsString = "SN520607|22.84"; | |||
$lSN->Post(); | |||
$lDetail->FindField("UOM")->AsString = "UNIT"; | |||
$lDetail->FindField("QTY")->AsFloat = 2; | |||
$lDetail->FindField("TAX")->AsString = "SV"; | |||
$lDetail->FindField("TaxRate")->AsString = "6%"; | |||
$lDetail->FindField("TAXINCLUSIVE")->AsBoolean = False; | |||
$lDetail->FindField("UNITPRICE")->AsFloat = 94.43; | |||
$lDetail->FindField("TAXAMT")->AsFloat = 11.33; | |||
$lDetail->Post(); | $lDetail->Post(); | ||
$BizObject->Save(); | $BizObject->Save(); | ||
$BizObject->Close(); | $BizObject->Close(); | ||
} | } | ||
Line 3,108: | Line 3,219: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--PM Test--"; | $lMain->FindField("DocNo")->AsString = "--PM Test--"; | ||
$lMain->FindField("CODE")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("CODE")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("DocDate")->Value = " | $lMain->FindField("DocDate")->Value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->Value = " | $lMain->FindField("PostDate")->Value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Payment for A/c"; | $lMain->FindField("Description")->AsString = "Payment for A/c"; | ||
$lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | $lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | ||
Line 3,118: | Line 3,228: | ||
$lMain->FindField("BankCharge")->AsFloat = 0; | $lMain->FindField("BankCharge")->AsFloat = 0; | ||
$lMain->FindField("DocAmt")->AsFloat = 200.00; | $lMain->FindField("DocAmt")->AsFloat = 200.00; | ||
$lMain->FindField("Cancelled")-> | $lMain->FindField("Cancelled")->AsBoolean = False; | ||
#Knock Off IV | #Knock Off IV | ||
Line 3,126: | Line 3,236: | ||
$lDetail->Edit(); | $lDetail->Edit(); | ||
$lDetail->FindField("KOAmt")->AsFloat = 147.09; #Partial Knock off | $lDetail->FindField("KOAmt")->AsFloat = 147.09; #Partial Knock off | ||
$lDetail->FindField("KnockOff")-> | $lDetail->FindField("KnockOff")->AsBoolean = True; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
} | } | ||
Line 3,141: | Line 3,251: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--CN Test--"; | $lMain->FindField("DocNo")->AsString = "--CN Test--"; | ||
$lMain->FindField("DocDate")->value = " | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = " | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = "300-C0001"; | $lMain->FindField("Code")->AsString = "300-C0001"; | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales"; | ||
Line 3,156: | Line 3,265: | ||
#For With Item Code | #For With Item Code | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | $lDetail->FindField("ItemCode")->AsString = "ANT"; | ||
$lDetail->FindField("Description")->AsString = "Sales Item B"; | $lDetail->FindField("Description")->AsString = "Sales Item B"; | ||
Line 3,166: | Line 3,273: | ||
$lDetail->FindField("Tax")->AsString = "SV"; | $lDetail->FindField("Tax")->AsString = "SV"; | ||
$lDetail->FindField("TaxRate")->AsString = "6%"; | $lDetail->FindField("TaxRate")->AsString = "6%"; | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = False; | ||
$lDetail->FindField("UnitPrice")->AsFloat = 100; | $lDetail->FindField("UnitPrice")->AsFloat = 100; | ||
$lDetail->FindField("Amount")->AsFloat = 100; | $lDetail->FindField("Amount")->AsFloat = 100; | ||
Line 3,199: | Line 3,306: | ||
$lDetail->Edit(); | $lDetail->Edit(); | ||
$lDetail->FindField("KOAmt")->AsFloat = 100; #Partial Knock off | $lDetail->FindField("KOAmt")->AsFloat = 100; #Partial Knock off | ||
$lDetail->FindField("KnockOff")-> | $lDetail->FindField("KnockOff")->AsBoolean = True; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
} | } | ||
Line 3,215: | Line 3,322: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--CF Test--"; | $lMain->FindField("DocNo")->AsString = "--CF Test--"; | ||
$lMain->FindField("CODE")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("CODE")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("DocDate")->Value = " | $lMain->FindField("DocDate")->Value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->Value = " | $lMain->FindField("PostDate")->Value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Payment for A/c"; | $lMain->FindField("Description")->AsString = "Payment for A/c"; | ||
$lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | $lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | ||
Line 3,225: | Line 3,331: | ||
$lMain->FindField("BankCharge")->AsFloat = 0; | $lMain->FindField("BankCharge")->AsFloat = 0; | ||
$lMain->FindField("DocAmt")->AsFloat = 6; | $lMain->FindField("DocAmt")->AsFloat = 6; | ||
#Knock Off CN | #Knock Off CN | ||
Line 3,233: | Line 3,338: | ||
$lDetail->Edit(); | $lDetail->Edit(); | ||
$lDetail->FindField("KOAmt")->AsFloat = 4; #Partial Knock off | $lDetail->FindField("KOAmt")->AsFloat = 4; #Partial Knock off | ||
$lDetail->FindField("KnockOff")-> | $lDetail->FindField("KnockOff")->AsBoolean = True; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
} | } | ||
Line 3,259: | Line 3,364: | ||
finally | finally | ||
{ | { | ||
# $ComServer->Logout(); | |||
#free the object | #free the object | ||
$ComServer = null; | $ComServer = null; | ||
Line 3,628: | Line 3,733: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
#This action to Post Customer Invoice | #This action to Post Customer Invoice | ||
Line 3,657: | Line 3,762: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--IV Test--"; | $lMain->FindField("DocNo")->AsString = "--IV Test--"; | ||
$lMain->FindField("DocDate")->value = "04 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "04 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("Description")->AsString = "Sales"; | $lMain->FindField("Description")->AsString = "Sales"; | ||
Line 3,667: | Line 3,771: | ||
#For Tax Inclusive = True with override Tax Amount | #For Tax Inclusive = True with override Tax Amount | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 1; | $lDetail->FindField("Seq")->value = 1; | ||
$lDetail->FindField("Account")->AsString = "500-000"; #Sales Account | $lDetail->FindField("Account")->AsString = "500-000"; #Sales Account | ||
Line 3,685: | Line 3,787: | ||
#For Tax Inclusive = False with override Tax Amount | #For Tax Inclusive = False with override Tax Amount | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 2; | $lDetail->FindField("Seq")->value = 2; | ||
$lDetail->FindField("Account")->AsString = "500-000"; | $lDetail->FindField("Account")->AsString = "500-000"; | ||
Line 4,287: | Line 4,387: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 4,323: | Line 4,423: | ||
$lMain->FindField("DocKey")->value = -1; | $lMain->FindField("DocKey")->value = -1; | ||
$lMain->FindField("DocNo")->AsString = "--IS Test--"; | $lMain->FindField("DocNo")->AsString = "--IS Test--"; | ||
$lMain->FindField("DocDate")->value = "04 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "04 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Stock Issue"; | $lMain->FindField("Description")->AsString = "Stock Issue"; | ||
#Insert Data - Detail | #Insert Data - Detail | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 1; | $lDetail->FindField("Seq")->value = 1; | ||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | $lDetail->FindField("ItemCode")->AsString = "ANT"; | ||
Line 4,339: | Line 4,437: | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 2; | $lDetail->FindField("Seq")->value = 2; | ||
$lDetail->FindField("ItemCode")->AsString = "N-CHARGER"; | $lDetail->FindField("ItemCode")->AsString = "N-CHARGER"; | ||
Line 4,401: | Line 4,497: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 4,427: | Line 4,523: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--Point Test--"; | $lMain->FindField("DocNo")->AsString = "--Point Test--"; | ||
$lMain->FindField("DocDate")->value = "04 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales"; | ||
Line 4,596: | Line 4,691: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
#This action to | #This action to | ||
#01. Get Oustanding SO | #01. Get Oustanding SO | ||
Line 4,644: | Line 4,739: | ||
$lDataSet->First(); | $lDataSet->First(); | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--DO Test--"; | $lMain->FindField("DocNo")->AsString = "--DO Test--"; | ||
$lMain->FindField("DocDate")->value = "01 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2021-01-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "01 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2021-01-20")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = $lDataSet->FindField("Code")->AsString; | $lMain->FindField("Code")->AsString = $lDataSet->FindField("Code")->AsString; | ||
$lMain->FindField("CompanyName")->AsString = $lDataSet->FindField("CompanyName")->AsString; | $lMain->FindField("CompanyName")->AsString = $lDataSet->FindField("CompanyName")->AsString; | ||
Line 4,654: | Line 4,748: | ||
while (! $lDataSet->Eof()){ | while (! $lDataSet->Eof()){ | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("ItemCode")->AsString = $lDataSet->FindField("ItemCode")->AsString; | $lDetail->FindField("ItemCode")->AsString = $lDataSet->FindField("ItemCode")->AsString; | ||
$lDetail->FindField("UOM")->AsString = $lDataSet->FindField("UOM")->AsString; | $lDetail->FindField("UOM")->AsString = $lDataSet->FindField("UOM")->AsString; | ||
Line 4,723: | Line 4,815: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 4,751: | Line 4,843: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--AJ Test--"; | $lMain->FindField("DocNo")->AsString = "--AJ Test--"; | ||
$lMain->FindField("DocDate")->value = "04 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "04 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Stock Adjustment"; | $lMain->FindField("Description")->AsString = "Stock Adjustment"; | ||
#Insert Data - Detail - Increase Stock Qty | #Insert Data - Detail - Increase Stock Qty | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 1; | $lDetail->FindField("Seq")->value = 1; | ||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | $lDetail->FindField("ItemCode")->AsString = "ANT"; | ||
Line 4,767: | Line 4,856: | ||
$lDetail->FindField("UOM")->AsString = "BOX"; | $lDetail->FindField("UOM")->AsString = "BOX"; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
#Insert Data - Detail - Reduce Stock Qty | #Insert Data - Detail - Reduce Stock Qty | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 2; | $lDetail->FindField("Seq")->value = 2; | ||
$lDetail->FindField("ItemCode")->AsString = "N-CHARGER"; | $lDetail->FindField("ItemCode")->AsString = "N-CHARGER"; | ||
Line 4,929: | Line 5,017: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 25 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 4,954: | Line 5,042: | ||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | $lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | ||
$lDetail = $BizObject->DataSets->Find("cdsDocDetail"); #lDetail contains detail data | $lDetail = $BizObject->DataSets->Find("cdsDocDetail"); #lDetail contains detail data | ||
$lSN = $BizObject->DataSets->Find("cdsSerialNumber"); #lDetail contains detail data | |||
#Find IV Number | #Find IV Number | ||
Line 4,965: | Line 5,054: | ||
$BizObject->Edit(); | $BizObject->Edit(); | ||
$lMain->Edit(); | $lMain->Edit(); | ||
$lMain->FindField("DocDate")->value = " | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-04-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = " | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-04-24")); #YYYY-MM-DD | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales-Edited"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales-Edited"; | ||
$lMain->FindField("Address1")->AsString = ""; #Optional | $lMain->FindField("Address1")->AsString = ""; #Optional | ||
Line 4,975: | Line 5,064: | ||
$lMain->FindField("Description")->AsString = "Sales - Edited"; | $lMain->FindField("Description")->AsString = "Sales - Edited"; | ||
$ | $V = array("ANT", "UNIT"); #ItemCode, UOM | ||
if ($lDetail->Locate("ItemCode;UOM", $V, False, False)){ | |||
$lDetail->Edit(); | |||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lDetail->FindField("Tax")->AsString = ""; | |||
$lDetail->FindField("TaxRate")->AsString = ""; | |||
$lDetail->FindField("TaxInclusive")->value = 0; | |||
$lDetail->FindField("UnitPrice")->AsFloat = 6.00; | |||
$lDetail->FindField("Amount")->AsFloat = 12.00; | |||
$lDetail->FindField("TaxAmt")->AsFloat = 0; | |||
$lDetail->Post(); | |||
} | |||
} else { | } else { | ||
echo "New Invoice<br>"; | echo "New Invoice<br>"; | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocKey")->value = -1; | $lMain->FindField("DocKey")->value = -1; | ||
$lMain->FindField("DocNo")->AsString = $lDocNo; | $lMain->FindField("DocNo")->AsString = #$lDocNo; | ||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("DocDate")->value = " | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-04-03")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = " | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-04-03")); #YYYY-MM-DD | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales"; | ||
$lMain->FindField("Address1")->AsString = ""; #Optional | $lMain->FindField("Address1")->AsString = ""; #Optional | ||
Line 5,011: | Line 5,094: | ||
#$lMain->FindField('DocAmt')->value = $Amt; | #$lMain->FindField('DocAmt')->value = $Amt; | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("ItemCode")->AsString = " | $lDetail->FindField("ItemCode")->AsString = "BOM"; | ||
$lDetail->FindField("Description")->AsString = "Sales Item | $lDetail->FindField("Description")->AsString = "Sales Item BOM"; | ||
$lDetail->FindField("UOM")->AsString = "UNIT"; | $lDetail->FindField("UOM")->AsString = "UNIT"; | ||
$lDetail->FindField("Qty")->AsFloat = | $lDetail->FindField("Qty")->AsFloat = 2; | ||
$lDetail->FindField("Tax")->AsString = ""; | $lDetail->FindField("Tax")->AsString = ""; | ||
$lDetail->FindField("TaxRate")->AsString = ""; | $lDetail->FindField("TaxRate")->AsString = ""; | ||
$lDetail->FindField("TaxInclusive")->value = 0; | $lDetail->FindField("TaxInclusive")->value = 0; | ||
$lDetail->FindField("UnitPrice")->AsFloat = | $lDetail->FindField("UnitPrice")->AsFloat = 150; | ||
$lDetail->FindField("Amount")->AsFloat = | $lDetail->FindField("Amount")->AsFloat = 300; | ||
$lDetail->FindField("TaxAmt")->AsFloat = 0; | $lDetail->FindField("TaxAmt")->AsFloat = 0; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
$lDetail->Append(); | |||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | |||
$lDetail->FindField("Description")->AsString = "Sales Item ANT"; | |||
$lDetail->FindField("UOM")->AsString = "UNIT"; | |||
$lDetail->FindField("Qty")->AsFloat = 1; | |||
$lDetail->FindField("Tax")->AsString = ""; | |||
$lDetail->FindField("TaxRate")->AsString = ""; | |||
$lDetail->FindField("TaxInclusive")->value = 0; | |||
$lDetail->FindField("UnitPrice")->AsFloat = 100; | |||
$lDetail->FindField("Amount")->AsFloat = 100; | |||
$lDetail->FindField("TaxAmt")->AsFloat = 0; | |||
$lDetail->Post(); | |||
#For Serial Number | |||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("ItemCode")->AsString = " | $lDetail->FindField("ItemCode")->AsString = "SN"; | ||
$lDetail->FindField("Description")->AsString = "Sales Item | $lDetail->FindField("Description")->AsString = "Sales Serial Number Item"; | ||
$lDetail->FindField("UOM")->AsString = "UNIT"; | $lDetail->FindField("UOM")->AsString = "UNIT"; | ||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lSN->Append; | |||
$lSN->FindField("SERIALNUMBER")->AsString = 'SN-136476'; | |||
$lSN->Post; | |||
$lSN->Append; | |||
$lSN->FindField("SERIALNUMBER")->AsString = 'SN-136477'; | |||
$lSN->Post; | |||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lDetail->FindField("Tax")->AsString = ""; | $lDetail->FindField("Tax")->AsString = ""; | ||
$lDetail->FindField("TaxRate")->AsString = ""; | $lDetail->FindField("TaxRate")->AsString = ""; | ||
$lDetail->FindField("TaxInclusive")->value = 0; | $lDetail->FindField("TaxInclusive")->value = 0; | ||
$lDetail->FindField("UnitPrice")->AsFloat = | $lDetail->FindField("UnitPrice")->AsFloat = 100; | ||
$lDetail->FindField("Amount")->AsFloat = | $lDetail->FindField("Amount")->AsFloat = 100; | ||
$lDetail->FindField("TaxAmt")->AsFloat = 0; | $lDetail->FindField("TaxAmt")->AsFloat = 0; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
} | } | ||
$BizObject->Save(); | $BizObject->Save(); | ||
echo "Save with DocNo ".$lMain->FindField("DocNo")->AsString."<br>"; | |||
echo date("d M Y h:i:s A")." - Posting Done<br>"; | echo date("d M Y h:i:s A")." - Posting Done<br>"; | ||
$BizObject->Close(); | $BizObject->Close(); | ||
Line 5,122: | Line 5,228: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 5,158: | Line 5,264: | ||
$BizObject->Edit(); | $BizObject->Edit(); | ||
$lMain->Edit(); | $lMain->Edit(); | ||
$lMain->FindField("DocDate")->value = "02 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2022-02-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "02 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2022-02-20")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Tenaga Malaysia - Edited"; | $lMain->FindField("Description")->AsString = "Tenaga Malaysia - Edited"; | ||
$lMain->FindField("PaymentMethod")->AsString = "310-001"; #GL Bank/Cash account code | $lMain->FindField("PaymentMethod")->AsString = "310-001"; #GL Bank/Cash account code | ||
Line 5,184: | Line 5,290: | ||
echo "New PV<br>"; | echo "New PV<br>"; | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = $lDocNo; | $lMain->FindField("DocNo")->AsString = $lDocNo; | ||
$lMain->FindField("DocDate")->value = "02 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2022-02-18")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "02 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2022-02-18")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Tenaga Malaysia"; | $lMain->FindField("Description")->AsString = "Tenaga Malaysia"; | ||
$lMain->FindField("PaymentMethod")->AsString = "310-001"; #GL Bank/Cash account code | $lMain->FindField("PaymentMethod")->AsString = "310-001"; #GL Bank/Cash account code | ||
Line 5,297: | Line 5,402: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 5,333: | Line 5,438: | ||
$BizObject->Edit(); | $BizObject->Edit(); | ||
$lMain->Edit(); | $lMain->Edit(); | ||
$lMain->FindField("DocDate")->value = "02 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2022-02-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "02 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2022-02-20")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Credit Card Charges - Edited"; | $lMain->FindField("Description")->AsString = "Credit Card Charges - Edited"; | ||
$lMain->FindField("Cancelled")->AsString = "F"; | $lMain->FindField("Cancelled")->AsString = "F"; | ||
Line 5,369: | Line 5,474: | ||
echo "New JE<br>"; | echo "New JE<br>"; | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = $lDocNo; | $lMain->FindField("DocNo")->AsString = $lDocNo; | ||
$lMain->FindField("DocDate")->value = "02 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2022-02-18")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "02 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2022-02-18")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Credit Card Charges"; | $lMain->FindField("Description")->AsString = "Credit Card Charges"; | ||
$lMain->FindField("Cancelled")->AsString = "F"; | $lMain->FindField("Cancelled")->AsString = "F"; | ||
Line 5,813: | Line 5,917: | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
====Get Description3==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Get Description 3 Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="PHP"> | ||
<!DOCTYPE html> | |||
<html> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 30 Aug 2024<br>"; | |||
$ComServer = null; | |||
function CheckLogin() | |||
{ | |||
global $ComServer; | |||
$ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | |||
ComServer | $status = $ComServer->IsLogin(); | ||
if ($status == true) | |||
{ | |||
# $ComServer->Logout(); | |||
} | |||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | |||
"C:\eStream\SQLAccounting\Share\Default.DCF", #DCF file | |||
"ACC-0024.FDB"); #Database Name | |||
} | |||
function GetData(){ | |||
global $ComServer; | |||
$lSQL = "SELECT Description3, Picture FROM ST_ITEM | |||
WHERE Code='ANT' "; | |||
$lDataSet = $ComServer->DBManager->NewDataSet($lSQL); | |||
if ($lDataSet->RecordCount > 0) { | |||
$lDataSet->First(); | |||
$rtf = $lDataSet->FindField('Description3')->AsString(); | |||
echo $rtf; | |||
echo "<br>== <br>"; | |||
echo "<br>Result after RTF: <br>"; | |||
$txt = $ComServer->Utility->RichTextToPlainText($rtf); | |||
echo "<TEXTAREA rows=10 cols=80 id='edResult1' >".$txt. "</TEXTAREA>"; | |||
echo "<br>== <br>"; | |||
echo "的第一 🐱"; | |||
}else { | |||
echo "Record Not Found"; | |||
} | |||
} | } | ||
if (isset($_POST['BtnData'])) | |||
try { | { | ||
try | |||
{ | |||
} | CheckLogin(); | ||
GetData(); | |||
} | echo date("d M Y h:i:s A") . " - Done"; | ||
} | |||
finally | |||
{ | |||
#$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | } | ||
?> | |||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Get Data"/> | |||
</form> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AR_PM-Add, Edit & Delete==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_PM-Add, Edit & Delete Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="PHP"> | ||
<!DOCTYPE html> | |||
<html> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 24 Sep 2024<br>"; | |||
$ComServer = null; | |||
function CheckLogin() | |||
{ | { | ||
global $ComServer; | |||
$ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | |||
$status = $ComServer->IsLogin(); | |||
if ($status == true) | |||
{ | |||
$ComServer->Logout(); | |||
} | |||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | |||
"C:\eStream\SQLAccounting\Share\Default.DCF", #DCF file | |||
"ACC-0024.FDB"); #Database Name | |||
} | |||
function PostData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("AR_PM"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | |||
$lDetail = $BizObject->DataSets->Find("cdsKnockOff"); #lDetail contains detail data | |||
#Find OR Number | |||
$lDocNo = "--OR Test--"; | |||
$lDocKey = $BizObject->FindKeyByRef("DocNo", $lDocNo); | |||
if ($lDocKey != null){ | |||
echo "Dockey = ".$lDocKey."<br>"; | |||
$BizObject->Params->Find("DocKey")->AsString = $lDocKey; | |||
$BizObject->Open(); | |||
$BizObject->Edit(); | |||
$lMain->Edit(); | |||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("Description")->AsString = "Payment for A/c - Edited"; | |||
$lMain->FindField("DocAmt")->AsFloat = 550.00; | |||
#Knock Off IV | |||
$V = array("IV", "--CS Test--"); #DocType, DocNo | |||
if ($lDetail->Locate("DocType;DocNo", $V, False, False)) { | |||
$lDetail->Edit(); | |||
$lDetail->FindField("KOAmt")->AsFloat = 550; | |||
$lDetail->FindField("KnockOff")->AsString = "T"; | |||
$lDetail->Post(); | |||
} | |||
} else { | |||
echo "New Payment<br>"; | |||
$BizObject->New(); | |||
$lMain->FindField("DocKey")->value = -1; | |||
$lMain->FindField("DocNo")->AsString = $lDocNo; | |||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | |||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("Description")->AsString = "Payment for A/c"; | |||
$lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | |||
$lMain->FindField("ChequeNumber")->AsString = ""; | |||
$lMain->FindField("BankCharge")->AsFloat = 0; | |||
$lMain->FindField("DocAmt")->AsFloat = 200.00; | |||
$lMain->FindField("Cancelled")->AsString = "F"; | |||
#Knock Off IV | |||
$V = array("IV", "--CS Test--"); #DocType, DocNo | |||
if ($lDetail->Locate("DocType;DocNo", $V, False, False)) { | |||
$lDetail->Edit(); | |||
$lDetail->FindField("KOAmt")->AsFloat = 200.0; | |||
$lDetail->FindField("KnockOff")->AsString = "T"; | |||
$lDetail->Post(); | |||
} | |||
} | |||
$BizObject->Save(); | |||
echo "Save with DocNo ".$lMain->FindField("DocNo")->AsString."<br>"; | |||
echo date("d M Y h:i:s A")." - Posting Done<br>"; | |||
$BizObject->Close(); | |||
} | |||
function DelData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("AR_PM"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | |||
#Find PV Number | |||
$lDocNo = "--OR Test--"; | |||
$lDocKey = $BizObject->FindKeyByRef("DocNo", $lDocNo); | |||
if ($lDocKey != null){ | |||
echo "Dockey = ".$lDocKey."<br>"; | |||
$BizObject->Params->Find("DocKey")->AsString = $lDocKey; | |||
$BizObject->Open(); | |||
$BizObject->Delete(); | |||
echo date("d M Y h:i:s A")." - Record deleted<br>"; | |||
} else { | |||
echo date("d M Y h:i:s A")." - Document Not Found<br>"; | |||
} | |||
} | } | ||
if (isset($_POST['BtnData'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
echo date("d M Y h:i:s A")." - Begin Posting<br>"; | |||
PostData(); | |||
echo date("d M Y h:i:s A")." - Done<br>"; | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
if (isset($_POST['BtnDel'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
echo date("d M Y h:i:s A")." - Begin Delete<br>"; | |||
DelData(); | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | } | ||
?> | |||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Add & Edit AR PM"/> | |||
<input type="submit" name="BtnDel" | |||
value="Delete AR PM"/> | |||
</form> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Customer.Statement.RO==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Customer.Statement.RO Script | |||
|- | |||
| | |||
<syntaxhighlight lang="PHP"> | |||
<!DOCTYPE html> | |||
<html> | |||
<head> | |||
<link rel="stylesheet" type="text/css" href="css/Grid.css" /> | |||
</head> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 28 Oct 2024<br>"; | |||
$ComServer = null; | |||
function CheckLogin() | |||
{ | |||
global $ComServer; | |||
$ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | |||
$status = $ComServer->IsLogin(); | |||
if ($status == true) | |||
{ | |||
$ComServer->Logout(); | |||
} | |||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | |||
"C:\\eStream\\SQLAccounting\\Share\\Default.DCF", #DCF file | |||
"ACC-0082.FDB"); #Database Name | |||
} | } | ||
function SetGrid($DataSet){ | |||
echo "<table>"; | |||
echo "<tr>"; | |||
$DataSet->First(); | |||
$fc = $DataSet->Fields->Count-1; | |||
< | for ($x = 0; $x <= $fc; $x++) { | ||
#Insert Header | |||
echo "<td>".$DataSet->Fields->Items($x)->FieldName()."</td>"; | |||
} | |||
echo "</tr>"; | |||
#Looping Dataset | |||
while (! $DataSet->Eof()){ | |||
echo "<tr>"; | |||
for ($x = 0; $x <= $fc; $x++) { | |||
$lFN = $DataSet->Fields->Items($x)->FieldName(); | |||
echo "<td>".$DataSet->FindField($lFN)->AsString()."</td>"; | |||
} | |||
echo "</tr>"; | |||
$DataSet->Next(); | |||
} | |||
echo "</table>"."<br>"; | |||
} | } | ||
function | function GetData(){ | ||
global $ComServer; | |||
$lSQL = '<?xml version="1.0" standalone="yes"?> <DATAPACKET Version="2.0"><METADATA><FIELDS> | |||
<FIELD attrname="ColumnNo" fieldtype="i4" required="true"/><FIELD attrname="ColumnType" fieldtype="string" WIDTH="1"/> | |||
<FIELD attrname="Param1" fieldtype="i4" required="true"/><FIELD attrname="Param2" fieldtype="i4" required="true"/> | |||
<FIELD attrname="IsLocal" fieldtype="boolean"/><FIELD attrname="HeaderScript" fieldtype="bin.hex" SUBTYPE="Text" WIDTH="1"/> | |||
</FIELDS><PARAMS/></METADATA><ROWDATA><ROW ColumnNo="0" ColumnType="" Param1="0" Param2="0" IsLocal="FALSE"/> | |||
<ROW ColumnNo="1" ColumnType="A" Param1="0" Param2="0" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= 'Current Mth'
end;"/> | |||
<ROW ColumnNo="2" ColumnType="A" Param1="-1" Param2="-1" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '1 Months'
end;"/> | |||
<ROW ColumnNo="3" ColumnType="A" Param1="-2" Param2="-2" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '2 Months'
end;"/> | |||
<ROW ColumnNo="4" ColumnType="A" Param1="-3" Param2="-3" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '3 Months'
end;"/> | |||
<ROW ColumnNo="5" ColumnType="A" Param1="-4" Param2="-4" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '4 Months'
end;"/> | |||
<ROW ColumnNo="6" ColumnType="B" Param1="-999999" Param2="-5" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '5 Month & above'
end;"/> | |||
</ROWDATA></DATAPACKET>'; | |||
$lRptVar = $ComServer->RptObjects->Find('Customer.Statement.RO'); | |||
# $lRptVar->Params->Find('AgentData')->AsBlob = ; #Not use if AllAgent is True | |||
$lRptVar->Params->Find('AgingData')->AsString = $lSQL; | |||
$lRptVar->Params->Find('AgingOn')->AsString = 'I'; #Fixed | |||
$lRptVar->Params->Find('AllAgent')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllArea')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllCompany')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllCompanyCategory')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllControlAccount')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllCurrency')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllDocProject')->AsBoolean = True; | |||
# $lRptVar->Params->Find('AreaData')->AsBlob = ; #Not use if AllArea is True | |||
# $lRptVar->Params->Find('CompanyCategoryData')->AsBlob = ; #Not use if AllCompanyCategory is True | |||
# $lRptVar->Params->Find('CompanyData')->AsBlob = ; #Not use if AllCompany is True | |||
# $lRptVar->Params->Find('ControlAccountData')->AsBlob = ; #Not use if AllControlAccount is True | |||
# $lRptVar->Params->Find('CurrencyData')->AsBlob = ; #Not use if AllCurrency is True | |||
# $lRptVar->Params->Find('DocProjectData')->AsBlob = ; #Not use if AllDocProject is True | |||
$lRptVar->Params->Find('DateFrom')->AsDate = '01 Sep 2024'; | |||
$lRptVar->Params->Find('DateTo')->AsDate = '30 Sep 2024'; | |||
$lRptVar->Params->Find('StatementDate')->AsDate = '30 Sep 2024'; # Norm same as DateTo | |||
$lRptVar->Params->Find('SelectDate')->AsBoolean = True; | |||
$lRptVar->Params->Find('IncludeZeroBalance')->AsBoolean = False; | |||
$lRptVar->Params->Find('SortBy')->AsString = 'CompanyCategory;Code;CompanyName;Agent;Area;CurrencyCode;ControlAccount'; | |||
$lRptVar->Params->Find('StatementType')->AsString = 'O'; #O := Open Item, B := B/F | |||
$lRptVar->CalculateReport(); | |||
$lDataSet = $lRptVar->DataSets->Find('cdsMain'); | |||
$lDataSet2 = $lRptVar->DataSets->Find('cdsDocument'); | |||
$lDataSetCO = $lRptVar->DataSets->Find('cdsCompany'); | |||
if ($lDataSet->RecordCount > 0) { | |||
echo "Main Data"."<br>"; | |||
SetGrid($lDataSet); | |||
echo "Detail Invoice"."<br>"; | |||
SetGrid($lDataSet2); | |||
echo "Company Information"."<br>"; | |||
SetGrid($lDataSetCO); | |||
}else { | |||
echo "Record Not Found"; | |||
} | |||
} | } | ||
try{ | if (isset($_POST['BtnData'])) | ||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
GetData(); | |||
} finally { | echo "<br>"; | ||
echo date("d M Y h:i:s A")." - Done"; | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | } | ||
< | ?> | ||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Get Data"/> | |||
</form> | |||
</body> | |||
</html> | |||
/ | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AP_SP-Add, Edit & Delete==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AP_SP-Add, Edit & Delete Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="PHP"> | ||
<!DOCTYPE html> | |||
<html> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 16 Nov 2024<br>"; | |||
$ComServer = null; | |||
function CheckLogin() | |||
{ | |||
global $ComServer; | |||
$ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | |||
$status = $ComServer->IsLogin(); | |||
== | if ($status == true) | ||
{ | |||
{ | $ComServer->Logout(); | ||
} | |||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | |||
"C:\\eStream\\SQLAccounting\\Share\\Default.DCF", #DCF file | |||
"ACC-0024.FDB"); #Database Name | |||
} | |||
function PostData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("AP_SP"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | |||
$lDetail = $BizObject->DataSets->Find("cdsKnockOff"); #lDetail contains detail data | |||
#Find PV Number | |||
$lDocNo = "--PV Test--"; | |||
ComServer | $lCode = "400-C0001"; | ||
$V = array($lDocNo, $lCode); #DocNo, Supplier Code | |||
$lDocKey = $BizObject->FindKeyByRef("DocNo;Code", $V); | |||
if ($lDocKey != null){ | |||
echo "Dockey = ".$lDocKey."<br>"; | |||
$BizObject->Params->Find("DocKey")->AsString = $lDocKey; | |||
$BizObject->Open(); | |||
$BizObject->Edit(); | |||
$lMain->Edit(); | |||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("Description")->AsString = "Payment for A/c - Edited"; | |||
$lMain->FindField("DocAmt")->AsFloat = 550.00; | |||
#Knock Off IV | |||
$V = array("PI", "--PI Test--"); #DocType, DocNo | |||
if ($lDetail->Locate("DocType;DocNo", $V, False, False)) { | |||
$lDetail->Edit(); | |||
$lDetail->FindField("KOAmt")->AsFloat = 550; | |||
$lDetail->FindField("KnockOff")->AsString = "T"; | |||
$lDetail->Post(); | |||
} | |||
} else { | |||
echo "New Payment<br>"; | |||
$BizObject->New(); | |||
$lMain->FindField("DocKey")->value = -1; | |||
$lMain->FindField("DocNo")->AsString = $lDocNo; | |||
$lMain->FindField("Code")->AsString = $lCode; #Supplier Account | |||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("Description")->AsString = "Payment for A/c"; | |||
$lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | |||
$lMain->FindField("ChequeNumber")->AsString = ""; | |||
$lMain->FindField("BankCharge")->AsFloat = 0; | |||
$lMain->FindField("DocAmt")->AsFloat = 200.00; | |||
$lMain->FindField("Cancelled")->AsString = "F"; | |||
#Knock Off IV | |||
$V = array("PI", "--PI Test--"); #DocType, DocNo | |||
if ($lDetail->Locate("DocType;DocNo", $V, False, False)) { | |||
$lDetail->Edit(); | |||
$lDetail->FindField("KOAmt")->AsFloat = 200.0; | |||
$lDetail->FindField("KnockOff")->AsString = "T"; | |||
$lDetail->Post(); | |||
} | |||
} | |||
$BizObject->Save(); | |||
echo "Save with DocNo ".$lMain->FindField("DocNo")->AsString."<br>"; | |||
echo date("d M Y h:i:s A")." - Posting Done<br>"; | |||
$BizObject->Close(); | |||
} | |||
function DelData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("AP_SP"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | |||
#Find PV Number | |||
$lDocNo = "--PV Test--"; | |||
$lCode = "400-C0001"; | |||
$V = array($lDocNo, $lCode); #DocNo, Supplier Code | |||
$lDocKey = $BizObject->FindKeyByRef("DocNo;Code", $V); | |||
if ($lDocKey != null){ | |||
echo "Dockey = ".$lDocKey."<br>"; | |||
$BizObject->Params->Find("DocKey")->AsString = $lDocKey; | |||
$BizObject->Open(); | |||
$BizObject->Delete(); | |||
echo date("d M Y h:i:s A")." - Record deleted<br>"; | |||
} else { | |||
echo date("d M Y h:i:s A")." - Document Not Found<br>"; | |||
} | |||
} | |||
if (isset($_POST['BtnData'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
echo date("d M Y h:i:s A")." - Begin Posting<br>"; | |||
PostData(); | |||
echo date("d M Y h:i:s A")." - Done<br>"; | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
if (isset($_POST['BtnDel'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
echo date("d M Y h:i:s A")." - Begin Delete<br>"; | |||
DelData(); | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
?> | |||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Add & Edit AP SP"/> | |||
<input type="submit" name="BtnDel" | |||
value="Delete AP SP"/> | |||
</form> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
<br> | |||
==== | ===Node JS=== | ||
{| class="mw-collapsible mw-collapsed wikitable" | : Module Require in Node JS | ||
! | :- Winax (Mandatory) -> npm install winax | ||
====Common==== | |||
* Common.js file for example code | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Common Function | |||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="nodejsrepl"> | ||
/* Updated 31 Jul 2023 */ | |||
' | var winax = require('C:\\node_js\\node_modules\\winax'); /* Path where you install winax */ | ||
' | var cp = require('child_process'); | ||
' | |||
' | |||
exports.KillApp = function KillApp(){ | |||
cp.exec('start cmd.exe /C "taskkill /IM "SQLACC.exe" /F"'); | |||
} | |||
exports.CreateSQLAccServer = function CreateSQLAccServer() { | |||
var ComServer; | |||
ComServer = new winax.Object('SQLAcc.BizApp'); | |||
if (!ComServer.IsLogin) { /* check whether user has logon */ | |||
ComServer.Login('ADMIN', 'ADMIN', /* UserName, Password */ | |||
/* 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', */ | |||
'D:\\Happy\\DB\\DEFAULT.DCF', /* DCF File */ | |||
'ACC-0024.FDB'); /* FDB Name */ | |||
} | |||
return ComServer; | |||
} | |||
function | exports.ShowResult = function ShowResult(ADataset){ | ||
var fc, fn, fv, lresult; | |||
ADataset.First; | |||
while (!ADataset.Eof){ | |||
fc = ADataset.Fields.Count; | |||
for (let i = 0; i < fc; i++) { | |||
fn = ADataset.Fields.Items(i).FieldName; | |||
fv = ADataset.FindField(fn).AsString; | |||
lresult = "Index : "+ i + " FieldName : " + fn + " Value : " + fv; | |||
console.log(lresult); | |||
} | |||
console.log("===="); | |||
ADataset.Next(); | |||
} | |||
} | |||
exports.ShowMsg = function ShowMsgShowMsg(AMsg){ | |||
try { | |||
var WSH = new winax.Object('WScript.Shell'); | |||
WSH.popup(AMsg); | |||
} catch (e) { | |||
console.log(e); | |||
} | |||
} | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Get Company Profile==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Get Company Profile | |||
|- | |||
| | |||
<syntaxhighlight lang="nodejsrepl"> | |||
/* Updated 22 Jul 2023 */ | |||
var Common = require('./Common'); | |||
var ComServer, lDataSet; | |||
function GetData() { | |||
var lSQL; | |||
lSQL = "SELECT COMPANYNAME, REMARK, BRN, BRN2, GSTNO, "; | |||
lSQL = lSQL + "SALESTAXNO, SERVICETAXNO, "; | |||
lSQL = lSQL + "ADDRESS1,ADDRESS2,ADDRESS3,ADDRESS4 FROM SY_PROFILE "; | |||
lDataSet = ComServer.DBManager.NewDataSet(lSQL); | |||
Common.ShowResult(lDataSet); | |||
} | |||
BizObject. | try{ | ||
lMain. | ComServer = Common.CreateSQLAccServer(); | ||
lMain.FindField( | GetData(); | ||
lMain.FindField( | ComServer.Logout(); | ||
lMain.FindField( | } catch(e){ | ||
lMain.FindField( | console.error(e.message) | ||
lMain.FindField( | } finally { | ||
lMain.FindField( | Common.KillApp(); | ||
lMain.FindField( | } | ||
lMain.FindField( | </syntaxhighlight> | ||
lMain.FindField( | |} | ||
lMain.FindField( | <div style="float: right;"> [[#top|[top]]]</div> | ||
lMain.FindField( | |||
====Complete Post==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Complete Post | |||
lDetail.Append | |- | ||
| | |||
lDetail.FindField( | <syntaxhighlight lang="nodejsrepl"> | ||
/* Updated 22 Jul 2023 | |||
lDetail.FindField( | This will doing following posting | ||
lDetail.FindField( | 01. Cash Sales | ||
lDetail.FindField( | 02. Sales Credit Note | ||
lDetail.FindField( | 03. Customer Payment With Knock off | ||
lDetail.FindField( | 04. Edit Credit Note Posted in Step 02 & Knock Off | ||
lDetail.FindField( | 05. Customer Refund to Knock off Credit Note | ||
lDetail.FindField( | */ | ||
lDetail.FindField( | var Common = require('./Common'); | ||
lDetail.FindField( | var ComServer; | ||
function PostDataCS() { | |||
var BizObject, lMain, lDetail; | |||
BizObject = ComServer.BizObjects.Find('SL_CS') ; | |||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | |||
lDetail = BizObject.DataSets.Find('cdsDocDetail'); /*lDetail contains detail data */ | |||
/*Begin Looping yr data*/ | |||
/*Insert Data - Master*/ | |||
BizObject.New(); | |||
lMain.FindField('DocNo').AsString = "--CS Test--"; | |||
lMain.FindField('DocDate').value = "20/12/2022"; | |||
lMain.FindField('PostDate').value = "20/12/2022"; | |||
lMain.FindField('Code').AsString = "300-C0001"; /*Customer Account*/ | |||
lMain.FindField('CompanyName').AsString = "Cash Sales" | |||
lMain.FindField('Address1').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address2').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address3').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address4').AsString = ""; /*Optional*/ | |||
lMain.FindField('Phone1').AsString = ""; /*Optional*/ | |||
lMain.FindField('Description').AsString = "Sales"; | |||
/*Insert Data - Detail*/ | |||
/*For Tax Inclusive = True with override Tax Amount*/ | |||
lDetail.Append(); | |||
lDetail.FindField('Seq').value = 1; | |||
lDetail.FindField('Account').AsString = "500-000"; /*Sales Account*/ | |||
lDetail.FindField('Description').AsString = "Sales Item A"; | |||
lDetail.FindField('Qty').AsFloat = 1; | |||
lDetail.FindField('Tax').AsString = "SV"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
lDetail.FindField('UnitPrice').AsFloat = 435; | |||
lDetail.FindField('Amount').AsFloat = 410.37; /*Exclding Tax Amt*/ | |||
lDetail.FindField('TaxAmt').AsFloat = 24.63; | |||
lDetail.DisableControls | lDetail.DisableControls(); | ||
lDetail.FindField( | lDetail.FindField('TaxInclusive').value = 1; | ||
lDetail.EnableControls | lDetail.EnableControls(); | ||
lDetail.Post | lDetail.Post(); | ||
/*For Tax Inclusive = False with override Tax Amount*/ | |||
lDetail.Append | lDetail.Append(); | ||
lDetail.FindField('Seq').value = 2; | |||
lDetail.FindField( | lDetail.FindField('Account').AsString = "500-000"; | ||
lDetail.FindField('Description').AsString = "Sales Item B"; | |||
lDetail.FindField( | lDetail.FindField('Qty').AsFloat = 1; | ||
lDetail.FindField( | lDetail.FindField('Tax').AsString = "SV"; | ||
lDetail.FindField( | lDetail.FindField('TaxRate').AsString = "6%"; | ||
lDetail.FindField( | lDetail.FindField('TaxInclusive').value = 0; | ||
lDetail.FindField( | lDetail.FindField('UnitPrice').AsFloat = 94.43; | ||
lDetail.FindField( | lDetail.FindField('Amount').AsFloat = 94.43; | ||
lDetail.FindField( | lDetail.FindField('TaxAmt').AsFloat = 5.66; | ||
lDetail.FindField( | lDetail.Post(); | ||
lDetail.FindField( | |||
lDetail.Post | |||
' | /*For With Item Code*/ | ||
lDetail.Append(); | |||
lDetail.FindField('Seq').value = 3; | |||
lDetail.FindField('ItemCode').AsString = "ANT"; | |||
lDetail.FindField('Description').AsString = "Sales Item B"; | |||
/*lDetail.FindField('Account').AsString = "500-000"; If you wanted override the Sales Account Code*/ | |||
lDetail.FindField('Qty').AsFloat = 2; | |||
lDetail.FindField('UOM').AsString = "UNIT"; | |||
/*lDetail.FindField('DISC').AsString = "5%+3"; Optional (eg 5% plus 3 Discount)*/ | |||
lDetail.FindField('Tax').AsString = "SV"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
lDetail.FindField('UnitPrice').AsFloat = 100; | |||
lDetail.FindField('Amount').AsFloat = 200; | |||
lDetail.FindField('TaxAmt').AsFloat = 12; | |||
lDetail.Post(); | |||
/*Save Document*/ | |||
BizObject.Save(); | |||
' | BizObject.Close(); | ||
} | |||
function PostDataPM() { | |||
var BizObject, lMain, lDetail, v; | |||
BizObject = ComServer.BizObjects.Find('AR_PM') ; | |||
' | lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | ||
'ComServer. | lDetail = BizObject.DataSets.Find('cdsKnockOff'); /*lDetail contains detail data */ | ||
BizObject.New(); | |||
lMain.FindField('DocNo').AsString = "--PM Test--"; | |||
lMain.FindField('Code').AsString = "300-C0001"; | |||
lMain.FindField('DocDate').value = "20/12/2022"; | |||
lMain.FindField('PostDate').value = "20/12/2022"; | |||
lMain.FindField('Description').AsString = "Payment for A/"; | |||
lMain.FindField('PaymentMethod').AsString = "320-000"; /*Bank or Cash Account*/ | |||
lMain.FindField('ChequeNumber').AsString = ""; | |||
lMain.FindField('BankCharge').AsFloat = 0; | |||
lMain.FindField('DocAmt').AsFloat = 200.00; | |||
lMain.FindField('Cancelled').AsString = "F"; | |||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'IV'); /*Knock Off DocType IV or DN*/ | |||
v.SetItem(1, '--CS Test--'); /*Knock Off DocNo*/ | |||
if (lDetail.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | |||
lDetail.Edit(); | |||
lDetail.FindField('KOAmt').AsFloat = "147.09"; /*Partial Knock Off*/ | |||
lDetail.FindField('KnockOff').AsString = 'T'; | |||
lDetail.Post(); | |||
} | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
} | |||
function PostDataCN() { | |||
var BizObject, lMain, lDetail; | |||
BizObject = ComServer.BizObjects.Find('SL_CN') ; | |||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | |||
lDetail = BizObject.DataSets.Find('cdsDocDetail'); /*lDetail contains detail data */ | |||
/*Begin Looping yr data*/ | |||
/*Insert Data - Master*/ | |||
' | BizObject.New(); | ||
lMain.FindField('DocNo').AsString = "--CN Test--"; | |||
lMain.FindField('DocDate').value = "21/12/2022"; | |||
' | lMain.FindField('PostDate').value = "21/12/2022"; | ||
lMain.FindField('Code').AsString = "300-C0001"; /*Customer Account*/ | |||
lMain.FindField('CompanyName').AsString = "Cash Sales" | |||
lMain.FindField('Address1').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address2').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address3').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address4').AsString = ""; /*Optional*/ | |||
lMain.FindField('Phone1').AsString = ""; /*Optional*/ | |||
lMain.FindField('Description').AsString = "Sales Returned"; | |||
/*Insert Data - Detail*/ | |||
/*For With Item Code*/ | |||
lDetail.Append(); | |||
lDetail.FindField('Seq').value = 1; | |||
lDetail.FindField('ItemCode').AsString = "ANT"; | |||
lDetail.FindField('Description').AsString = "Sales Item B"; | |||
lDetail.FindField('Description2').AsString = "Product Spoil"; /*Reason*/ | |||
lDetail.FindField('Remark1').AsString = "--IV Test--"; /*Invoice No*/ | |||
lDetail.FindField('Remark2').AsString = "20 Dec 2022"; /*Invoide Date*/ | |||
lDetail.FindField('Qty').AsFloat = 1; | |||
lDetail.FindField('UOM').AsString = "UNIT"; | |||
lDetail.FindField('Tax').AsString = "SV"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
' | lDetail.FindField('UnitPrice').AsFloat = 100; | ||
lDetail.FindField('Amount').AsFloat = 100; | |||
lDetail.FindField('TaxAmt').AsFloat = 6; | |||
lDetail.Post(); | |||
/*Save Document*/ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
} | |||
function PostKnockIVCN() { | |||
var BizObject, lMain, lDetail, v, lDocNo, lDocKey; | |||
BizObject = ComServer.BizObjects.Find('AR_CN') ; | |||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | |||
lDetail = BizObject.DataSets.Find('cdsKnockOff'); /*lDetail contains detail data */ | |||
/* Find CN Number */ | |||
lDocNo = "--CN Test--" | |||
BizObject. | lDocKey = BizObject.FindKeyByRef('DocNo', lDocNo); | ||
BizObject.Params.Find('DocKey').Value = lDocKey; | |||
if (lDocKey != null) { | |||
BizObject.Open(); | |||
BizObject.Edit(); | |||
lMain.Edit(); | |||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'IV'); /*Knock Off DocType IV or DN*/ | |||
v.SetItem(1, '--CS Test--'); /*Knock Off DocNo*/ | |||
lMain | if (lDetail.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | ||
lDetail.Edit(); | |||
lDetail.FindField('KOAmt').AsFloat = "100"; /*Partial Knock Off*/ | |||
lDetail.FindField('KnockOff').AsString = 'T'; | |||
lDetail.Post(); | |||
} | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
} | |||
} | |||
function PostDataCF() { | |||
var BizObject, lMain, lDetail, v; | |||
BizObject = ComServer.BizObjects.Find('AR_CF') ; | |||
' | lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | ||
BizObject. | lDetail = BizObject.DataSets.Find('cdsKnockOff'); /*lDetail contains detail data */ | ||
BizObject. | |||
BizObject.New(); | |||
' | lMain.FindField('DocNo').AsString = "--CF Test--"; | ||
lMain.FindField('Code').AsString = "300-C0001"; | |||
lMain.FindField('DocDate').value = "24/12/2022"; | |||
lMain.FindField('PostDate').value = "24/12/2022"; | |||
lMain.FindField('Description').AsString = "Payment for A/"; | |||
lMain.FindField('PaymentMethod').AsString = "320-000"; /*Bank or Cash Account*/ | |||
' | lMain.FindField('ChequeNumber').AsString = ""; | ||
lMain.FindField('BankCharge').AsFloat = 0; | |||
lMain.FindField('DocAmt').AsFloat = 6.00; | |||
' | lMain.FindField('Cancelled').AsString = "F"; | ||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'CN'); /*Knock Off DocType*/ | |||
v.SetItem(1, '--CN Test--'); /*Knock Off DocNo*/ | |||
if (lDetail.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | |||
lDetail.Edit(); | |||
lDetail.FindField('KOAmt').AsFloat = "4"; /*Partial Knock Off*/ | |||
lDetail.FindField('KnockOff').AsString = 'T'; | |||
lDetail.Post(); | |||
} | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
} | |||
lDetail.Edit | |||
lDetail.FindField( | try{ | ||
lDetail.FindField( | ComServer = Common.CreateSQLAccServer(); | ||
lDetail.Post | console.log("Posting Cash Sales"); | ||
PostDataCS(); | |||
console.log("Posting Payment"); | |||
PostDataPM(); | |||
console.log("Posting Sales CN"); | |||
PostDataCN(); | |||
console.log("Posting Knock Off CN"); | |||
PostKnockIVCN(); | |||
console.log("Posting Customer Refund"); | |||
PostDataCF(); | |||
console.log("Done"); | |||
ComServer.Logout(); | |||
} catch(e){ | |||
console.error(e.message) | |||
} finally { | |||
Common.KillApp(); | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Get Picture & Description3(Rich Text)==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Get Picture & Description3(Rich Text) Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="nodejsrepl"> | ||
' | /* Updated 31 Jul 2023 */ | ||
var Common = require('./Common'); | |||
var ComServer, lDataSet; | |||
const fs = require('fs'); | |||
function saveImage(filename, data){ | |||
var myBuffer = new Buffer.alloc(data.length); | |||
for (var i = 0; i < data.length; i++) { | |||
myBuffer[i] = data[i]; | |||
} | |||
fs.writeFile(filename, myBuffer, function(err) { | |||
if(err) { | |||
console.log(err); | |||
} else { | |||
console.log("The Image file was saved!"); | |||
} | |||
}); | |||
} | |||
function ExpFile(AFName, AData){ | |||
const FN = new console.Console(fs.createWriteStream(AFName)); | |||
FN.log(AData); | |||
} | |||
function GetData() { | |||
var lSQL, txt, rtf; | |||
lSQL = "SELECT Description3, Picture FROM ST_ITEM "; | |||
lSQL = lSQL + "WHERE Code='ANT' "; | |||
lDataSet = ComServer.DBManager.NewDataSet(lSQL); | |||
' | lDataSet.First; | ||
rtf = lDataSet.FindField('Description3').AsString; | |||
console.log(rtf); | |||
' | |||
ExpFile('./output.rtf', rtf); | |||
txt = ComServer.Utility.RichTextToPlainText(rtf); | |||
Common.ShowMsg(txt); | |||
/* console.log(txt); <= Not support Unicode */ | |||
ExpFile('./output.txt', txt); | |||
console.log('Done Export'); | |||
saveImage("./Pic.jpg", lDataSet.FindField('Picture').Value); | |||
} | |||
try{ | |||
ComServer = Common.CreateSQLAccServer(); | |||
GetData(); | |||
ComServer.Logout(); | |||
} catch(e){ | |||
console.error(e.message) | |||
} finally { | |||
Common.KillApp(); | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
====Get Stock Qty Balance==== | |||
==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Get Stock Qty Balance Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="nodejsrepl"> | ||
' | /* Updated 18 Jan 2024 */ | ||
' | var Common = require('./Common'); | ||
var ComServer; | |||
function GetListData() { | |||
var lSQL, lDataSet; | |||
lSQL = "SELECT ItemCode, Location, Batch, Sum(Qty) Qty FROM ST_TR "; | |||
lSQL = lSQL + "WHERE PostDate<='31 Dec 2019' "; | |||
lSQL = lSQL + "AND ITEMCODE ='ANT' "; | |||
lSQL = lSQL + "GROUP BY ItemCode, Location, Batch "; | |||
lDataSet = ComServer.DBManager.NewDataSet(lSQL); | |||
Common.ShowResult(lDataSet); | |||
} | |||
try{ | |||
ComServer = Common.CreateSQLAccServer(); | |||
GetListData(); | |||
ComServer.Logout(); | |||
} catch(e){ | |||
console.error(e.message) | |||
} finally { | |||
Common.KillApp(); | |||
} | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====SO to DO==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! SO to DO Script | |||
|- | |||
| | |||
<syntaxhighlight lang="nodejsrepl"> | |||
/*Updated 26 Apr 2024*/ | |||
var Common = require('./Common'); | |||
var ComServer; | |||
function PostData() { | |||
var BizObject, lMain, lDetail, lSQL, lDataSet; | |||
lSQL = "SELECT Dockey, DocNo,Code, CompanyName, DocProject, Seq, DtlKey, ItemCode, Description, Qty, UOM, UnitPrice, Disc, Amount, DtlProject, "; | |||
lSQL = lSQL + "Tax, TaxRate, TaxInclusive, TaxAmt, COALESCE(Sum(XFQty),0) XFQty, COALESCE((Qty-Sum(XFQty)), Qty) OSQty FROM ( "; | |||
lSQL = lSQL + "SELECT A.Dockey, A.DocNo, A.Code, A.CompanyName, A.Project DocProject, "; | |||
lSQL = lSQL + "B.DtlKey, B.Seq, B.ItemCode, B.Description, B.Qty, B.UOM, B.UnitPrice, B.Disc, B.Amount, "; | |||
lSQL = lSQL + "B.Tax, B.TaxRate, B.TaxInclusive, B.TaxAmt, B.Project DtlProject, C.Qty XFQty FROM SL_SO A "; | |||
lSQL = lSQL + "INNER JOIN SL_SODTL B ON (A.DOCKEY=B.DOCKEY) "; | |||
lSQL = lSQL + "LEFT JOIN ST_XTRANS C ON (A.DOCKEY=C.FROMDOCKEY AND B.DTLKEY=C.FROMDTLKEY "; | |||
lSQL = lSQL + " AND C.FROMDOCTYPE='SO') "; | |||
lSQL = lSQL + "WHERE A.DOCNO='SO-00041') "; | |||
lSQL = lSQL + "GROUP BY Dockey, DocNo, Code, CompanyName, DocProject, Seq, Dtlkey, ItemCode, Description, Qty, UOM, UnitPrice, Disc, "; | |||
lSQL = lSQL +" Amount, DtlProject, Tax, TaxRate, TaxInclusive, TaxAmt "; | |||
lSQL = lSQL + "HAVING COALESCE((Qty-Sum(XFQty)), Qty) >0 "; | |||
lDataSet = ComServer.DBManager.NewDataSet(lSQL); | |||
if (lDataSet.RecordCount > 0) { | |||
BizObject = ComServer.BizObjects.Find('SL_DO') ; | |||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | |||
lDetail = BizObject.DataSets.Find('cdsDocDetail'); /*lDetail contains detail data */ | |||
BizObject.New(); | |||
lMain.FindField('DocNo').AsString = "<<New>>"; | |||
lMain.FindField('DocDate').value = "26/04/2024"; | |||
lDetail. | lMain.FindField('PostDate').value = "26/04/2024"; | ||
lMain.FindField('Code').AsString = lDataSet.FindField('Code').AsString; /*Customer Account*/ | |||
lMain.FindField('Description').AsString = "Post from 3rd Party"; | |||
lDataSet.First; | |||
while (!lDataSet.Eof){ | |||
lDetail.Append(); | |||
lDetail.FindField('Seq').value = lDataSet.FindField('Seq').Value; | |||
lDetail.FindField('ItemCode').AsString = lDataSet.FindField('ItemCode').AsString; | |||
lDetail.FindField('Description').AsString = lDataSet.FindField('Description').AsString; | |||
lDetail.FindField('Qty').AsFloat = lDataSet.FindField('OSQty').AsFloat;/*Transfer all balance Qty*/ | |||
lDetail.FindField('UOM').AsString = lDataSet.FindField('UOM').AsString; | |||
lDetail.FindField('DISC').value = lDataSet.FindField('DISC').AsString; | |||
lDetail.FindField('Tax').value = lDataSet.FindField('Tax').AsString; | |||
lDetail.FindField('TaxRate').value = lDataSet.FindField('TaxRate').AsString; | |||
lDetail.FindField('TaxInclusive').value = lDataSet.FindField('TaxInclusive').value; | |||
lDetail.FindField('UnitPrice').AsFloat = lDataSet.FindField('UnitPrice').AsFloat ; | |||
lDetail.FindField('Amount').AsFloat = lDataSet.FindField('Amount').AsFloat; | |||
lDetail.FindField('TaxAmt').AsFloat = lDataSet.FindField('TaxAmt').AsFloat; | |||
lDetail.FindField('FromDocType').AsString = "SO"; /*From Document Type*/ | |||
lDetail.FindField('FromDockey').AsFloat = lDataSet.FindField('Dockey').AsFloat; | |||
lDetail.FindField('FromDtlkey').AsFloat = lDataSet.FindField('DtlKey').AsFloat; | |||
lDetail.Post(); | |||
lDataSet.Next(); | |||
} | |||
/*Save Document*/ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
} else | |||
console.log("Record Not Found"); | |||
} | |||
try{ | |||
ComServer = Common.CreateSQLAccServer(); | |||
console.log("Posting SO to DO"); | |||
PostData(); | |||
console.log("Done"); | |||
ComServer.Logout(); | |||
} catch(e){ | |||
console.error(e.message) | |||
} finally { | |||
Common.KillApp(); | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Get Build No==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Get Build No Script | |||
|- | |||
| | |||
<syntaxhighlight lang="nodejsrepl"> | |||
/* Updated 22 Jan 2025 */ | |||
var Common = require('./Common'); | |||
var ComServer, lBuildNo; | |||
function GetData() { | |||
lBuildNo = ComServer.BuildNo; | |||
console.error(lBuildNo); | |||
} | |||
try{ | |||
ComServer = Common.CreateSQLAccServer(); | |||
GetData(); | |||
ComServer.Logout(); | |||
} catch(e){ | |||
console.error(e.message) | |||
} finally { | |||
Common.KillApp(); | |||
} | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
<br /> | |||
==== | ===VB Script=== | ||
====Get Company Profile==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Company Profile Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg Common.Agent.RO.vbs | ||
Call | Call GetCoInfo | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 6,807: | Line 7,077: | ||
End Function | End Function | ||
Function | Function GetCoInfo | ||
Dim ComServer, | Dim ComServer, RptObject, lDataSet | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\ | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the | 'Step 2: Find and Create the Report Objects | ||
Set | Set RptObject = ComServer.RptObjects.Find("Common.Agent.RO") | ||
'Step 3: Perform Report calculation | |||
RptObject.CalculateReport() | |||
Set lDataSet = RptObject.DataSets.Find("cdsProfile") | |||
MsgBox "Count " & lDataSet.RecordCount | |||
'Step | 'Step 5 Retrieve the output | ||
lDataSet.First | |||
While (not lDataSet.eof) | |||
MsgBox "Company Name : " & lDataSet.FindField("CompanyName").AsString | |||
MsgBox "Remark : " & lDataSet.FindField("Remark").AsString | |||
MsgBox "ROC No : " & lDataSet.FindField("RegisterNo").AsString | |||
==== | MsgBox "GST No : " & lDataSet.FindField("GSTNo").AsString | ||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! AR_PM | MsgBox "Address 1 : " & lDataSet.FindField("Address1").AsString | ||
|- | |||
MsgBox "Address 2 : " & lDataSet.FindField("Address2").AsString | |||
MsgBox "Address 3 : " & lDataSet.FindField("Address3").AsString | |||
MsgBox "Address 4 : " & lDataSet.FindField("Address4").AsString | |||
MsgBox "Attention : " & lDataSet.FindField("Attention").AsString | |||
MsgBox "Phone : " & lDataSet.FindField("Phone1").AsString | |||
MsgBox "Fax : " & lDataSet.FindField("Fax1").AsString | |||
MsgBox "E-Mail : " & lDataSet.FindField("EMail").AsString | |||
lDataSet.Next | |||
Wend | |||
'Step 6 : Logout after done | |||
ComServer.Logout | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Complete Post==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! SL_CS, AR_PM, SL_CN & AR_CN Script | |||
|- | |||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Updated 13 Sep 2018 | ||
Call | 'Copy below script & paste to notepad & name it as eg SL_CS.vbs | ||
'This will doing following posting | |||
'01. Cash Sales | |||
'02. Sales Credit Note | |||
'03. Customer Payment With Knock off | |||
'04. Edit Credit Note Posted in Step 02 & Knock Off | |||
Call CheckLogin | |||
Call InsertData | |||
Dim ComServer | |||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
function CheckLogin | |||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ||
'UserName, Password, DCF full path, Database filename | |||
END IF | END IF | ||
End Function | |||
Function InsertData | |||
Dim BizObject, lMain, lDetail, lDate | |||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("SL_CS") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Set | Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | ||
Set | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
'Step 4 : | 'Begin Looping yr data | ||
'Step 4 : Insert Data - Master | |||
lDate = CDate("January 1, 2017") | |||
BizObject.New | |||
lMain.FindField("DocKey").value = -1 | |||
lMain.FindField("DocNo").AsString = "--IV Test--" | |||
lMain.FindField("DocDate").value = lDate | |||
lMain.FindField("PostDate").value = lDate | |||
lMain.FindField("Code").AsString = "300-C0001" 'Customer Account | |||
lMain.FindField("CompanyName").AsString = "Cash Sales" | |||
lMain.FindField("Address1").AsString = "" 'Optional | |||
lMain.FindField("Address2").AsString = "" 'Optional | |||
lMain.FindField("Address3").AsString = "" 'Optional | |||
lMain.FindField("Address4").AsString = "" 'Optional | |||
lMain.FindField("Phone1").AsString = "" 'Optional | |||
lMain.FindField("Description").AsString = "Sales" | |||
'Step 5: Insert Data - Detail | |||
'For Tax Inclusive = True with override Tax Amount | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("Seq").value = 1 | |||
lDetail.FindField("Account").AsString = "500-000" 'Sales Account | |||
lDetail.FindField("Description").AsString = "Sales Item A" | |||
lDetail.FindField("Qty").AsFloat = 1 | |||
lDetail.FindField("Tax").AsString = "SR" | |||
lDetail.FindField("TaxRate").AsString = "6%" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("UnitPrice").AsFloat = 435 | |||
lDetail.FindField("Amount").AsFloat = 410.37 'Exclding GST Amt | |||
lDetail.FindField("TaxAmt").AsFloat = 24.63 | |||
lDetail.DisableControls | |||
lDetail.FindField("TaxInclusive").value = 1 | |||
lDetail.EnableControls | |||
lDetail.Post | |||
'For Tax Inclusive = False with override Tax Amount | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("Seq").value = 2 | |||
lDetail.FindField("Account").AsString = "500-000" | |||
lDetail.FindField("Description").AsString = "Sales Item B" | |||
lDetail.FindField("Qty").AsFloat = 1 | |||
lDetail.FindField("Tax").AsString = "SR" | |||
lDetail.FindField("TaxRate").AsString = "6%" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("UnitPrice").AsFloat = 94.43 | |||
lDetail.FindField("Amount").AsFloat = 94.43 | |||
lDetail.FindField("TaxAmt").AsFloat = 5.66 | |||
lDetail.Post | |||
'For With Item Code | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("Seq").value = 3 | |||
lDetail.FindField("ItemCode").AsString = "ANT" | |||
lDetail.FindField("Description").AsString = "Sales Item B" | |||
'lDetail.FindField("Account").AsString = "500-000" 'If you wanted override the Sales Account Code | |||
lDetail.FindField("Qty").AsFloat = 2 | |||
lDetail.FindField("UOM").AsString = "UNIT" | |||
'lDetail.FindField("DISC").AsString = "5%+3" 'Optional (eg 5% plus 3 Discount) | |||
lDetail.FindField("Tax").AsString = "SR" | |||
lDetail.FindField("TaxRate").AsString = "6%" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("UnitPrice").AsFloat = 100 | |||
lDetail.FindField("Amount").AsFloat = 200 | |||
lDetail.FindField("TaxAmt").AsFloat = 12 | |||
lDetail.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
'Step 7: Payment | |||
Call InsertARPM | |||
' | |||
Call | 'Step 8: Credit Note | ||
Call InsertSLCN | |||
'End Looping yr data | |||
'Step 9 : Logout after done | |||
'ComServer.Logout | |||
MsgBox "Done" | |||
End Function | End Function | ||
Function | Function InsertARPM | ||
Dim | Dim BizObject, lMain, lDetail, lDate, v(1) | ||
'Step | 'Step 2: Find and Create the Biz Objects | ||
Set ComServer = | Set BizObject = ComServer.BizObjects.Find("AR_PM") | ||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsKnockOff") 'lDetail contains detail data | |||
'Step | |||
'Step 4 : Posting | |||
lDate = CDate("January 23, 2017") | |||
BizObject.New | |||
lMain.FindField("DOCKEY").Value = -1 | |||
lMain.FindField("DocNo").AsString = "--PM Test--" | |||
lMain.FindField("CODE").AsString = "300-C0001" 'Customer Account | |||
lMain.FindField("DocDate").Value = lDate | |||
lMain.FindField("PostDate").Value = lDate | |||
lMain.FindField("Description").AsString = "Payment for A/c" | |||
lMain.FindField("PaymentMethod").AsString = "320-000" 'Bank or Cash Account | |||
lMain.FindField("ChequeNumber").AsString = "" | |||
lMain.FindField("BankCharge").AsFloat = 0 | |||
lMain.FindField("DocAmt").AsFloat = 200.00 | |||
lMain.FindField("Cancelled").AsString = "F" | |||
'Step 5: Knock Off IV | |||
lIVNO = "--IV Test--" | |||
v(0) = "IV" | |||
v(1) = lIVNO | |||
if (lDetail.Locate("DocType;DocNo", v, false, false)) then | |||
lDetail.Edit | |||
lDetail.FindField("KOAmt").AsFloat = 147.09 'Partial Knock off | |||
lDetail.FindField("KnockOff").AsString = "T" | |||
lDetail.Post | |||
End IF | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
End Function | |||
'Step | Function InsertSLCN | ||
Dim BizObject, lMain, lDetail, lDate | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("SL_CN") | |||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | |||
'Step 4: | 'Step 4 : Insert Data - Master | ||
lDate = CDate("January 24, 2017") | |||
BizObject.New | |||
lMain.FindField("DocKey").value = -1 | |||
lMain.FindField("DocNo").AsString = "--CN Test--" | |||
lMain.FindField("DocDate").value = lDate | |||
' | lMain.FindField("PostDate").value = lDate | ||
lMain.FindField("Code").AsString = "300-C0001" | |||
lMain.FindField("CompanyName").AsString = "Cash Sales" | |||
lMain.FindField("Address1").AsString = "" | |||
lMain.FindField("Address2").AsString = "" | |||
lMain.FindField("Address3").AsString = "" | |||
lMain.FindField("Address4").AsString = "" | |||
lMain.FindField("Phone1").AsString = "" | |||
lMain.FindField("Description").AsString = "Sales Returned" | |||
'For With Item Code | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("ItemCode").AsString = "ANT" | |||
lDetail.FindField("Description").AsString = "Sales Item B" | |||
lDetail.FindField("Description2").AsString = "Product Spoil" 'Reason | |||
lDetail.FindField("Remark1").AsString = "--IV Test--" 'Invoice No | |||
lDetail.FindField("Remark2").AsString = "01 Jan 2017" 'Invoice Date | |||
lDetail.FindField("Qty").AsFloat = 1 | |||
lDetail.FindField("Tax").AsString = "SR" | |||
lDetail.FindField("TaxRate").AsString = "6%" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("UnitPrice").AsFloat = 100 | |||
lDetail.FindField("Amount").AsFloat = 100 | |||
lDetail.FindField("TaxAmt").AsFloat = 6 | |||
lDetail.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
'Step 7: Knock Off Invoice | |||
Call KnockIV | |||
' | |||
Call | |||
End Function | End Function | ||
Function | Function KnockIV | ||
Dim BizObject, lMain, lDetail, lDate, v(1) | |||
Dim | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find("AR_CN") | |||
'Step 2: Find and Create the | |||
Set | |||
'Step 3: | 'Step 3: Set Dataset | ||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsKnockOff") 'lDetail contains Knock off data | |||
'Step 4 : Find CN Number | |||
lDocNo = "--CN Test--" | |||
lDocKey = BizObject.FindKeyByRef("DocNo", lDocNo) | |||
BizObject.Params.Find("DocKey").Value = lDocKey | |||
If not IsNull(lDocKey) Then | |||
BizObject.Open | |||
BizObject.Edit | |||
lMain.Edit | |||
'Step 5: Knock Off IV | |||
lIVNO = "--IV Test--" | |||
v(0) = "IV" | |||
v(1) = lIVNO | |||
if (lDetail.Locate("DocType;DocNo", v, false, false)) then | |||
lDetail.Edit | |||
lDetail.FindField("KOAmt").AsFloat = 106 'Fully Knock off | |||
lDetail.FindField("KnockOff").AsString = "T" | |||
lDetail.Post | |||
End IF | |||
' | 'Step 6: Save Document | ||
BizObject.Save | |||
BizObject.Close | |||
END IF | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====AR_IV==== | |||
'Step | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_IV Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg AR_IV.vbs | ||
Call | Call InsertARIV | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function | Function InsertARIV | ||
Dim ComServer, | Dim ComServer, BizObject, lDataSet, lDataSet2, lDate | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\ | ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the | 'Step 2: Find and Create the Biz Objects | ||
Set | Set BizObject = ComServer.BizObjects.Find("AR_IV") | ||
'Step 3: | 'Step 3: Set Dataset | ||
Set lMainDataSet = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | |||
Set lDetailDataSet = BizObject.DataSets.Find("cdsDocDetail") 'lDetailDataSet contains detail data | |||
'Step 4 : Insert Data - Master | |||
lDate = CDate("January 1, 2016") | |||
BizObject.New | |||
'For | lMainDataSet.FindField("DocKey").value = -1 | ||
lMainDataSet.FindField("DocNo").value = "--IV Test--" | |||
lMainDataSet.FindField("DocDate").value = lDate | |||
lMainDataSet.FindField("PostDate").value = lDate | |||
lMainDataSet.FindField("Code").value = "300-A0003" | |||
lMainDataSet.FindField("Description").value = "Sales" | |||
'Step 5: Insert Data - Detail | |||
'For Tax Inclusive = True with override Tax Amount | |||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("Account").value = "500-000" | |||
lDetailDataSet.FindField("Description").value = "Sales Item A" | |||
lDetailDataSet.FindField("Tax").value = "SR" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("Amount").value = 410.37 | |||
lDetailDataSet.FindField("TaxAmt").value = 24.63 | |||
lDetailDataSet.DisableControls | |||
lDetailDataSet.FindField("TaxInclusive").value = 1 | |||
lDetailDataSet.EnableControls | |||
lDetailDataSet.FindField("Changed").value = "F" | |||
lDetailDataSet.Post | |||
' | 'For Tax Inclusive = False with override Tax Amount | ||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("Account").value = "500-000" | |||
lDetailDataSet.FindField("Description").value = "Sales Item B" | |||
lDetailDataSet.FindField("Tax").value = "SR" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("Amount").value = 94.43 | |||
lDetailDataSet.FindField("TaxAmt").value = 5.66 | |||
lDetailDataSet.FindField("Changed").value = "F" | |||
lDetailDataSet.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
'Step | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 7,163: | Line 7,473: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AR_IV-Edit==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_IV Edit Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Available in Version 5.2018.833.759 & above | ||
'Copy below script & paste to notepad & name it as eg AR_IV.vbs | |||
Call CheckLogin | Call CheckLogin | ||
Call | Call GetData | ||
Call PostData | |||
Dim ComServer | Dim ComServer, lDataSet | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 7,188: | Line 7,500: | ||
End Function | End Function | ||
Function | Function GetData | ||
Dim lSQL | |||
lSQL = "SELECT Dockey FROM AR_IV " | |||
lSQL = lSQL & "WHERE DocNo='IV-00002' " | |||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | |||
End Function | |||
Function PostData | |||
Dim BizObject, lMain, lDetail | Dim BizObject, lMain, lDetail | ||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("AR_IV") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | ||
Set lDetail = BizObject.DataSets.Find(" | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
'Step 4 : Find Doc Number | |||
If lDataSet.RecordCount > 0 Then | |||
lDataSet.First | |||
BizObject.Params.Find("DocKey").Value = lDataSet.FindField("DocKey").AsString | |||
' | BizObject.Open | ||
lDetail.Append | BizObject.Edit | ||
lDetail.FindField(" | lMain.Edit | ||
lDetail.FindField(" | lMain.FindField("Description").AsString = "Sales - Edited" | ||
lDetail.FindField(" | |||
lDetail.FindField(" | 'Step 5: Delete all Detail | ||
lDetail.FindField(" | While lDetail.RecordCount <> 0 | ||
lDetail.FindField(" | lDetail.First | ||
lDetail.FindField(" | lDetail.Delete | ||
lDetail.FindField(" | Wend | ||
lDetail.FindField(" | 'Step 6: Append Detail | ||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("Account").value = "500-000" | |||
lDetail.FindField("Description").value = "Sales Item A - Edited" | |||
lDetail.FindField("Tax").value = "SR" | |||
lDetail.FindField("TaxRate").value = "6%" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("Amount").value = 100 | |||
lDetail.FindField("TaxAmt").value = 6 | |||
lDetail.DisableControls | |||
lDetail.FindField("TaxInclusive").value = 1 | |||
lDetail.EnableControls | |||
lDetail.FindField("Changed").value = "F" | |||
lDetail.Post | lDetail.Post | ||
MsgBox "Done" | 'Step 7: Save Document | ||
BizObject.Save | |||
BizObject.Close | |||
'Step 8 : Logout after done | |||
'ComServer.Logout | |||
MsgBox "Done" | |||
Else | |||
MsgBox "Record Not Found" | |||
END IF | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 7,246: | Line 7,566: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AR_PM==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_PM Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg AR_PM.vbs | ||
Call | Call PostData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 7,259: | Line 7,579: | ||
End Function | End Function | ||
Function | Function PostData | ||
Dim ComServer, BizObject, | Dim ComServer, BizObject, lIVNo, v(1), lDate | ||
'Step 1 Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ||
END IF | END IF | ||
'Step 2 Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("AR_PM") | ||
'Step 3 Set Dataset | 'Step 3: Set Dataset | ||
Set | Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | ||
Set lDetailDataSet = BizObject.DataSets.Find(" | Set lDetailDataSet = BizObject.DataSets.Find("cdsKnockOff") 'lDetailDataSet contains detail data | ||
'Step 4 | 'Step 4 : Posting | ||
lDate = CDate("January 23, 2017") | |||
BizObject.New | |||
lMain.FindField("DOCKEY").Value = -1 | |||
lMain.FindField("DocNo").AsString = "--PM Test--" | |||
lMain.FindField("CODE").AsString = "300-C0001" | |||
lMain.FindField("DocDate").Value = lDate | |||
lMain.FindField("PostDate").Value = lDate | |||
lMain.FindField("Description").AsString = "Payment for A/c" | |||
lMain.FindField("PaymentMethod").AsString = "310-000" | |||
lMain.FindField("DocAmt").AsFloat = 65.57 | |||
lMain.FindField("Cancelled").AsString = "F" | |||
'Step 5: Knock Off IV | |||
lIVNO = "--IV Test--" | |||
v(0) = "IV" | |||
v(1) = lIVNO | |||
if (lDetailDataSet.Locate("DocType;DocNo", v, false, false)) then | |||
lDetailDataSet.Edit | |||
lDetailDataSet.FindField("KOAmt").value = 65.57 | |||
lDetailDataSet.FindField("KnockOff").AsString = "T" | |||
lDetailDataSet.Post | |||
End IF | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
'END IF | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====AR_PM-Edit==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! AR_PM Edit Script | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
'Copy below script & paste to notepad & name it as eg AR_IV.vbs | |||
Call EditARPM | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
Function EditARPM | |||
Dim ComServer, BizObject, lDataSet, lDataSet2, lDocKey, lDocNo, lIVNo, v(1) | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | |||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | |||
END IF | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("AR_PM") | |||
if (lDetailDataSet.Locate(" | 'Step 3: Set Dataset | ||
Set lMainDataSet = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | |||
Set lDetailDataSet = BizObject.DataSets.Find("cdsKnockOff") 'lDetailDataSet contains detail data | |||
'Step 4 : Find OR Number | |||
lDocNo = "OR-00022" | |||
lDocKey = BizObject.FindKeyByRef("DocNo", lDocNo) | |||
BizObject.Params.Find("DocKey").Value = lDocKey | |||
If not IsNull(lDocKey) Then | |||
BizObject.Open | |||
BizObject.Edit | |||
lMainDataSet.Edit | |||
lMainDataSet.FindField("Description").AsString = "testing" | |||
'Step 5: Knock Off IV | |||
lIVNO = "IV-00006" | |||
v(0) = "IV" | |||
v(1) = lIVNO | |||
if (lDetailDataSet.Locate("DocType;DocNo", v, false, false)) then | |||
lDetailDataSet.Edit | lDetailDataSet.Edit | ||
lDetailDataSet.FindField(" | lDetailDataSet.FindField("KOAmt").value = 50.12 | ||
lDetailDataSet.FindField("KnockOff").AsString = "T" | |||
lDetailDataSet.FindField(" | lDetailDataSet.Post | ||
lDetailDataSet. | MsgBox "yes" | ||
End IF | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
END IF | |||
'Step 6 Save | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 7,323: | Line 7,691: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Customer.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer.RO Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg customer_ro.vbs | ||
Call | Call GetCustomerData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function | Function GetCustomerData | ||
Dim ComServer, RptObject, lDataSet, lDataSet2, lDateFrom, lDateTo | Dim ComServer, RptObject, lDataSet, lDataSet2, lDateFrom, lDateTo | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Line 7,343: | Line 7,711: | ||
ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find(" | Set RptObject = ComServer.RptObjects.Find("Customer.RO") | ||
'Step 3: Spool parameters | 'Step 3: Spool parameters | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllAgent").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllArea").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllCompany").Value = false | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllCompanyCategory").Value = true | ||
RptObject.Params.Find("AllCurrency").Value = true | |||
RptObject.Params.Find(" | RptObject.Params.Find("AllTerms").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("SelectDate").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("PrintActive").Value = true | ||
RptObject.Params.Find("PrintInactive").Value = false | |||
RptObject.Params.Find("PrintPending").Value = false | |||
RptObject.Params.Find("PrintProspect").Value = false | |||
RptObject.Params.Find("PrintSuspend").Value = false | |||
lDateFrom = CDate("January 1, 2000") | |||
RptObject.Params.Find(" | lDateTo = CDate("December 31, 2014") | ||
RptObject.Params.Find(" | |||
RptObject.Params.Find("DateFrom").Value = lDateFrom | |||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
RptObject.Params.Find("CompanyData").Value = "300-A0003" | |||
'Step 4: Perform Report calculation | 'Step 4: Perform Report calculation | ||
RptObject.CalculateReport() | RptObject.CalculateReport() | ||
Set lDataSet = RptObject.DataSets.Find("cdsMain") | Set lDataSet = RptObject.DataSets.Find("cdsMain") | ||
Set lDataSet2 = RptObject.DataSets.Find(" | Set lDataSet2 = RptObject.DataSets.Find("cdsBranch") | ||
MsgBox "Count " & lDataSet.RecordCount | |||
'Step 5 Retrieve the output | 'Step 5 Retrieve the output | ||
lDataSet.First | lDataSet.First | ||
While (not lDataSet.eof) | While (not lDataSet.eof) | ||
MsgBox lDataSet.FindField("Code").AsString & " " & lDataSet.FindField("CompanyName").AsString | |||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox lDataSet2.FindField("Address1").AsString | |||
lDataSet2.Next | |||
Wend | |||
lDataSet.Next | lDataSet.Next | ||
Wend | Wend | ||
End Function | |||
</syntaxhighlight> | |||
End Function | |||
</syntaxhighlight> | |||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
====Customer. | ====Customer.Statement.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! Customer | ! Customer.Statement.RO Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg customer_statement_ro.vbs | ||
Call GetCustStatementData | Call GetCustStatementData | ||
Line 7,423: | Line 7,781: | ||
'Step 2: Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find("Customer. | Set RptObject = ComServer.RptObjects.Find("Customer.Statement.RO") | ||
'Step 3: Spool parameters | 'Step 3: Spool parameters | ||
Line 7,438: | Line 7,796: | ||
"<ROW ColumnNo=" & Quote & "6" & Quote & " ColumnType=" & Quote & "B" & Quote & " Param1=" & Quote & "-999999" & Quote & " Param2=" & Quote & "-5" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & " HeaderScript=" & Quote & "ObjectPascal
begin
Value:= '5 Month & above'
end;" & Quote & "/>" &_ | "<ROW ColumnNo=" & Quote & "6" & Quote & " ColumnType=" & Quote & "B" & Quote & " Param1=" & Quote & "-999999" & Quote & " Param2=" & Quote & "-5" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & " HeaderScript=" & Quote & "ObjectPascal
begin
Value:= '5 Month & above'
end;" & Quote & "/>" &_ | ||
"</ROWDATA></DATAPACKET>" | "</ROWDATA></DATAPACKET>" | ||
' RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is True | ' RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is True | ||
RptObject.Params.Find("AgingData").Value = lAgeData 'Fixed | RptObject.Params.Find("AgingData").Value = lAgeData 'Fixed | ||
RptObject.Params.Find("AgingOn").Value = "I" 'Fixed | RptObject.Params.Find("AgingOn").Value = "I" 'Fixed | ||
RptObject.Params.Find("AllAgent").Value = true | RptObject.Params.Find("AllAgent").Value = true | ||
Line 7,458: | Line 7,811: | ||
' RptObject.Params.Find("ControlAccountData").Value = 'Not use if AllControlAccount is True | ' RptObject.Params.Find("ControlAccountData").Value = 'Not use if AllControlAccount is True | ||
' RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is True | ' RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is True | ||
lDateFrom = CDate("August 1, 2016") | |||
lDateTo = CDate("August 31, 2016") | |||
RptObject.Params.Find("DateFrom").Value = lDateFrom | |||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
' RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is True | ' RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is True | ||
RptObject.Params.Find("IncludeZeroBalance").Value = false | RptObject.Params.Find("IncludeZeroBalance").Value = false | ||
RptObject.Params.Find("SortBy").Value = "Code;CompanyName" | RptObject.Params.Find("SelectDate").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("SortBy").Value = "CompanyCategory;Code;CompanyName;Agent;Area;CurrencyCode;ControlAccount" | ||
RptObject.Params.Find("StatementDate").Value = lDateTo ' Norm same as DateTo | |||
RptObject.Params.Find("StatementType").Value = "O" 'O = Open Item, B = B/F | |||
'Step 4: Perform Report calculation | 'Step 4: Perform Report calculation | ||
Line 7,476: | Line 7,831: | ||
lDataSet.First | lDataSet.First | ||
While (not lDataSet.eof) | While (not lDataSet.eof) | ||
MsgBox lDataSet.FindField("Code").AsString & " " & lDataSet.FindField("CompanyName").AsString & " " & lDataSet.FindField(" | MsgBox lDataSet.FindField("Code").AsString & " " & lDataSet.FindField("CompanyName").AsString & " " & lDataSet.FindField("Balance").AsString | ||
lDataSet2.First | lDataSet2.First | ||
While (not lDataSet2.eof) | While (not lDataSet2.eof) | ||
MsgBox lDataSet2.FindField("DocNo | MsgBox lDataSet2.FindField("DocNo").AsString | ||
lDataSet2.Next | lDataSet2.Next | ||
Wend | Wend | ||
Line 7,490: | Line 7,845: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
====GL. | ====GL.CB.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! GL | ! GL.CB.RO Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg GL.CB.RO.vbs | ||
Call | Call GetCLCBData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function | Function GetCLCBData | ||
Dim ComServer, RptObject, lDataSet, lDataSet2, lDateFrom, lDateTo | Dim ComServer, RptObject, lDataSet, lDataSet2, lDataSet3, lDateFrom, lDateTo | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
Line 7,510: | Line 7,865: | ||
ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find("GL. | Set RptObject = ComServer.RptObjects.Find("GL.CB.RO") | ||
'Step 3: Spool parameters | 'Step 3: Spool parameters | ||
RptObject.Params.Find("AllCurrency").Value = true | RptObject.Params.Find("AllCurrency").Value = true | ||
RptObject.Params.Find("AllDocProject").Value = true | RptObject.Params.Find("AllDocProject").Value = true | ||
RptObject.Params.Find("AllDocument").Value = true | RptObject.Params.Find("AllDocument").Value = true | ||
RptObject.Params.Find("AllItemProject").Value = true | RptObject.Params.Find("AllItemProject").Value = true | ||
RptObject.Params.Find("AllItemArea").Value = true | RptObject.Params.Find("AllItemArea").Value = true | ||
RptObject.Params.Find("AllItemAgent").Value = true | RptObject.Params.Find("AllItemAgent").Value = true | ||
RptObject.Params.Find("AllDocAgent").Value = true | RptObject.Params.Find("AllDocAgent").Value = true | ||
RptObject.Params.Find("AllDocArea").Value = true | RptObject.Params.Find("AllDocArea").Value = true | ||
RptObject.Params.Find("AllPaymentMethod").Value = true | RptObject.Params.Find("AllPaymentMethod").Value = false | ||
'RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is true | |||
lDateFrom = CDate(" | |||
lDateFrom = CDate("January 01, 2017") | |||
lDateTo = CDate("December 31, 2017") | lDateTo = CDate("December 31, 2017") | ||
RptObject.Params.Find("DateFrom").Value = lDateFrom | 'For Post Date From & Date To' | ||
RptObject.Params.Find(" | RptObject.Params.Find("DateFrom").Value = lDateFrom | ||
RptObject.Params.Find(" | RptObject.Params.Find("DateTo").Value = lDateTo | ||
RptObject.Params.Find(" | |||
'RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is true | |||
'RptObject.Params.Find("DocAreaData").Value = 'Not use if AllDocArea is true | |||
'RptObject.Params.Find("DocAgentData").Value = 'Not use if AllDocAgent is true | |||
'RptObject.Params.Find("ItemAgentData").Value = 'Not use if AllItemAgent is true | |||
RptObject.Params.Find("DocType").Value = "PV" 'PV for Payment Voucher & OR for Official Receipt | |||
'RptObject.Params.Find("DocumentData").Value = 'Not use if AllDocument is true | |||
'RptObject.Params.Find("GroupBy").Value = 'If you wanted to grouping the data | |||
RptObject.Params.Find("IncludeCancelled").Value = false | RptObject.Params.Find("IncludeCancelled").Value = false | ||
'RptObject.Params.Find("ItemAreaData").Value = 'Not use if AllItemArea is true | |||
'RptObject.Params.Find("ItemProjectData").Value = 'Not use if AllItemProject is true | |||
RptObject.Params.Find("PaymentMethodData").Value = "310-001" | |||
RptObject.Params.Find("PrintDocumentStyle").Value = false | RptObject.Params.Find("PrintDocumentStyle").Value = false | ||
RptObject.Params.Find("SelectDate").Value = true 'Post Date | RptObject.Params.Find("SelectDate").Value = true 'For Post Date | ||
RptObject.Params.Find("SelectDocDate").Value = | 'RptObject.Params.Find("SelectDocDate").Value = 'For Doc Date | ||
RptObject.Params.Find("SortBy").Value = "PostDate;DocNo" | |||
'Step 4: Perform Report calculation | 'Step 4: Perform Report calculation | ||
RptObject.CalculateReport() | RptObject.CalculateReport() | ||
Set lDataSet = RptObject.DataSets.Find("cdsMain") | Set lDataSet = RptObject.DataSets.Find("cdsMain") | ||
Set lDataSet2 = RptObject.DataSets.Find("cdsDetail") | Set lDataSet2 = RptObject.DataSets.Find("cdsDetail") | ||
Set lDataSet3 = RptObject.DataSets.Find("cdsTax") | |||
MsgBox "Count " & lDataSet.RecordCount | MsgBox "Count " & lDataSet.RecordCount | ||
'Step 5 Retrieve the output | 'Step 5 Retrieve the output | ||
lDataSet.First | lDataSet.First | ||
Line 7,553: | Line 7,921: | ||
Wend | Wend | ||
lDataSet.Next | lDataSet.Next | ||
Wend | |||
'For GST List | |||
MsgBox "GST Code Count " & lDataSet3.RecordCount | |||
lDataSet3.First | |||
While (not lDataSet3.eof) | |||
MsgBox lDataSet3.FindField("Code").AsString | |||
lDataSet3.Next | |||
Wend | Wend | ||
End Function | End Function | ||
Line 7,560: | Line 7,935: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AR_Customer==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_Customer - Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg AR_Customer.vbs | ||
Call CheckLogin | |||
Call InsertData | Call InsertData | ||
Dim ComServer | |||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 7,573: | Line 7,951: | ||
End Function | End Function | ||
function CheckLogin | |||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ||
'UserName, Password, DCF full path, Database filename | |||
END IF | END IF | ||
End Function | |||
Function InsertData | |||
Dim BizObject, lMain, lDetail | |||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("AR_Customer") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Set | Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | ||
Set | Set lDetail = BizObject.DataSets.Find("cdsBranch") 'lDetail contains detail data | ||
'Begin Looping yr data | |||
'Step 4 : Insert Data - Master | 'Step 4 : Insert Data - Master | ||
BizObject.New | BizObject.New | ||
lMain.FindField("Code").AsString = "300-Test" | |||
lMain.FindField("CompanyName").AsString = "Cash Sales" | |||
'Step 5: Insert Data - Detail | 'Step 5: Insert Data - Detail | ||
'For | 'For 1st Branch | ||
lDetail.Edit | |||
lDetail.FindField("BranchName").AsString = "BILLING" | |||
lDetail.FindField("Address1").AsString = "Address1" | |||
lDetail.FindField("Address2").AsString = "Address2" | |||
lDetail.FindField("Address3").AsString = "Address3" | |||
lDetail.FindField("Address4").AsString = "Address4" | |||
lDetail.FindField("Attention").AsString = "Attention" | |||
lDetail.FindField("Phone1").AsString = "Phone1" | |||
lDetail.FindField("Fax1").AsString = "Fax1" | |||
lDetail.FindField("Email").AsString = "EmailAddress" | |||
lDetail.Post | |||
'For 2nd Branch | |||
lDetail.Append | |||
lDetail.FindField("BranchName").AsString = "Branch1" | |||
lDetail.FindField("Address1").AsString = "DAddress1" | |||
lDetail.FindField("Address2").AsString = "DAddress2" | |||
lDetail.FindField("Address3").AsString = "DAddress3" | |||
lDetail.FindField("Address4").AsString = "DAddress4" | |||
lDetail.FindField("Attention").AsString = "DAttention" | |||
lDetail.FindField("Phone1").AsString = "DPhone1" | |||
lDetail.FindField("Fax1").AsString = "DFax1" | |||
lDetail.FindField("Email").AsString = "DEmailAddress" | |||
lDetail.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
'End Looping yr data | |||
'Step 7 : Logout after done | |||
'ComServer.Logout | |||
MsgBox "Done" | |||
End Function | |||
</syntaxhighlight> | |||
MsgBox "Done" | |||
End Function | |||
</syntaxhighlight> | |||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AR_Customer-Edit==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_Customer - Edit Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg AR_Customer.vbs | ||
Call | Call EditARCustomer | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 7,671: | Line 8,031: | ||
End Function | End Function | ||
Function | Function EditARCustomer | ||
Dim ComServer, | Dim ComServer, BizObject, lDataSet, lDataSet2 | ||
'Step 1 | |||
'Step 1 Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C | ComServer.Login "ADMIN", "ADMIN", "C\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ||
END IF | END IF | ||
'Step 2 | 'Step 2 Find and Create the Biz Objects | ||
Set | Set BizObject = ComServer.BizObjects.Find("AR_Customer") | ||
'Step 3 | 'Step 3 Set Dataset | ||
Set lMainDataSet = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | |||
Set lDetailDataSet = BizObject.DataSets.Find("cdsBranch") 'lDetailDataSet contains detail data | |||
'Step 4 Find Customer Code | |||
BizObject.Params.Find("Code").Value = "300-Test" | |||
BizObject.Open | |||
BizObject.Edit | |||
lMainDataSet.Edit | |||
lMainDataSet.FindField("CompanyName").value = "Testing 123-Changed" | |||
' | |||
'Step 5 | 'Step 5 For 1st Branch | ||
v = "BILLING" | |||
Function CreateSQLAccServer | if (lDetailDataSet.Locate("BranchName", v, false, false)) then | ||
lDetailDataSet.Edit | |||
lDetailDataSet.FindField("Address1").AsString = "Address1-Changed" | |||
lDetailDataSet.FindField("Address2").AsString = "Address2-Changed" | |||
lDetailDataSet.FindField("Address3").AsString = "Address3-Changed" | |||
lDetailDataSet.FindField("Address4").AsString = "Address4-Changed" | |||
lDetailDataSet.FindField("Attention").AsString = "Attention-Changed" | |||
lDetailDataSet.FindField("Phone1").AsString = "Phone1-Changed" | |||
lDetailDataSet.FindField("Fax1").AsString = "Fax1-Changed" | |||
lDetailDataSet.FindField("Email").AsString = "EmailAddress-Changed" | |||
lDetailDataSet.Post | |||
end if | |||
'Step 5 For 2nd Branch | |||
v = "Branch1" | |||
if (lDetailDataSet.Locate("BranchName", v, false, false)) then | |||
lDetailDataSet.Edit | |||
lDetailDataSet.FindField("Address1").AsString = "DAddress1-Changed" | |||
lDetailDataSet.FindField("Address2").AsString = "DAddress2-Changed" | |||
lDetailDataSet.FindField("Address3").AsString = "DAddress3-Changed" | |||
lDetailDataSet.FindField("Address4").AsString = "DAddress4-Changed" | |||
lDetailDataSet.FindField("Attention").AsString = "DAttention-Changed" | |||
lDetailDataSet.FindField("Phone1").AsString = "DPhone1-Changed" | |||
lDetailDataSet.FindField("Fax1").AsString = "DFax1-Changed" | |||
lDetailDataSet.FindField("Email").AsString = "DEmailAddress-Changed" | |||
lDetailDataSet.Post | |||
end IF | |||
'Step 6 Save Customer | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====GL.TrialBalance.RO==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! GL Trial Balance Report Object Script | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
'Copy below script & paste to notepad & name it as eg GL.TrialBalance.RO.vbs | |||
Call GetGLTBData | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function | Function GetGLTBData | ||
Dim ComServer, RptObject, lDataSet, lDataSet2 | Dim ComServer, RptObject, lDataSet, lDataSet2, lDateFrom, lDateTo | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
Line 7,767: | Line 8,117: | ||
'Step 2: Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find(" | Set RptObject = ComServer.RptObjects.Find("GL.TrialBalance.RO") | ||
'Step 3: Spool parameters | 'Step 3: Spool parameters | ||
RptObject.Params.Find("AllProject").Value = true | |||
RptObject.Params.Find("AllAgent").Value | RptObject.Params.Find("AllAgent").Value = true | ||
RptObject.Params.Find("AllArea").Value | RptObject.Params.Find("AllArea").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("LedgerType").Value = "G" 'G = Legder, S = Debtor, P = Supplier | ||
'RptObject.Params.Find("ProjectData").Value = 'Not use if AllArea is true | |||
RptObject.Params.Find(" | RptObject.Params.Find("ShowZeroBalance").Value = false | ||
RptObject.Params.Find(" | RptObject.Params.Find("SortBy").Value = "PostDate;DocNo" | ||
RptObject.Params.Find(" | RptObject.Params.Find("UseDescription2").Value = false | ||
RptObject.Params.Find(" | lDateFrom = CDate("October 27, 2016") | ||
lDateTo = CDate("December 31, 2016") | |||
'For Post Date From & Date To' | |||
RptObject.Params.Find("DateFrom").Value = lDateFrom | |||
' | RptObject.Params.Find("DateTo").Value = lDateTo | ||
RptObject.Params.Find(" | |||
'RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is true | |||
'RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is true | |||
'RptObject.Params.Find(" | |||
'RptObject.Params.Find(" | |||
RptObject.Params.Find("SortBy").Value = "Code;Description" | |||
'Step 4: Perform Report calculation | 'Step 4: Perform Report calculation | ||
RptObject.CalculateReport() | RptObject.CalculateReport() | ||
Set lDataSet = RptObject.DataSets.Find("cdsMain") | Set lDataSet = RptObject.DataSets.Find("cdsMain") | ||
Set lDataSet2 = RptObject.DataSets.Find(" | Set lDataSet2 = RptObject.DataSets.Find("cdsGLAccount") | ||
MsgBox "Count " & lDataSet.RecordCount | MsgBox "Count " & lDataSet.RecordCount | ||
Line 7,822: | Line 8,151: | ||
lDataSet.First | lDataSet.First | ||
While (not lDataSet.eof) | While (not lDataSet.eof) | ||
MsgBox lDataSet.FindField(" | MsgBox "Month To Date" | ||
MsgBox " | MsgBox lDataSet.FindField("Code").AsString & " DR=>" & lDataSet.FindField("MTDDR").AsString & " CR=>" & lDataSet.FindField("MTDCR").AsString | ||
MsgBox "Year To Date" | |||
MsgBox lDataSet.FindField("Code").AsString & " DR=>" & lDataSet.FindField("YTDDR").AsString & " CR=>" & lDataSet.FindField("YTDCR").AsString | |||
lDataSet.Next | lDataSet.Next | ||
Wend | Wend | ||
'For Account List | |||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox lDataSet2.FindField("Code").AsString & " " & lDataSet2.FindField("Description").AsString | |||
lDataSet2.Next | |||
Wend | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 7,837: | Line 8,172: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
====Customer. | ====Customer.Aging.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! Customer | ! Customer Aging Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg customer_aging_ro.vbs | ||
Call | Call GetCustStatementData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function | Function GetCustStatementData | ||
Dim ComServer, RptObject, lDataSet, lDateTo | Const Quote = """" | ||
Dim ComServer, RptObject, lDataSet, lDataSet2, lDateFrom, lDateTo, lAgeData | |||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
Line 7,857: | Line 8,193: | ||
ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find("Customer. | Set RptObject = ComServer.RptObjects.Find("Customer.Aging.RO") | ||
'Step 3: Spool parameters | 'Step 3: Spool parameters | ||
lAgeData = "<?xml version=" & Quote & "1.0" & Quote & " standalone=" & Quote & "yes" & Quote & "?> <DATAPACKET Version=" & Quote & "2.0" & Quote & "><METADATA><FIELDS>" &_ | |||
RptObject.Params.Find(" | "<FIELD attrname=" & Quote & "ColumnNo" & Quote & " fieldtype=" & Quote & "i4" & Quote & " required=" & Quote & "true" & Quote & "/><FIELD attrname=" & Quote & "ColumnType" & Quote & " fieldtype=" & Quote & "string" & Quote & " WIDTH=" & Quote & "1" & Quote & "/>" &_ | ||
"<FIELD attrname=" & Quote & "Param1" & Quote & " fieldtype=" & Quote & "i4" & Quote & " required=" & Quote & "true" & Quote & "/><FIELD attrname=" & Quote & "Param2" & Quote & " fieldtype=" & Quote & "i4" & Quote & " required=" & Quote & "true" & Quote & "/>" &_ | |||
RptObject.Params.Find(" | "<FIELD attrname=" & Quote & "IsLocal" & Quote & " fieldtype=" & Quote & "boolean" & Quote & "/><FIELD attrname=" & Quote & "HeaderScript" & Quote & " fieldtype=" & Quote & "bin.hex" & Quote & " SUBTYPE=" & Quote & "Text" & Quote & " WIDTH=" & Quote & "1" & Quote & "/>" &_ | ||
RptObject.Params.Find(" | "</FIELDS><PARAMS/></METADATA><ROWDATA><ROW ColumnNo=" & Quote & "0" & Quote & " ColumnType=" & Quote & "" & Quote & " Param1=" & Quote & "0" & Quote & " Param2=" & Quote & "0" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & "/>" &_ | ||
RptObject.Params.Find(" | "<ROW ColumnNo=" & Quote & "1" & Quote & " ColumnType=" & Quote & "A" & Quote & " Param1=" & Quote & "0" & Quote & " Param2=" & Quote & "0" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & " HeaderScript=" & Quote & "ObjectPascal
begin
Value:= 'Current Mth'
end;" & Quote & "/>" &_ | ||
RptObject.Params.Find(" | "<ROW ColumnNo=" & Quote & "2" & Quote & " ColumnType=" & Quote & "A" & Quote & " Param1=" & Quote & "-1" & Quote & " Param2=" & Quote & "-1" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & " HeaderScript=" & Quote & "ObjectPascal
begin
Value:= '1 Months'
end;" & Quote & "/>" &_ | ||
RptObject.Params.Find(" | "<ROW ColumnNo=" & Quote & "3" & Quote & " ColumnType=" & Quote & "A" & Quote & " Param1=" & Quote & "-2" & Quote & " Param2=" & Quote & "-2" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & " HeaderScript=" & Quote & "ObjectPascal
begin
Value:= '2 Months'
end;" & Quote & "/>" &_ | ||
"<ROW ColumnNo=" & Quote & "4" & Quote & " ColumnType=" & Quote & "A" & Quote & " Param1=" & Quote & "-3" & Quote & " Param2=" & Quote & "-3" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & " HeaderScript=" & Quote & "ObjectPascal
begin
Value:= '3 Months'
end;" & Quote & "/>" &_ | |||
"<ROW ColumnNo=" & Quote & "5" & Quote & " ColumnType=" & Quote & "A" & Quote & " Param1=" & Quote & "-4" & Quote & " Param2=" & Quote & "-4" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & " HeaderScript=" & Quote & "ObjectPascal
begin
Value:= '4 Months'
end;" & Quote & "/>" &_ | |||
RptObject.Params.Find(" | "<ROW ColumnNo=" & Quote & "6" & Quote & " ColumnType=" & Quote & "B" & Quote & " Param1=" & Quote & "-999999" & Quote & " Param2=" & Quote & "-5" & Quote & " IsLocal=" & Quote & "FALSE" & Quote & " HeaderScript=" & Quote & "ObjectPascal
begin
Value:= '5 Month & above'
end;" & Quote & "/>" &_ | ||
"</ROWDATA></DATAPACKET>" | |||
RptObject.Params.Find("ActualGroupBy").Value = "Code;CompanyName" 'Fixed | |||
' RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is True | |||
RptObject.Params.Find("AgingData").Value = lAgeData 'Fixed | |||
RptObject.Params.Find(" | |||
lDateTo = CDate("August 31, 2016") | |||
RptObject.Params.Find("AgingDate").Value = lDateTo | |||
RptObject.Params.Find(" | RptObject.Params.Find("AgingOn").Value = "I" 'Fixed | ||
RptObject.Params.Find("AllAgent").Value = true | |||
RptObject.Params.Find(" | RptObject.Params.Find("AllArea").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllCompany").Value = false | ||
RptObject.Params.Find("SortBy").Value | RptObject.Params.Find("AllCompanyCategory").Value = true | ||
RptObject.Params.Find("AllControlAccount").Value = true | |||
RptObject.Params.Find("AllCurrency").Value = true | |||
RptObject.Params.Find("AllDocProject").Value = true | |||
RptObject.Params.Find("DateTo").Value | ' RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is True | ||
' RptObject.Params.Find("CompanyCategoryData").Value = 'Not use if AllCompanyCategory is True | |||
RptObject.Params.Find("CompanyData").Value = "300-A0001"& vbCRLF & "300-C0001" 'Filter by Customer Code 300-A0001 & 300-C0001 | |||
' RptObject.Params.Find("ControlAccountData").Value = 'Not use if AllControlAccount is True | |||
' RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is True | |||
' RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is True | |||
RptObject.Params.Find("FilterPostDate").Value = false | |||
' RptObject.Params.Find("GroupBy").Value = 'Not use | |||
RptObject.Params.Find("IncludePDC").Value = false | |||
RptObject.Params.Find("IncludeZeroBalance").Value = false | |||
RptObject.Params.Find("SortBy").Value = "Code;CompanyName" | |||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
'Step 4: Perform Report calculation | 'Step 4: Perform Report calculation | ||
RptObject.CalculateReport() | RptObject.CalculateReport() | ||
Set lDataSet = RptObject.DataSets.Find("cdsMain") | Set lDataSet = RptObject.DataSets.Find("cdsMain") | ||
Set lDataSet2 = RptObject.DataSets.Find("cdsDocument") | |||
MsgBox "Count " & lDataSet.RecordCount | MsgBox "Count " & lDataSet.RecordCount | ||
'Step 5 Retrieve the output | 'Step 5 Retrieve the output | ||
lDataSet.First | lDataSet.First | ||
While (not lDataSet.eof) | While (not lDataSet.eof) | ||
MsgBox | MsgBox lDataSet.FindField("Code").AsString & " " & lDataSet.FindField("CompanyName").AsString & " " & lDataSet.FindField("C1").AsString | ||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox | MsgBox lDataSet2.FindField("DocNo").AsString & " " & lDataSet2.FindField("C1").AsString | ||
lDataSet2.Next | |||
Wend | |||
lDataSet.Next | lDataSet.Next | ||
Wend | Wend | ||
Line 7,913: | Line 8,262: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====GL.JE.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! GL Journal Voucher Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg GLJE_ro.vbs | ||
Call | Call GetCustomerData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function | Function GetCustomerData | ||
Dim ComServer, RptObject, lDataSet, lDataSet2 | Dim ComServer, RptObject, lDataSet, lDataSet2, lDateFrom, lDateTo | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
Line 7,933: | Line 8,282: | ||
ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find(" | Set RptObject = ComServer.RptObjects.Find("GL.JE.RO") | ||
'Step 3: Spool parameters | 'Step 3: Spool parameters | ||
RptObject.Params.Find("AllCurrency").Value = true | |||
RptObject.Params.Find("AllDocProject").Value = true | |||
RptObject.Params.Find(" | RptObject.Params.Find("AllDocument").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllItemProject").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllItemArea").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllItemAgent").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllDocAgent").Value = true | ||
RptObject.Params.Find(" | RptObject.Params.Find("AllDocArea").Value = true | ||
RptObject.Params.Find("AllPaymentMethod").Value | RptObject.Params.Find("AllPaymentMethod").Value = true | ||
lDateFrom = CDate("December 1, 2017") | |||
lDateFrom = CDate(" | |||
lDateTo = CDate("December 31, 2017") | lDateTo = CDate("December 31, 2017") | ||
RptObject.Params.Find("DateFrom").Value = lDateFrom | |||
RptObject.Params.Find("DocDateFrom").Value = lDateFrom | |||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
RptObject.Params.Find("DocDateTo").Value = lDateTo | |||
RptObject.Params.Find("IncludeCancelled").Value = false | |||
RptObject.Params.Find("PrintDocumentStyle").Value = false | |||
RptObject.Params.Find("SelectDate").Value = true 'Post Date | |||
RptObject.Params.Find("SelectDocDate").Value = false 'Doc Date | |||
'Step 4: Perform Report calculation | 'Step 4: Perform Report calculation | ||
RptObject.CalculateReport() | RptObject.CalculateReport() | ||
Set lDataSet = RptObject.DataSets.Find("cdsMain") | Set lDataSet = RptObject.DataSets.Find("cdsMain") | ||
Set lDataSet2 = RptObject.DataSets.Find(" | Set lDataSet2 = RptObject.DataSets.Find("cdsDetail") | ||
MsgBox "Count " & lDataSet.RecordCount | MsgBox "Count " & lDataSet.RecordCount | ||
'Step 5 Retrieve the output | 'Step 5 Retrieve the output | ||
lDataSet.First | lDataSet.First | ||
While (not lDataSet.eof) | While (not lDataSet.eof) | ||
MsgBox | MsgBox lDataSet.FindField("DocNo").AsString & " " & lDataSet.FindField("Description").AsString | ||
lDataSet2.First | lDataSet2.First | ||
While (not lDataSet2.eof) | While (not lDataSet2.eof) | ||
MsgBox | MsgBox lDataSet2.FindField("Code").AsString & " " & lDataSet2.FindField("Description").AsString | ||
lDataSet2.Next | lDataSet2.Next | ||
Wend | Wend | ||
lDataSet.Next | lDataSet.Next | ||
Wend | Wend | ||
Line 7,998: | Line 8,332: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====SL_CS==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! SL_CS Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg SL_CS.vbs | ||
Call | Call InsertData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function | Function InsertData | ||
Dim ComServer, | Dim ComServer, BizObject, lDate | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\ | ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("SL_CS") | |||
'Step 3: Set Dataset | |||
Set lMainDataSet = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | |||
Set lDetailDataSet = BizObject.DataSets.Find("cdsDocDetail") 'lDetailDataSet contains detail data | |||
'Step 4 : Insert Data - Master | |||
lDate = CDate("January 1, 2016") | |||
BizObject.New | |||
lMainDataSet.FindField("DocKey").value = -1 | |||
lMainDataSet.FindField("DocNo").value = "--IV Test--" | |||
lMainDataSet.FindField("DocDate").value = lDate | |||
lMainDataSet.FindField("PostDate").value = lDate | |||
lMainDataSet.FindField("Code").value = "300-C0001" 'Customer Code | |||
lMainDataSet.FindField("Description").value = "Sales" | |||
'Step 5: Insert Data - Detail | |||
'For Tax Inclusive = True with override Tax Amount | |||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("Account").value = "500-000" 'Sales Account Code & can ignore if had itemcode | |||
lDetailDataSet.FindField("Description").value = "Sales Item A" | |||
lDetailDataSet.FindField("Qty").value = 1 | |||
lDetailDataSet.FindField("Tax").value = "SR" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("UnitPrice").value = 410.37 | |||
lDetailDataSet.FindField("Amount").value = 410.37 | |||
lDetailDataSet.FindField("TaxAmt").value = 24.63 | |||
lDetailDataSet.DisableControls | |||
lDetailDataSet.FindField("TaxInclusive").value = 1 | |||
lDetailDataSet.EnableControls | |||
lDetailDataSet.Post | |||
' | 'For Tax Inclusive = False with override Tax Amount | ||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("Account").value = "500-000" | |||
lDetailDataSet.FindField("Description").value = "Sales Item B" | |||
lDetailDataSet.FindField("Qty").value = 1 | |||
lDetailDataSet.FindField("Tax").value = "SR" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("UnitPrice").value = 94.43 | |||
lDetailDataSet.FindField("Amount").value = 94.43 | |||
lDetailDataSet.FindField("TaxAmt").value = 5.66 | |||
lDetailDataSet.Post | |||
'For With Item Code | |||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("ItemCode").value = "ANT" | |||
lDetailDataSet.FindField("Description").value = "Sales Item B" | |||
lDetailDataSet.FindField("Qty").value = 2 | |||
lDetailDataSet.FindField("Tax").value = "SR" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("UnitPrice").value = 100 | |||
lDetailDataSet.FindField("Amount").value = 200 | |||
lDetailDataSet.FindField("TaxAmt").value = 12 | |||
lDetailDataSet.Post | |||
'Step | 'Step 6: Save Document | ||
BizObject.Save | |||
BizObject.Close | |||
ComServer.Logout | |||
MsgBox " | MsgBox "Done" | ||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 8,105: | Line 8,430: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Customer.PM.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer.PM.RO Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg Customer.PM.RO.vbs | ||
Call | Call GetARPMData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 8,118: | Line 8,443: | ||
End Function | End Function | ||
Function | Function GetARPMData | ||
Dim ComServer, RptObject, | Dim ComServer, RptObject, lDataSet, lDataSet2, lDataSet3, lDateFrom, lDateTo | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
Line 8,127: | Line 8,452: | ||
'Step 2: Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find(" | Set RptObject = ComServer.RptObjects.Find("Customer.PM.RO") | ||
'Step 3: Spool parameters | |||
'Step | 'RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is true | ||
'RptObject.Params.Find("CompanyCategoryData").Value = 'Not use if AllCompanyCategory is true | |||
RptObject.Params.Find("AllAgent").Value = true | |||
RptObject.Params.Find("AllCompanyCategory").Value = true | |||
RptObject.Params.Find("AllArea").Value = true | |||
RptObject.Params.Find("AllCompany").Value = true | |||
RptObject.Params.Find("AllCurrency").Value = true | |||
RptObject.Params.Find("AllDocument").Value = false | |||
RptObject.Params.Find("AllPaymentMethod").Value = true | |||
'RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is true | |||
'RptObject.Params.Find("CompanyData").Value = 'Not use if AllCompany is true | |||
'RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is true | |||
lDateFrom = CDate("January 01, 2017") | |||
lDateTo = CDate("December 31, 2017") | |||
RptObject.Params.Find("DateFrom").Value = lDateFrom | |||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
RptObject.Params.Find("DocumentData").Value = "VCOR-00049" | |||
'RptObject.Params.Find("GroupBy").Value = 'If you wanted to grouping the data | |||
RptObject.Params.Find("IncludeCancelled").Value = false | |||
'RptObject.Params.Find("PaymentMethodData").Value = 'Not use if AllPaymentMethod is true | |||
RptObject.Params.Find("PrintDocumentStyle").Value = false | |||
RptObject.Params.Find("SelectDate").Value = true | |||
RptObject.Params.Find("ShowUnappliedAmountOnly").Value = false | |||
RptObject.Params.Find("SortBy").Value = "PostDate;DocNo;Code" | |||
RptObject.Params.Find("AllDocProject").Value = true | |||
RptObject.Params.Find("AllItemProject").Value = true | |||
'RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is true | |||
'RptObject.Params.Find("ItemProjectData").Value = 'Not use if AllItemProject is true | |||
'Step 4: Perform Report calculation | |||
RptObject.CalculateReport() | RptObject.CalculateReport() | ||
Set | Set lDataSet = RptObject.DataSets.Find("cdsMain") | ||
Set lDataSet2 = RptObject.DataSets.Find(" | Set lDataSet2 = RptObject.DataSets.Find("cdsKnockOff") | ||
Set lDataSet3 = RptObject.DataSets.Find("cdsKnockOffDetail") | |||
MsgBox "Count " & | MsgBox "Count " & lDataSet.RecordCount | ||
'Step 5 Retrieve the output | 'Step 5 Retrieve the output | ||
lDataSet.First | |||
While (not | While (not lDataSet.eof) | ||
MsgBox lDataSet.FindField("DocKey").AsString & " " & lDataSet.FindField("DocNo").AsString & " " & lDataSet.FindField("Code").AsString | |||
MsgBox "cdsKnockOff Count " & lDataSet2.RecordCount | |||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox lDataSet2.FindField("FromDocKey").AsString & " " & lDataSet2.FindField("DocNo").AsString & " " & lDataSet2.FindField("KOAmt").AsString | |||
lDataSet2.Next | |||
Wend | |||
MsgBox "cdsKnockOffDetail Count " & lDataSet3.RecordCount | |||
lDataSet3.First | |||
MsgBox " | While (not lDataSet3.eof) | ||
MsgBox lDataSet3.FindField("FromDocKey").AsString & " " & lDataSet3.FindField("DocNo").AsString & " " & lDataSet3.FindField("KOAmt").AsString | |||
Wend | lDataSet3.Next | ||
Wend | |||
lDataSet.Next | |||
Wend | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 8,158: | Line 8,517: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Sales.IV.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Sales.IV.RO Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg Sales.IV.RO.vbs | ||
Call | Call GetSalesIVData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 8,171: | Line 8,530: | ||
End Function | End Function | ||
Function | Function GetSalesIVData | ||
Dim ComServer, RptObject, | Dim ComServer, RptObject, lDataSet, lDataSet2, lDataSet3, lDateFrom, lDateTo | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
Line 8,180: | Line 8,539: | ||
'Step 2: Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find(" | Set RptObject = ComServer.RptObjects.Find("Sales.IV.RO") | ||
'Step 3: Spool parameters | |||
'Step 3: | 'RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is true | ||
RptObject. | RptObject.Params.Find("AllAgent").Value = true | ||
RptObject.Params.Find("AllArea").Value = true | |||
RptObject.Params.Find("AllCompany").Value = false | |||
RptObject.Params.Find("AllCurrency").Value = true | |||
RptObject.Params.Find("AllDocProject").Value = true | |||
RptObject.Params.Find("AllDocument").Value = true | |||
RptObject.Params.Find("AllItem").Value = true | |||
RptObject.Params.Find("AllItemProject").Value = true | |||
RptObject.Params.Find("AllLocation").Value = true | |||
RptObject.Params.Find("AllStockGroup").Value = true | |||
RptObject.Params.Find("AllCompanyCategory").Value = true | |||
RptObject.Params.Find("AllBatch").Value = true | |||
RptObject.Params.Find("AllTariff").Value = true 'For Version 776 & above | |||
'RptObject.Params.Find("TariffData").Value = 'Not use if TariffData is true - For Version 776 & above | |||
'RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is true | |||
'RptObject.Params.Find("CompanyCategoryData").Value = 'Not use if AllCompanyCategory is true | |||
RptObject.Params.Find("CompanyData").Value = "300-C0001" | |||
'RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is true | |||
lDateFrom = CDate("January 01, 2017") | |||
lDateTo = CDate("December 31, 2017") | |||
MsgBox "Count " & | RptObject.Params.Find("DateFrom").Value = lDateFrom | ||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
'Step 5 Retrieve the output | 'RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is true | ||
'RptObject.Params.Find("DocumentData").Value = 'Not use if AllDocument is true | |||
While (not | 'RptObject.Params.Find("GroupBy").Value = 'If you wanted to grouping the data | ||
'RptObject.Params.Find("CategoryData").Value = 'Not use if HasCategory is false | |||
MsgBox " | 'RptObject.Params.Find("CategoryTpl").Value = 'For Internal use only | ||
RptObject.Params.Find("IncludeCancelled").Value = false | |||
Wend | RptObject.Params.Find("HasCategory").Value = false | ||
'RptObject.Params.Find("ItemData").Value = 'Not use if AllItem is true | |||
'RptObject.Params.Find("ItemProjectData").Value = 'Not use if AllItemProject is true | |||
'RptObject.Params.Find("LocationData").Value = 'Not use if AllLocation is true | |||
'RptObject.Params.Find("ItemCategoryData").Value = 'For Internal use only | |||
'RptObject.Params.Find("BatchData").Value = 'Not use if AllBatch is true | |||
RptObject.Params.Find("PrintDocumentStyle").Value = false | |||
RptObject.Params.Find("SelectDate").Value = true | |||
RptObject.Params.Find("SortBy").Value = "PostDate;DocNo;Code" | |||
'RptObject.Params.Find("StockGroupData").Value = 'Not use if AllStockGroup is true | |||
'Step 4: Perform Report calculation | |||
RptObject.CalculateReport() | |||
Set lDataSet = RptObject.DataSets.Find("cdsMain") | |||
Set lDataSet2 = RptObject.DataSets.Find("cdsDocDetail") | |||
MsgBox "Count " & lDataSet.RecordCount | |||
'Step 5 Retrieve the output | |||
lDataSet.First | |||
While (not lDataSet.eof) | |||
MsgBox lDataSet.FindField("DocKey").AsString & " " & lDataSet.FindField("DocNo").AsString & " " & lDataSet.FindField("Code").AsString | |||
MsgBox "cdsDocDetail Count " & lDataSet2.RecordCount | |||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox lDataSet2.FindField("DocKey").AsString & " " & lDataSet2.FindField("ItemCode").AsString & " " & lDataSet2.FindField("Amount").AsString | |||
lDataSet2.Next | |||
Wend | |||
lDataSet.Next | |||
Wend | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 8,202: | Line 8,609: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Customer.DueDocument.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer.DueDocument.RO Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg Customer.DueDocument.RO.vbs | ||
Call | Call GetData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 8,215: | Line 8,622: | ||
End Function | End Function | ||
Function | Function GetData | ||
Dim ComServer, RptObject, | Dim ComServer, RptObject, lDataSet, lDateTo | ||
'Step 1 Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C\DB\SQLAcc.DCF", "ACC-0002.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2 Find and Create the Report Objects | 'Step 2: Find and Create the Report Objects | ||
Set RptObject = ComServer.RptObjects.Find(" | Set RptObject = ComServer.RptObjects.Find("Customer.DueDocument.RO") | ||
'Step 3 Spool parameters | 'Step 3: Spool parameters | ||
'RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is true | |||
RptObject.Params.Find(" | RptObject.Params.Find("AllAgent").Value = true | ||
RptObject.Params.Find("AllArea").Value = true | |||
RptObject.Params.Find("AllCompany").Value = false | |||
RptObject.Params.Find("AllCompanyCategory").Value = true | |||
RptObject.Params.Find("AllCurrency").Value = true | |||
RptObject.Params.Find("AllDocProject").Value = true | |||
RptObject.Params.Find("AllItemProject").Value = true | |||
'RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is true | |||
'RptObject.Params.Find("CompanyCategoryData").Value = 'Not use if AllCompanyCategory is true | |||
RptObject.Params.Find("CompanyData").Value = "300-A0003" | |||
'RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is true | |||
'RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is true | |||
'RptObject.Params.Find("GroupBy").Value = 'If you wanted to grouping the data | |||
'RptObject.Params.Find("ItemProjectData").Value = 'Not use if AllItemProject is true | |||
RptObject.Params.Find("PrintContra").Value = true | |||
RptObject.Params.Find("PrintCreditNote").Value = true | |||
RptObject.Params.Find("PrintDebitNote").Value = true | |||
RptObject.Params.Find("PrintInvoice").Value = true | |||
RptObject.Params.Find("PrintOverDue").Value = true | |||
RptObject.Params.Find("PrintUnDue").Value = true | |||
RptObject.Params.Find("ShowForeignCurrency").Value = true | |||
RptObject.Params.Find("ShowLocalCurrency").Value = true | |||
RptObject.Params.Find("SortBy").Value = "PostDate;DocNo;Code" | |||
lDateTo = CDate("April 12, 2018") | |||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
RptObject.Params.Find("IncludePDCheque").Value = true | |||
'Step 4 Perform Report calculation | 'Step 4: Perform Report calculation | ||
RptObject.CalculateReport() | RptObject.CalculateReport() | ||
Set | Set lDataSet = RptObject.DataSets.Find("cdsMain") | ||
MsgBox "Count " & lDataSet.RecordCount | |||
MsgBox "Count " & | |||
'Step 5 Retrieve the output | 'Step 5 Retrieve the output | ||
lDataSet.First | |||
While (not | While (not lDataSet.eof) | ||
MsgBox " | MsgBox "Dockey " & lDataSet.FindField("DocKey").AsString | ||
MsgBox "DocNo " & lDataSet.FindField("DocNo").AsString | |||
MsgBox "DocAmt " & lDataSet.FindField("DocAmt").AsString | |||
MsgBox "Outstanding " & lDataSet.FindField("Outstanding").AsString | |||
MsgBox "Code " & lDataSet.FindField("Code").AsString | |||
lDataSet.Next | |||
Wend | Wend | ||
End Function | |||
End Function | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Line 8,291: | Line 8,685: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Customer.IV.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer.IV.RO Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg Customer.IV.RO.vbs | |||
'Copy below script & paste to notepad & name it as eg | |||
Call GetData | Call GetData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function GetData | |||
Dim ComServer, RptObject, lDataSet, lDataSet2, lDataSet3, lDateFrom, lDateTo | |||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\ | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Report Objects | |||
Set RptObject = ComServer.RptObjects.Find("Customer.IV.RO") | |||
'Step 3: Spool parameters | |||
'RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is true | |||
'RptObject.Params.Find("CompanyCategoryData").Value = 'Not use if AllCompanyCategory is true | |||
RptObject.Params.Find("AllAgent").Value = true | |||
RptObject.Params.Find("AllCompanyCategory").Value = true | |||
RptObject.Params.Find("AllArea").Value = true | |||
RptObject.Params.Find("AllCompany").Value = true | |||
RptObject.Params.Find("AllCurrency").Value = true | |||
RptObject.Params.Find("AllDocument").Value = false | |||
RptObject.Params.Find("AllPaymentMethod").Value = true | |||
'RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is true | |||
'RptObject.Params.Find("CompanyData").Value = 'Not use if AllCompany is true | |||
'RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is true | |||
lDateFrom = CDate("January 01, 2017") | |||
lDateTo = CDate("December 31, 2017") | |||
lDataSet.First | RptObject.Params.Find("DateFrom").Value = lDateFrom | ||
While (not lDataSet.eof) | RptObject.Params.Find("DateTo").Value = lDateTo | ||
MsgBox " | RptObject.Params.Find("DocumentData").Value = "IV-00012" | ||
'RptObject.Params.Find("GroupBy").Value = 'If you wanted to grouping the data | |||
RptObject.Params.Find("IncludeCancelled").Value = true | |||
MsgBox " | 'RptObject.Params.Find("PaymentMethodData").Value = 'Not use if AllPaymentMethod is true | ||
RptObject.Params.Find("PrintDocumentStyle").Value = false | |||
RptObject.Params.Find("SelectDate").Value = true | |||
RptObject.Params.Find("ShowUnappliedAmountOnly").Value = true | |||
RptObject.Params.Find("SortBy").Value = "DocDate;DocNo;Code" | |||
RptObject.Params.Find("AllDocProject").Value = true | |||
RptObject.Params.Find("AllItemProject").Value = true | |||
'RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is true | |||
'RptObject.Params.Find("ItemProjectData ").Value = 'Not use if AllItemProject is true | |||
'Step 4: Perform Report calculation | |||
RptObject.CalculateReport() | |||
Set lDataSet = RptObject.DataSets.Find("cdsMain") | |||
Set lDataSet2 = RptObject.DataSets.Find("cdsDocDetail") | |||
MsgBox "Count " & lDataSet.RecordCount | |||
'Step 5 Retrieve the output | |||
lDataSet.First | |||
While (not lDataSet.eof) | |||
MsgBox "DocNo " & lDataSet.FindField("DocNo").AsString | |||
MsgBox "DocAmt " & lDataSet.FindField("DocAmt").AsString | |||
MsgBox "PaymentAmt " & lDataSet.FindField("PaymentAmt").AsString | |||
MsgBox "cdsDocDetail Count " & lDataSet2.RecordCount | |||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox "Account " & lDataSet2.FindField("Account").AsString | |||
MsgBox "Description " & lDataSet2.FindField("Description").AsString | |||
MsgBox "Amount " & lDataSet2.FindField("Amount").AsString | |||
lDataSet2.Next | |||
Wend | |||
lDataSet.Next | lDataSet.Next | ||
Wend | Wend | ||
Line 8,342: | Line 8,770: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Sales.OutstandingSO.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Sales.OutstandingSO.RO Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg Sales.OutstandingSO.RO.vbs | ||
Call | Call GetData | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function GetData | |||
Dim ComServer, RptObject, lDataSet, lDataSet2, lDataSet3, lDateFrom, lDateTo | |||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\ | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Report Objects | |||
Set RptObject = ComServer.RptObjects.Find("Sales.OutstandingSO.RO") | |||
'Step 2: Find and Create the | 'Step 3: Spool parameters | ||
Set | 'RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is true | ||
'RptObject.Params.Find("CompanyCategoryData").Value = 'Not use if AllCompanyCategory is true | |||
'Step 3: | 'RptObject.Params.Find("LocationData").Value = 'Not use if AllLocation is true | ||
'RptObject.Params.Find("StockGroupData").Value = 'Not use if AllStockGroup is true | |||
RptObject.Params.Find("AllAgent").Value = true | |||
RptObject.Params.Find("AllArea").Value = true | |||
RptObject.Params.Find("AllCompany").Value = true | |||
RptObject.Params.Find("AllDocument").Value = false | |||
RptObject.Params.Find("AllItem").Value = true | |||
RptObject.Params.Find("AllItemProject").Value = true | |||
'RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is true | |||
'RptObject.Params.Find("CompanyData").Value = 'Not use if AllCompany is true | |||
RptObject.Params.Find("AllTariff").Value = true 'For Version 776 & above | |||
'RptObject.Params.Find("TariffData").Value = 'Not use if TariffData is true - For Version 776 & above | |||
lDateFrom = CDate("January 01, 2017") | |||
lDateTo = CDate("December 31, 2017") | |||
' | 'RptObject.Params.Find("DateFrom").Value = lDateFrom | ||
'RptObject.Params.Find("DateTo").Value = lDateTo | |||
'RptObject.Params.Find("DeliveryDateFrom").Value = lDateFrom | |||
'RptObject.Params.Find("DeliveryDateTo").Value = lDateTo | |||
RptObject.Params.Find("DocumentData").Value = "SO-00007"& vbCRLF & "SO-00009" | |||
'RptObject.Params.Find("GroupBy").Value = 'If you wanted to grouping the data | |||
RptObject.Params.Find("IncludeCancelled").Value = false | |||
'RptObject.Params.Find("ItemData").Value = 'Not use if AllItem is true | |||
RptObject.Params.Find("PrintFulfilledItem").Value = true 'Print transfered info | |||
RptObject.Params.Find("PrintOutstandingItem").Value = true 'Print untransfer info | |||
'RptObject.Params.Find("ItemProjectData").Value = 'Not use if AllItemProject is true | |||
RptObject.Params.Find("SelectDate").Value = false | |||
RptObject.Params.Find("SelectDeliveryDate").Value = false | |||
RptObject.Params.Find("SortBy").Value = "DocDate;DocNo;Code" | |||
RptObject.Params.Find("AllDocProject").Value = true | |||
RptObject.Params.Find("AllLocation").Value = true | |||
RptObject.Params.Find("AllCompanyCategory").Value = true | |||
RptObject.Params.Find("AllBatch").Value = true | |||
RptObject.Params.Find("HasCategory").Value = false | |||
RptObject.Params.Find("AllStockGroup").Value = true | |||
'RptObject.Params.Find("CategoryData").Value = 'For Internal use only | |||
'RptObject.Params.Find("CategoryTpl").Value = 'For Internal use only | |||
'RptObject.Params.Find("ItemCategoryData").Value = 'For Internal use only | |||
'RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is true | |||
'RptObject.Params.Find("BatchData").Value = 'Not use if AllBatch is true | |||
RptObject.Params.Find("TranferDocFilterDate").Value = false | |||
'Step | 'Step 4: Perform Report calculation | ||
RptObject.CalculateReport() | |||
Set lDataSet = RptObject.DataSets.Find("cdsMain") | |||
Set lDataSet2 = RptObject.DataSets.Find("cdsTransfer") | |||
MsgBox "Count " & lDataSet.RecordCount | |||
'Step 5 Retrieve the output | |||
lDataSet.First | |||
While (not lDataSet.eof) | |||
MsgBox "DocKey " & lDataSet.FindField("DocKey").AsString | |||
MsgBox "DtlKey " & lDataSet.FindField("Dtlkey").AsString | |||
MsgBox "DocNo " & lDataSet.FindField("DocNo").AsString | |||
MsgBox "Item Code " & lDataSet.FindField("ItemCode").AsString | |||
MsgBox "Org Qty " & lDataSet.FindField("SQty").AsString | |||
MsgBox "Outstanding Qty " & lDataSet.FindField("OutstandingQty").AsString | |||
MsgBox "cdsDocDetail Count " & lDataSet2.RecordCount | |||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox "FromDocKey " & lDataSet2.FindField("FromDocKey").AsString | |||
MsgBox "FromDtlKey " & lDataSet2.FindField("FromDtlkey").AsString | |||
MsgBox "DocType " & lDataSet2.FindField("DocType").AsString | |||
MsgBox "DocNo " & lDataSet2.FindField("DocNo").AsString | |||
MsgBox "DocDate " & lDataSet2.FindField("DocDate").AsString | |||
MsgBox "Transfer Qty " & lDataSet2.FindField("TransferQty").AsString | |||
lDataSet2.Next | |||
Wend | |||
lDataSet.Next | |||
Wend | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 8,413: | Line 8,877: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Common.PaymentMethod.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Common.PaymentMethod.RO Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg Common.PaymentMethod.RO.vbs | ||
Call | Call GetInfo | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function GetInfo | |||
Dim ComServer, RptObject, lDataSet1, lDataSet2 | |||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\ | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Report Objects | |||
Set RptObject = ComServer.RptObjects.Find("Common.PaymentMethod.RO") | |||
'Step 3: Perform Report calculation | |||
RptObject.CalculateReport() | |||
Set lDataSet1 = RptObject.DataSets.Find("cdsMain") | |||
Set lDataSet2 = RptObject.DataSets.Find("cdsPaymentAccount") 'You can link with lDataSet1 using Code to get the description | |||
MsgBox "Count " & lDataSet1.RecordCount | |||
'Step | 'Step 5 Retrieve the output | ||
lDataSet1.First | |||
While (not lDataSet1.eof) | |||
MsgBox "Code : " & lDataSet1.FindField("Code").AsString | |||
lDataSet1.Next | |||
Wend | |||
MsgBox "Count " & lDataSet2.RecordCount | |||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox "Code : " & lDataSet2.FindField("Code").AsString | |||
MsgBox "Description : " & lDataSet2.FindField("Description").AsString | |||
lDataSet2.Next | |||
Wend | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 8,486: | Line 8,930: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Common.Agent.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Common.Agent.RO Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg Common.Agent.RO.vbs | ||
Call | Call GetInfo | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function GetInfo | |||
Dim ComServer, RptObject, lDataSet1 | |||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\ | ComServer.Login "ADMIN", "ADMIN", "C:\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Report Objects | |||
Set RptObject = ComServer.RptObjects.Find("Common.Agent.RO") | |||
'Step 2: Find and Create the | |||
Set | 'Step 3: Perform Report calculation | ||
RptObject.CalculateReport() | |||
'Step 3: | Set lDataSet1 = RptObject.DataSets.Find("cdsMain") | ||
Set | |||
MsgBox "Count " & lDataSet1.RecordCount | |||
'Step 5 Retrieve the output | |||
lDataSet1.First | |||
While (not lDataSet1.eof) | |||
MsgBox "Code : " & lDataSet1.FindField("Code").AsString | |||
MsgBox "Description : " & lDataSet1.FindField("Description").AsString | |||
lDataSet1.Next | |||
Wend | |||
'Step 5 | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 8,558: | Line 8,974: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Stock.Item.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Stock.Item.RO Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg Stock.Item.RO.vbs | ||
Call | Call GetInfo | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
Function GetInfo | |||
'Step 1 | Dim ComServer, RptObject, lDataSet1, lDataSet2, lDateFrom, lDateTo | ||
'Step 1 Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C | ComServer.Login "ADMIN", "ADMIN", "C\DB\SQLAcc.DCF", "ACC-0002.FDB" | ||
END IF | END IF | ||
'Step 2 Find and Create the Report Objects | |||
Set RptObject = ComServer.RptObjects.Find("Stock.Item.RO") | |||
'Step 2 | 'Step 3 Spool parameters | ||
Set | RptObject.Params.Find("AllItem").AsBoolean = true | ||
RptObject.Params.Find("AllStockGroup").AsBoolean = true | |||
'Step 3 | RptObject.Params.Find("AllCustomerPriceTag").AsBoolean = true | ||
RptObject.Params.Find("AllSupplierPriceTag").AsBoolean = true | |||
'RptObject.Params.Find("CategoryData").AsBlob = 'Not use | |||
'RptObject.Params.Find("CategoryTpl").AsBlob = 'Not use | |||
'RptObject.Params.Find("CustomerPriceTagData").AsBlob = 'Not use if AllCustomerPriceTag is True | |||
'RptObject.Params.Find("SupplierPriceTagData").AsBlob = 'Not use if AllSupplierPriceTag is True | |||
lDateFrom = CDate("January 01, 2017") | |||
lDateTo = CDate("December 31, 2017") | |||
'RptObject.Params.Find("DateFrom").AsDate = lDateFrom 'Not use if SelectDate is False | |||
'RptObject.Params.Find("DateTo").AsDate = lDateTo | |||
RptObject.Params.Find("HasAltStockItem").AsBoolean = false | |||
RptObject.Params.Find("HasBarcode").AsBoolean = false | |||
RptObject.Params.Find("HasBOM").AsBoolean = false | |||
RptObject.Params.Find("HasCategory").AsBoolean = false | |||
RptObject.Params.Find("HasCustomerItem").AsBoolean = false | |||
RptObject.Params.Find("HasOpeningBalance").AsBoolean = false | |||
RptObject.Params.Find("HasPurchasePrice").AsBoolean = false | |||
RptObject.Params.Find("HasSellingPrice").AsBoolean = false | |||
RptObject.Params.Find("HasSupplierItem").AsBoolean = false | |||
'RptObject.Params.Find("ItemData").AsBlob = 'Not use if AllItem is True | |||
'RptObject.Params.Find("ItemCategoryData").AsBlob = 'Not use if SelectCategory is False | |||
RptObject.Params.Find("PrintActive").AsBoolean = true | |||
RptObject.Params.Find("PrintInActive").AsBoolean = true | |||
RptObject.Params.Find("PrintNonStockControl").AsBoolean = true | |||
RptObject.Params.Find("PrintStockControl").AsBoolean = true | |||
RptObject.Params.Find("SelectCategory").AsBoolean = false | |||
RptObject.Params.Find("SelectDate").AsBoolean = false | |||
RptObject.Params.Find("SortBy").AsString = "Code" | |||
'RptObject.Params.Find("StockGroupData").AsBlob = 'Not use if AllStockGroup is True | |||
'Step 4 Perform Report calculation | |||
RptObject.CalculateReport() | |||
Set lDataSet1 = RptObject.DataSets.Find("cdsMain") | |||
Set lDataSet2 = RptObject.DataSets.Find("cdsUOM") ' To link Master Data use Code | |||
MsgBox "Count " & lDataSet1.RecordCount | |||
'Step 5 Retrieve the output | |||
lDataSet1.First | |||
While (not lDataSet1.eof) | |||
MsgBox "Code " & lDataSet1.FindField("Code").AsString | |||
MsgBox "Description " & lDataSet1.FindField("Description").AsString | |||
MsgBox "Balance Qty " & lDataSet1.FindField("BalSQty").AsString | |||
lDataSet1.Next | |||
Wend | |||
MsgBox "Count " & lDataSet2.RecordCount | |||
lDataSet2.First | |||
While (not lDataSet2.eof) | |||
MsgBox "Code " & lDataSet2.FindField("Code").AsString | |||
MsgBox "UOM " & lDataSet2.FindField("UOM").AsString | |||
MsgBox "Rate " & lDataSet2.FindField("Rate").AsString | |||
MsgBox "RefPrice " & lDataSet2.FindField("RefPrice").AsString | |||
lDataSet2.Next | |||
Wend | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 8,641: | Line 9,063: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Stock Item Balance==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Get Stock Item Balance Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Available in Version 5.2018.833.759 & above | 'Available in Version 5.2018.833.759 & above | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg ItemBalance.vbs | ||
Call CheckLogin | Call CheckLogin | ||
Call GetData | Call GetData | ||
Dim ComServer | Dim ComServer | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 8,669: | Line 9,090: | ||
Function GetData | Function GetData | ||
Dim lSQL | Dim lDataSet, lSQL | ||
lSQL = "SELECT | lSQL = "SELECT A.Location, A.Batch, A.ItemCode, B.Description, Sum(A.Qty) Qty FROM ST_TR A " | ||
lSQL = lSQL & "WHERE | lSQL = lSQL & "INNER JOIN ST_ITEM B ON (A.ITEMCODE=B.CODE) " | ||
lSQL = lSQL & "AND | lSQL = lSQL & "WHERE B.IsActive='T' " | ||
lSQL = lSQL & "AND A.PostDate <= '31 Dec 2017' " | |||
lSQL = lSQL & "AND A.ItemCode= 'ANT' " | |||
lSQL = lSQL & "GROUP by A.Location, A.Batch, A.ItemCode, B.Description" | |||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | ||
lDataSet.First | |||
While (not lDataSet.eof) | |||
MsgBox "Location : " & lDataSet.FindField("Location").AsString | |||
MsgBox "Batch : " & lDataSet.FindField("Batch").AsString | |||
MsgBox "Item Code : " & lDataSet.FindField("ItemCode").AsString | |||
MsgBox "Item Description : " & lDataSet.FindField("Description").AsString | |||
MsgBox "Balance Qty : " & lDataSet.FindField("Qty").AsString | |||
lDataSet.Next | |||
Wend | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 8,729: | Line 9,114: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====ST_IS==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! ST_IS Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg StockIssue.vbs | |||
'Copy below script & paste to notepad & name it as eg | |||
Call CheckLogin | Call CheckLogin | ||
Call | Call InsertData | ||
Dim ComServer | Dim ComServer | ||
Line 8,756: | Line 9,139: | ||
End Function | End Function | ||
Function | Function InsertData | ||
Dim BizObject, lMain, lDetail, lDate | Dim BizObject, lMain, lDetail, lDate | ||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("ST_IS") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Line 8,765: | Line 9,148: | ||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
'Step 4 : Insert Data - Master | 'Step 4 : Insert Data - Master | ||
lDate = CDate("January 1, 2017") | lDate = CDate("January 1, 2017") | ||
BizObject.New | BizObject.New | ||
lMain.FindField("DocKey").value = -1 | lMain.FindField("DocKey").value = -1 | ||
lMain.FindField("DocNo").AsString = "-- | lMain.FindField("DocNo").AsString = "--IS Test--" | ||
lMain.FindField("DocDate").value = lDate | lMain.FindField("DocDate").value = lDate | ||
lMain.FindField("PostDate").value = lDate | lMain.FindField("PostDate").value = lDate | ||
lMain.FindField("Description").AsString = "Stock Issue" | |||
lMain.FindField("Description").AsString = " | |||
'Step 5: Insert Data - Detail | 'Step 5: Insert Data - Detail | ||
Line 8,786: | Line 9,161: | ||
lDetail.FindField("DtlKey").value = -1 | lDetail.FindField("DtlKey").value = -1 | ||
lDetail.FindField("DocKey").value = -1 | lDetail.FindField("DocKey").value = -1 | ||
lDetail.FindField("ItemCode").AsString = "ANT" | lDetail.FindField("ItemCode").AsString = "ANT" | ||
lDetail.FindField("Description").AsString = " | lDetail.FindField("Description").AsString = "Issue out Item A" | ||
lDetail.FindField("Qty").AsFloat = 2 | lDetail.FindField("Qty").AsFloat = 2 | ||
lDetail.Post | lDetail.Post | ||
Line 8,803: | Line 9,169: | ||
lDetail.FindField("DtlKey").value = -1 | lDetail.FindField("DtlKey").value = -1 | ||
lDetail.FindField("DocKey").value = -1 | lDetail.FindField("DocKey").value = -1 | ||
lDetail.FindField("ItemCode").AsString = "E-BAT" | |||
lDetail.FindField("ItemCode").AsString = " | lDetail.FindField("Description").AsString = "Issue out Item A" | ||
lDetail.FindField("Description").AsString = " | lDetail.FindField("Qty").AsFloat = 4 | ||
lDetail.FindField("Qty").AsFloat = | |||
lDetail.Post | lDetail.Post | ||
'Step 6: Save Document | 'Step 6: Save Document | ||
BizObject.Save | BizObject.Save | ||
BizObject.Close | BizObject.Close | ||
MsgBox " | |||
ComServer.Logout 'Logout after done | |||
MsgBox "Done" | |||
End Function | End Function | ||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====ST_RC==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! ST_RC Script | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
'Copy below script & paste to notepad & name it as eg StockReceived.vbs | |||
Call CheckLogin | |||
Call InsertData | |||
Dim ComServer | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
function CheckLogin | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | |||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | |||
'UserName, Password, DCF full path, Database filename | |||
END IF | |||
End Function | |||
Function InsertData | |||
Dim BizObject, lMain, lDetail, lDate | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("ST_RC") | |||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | |||
'Step 4 : Insert Data - Master | |||
lDate = CDate("January 1, 2017") | |||
BizObject.New | |||
lMain.FindField("DocKey").value = -1 | |||
lMain.FindField("DocNo").AsString = "--RC Test--" | |||
lMain.FindField("DocDate").value = lDate | |||
lMain.FindField("PostDate").value = lDate | |||
lMain.FindField("Description").AsString = "Stock Received" | |||
'Step 5: Insert Data - Detail | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("ItemCode").AsString = "ANT" | |||
lDetail.FindField("Description").AsString = "Received Item A" | |||
lDetail.FindField("Qty").AsFloat = 2 | |||
lDetail.FindField("UnitCost").AsFloat = 25.15 | |||
lDetail.Post | |||
==== | lDetail.Append | ||
{| class="mw-collapsible mw-collapsed wikitable" | lDetail.FindField("DtlKey").value = -1 | ||
! | lDetail.FindField("DocKey").value = -1 | ||
|- | lDetail.FindField("ItemCode").AsString = "E-BAT" | ||
lDetail.FindField("Description").AsString = "Received Item A" | |||
lDetail.FindField("Qty").AsFloat = 4 | |||
lDetail.FindField("UnitCost").AsFloat = 54 | |||
lDetail.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
ComServer.Logout 'Logout after done | |||
MsgBox "Done" | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====ST_AJ==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! ST_AJ Script | |||
|- | |||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg StockAdjustment.vbs | |||
'Copy below script & paste to notepad & name it as eg | |||
Call CheckLogin | Call CheckLogin | ||
Call | Call InsertData | ||
Dim ComServer | Dim ComServer | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 8,952: | Line 9,283: | ||
End Function | End Function | ||
Function | Function InsertData | ||
Dim BizObject, lMain, lDetail, lDate | |||
Dim BizObject, lMain, lDetail | |||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("ST_AJ") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Line 8,968: | Line 9,292: | ||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
'Step 4 : | 'Step 4 : Insert Data - Master | ||
lDate = CDate("January 1, 2017") | |||
BizObject.New | |||
lMain.FindField("DocKey").value = -1 | |||
lMain.FindField("DocNo").AsString = "--AJ Test--" | |||
lMain.FindField("DocDate").value = lDate | |||
lMain.FindField("PostDate").value = lDate | |||
lMain.FindField("Description").AsString = "Stock Adjustment" | |||
'Step 5: Insert Data - Detail | |||
lDetail.Append | |||
'Step 5: | lDetail.FindField("DtlKey").value = -1 | ||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("ItemCode").AsString = "ANT" | |||
lDetail.FindField("Description").AsString = "Adjust IN Item A" | |||
lDetail.FindField("Qty").AsFloat = 2 | |||
lDetail.FindField("UnitCost").AsFloat = 25.15 'Only IN need UnitCost | |||
lDetail.Post | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("ItemCode").AsString = "E-BAT" | |||
lDetail.FindField("Description").AsString = "Adjust OUT Item A" | |||
lDetail.FindField("Qty").AsFloat = -4 | |||
lDetail.Post | |||
'Step 6: Save Document | |||
'Step | BizObject.Save | ||
BizObject.Close | |||
ComServer.Logout 'Logout after done | |||
' | MsgBox "Done" | ||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====ST_XF==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! ST_XF Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg ST_XF.vbs | ||
Call | Call CheckLogin | ||
Call InsertData | |||
Dim ComServer | |||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | ||
End Function | End Function | ||
function CheckLogin | |||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Set ComServer = CreateSQLAccServer 'Create Com Server | Set ComServer = CreateSQLAccServer 'Create Com Server | ||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ||
'UserName, Password, DCF full path, Database filename | |||
END IF | END IF | ||
End Function | |||
Function InsertData | |||
Dim BizObject, lMain, lDetail, lDate | |||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("ST_XF") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Set | Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | ||
Set | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
'Begin Looping yr data | |||
'Step 4 : Insert Data - Master | 'Step 4 : Insert Data - Master | ||
lDate = CDate("January | lDate = CDate("January 1, 2017") | ||
BizObject.New | BizObject.New | ||
lMain.FindField("DocKey").value = -1 | |||
lMain.FindField("DocNo").AsString = "--XF Test--" | |||
lMain.FindField("DocDate").value = lDate | |||
lMain.FindField("PostDate").value = lDate | |||
lMain.FindField("Code").AsString = "300-C0001" 'Customer Account - Optional | |||
lMain.FindField("CompanyName").AsString = "Cash Sales" 'Optional | |||
lMain.FindField("Description").AsString = "Stock Transfer" | |||
'Step 5: Insert Data - Detail | 'Step 5: Insert Data - Detail | ||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("ItemCode").AsString = "ANT" | |||
lDetail.FindField("Description").AsString = "Transfer Item A" | |||
lDetail.FindField("Qty").AsFloat = 10 | |||
lDetail.FindField("UOM").AsString = "UNIT" | |||
lDetail.FindField("FromLocation").AsString = "----" | |||
lDetail.FindField("ToLocation").AsString = "BALAKONG" | |||
lDetail.Post | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("ItemCode").AsString = "HFK" | |||
lDetail.FindField("Description").AsString = "Transfer Item B" | |||
lDetail.FindField("Qty").AsFloat = 5 | |||
lDetail.FindField("UOM").AsString = "UNIT" | |||
lDetail.FindField("FromLocation").AsString = "----" | |||
lDetail.FindField("ToLocation").AsString = "BALAKONG" | |||
lDetail.Post | |||
'Step 6: Save Document | 'Step 6: Save Document | ||
BizObject.Save | BizObject.Save | ||
BizObject.Close | BizObject.Close | ||
MsgBox "Done" | |||
'Step 7 : Logout after done | |||
'ComServer.Logout | |||
MsgBox "Done" | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 9,099: | Line 9,413: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AP_PI-Edit==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AP_PI Edit Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Available in Version 5.2018.833.759 & above | 'Available in Version 5.2018.833.759 & above | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg AP_PI.vbs | ||
Call CheckLogin | Call CheckLogin | ||
Call GetData | Call GetData | ||
Line 9,128: | Line 9,442: | ||
Function GetData | Function GetData | ||
Dim lSQL | Dim lSQL | ||
lSQL = "SELECT Dockey FROM | lSQL = "SELECT Dockey FROM AP_PI " | ||
lSQL = lSQL & "WHERE DocNo=' | lSQL = lSQL & "WHERE DocNo='PI-00001' " | ||
lSQL = lSQL & "AND Code='400-D0001' " | |||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | ||
End Function | End Function | ||
Line 9,136: | Line 9,451: | ||
Dim BizObject, lMain, lDetail | Dim BizObject, lMain, lDetail | ||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("AP_PI") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Line 9,151: | Line 9,466: | ||
BizObject.Edit | BizObject.Edit | ||
lMain.Edit | lMain.Edit | ||
lMain.FindField("Description").AsString = " | lMain.FindField("Description").AsString = "testing" | ||
'Step 5: Delete all Detail | 'Step 5: Delete all Detail | ||
Line 9,159: | Line 9,474: | ||
Wend | Wend | ||
'Step 6: Append Detail | 'Step 6: Append Detail | ||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("Account").value = "610-2000" | |||
lDetail.FindField("Description").value = "Purchase Item A" | |||
lDetail.FindField("Tax").value = "" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("Amount").value = 410.37 | |||
lDetail.FindField("TaxAmt").value = 0 | |||
lDetail.Post | |||
'Step 7: Save Document | 'Step 7: Save Document | ||
Line 9,191: | Line 9,494: | ||
MsgBox "Record Not Found" | MsgBox "Record Not Found" | ||
END IF | END IF | ||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====SL_DO to SL_IV==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! SL_DO to SL_IV Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
' | 'Updated 26 Oct 2018 | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg SL_IV.vbs | ||
Call CheckLogin | Call CheckLogin | ||
Call | Call InsertData1 | ||
Call | Call InsertData2 | ||
Dim ComServer | Dim ComServer | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 9,223: | Line 9,528: | ||
End Function | End Function | ||
Function | Function InsertData1 | ||
Dim | Dim BizObject, lMain, lDetail, lDate | ||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("SL_DO") | |||
Set | |||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
'Step | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
Set BizObject | |||
'Step 4 : | 'Begin Looping yr data | ||
'Step 4 : Insert Data - Master | |||
lDate = CDate("January 1, 2017") | |||
BizObject.New | |||
lMain.FindField("DocKey").value = -1 | |||
lMain.FindField("DocNo").AsString = "--DO Test--" | |||
lMain.FindField("DocDate").value = lDate | |||
lMain.FindField("PostDate").value = lDate | |||
lMain.FindField("Code").AsString = "300-C0001" 'Customer Account | |||
lMain.FindField("CompanyName").AsString = "Cash Sales" | |||
'lMain.FindField("Address1").AsString = "" 'Optional | |||
==== | 'lMain.FindField("Address2").AsString = "" 'Optional | ||
'lMain.FindField("Address3").AsString = "" 'Optional | |||
'lMain.FindField("Address4").AsString = "" 'Optional | |||
'lMain.FindField("Phone1").AsString = "" 'Optional | |||
lMain.FindField("Description").AsString = "Delivery Order" | |||
'Step 5: Insert Data - Detail | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("Seq").value = 1 | |||
lDetail.FindField("ItemCode").AsString = "ANT" | |||
lDetail.FindField("Description").AsString = "Sales Item A" | |||
lDetail.FindField("UOM").AsString = "BOX" | |||
lDetail.FindField("Qty").AsFloat = 2 | |||
'lDetail.FindField("DISC").AsString = "5%+3" 'Optional (eg 5% plus 3 Discount) | |||
lDetail.FindField("Tax").AsString = "SR" | |||
lDetail.FindField("TaxRate").AsString = "6%" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("UnitPrice").AsFloat = 100 | |||
lDetail.FindField("Amount").AsFloat = 200 | |||
lDetail.FindField("TaxAmt").AsFloat = 12 | |||
lDetail.Post | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("Seq").value = 2 | |||
lDetail.FindField("ItemCode").AsString = "COVER" | |||
lDetail.FindField("Description").AsString = "Sales Item B" | |||
lDetail.FindField("UOM").AsString = "UNIT" | |||
lDetail.FindField("Qty").AsFloat = 3 | |||
lDetail.FindField("Tax").AsString = "SR" | |||
lDetail.FindField("TaxRate").AsString = "6%" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("UnitPrice").AsFloat = 10 | |||
lDetail.FindField("Amount").AsFloat = 30 | |||
lDetail.FindField("TaxAmt").AsFloat = 1.80 | |||
lDetail.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "DO Posting Done" | |||
End Function | End Function | ||
Function InsertData2 | |||
'Step 1: | Dim BizObject, lMain, lDetail, lDate, lDODtl, lxFer, lSQL, v(2) | ||
'Step 1: Check Is transtered or not | |||
lSQL = "SELECT DocKey FROM SL_IVDTL " | |||
lSQL = lSQL & "WHERE FromDockey=(SELECT DocKey FROM SL_DO " | |||
lSQL = lSQL & "WHERE DocNo='--DO Test--') " | |||
Set lxFer = ComServer.DBManager.NewDataSet(lSQL) | |||
if lxFer.RecordCount = 0 then | |||
'Step 2: Get DO Information | |||
lSQL = "SELECT * FROM SL_DODTL " | |||
lSQL = lSQL & "WHERE Dockey=(SELECT DocKey FROM SL_DO " | |||
lSQL = lSQL & "WHERE DocNo='--DO Test--') " | |||
Set lDODtl = ComServer.DBManager.NewDataSet(lSQL) | |||
'Step 3: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("SL_IV") | |||
'Step 4: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | |||
'Step | |||
'Step 5 : Insert Data - Master | |||
lDate = CDate("January 1, 2017") | |||
BizObject.New | |||
lMain.FindField("DocKey").value = -1 | |||
lMain.FindField("DocNo").AsString = "--IV Test--" | |||
lMain.FindField("DocDate").value = lDate | |||
lMain.FindField("PostDate").value = lDate | |||
lMain.FindField("Code").AsString = "300-C0001" 'Customer Account | |||
lMain.FindField("CompanyName").AsString = "Cash Sales" | |||
'lMain.FindField("Address1").AsString = "" 'Optional | |||
'lMain.FindField("Address2").AsString = "" 'Optional | |||
'lMain.FindField("Address3").AsString = "" 'Optional | |||
'lMain.FindField("Address4").AsString = "" 'Optional | |||
'lMain.FindField("Phone1").AsString = "" 'Optional | |||
lMain.FindField("Description").AsString = "Sales" | |||
'Step 6: Insert Data - Detail | |||
v(0) = "COVER" | |||
v(1) = "UNIT" | |||
if (lDODtl.Locate("ItemCode;UOM", v, false, false)) then | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("Seq").value = 1 | |||
lDetail.FindField("ItemCode").AsString = lDODtl.FindField("ItemCode").AsString | |||
lDetail.FindField("Description").AsString = lDODtl.FindField("Description").AsString | |||
'lDetail.FindField("Account").AsString = "500-000" 'If you wanted override the Sales Account Code | |||
lDetail.FindField("UOM").AsString = lDODtl.FindField("UOM").AsString | |||
lDetail.FindField("Qty").AsFloat = lDODtl.FindField("Qty").AsFloat | |||
lDetail.FindField("DISC").AsString = lDODtl.FindField("Disc").AsString | |||
lDetail.FindField("Tax").AsString = lDODtl.FindField("Tax").AsString | |||
lDetail.FindField("TaxRate").AsString = lDODtl.FindField("TaxRate").AsString | |||
lDetail.FindField("TaxInclusive").value = lDODtl.FindField("TaxInclusive").Value | |||
lDetail.FindField("UnitPrice").AsFloat = lDODtl.FindField("UnitPrice").AsFloat | |||
lDetail.FindField("Amount").AsFloat = lDODtl.FindField("Amount").AsFloat | |||
lDetail.FindField("TaxAmt").AsFloat = lDODtl.FindField("TaxAmt").AsFloat | |||
lDetail.FindField("FromDocType").AsString = "DO" | |||
lDetail.FindField("FromDockey").AsFloat = lDODtl.FindField("DocKey").AsFloat | |||
lDetail.FindField("FromDtlkey").AsFloat = lDODtl.FindField("DtlKey").AsFloat | |||
lDetail.Post | |||
End IF | |||
v(0) = "ANT" | |||
v(1) = "BOX" | |||
if (lDODtl.Locate("ItemCode;UOM", v, false, false)) then | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("Seq").value = 2 | |||
lDetail.FindField("ItemCode").AsString = lDODtl.FindField("ItemCode").AsString | |||
lDetail.FindField("Description").AsString = lDODtl.FindField("Description").AsString | |||
'lDetail.FindField("Account").AsString = "500-000" 'If you wanted override the Sales Account Code | |||
lDetail.FindField("UOM").AsString = lDODtl.FindField("UOM").AsString | |||
lDetail.FindField("Qty").AsFloat = lDODtl.FindField("Qty").AsFloat | |||
lDetail.FindField("DISC").AsString = lDODtl.FindField("Disc").AsString | |||
lDetail.FindField("Tax").AsString = lDODtl.FindField("Tax").AsString | |||
lDetail.FindField("TaxRate").AsString = lDODtl.FindField("TaxRate").AsString | |||
lDetail.FindField("TaxInclusive").value = lDODtl.FindField("TaxInclusive").Value | |||
lDetail.FindField("UnitPrice").AsFloat = lDODtl.FindField("UnitPrice").AsFloat | |||
lDetail.FindField("Amount").AsFloat = lDODtl.FindField("Amount").AsFloat | |||
lDetail.FindField("TaxAmt").AsFloat = lDODtl.FindField("TaxAmt").AsFloat | |||
lDetail.FindField("FromDocType").AsString = "DO" | |||
lDetail.FindField("FromDockey").AsFloat = lDODtl.FindField("DocKey").AsFloat | |||
lDetail.FindField("FromDtlkey").AsFloat = lDODtl.FindField("DtlKey").AsFloat | |||
lDetail.Post | |||
End IF | |||
'Step 7: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
'Step 8 : Logout after done | |||
'ComServer.Logout | |||
MsgBox "Posting IV Done" | |||
else MsgBox "--DO Test-- had been transfered. Posting IV aborted" | |||
End IF | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 9,322: | Line 9,697: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====SL_IV-Edit==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! SL_IV-Edit Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Available in Version 5.2018.833.759 & above | ||
'Copy below script & paste to notepad & name it as eg SL_IV.vbs | |||
Call CheckLogin | Call CheckLogin | ||
Call GetData | Call GetData | ||
Call | Call PostData | ||
Dim ComServer, lDataSet | Dim ComServer, lDataSet | ||
Line 9,351: | Line 9,726: | ||
Function GetData | Function GetData | ||
Dim lSQL | Dim lSQL | ||
lSQL = "SELECT | lSQL = "SELECT Dockey FROM SL_IV " | ||
lSQL = lSQL & "WHERE | lSQL = lSQL & "WHERE DocNo='IV-00010' " | ||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | ||
End Function | End Function | ||
Function PostData | |||
Function | Dim BizObject, lMain, lDetail | ||
Dim BizObject, lMain, lDetail | |||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("SL_IV") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Line 9,366: | Line 9,740: | ||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
'Step 4 : Find Doc Number | |||
'Step 4 : | If lDataSet.RecordCount > 0 Then | ||
lDataSet.First | |||
BizObject.Params.Find("DocKey").Value = lDataSet.FindField("DocKey").AsString | |||
BizObject.Open | |||
BizObject.Edit | |||
lMain.Edit | |||
lMain.FindField("Description").AsString = "Sales - Edited" | |||
'Step 5: Delete all Detail | |||
While lDetail.RecordCount <> 0 | |||
lDetail.First | |||
lDetail.Delete | |||
Wend | |||
'Step 6: Append Detail | |||
lDetail.Append | |||
'Step | lDetail.FindField("DtlKey").value = -1 | ||
lDetail.FindField("Account").value = "500-000" | |||
lDetail.FindField("Description").value = "Edited Item A" | |||
lDetail.FindField("Tax").value = "" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("Amount").value = 410.37 | |||
lDetail.FindField("TaxAmt").value = 0 | |||
lDetail.Post | |||
'Step 7 : | 'Step 7: Save Document | ||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | 'Step 8 : Logout after done | ||
'ComServer.Logout | |||
MsgBox "Done" | |||
Else | |||
MsgBox "Record Not Found" | |||
END IF | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 9,416: | Line 9,782: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====GL_JE==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! GL_JE Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg GL_JE.vbs | ||
Call | Call InsertGLJE | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 9,429: | Line 9,795: | ||
End Function | End Function | ||
Function | Function InsertGLJE | ||
Dim ComServer, BizObject, | Dim ComServer, BizObject, lDataSet, lDataSet2, lDate | ||
'Step 1: Create Com Server object | 'Step 1: Create Com Server object | ||
Line 9,439: | Line 9,805: | ||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("GL_JE") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Set | Set lMainDataSet = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | ||
Set lDetailDataSet = BizObject.DataSets.Find("cdsDocDetail") 'lDetailDataSet contains detail data | Set lDetailDataSet = BizObject.DataSets.Find("cdsDocDetail") 'lDetailDataSet contains detail data | ||
'Step 4 : | 'Step 4 : Insert Data - Master | ||
lDate = CDate("January 23, 2017") | |||
BizObject.New | |||
lMainDataSet.FindField("DocKey").value = -1 | |||
lMainDataSet.FindField("DocNo").value = "--JV Test--" | |||
lMainDataSet.FindField("DocDate").value = lDate | |||
lMainDataSet.FindField("PostDate").value = lDate | |||
lMainDataSet.FindField("Description").value = "testing desc header" | |||
lMainDataSet.Post | |||
'Step 5: Insert Data - Detail | |||
'For Tax Inclusive | |||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("SEQ").value = 1 | |||
lDetailDataSet.FindField("Code").value = "610-1000" | |||
lDetailDataSet.FindField("Project").value = "----" | |||
lDetailDataSet.FindField("Description").value = "testing desc1" | |||
lDetailDataSet.FindField("Tax").value = "TX" | |||
'lDetailDataSet.FindField("LOCALTAXAMT").value = 17.32 //For JE you can't override (i.e. system auto calc) | |||
lDetailDataSet.FindField("TaxInclusive").Value = 1 | |||
lDetailDataSet.FindField("LocalDR").value = 306 '//Including GST if TAXINCLUSIVE = 1 | |||
lDetailDataSet.FindField("DR").value = 306 '//If wanted DR <> LocalDR | |||
'For Tax Exclusive | |||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("SEQ").value = 2 | |||
lDetailDataSet.FindField("Code").value = "605-200" | |||
lDetailDataSet.FindField("Project").value = "----" | |||
lDetailDataSet.FindField("Description").value = "testing desc2" | |||
lDetailDataSet.FindField("Tax").value = "TX" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("LocalCR").value = 100 | |||
'Step | lDetailDataSet.Post | ||
'For No GST | |||
lDetailDataSet.Append | |||
End Function | lDetailDataSet.FindField("DtlKey").value = -1 | ||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("SEQ").value = 3 | |||
lDetailDataSet.FindField("Code").value = "610-002" | |||
lDetailDataSet.FindField("Project").value = "----" | |||
lDetailDataSet.FindField("Description").value = "testing desc3" | |||
lDetailDataSet.FindField("Tax").value = "" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("LocalCR").value = 200 | |||
lDetailDataSet.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
End Function | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | |||
====GL_JE-Edit==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! GL_JE-Edit Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg | 'Available in Version 5.2018.833.759 & above | ||
'Copy below script & paste to notepad & name it as eg GL_JE.vbs | |||
Call CheckLogin | Call CheckLogin | ||
Call | Call GetData | ||
Call PostData | |||
Dim ComServer | Dim ComServer, lDataSet | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 9,503: | Line 9,898: | ||
End Function | End Function | ||
Function | Function GetData | ||
Dim BizObject, lMain, | Dim lSQL | ||
lSQL = "SELECT Dockey FROM GL_JE " | |||
lSQL = lSQL & "WHERE DocNo='JV-00002' " | |||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | |||
End Function | |||
Function PostData | |||
Dim BizObject, lMain, lDetail | |||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("GL_JE") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | ||
Set | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
'Step 4 : Find Doc Number | |||
If lDataSet.RecordCount > 0 Then | |||
lDataSet.First | |||
BizObject.Params.Find("DocKey").Value = lDataSet.FindField("DocKey").AsString | |||
BizObject.Open | |||
BizObject.Edit | |||
lMain.Edit | |||
lMain.FindField("Description").AsString = "Journal - Edited" | |||
'Step 5: Delete all Detail | |||
While lDetail.RecordCount <> 0 | |||
lDetail.First | |||
lDetail.Delete | |||
Wend | |||
'Step 6: Append Detail | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("Code").value = "610-000" | |||
lDetail.FindField("Description").value = "testing desc1" | |||
lDetail.FindField("Project").value = "P12W1" | |||
lDetail.FindField("Tax").value = "" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("LocalDR").value = 200 | |||
lDetail.FindField("DR").value = 200 | |||
lDetail.Post | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("Code").value = "531-000" | |||
lDetail.FindField("Description").value = "testing desc2" | |||
lDetail.FindField("Project").value = "P13W1" | |||
lDetail.FindField("Tax").value = "" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("LocalCR").value = 200 | |||
lDetail.FindField("CR").value = 200 | |||
lDetail.Post | |||
'Step 7: Save Document | 'Step 7: Save Document | ||
BizObject.Save | |||
BizObject.Close | |||
'Step 8 : Logout after done | 'Step 8 : Logout after done | ||
'ComServer.Logout | |||
MsgBox "Done" | |||
Else | |||
MsgBox "Record Not Found" | |||
END IF | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 9,557: | Line 9,968: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====GL_JE-Delete==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! GL_JE-Delete Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Available in Version 5.2018.833.759 & above | 'Available in Version 5.2018.833.759 & above | ||
'Copy below script & paste to notepad & name it as eg | 'Copy below script & paste to notepad & name it as eg GL_JE.vbs | ||
Call CheckLogin | Call CheckLogin | ||
Call GetData | Call GetData | ||
Call DelData | |||
Dim ComServer, lDataSet | Dim ComServer, lDataSet | ||
Line 9,588: | Line 9,997: | ||
Function GetData | Function GetData | ||
Dim lSQL | Dim lSQL | ||
lSQL = "SELECT Dockey FROM | lSQL = "SELECT Dockey FROM GL_JE " | ||
lSQL = lSQL & "WHERE | lSQL = lSQL & "WHERE DocNo='JV-00002' " | ||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | ||
End Function | End Function | ||
Function | Function DelData | ||
Dim BizObject | Dim BizObject | ||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("GL_JE") | ||
'Step 3 : Find Doc Number | |||
'Step 3 | If lDataSet.RecordCount > 0 Then | ||
If lDataSet.RecordCount > 0 Then | |||
lDataSet.First | lDataSet.First | ||
BizObject.Params.Find("DocKey").Value = lDataSet.FindField("DocKey").AsString | BizObject.Params.Find("DocKey").Value = lDataSet.FindField("DocKey").AsString | ||
BizObject.Open | BizObject.Open | ||
BizObject. | BizObject.Delete | ||
BizObject.Close | BizObject.Close | ||
MsgBox "Done" | |||
END IF | 'Step 4 : Logout after done | ||
'ComServer.Logout | |||
MsgBox "Done" | |||
Else | |||
MsgBox "Record Not Found" | |||
END IF | |||
End Function | End Function | ||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Get Invoice Next Number==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Get Invoice Next Number Script | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
'Available in Version 5.2018.833.759 & above | |||
'Copy below script & paste to notepad & name it as eg GetNextNo.vbs | |||
Call CheckLogin | |||
Call GetData | |||
Call ShowNextNo | |||
Dim ComServer, lDataSet | |||
Set | Function CreateSQLAccServer | ||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
function CheckLogin | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | |||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | |||
'UserName, Password, DCF full path, Database filename | |||
END IF | |||
END IF | |||
End Function | End Function | ||
Function | Function GetData | ||
Dim | Dim lSQL | ||
' | lSQL = "SELECT A.*, B.NEXTNUMBER FROM SY_DOCNO A " | ||
Set | lSQL = lSQL & "INNER JOIN SY_DOCNO_DTL B ON (A.DOCKEY=B.PARENTKEY) " | ||
lSQL = lSQL & "WHERE A.DOCTYPE='IV' " | |||
lSQL = lSQL & "AND A.DESCRIPTION='Customer Invoice' " | |||
lSQL = lSQL & "AND A.STATESET=1 " | |||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | |||
End Function | |||
Function ShowNextNo | |||
Dim Desc, Fmt, NextNo, lResult, sb | |||
set sb = CreateObject("System.Text.StringBuilder") | |||
'Step 2 : Find Doc Number | |||
'Step | |||
If lDataSet.RecordCount > 0 Then | If lDataSet.RecordCount > 0 Then | ||
lDataSet.First | lDataSet.First | ||
Desc = lDataSet.FindField("Description").AsString | |||
Fmt = lDataSet.FindField("Format").AsString | |||
NextNo = lDataSet.FindField("NEXTNUMBER").Value | |||
'Convert from IV-%.5d to IV-{0:d5} | |||
sb.Append_3 Fmt | |||
sb.Replace "d", "" | |||
sb.Replace "%.","{0:d" | |||
Fmt = sb.ToString & "}" | |||
sb.Length = 0 'clear sb list | |||
sb.AppendFormat Fmt, NextNo | |||
lResult = sb.ToString | |||
MsgBox Desc | |||
MsgBox Fmt | |||
MsgBox NextNo | |||
MsgBox lResult | |||
Else | |||
MsgBox "Record Not Found" | |||
END IF | END IF | ||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 9,691: | Line 10,094: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Auto Run Doc. Number==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Sales Order Auto Run Doc Number Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg SL_SO.vbs | |||
'Copy below script & paste to notepad & name it as eg | 'If had prompt Set Default - Just click Yes to avoid keep prompt | ||
Call CheckLogin | Call CheckLogin | ||
Call | Call GetData | ||
Call | Call InsertData | ||
Dim ComServer | Dim ComServer, lDataSet | ||
Function CreateSQLAccServer | Function CreateSQLAccServer | ||
Line 9,718: | Line 10,121: | ||
End Function | End Function | ||
Function | Function GetData | ||
Dim lSQL | |||
lSQL = "SELECT * FROM SY_DOCNO " | |||
lSQL = lSQL & "WHERE DESCRIPTION='Customer Sales Order 2' " | |||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | |||
End Function | |||
Function InsertData | |||
Dim BizObject, lMain, lDetail, lDate | Dim BizObject, lMain, lDetail, lDate | ||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("SL_SO") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | ||
Set lDetail = BizObject.DataSets.Find(" | Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | ||
'Begin Looping yr data | 'Begin Looping yr data | ||
'Step 4 : Insert Data - Master | 'Step 4 : Insert Data - Master | ||
lDate = CDate("January 1, 2019") | |||
BizObject.New | BizObject.New | ||
lMain.FindField("Code").AsString = "- | lMain.FindField("DocKey").value = -1 | ||
lMain.FindField("Description").AsString = " | lMain.FindField("DocNo").AsString = "<<New>>" | ||
lMain.FindField(" | lMain.FindField("DocDate").value = lDate | ||
lMain.FindField("PostDate").value = lDate | |||
lMain.FindField("Code").AsString = "300-C0001" 'Customer Account | |||
lMain.FindField("CompanyName").AsString = "Cash Sales" | |||
lMain.FindField("Address1").AsString = "" 'Optional | |||
lMain.FindField("Address2").AsString = "" 'Optional | |||
lMain.FindField("Address3").AsString = "" 'Optional | |||
lMain.FindField("Address4").AsString = "" 'Optional | |||
lMain.FindField("Phone1").AsString = "" 'Optional | |||
lMain.FindField("Description").AsString = "Sales Order" | |||
lMain.FindField("DocNoSetKey").value = lDataSet.FindField("DocKey").value | |||
'Step 5: Insert Data - Detail | 'Step 5: Insert Data - Detail | ||
'For With Item Code | |||
lDetail.Append | lDetail.Append | ||
lDetail.FindField("DtlKey").value = -1 | lDetail.FindField("DtlKey").value = -1 | ||
lDetail.FindField(" | lDetail.FindField("DocKey").value = -1 | ||
lDetail.FindField("Seq").value = | lDetail.FindField("Seq").value = 3 | ||
lDetail.FindField("ItemCode").AsString = "ANT" | lDetail.FindField("ItemCode").AsString = "ANT" | ||
lDetail.FindField("Description").AsString = "Sales Item | lDetail.FindField("Description").AsString = "Sales Item B" | ||
lDetail.FindField("Qty").AsFloat = 2 | lDetail.FindField("Qty").AsFloat = 2 | ||
lDetail.FindField("UOM").AsString = "UNIT" | |||
'lDetail.FindField("DISC").AsString = "5%+3" 'Optional (eg 5% plus 3 Discount) | 'lDetail.FindField("DISC").AsString = "5%+3" 'Optional (eg 5% plus 3 Discount) | ||
lDetail.FindField(" | lDetail.FindField("Tax").AsString = "" | ||
lDetail.FindField("TaxRate").AsString = "" | |||
lDetail.FindField("TaxInclusive").value = 0 | |||
lDetail.FindField("UnitPrice").AsFloat = 100 | |||
lDetail.FindField("Amount").AsFloat = 200 | lDetail.FindField("Amount").AsFloat = 200 | ||
lDetail.FindField(" | lDetail.FindField("TaxAmt").AsFloat = 0 | ||
lDetail.Post | lDetail.Post | ||
'Step 6: Save Document | 'Step 6: Save Document | ||
BizObject.Save | BizObject.Save | ||
BizObject.Close | BizObject.Close | ||
MsgBox " | |||
'Step 7 : Logout after done | |||
'ComServer.Logout | |||
MsgBox "Done" | |||
End Function | End Function | ||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====GL_PV==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Cash Book PV Script | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
'Copy below script & paste to notepad & name it as eg AR_PM.vbs | |||
Call PostData | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
Function PostData | |||
Dim ComServer, BizObject, lIVNo, lDate | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
'Copy below script & paste to notepad & name it as eg | |||
Call | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
Function | |||
Dim ComServer, BizObject, lDate | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | ||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | ||
END IF | END IF | ||
'Step 2: Find and Create the Biz Objects | 'Step 2: Find and Create the Biz Objects | ||
Set BizObject = ComServer.BizObjects.Find(" | Set BizObject = ComServer.BizObjects.Find("GL_PV") | ||
'Step 3: Set Dataset | 'Step 3: Set Dataset | ||
Set | Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | ||
Set lDetailDataSet = BizObject.DataSets.Find("cdsDocDetail") 'lDetailDataSet contains detail data | Set lDetailDataSet = BizObject.DataSets.Find("cdsDocDetail") 'lDetailDataSet contains detail data | ||
'Step 4 : | 'Step 4 : Posting | ||
lDate = CDate("January 23, 2020") | |||
BizObject.New | |||
lMain.FindField("DOCKEY").Value = -1 | |||
lMain.FindField("DocNo").AsString = "--CB PV Test--" | |||
lMain.FindField("DocDate").Value = lDate | |||
lMain.FindField("PostDate").Value = lDate | |||
lMain.FindField("Description").AsString = "Compacc System" | |||
lMain.FindField("PaymentMethod").AsString = "310-001" | |||
lMain.FindField("CHEQUENUMBER").AsString = "MBB 213245" | |||
lMain.FindField("DocAmt").AsFloat = 2019.57 | |||
lMain.FindField("Cancelled").AsString = "F" | |||
lMain.Post | |||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DTLKEY").value = -1 | |||
lDetailDataSet.FindField("DOCKEY").value = -1 | |||
lDetailDataSet.FindField("Code").AsString = "200-300" | |||
lDetailDataSet.FindField("DESCRIPTION").AsString = "Maybank - Asus A555LD-xx313H" | |||
lDetailDataSet.FindField("TAX").AsString = "" | |||
lDetailDataSet.FindField("TAXAMT").AsFloat = 0 | |||
lDetailDataSet.FindField("TAXINCLUSIVE").AsFloat = 0 | |||
lDetailDataSet.FindField("AMOUNT").AsFloat = 2019.57 | |||
lDetailDataSet.Post | |||
'Step | 'Step 5: Save Document | ||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
====ST_Item with Opening==== | |||
=== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! ST_Item with Opening Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="vb"> | ||
'Copy below script & paste to notepad & name it as eg ST_XF.vbs | |||
Call CheckLogin | |||
Call InsertData | |||
Dim ComServer | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
function CheckLogin | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | |||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | |||
'UserName, Password, DCF full path, Database filename | |||
END IF | |||
End Function | |||
Function InsertData | |||
Dim BizObject, lMain, lDtl, lOpn | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("ST_ITEM") | |||
==== | 'Step 3: Set Dataset | ||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDtl = BizObject.DataSets.Find("cdsUOM") 'lDetail contains detail data | |||
Set lOpn = BizObject.DataSets.Find("cdsOpeningBalance") 'lDetail contains detail data | |||
'Begin Looping yr data | |||
'Step 4 : Insert Data - Master | |||
BizObject.New | |||
lMain.FindField("CODE").value = "==Test New Item Code==" | |||
lMain.FindField("DESCRIPTION").value = "Item Description 123" | |||
lMain.FindField("STOCKGROUP").value = "DEFAULT" | |||
lMain.FindField("STOCKCONTROL").value = "T" | |||
lMain.FindField("ISACTIVE").value = "T" | |||
'Step 5: Insert Data - Detail | |||
lDtl.Edit 'For 1St UOM | |||
lDtl.FindField("UOM").AsString = "PCS" | |||
lDtl.FindField("Rate").AsFloat = 1 | |||
lDtl.FindField("RefCost").AsFloat = 10.2 | |||
lDtl.FindField("RefPrice").AsFloat = 25 | |||
lDtl.Post | |||
lDtl.Append 'For 2nd UOM | |||
lDtl.FindField("UOM").AsString = "CTN" | |||
lDtl.FindField("Rate").AsFloat = 12 | |||
lDtl.FindField("RefCost").AsFloat = 102 | |||
lDtl.FindField("RefPrice").AsFloat = 240 | |||
lDtl.Post | |||
'Step 6: Insert Data - Opening | |||
lOpn.Append | |||
lOpn.FindField("LOCATION").AsString = "----" | |||
lOpn.FindField("Qty").AsFloat = 10 'in smallest UOM' | |||
lOpn.FindField("COST").AsFloat = 10.2 | |||
lOpn.Post | |||
'Step 7: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
'Step 8 : Logout after done | |||
'ComServer.Logout | |||
MsgBox "Done" | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====GL Stock Value-Insert,Edit & Delete==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! GL Stock Value Insert, Edit & Delete Script | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
'Available in Version 5.2018.833.759 & above | |||
'Copy below script & paste to notepad & name it as eg GLStockValue.vbs | |||
Call CheckLogin | |||
Call GetData | |||
'Call InsertValue | |||
'Call UpdateValue | |||
Call DeleteValue | |||
Dim ComServer, lDataSet | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
function CheckLogin | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | |||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | |||
'UserName, Password, DCF full path, Database filename | |||
END IF | |||
End Function | |||
Function GetData | |||
Dim lSQL | |||
lSQL = "SELECT Dockey FROM GL_STOCK " | |||
lSQL = lSQL & "WHERE BalanceStock='330-000' " | |||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | |||
End Function | |||
Function InsertValue | |||
BizObject. | Dim BizObject, lMain, lDetail | ||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("GL_STOCK") | |||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | |||
'Step 4 : Find Dockey Record | |||
If lDataSet.RecordCount > 0 Then | |||
lDataSet.First | |||
BizObject.Params.Find("DocKey").Value = lDataSet.FindField("DocKey").AsString | |||
BizObject.Open | |||
BizObject.Edit | |||
lDetail.Append | |||
lDetail.FindField("Project").value = "----" | |||
lDetail.FindField("SYear").value = 2021 | |||
lDetail.FindField("SMonth").value = 4 | |||
lDetail.FindField("Amount").value = 423.00 | |||
lDetail.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
END IF | |||
End Function | |||
Function UpdateValue | |||
Dim BizObject, lMain, lDetail, v(2) | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("GL_STOCK") | |||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | |||
'Step 4 : Find Dockey Record | |||
If lDataSet.RecordCount > 0 Then | |||
lDataSet.First | |||
BizObject.Params.Find("DocKey").Value = lDataSet.FindField("DocKey").AsString | |||
BizObject.Open | |||
BizObject.Edit | |||
v(0) = "----" 'Project Code | |||
v(1) = "2021" 'Year | |||
v(2) = "3" 'Month to update | |||
if (lDetail.Locate("Project;SYear;SMonth", v, false, false)) then | |||
lDetail.Edit | |||
lDetail.FindField("Amount").value = 333.12 | |||
lDetail.Post | |||
End IF | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
END IF | |||
End Function | |||
Function DeleteValue | |||
Dim BizObject, lMain, lDetail, v(2) | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("GL_STOCK") | |||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | |||
'Step 4 : Find Dockey Record | |||
If lDataSet.RecordCount > 0 Then | |||
lDataSet.First | |||
BizObject.Params.Find("DocKey").Value = lDataSet.FindField("DocKey").AsString | |||
BizObject.Open | |||
BizObject.Edit | |||
v(0) = "----" 'Project Code | |||
v(1) = "2021" 'Year | |||
v(2) = "4" 'Month to update | |||
if (lDetail.Locate("Project;SYear;SMonth", v, false, false)) then | |||
lDetail.Delete | |||
End IF | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
END IF | |||
BizObject. | End Function | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Stock Item Template to SL_IV==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Stock Item Template to SL_IV Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="vb"> | ||
'Updated 03 Sep 2021 | |||
'Copy below script & paste to notepad & name it as eg SL_IV.vbs | |||
Call CheckLogin | |||
Call InsertData1 | |||
Call InsertData2 | |||
Dim ComServer | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
function | function CheckLogin | ||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | |||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | |||
'UserName, Password, DCF full path, Database filename | |||
END IF | |||
End Function | |||
Function InsertData1 | |||
Dim BizObject, lMain, lDetail, lDate | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("ST_ITEM_TPL") | |||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsItemTplDtl") 'lDetail contains detail data | |||
'Begin Looping yr data | |||
'Step 4 : Insert Data - Master | |||
BizObject.New | |||
lMain.FindField("Code").AsString = "--TPL Test--" | |||
lMain.FindField("Description").AsString = "Template formt 1" | |||
lMain.FindField("RefPrice").AsFloat = 299.15 | |||
lMain | |||
'Step 5: Insert Data - Detail | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("Code").AsString = "--TPL Test--" | |||
lDetail.FindField("Seq").value = 1 | |||
lDetail.FindField("ItemCode").AsString = "ANT" | |||
lDetail.FindField("Description").AsString = "Sales Item A" | |||
lDetail.FindField("UOM").AsString = "BOX" | |||
lDetail.FindField("Qty").AsFloat = 2 | |||
'lDetail.FindField("DISC").AsString = "5%+3" 'Optional (eg 5% plus 3 Discount) | |||
lDetail. | lDetail.FindField("UNITAMOUNT").AsFloat = 100 | ||
lDetail.FindField("Amount").AsFloat = 200 | |||
lDetail.FindField("PRINTABLE").AsString = "T" | |||
lDetail.Post | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("Code").AsString = "--TPL Test--" | |||
lDetail.FindField("Seq").value = 2 | |||
lDetail.FindField("ItemCode").AsString = "COVER" | |||
lDetail.FindField("Description").AsString = "Sales Item B" | |||
lDetail.FindField("UOM").AsString = "UNIT" | |||
lDetail.FindField("Qty").AsFloat = 3 | |||
'lDetail.FindField("DISC").AsString = "5%+3" 'Optional (eg 5% plus 3 Discount) | |||
lDetail.FindField("UNITAMOUNT").AsFloat = 10 | |||
lDetail.FindField("Amount").AsFloat = 30 | |||
lDetail.FindField("PRINTABLE").AsString = "T" | |||
lDetail.Post | |||
'Step 6: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Template Posting Done" | |||
End Function | |||
Function InsertData2 | |||
Dim BizObject, lMain, lDetail, lDate, lDODtl, lSQL, v(2) | |||
'Step 1: Get Template Information | |||
lSQL = "SELECT * FROM ST_ITEM_TPLDTL " | |||
lSQL = lSQL & "WHERE Code='--TPL Test--' " | |||
Set lDODtl = ComServer.DBManager.NewDataSet(lSQL) | |||
if lDODtl.RecordCount > 0 then | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("SL_IV") | |||
'Step 3: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMain contains master data | |||
Set lDetail = BizObject.DataSets.Find("cdsDocDetail") 'lDetail contains detail data | |||
'Step 4 : Insert Data - Master | |||
lDate = CDate("January 1, 2021") | |||
BizObject.New | |||
lMain.FindField("DocKey").value = -1 | |||
lMain.FindField("DocNo").AsString = "--IV Test--" | |||
lMain.FindField("DocDate").value = lDate | |||
lMain.FindField("PostDate").value = lDate | |||
lMain.FindField("Code").AsString = "300-C0001" 'Customer Account | |||
lMain.FindField("CompanyName").AsString = "Cash Sales" | |||
'lMain.FindField("Address1").AsString = "" 'Optional | |||
'lMain.FindField("Address2").AsString = "" 'Optional | |||
'lMain.FindField("Address3").AsString = "" 'Optional | |||
'lMain.FindField("Address4").AsString = "" 'Optional | |||
'lMain.FindField("Phone1").AsString = "" 'Optional | |||
lMain.FindField("Description").AsString = "Sales" | |||
'Step 6: Insert Data - Detail | |||
lDODtl.First | |||
While not lDODtl.Eof | |||
lDetail.Append | |||
lDetail.FindField("DtlKey").value = -1 | |||
lDetail.FindField("DocKey").value = -1 | |||
lDetail.FindField("Seq").value = 1 | |||
lDetail.FindField("ItemCode").AsString = lDODtl.FindField("ItemCode").AsString | |||
lDetail.FindField("Description").AsString = lDODtl.FindField("Description").AsString | |||
lDetail.FindField("UOM").AsString = lDODtl.FindField("UOM").AsString | |||
lDetail.FindField("Qty").AsFloat = lDODtl.FindField("Qty").AsFloat | |||
lDetail.FindField("DISC").AsString = lDODtl.FindField("Disc").AsString | |||
lDetail.FindField("UnitPrice").AsFloat = lDODtl.FindField("UnitAmount").AsFloat | |||
lDetail.FindField("Amount").AsFloat = lDODtl.FindField("Amount").AsFloat | |||
lDetail.FindField("PRINTABLE").AsString = lDODtl.FindField("PRINTABLE").AsString | |||
lDetail.Post | |||
lDODtl.Next | |||
Wend | |||
'Step 7: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
'Step 8 : Logout after done | |||
'ComServer.Logout | |||
MsgBox "Posting IV Done" | |||
else MsgBox "--No Template found. Posting IV aborted" | |||
End IF | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====AR_CN==== | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_CN Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="vb"> | ||
'Updated 24 Feb 2023 | |||
'Copy below script & paste to notepad & name it as eg AR_CN.vbs | |||
Call InsertData | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
Function InsertData | |||
Dim ComServer, BizObject, lDate, lIVNO, v(1) | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
If not ComServer.IsLogin Then 'if user hasn't logon to SQL application | |||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0020.FDB" | |||
END IF | |||
'Step 2: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("AR_CN") | |||
'Step 3: Set Dataset | |||
Set lMainDataSet = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | |||
Set lDetailDataSet = BizObject.DataSets.Find("cdsDocDetail") 'lDetailDataSet contains detail data | |||
Set lKO = BizObject.DataSets.Find("cdsKnockOff") 'Contains IV/DN to knock off data | |||
'Step 4 : Insert Data - Master | |||
lDate = CDate("January 1, 2023") | |||
BizObject.New | |||
lMainDataSet.FindField("DocKey").value = -1 | |||
lMainDataSet.FindField("DocNo").value = "--CN Test--" | |||
lMainDataSet.FindField("DocDate").value = lDate | |||
lMainDataSet.FindField("PostDate").value = lDate | |||
lMainDataSet.FindField("Code").value = "300-A0001" | |||
lMainDataSet.FindField("Description").value = "Credit Note" | |||
'Step 5: Insert Data - Detail | |||
'For Tax Inclusive = True with override Tax Amount | |||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("Account").value = "510-2000" | |||
lDetailDataSet.FindField("Description").value = "Sales Item A" | |||
lDetailDataSet.FindField("Tax").value = "SV" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("Amount").value = 410.37 | |||
lDetailDataSet.FindField("TaxAmt").value = 24.63 | |||
lDetailDataSet.DisableControls | |||
lDetailDataSet.FindField("TaxInclusive").value = 1 | |||
lDetailDataSet.EnableControls | |||
lDetailDataSet.FindField("Changed").value = "F" | |||
lDetailDataSet.Post | |||
'For Tax Inclusive = False with override Tax Amount | |||
lDetailDataSet.Append | |||
lDetailDataSet.FindField("DtlKey").value = -1 | |||
lDetailDataSet.FindField("DocKey").value = -1 | |||
lDetailDataSet.FindField("Account").value = "510-2000" | |||
lDetailDataSet.FindField("Description").value = "Sales Item B" | |||
lDetailDataSet.FindField("Tax").value = "SV" | |||
lDetailDataSet.FindField("TaxInclusive").value = 0 | |||
lDetailDataSet.FindField("Amount").value = 94.43 | |||
lDetailDataSet.FindField("TaxAmt").value = 5.66 | |||
lDetailDataSet.FindField("Changed").value = "F" | |||
lDetailDataSet.Post | |||
'Step 7: Knock Off IV | |||
lIVNO = "--IV Test--" | |||
v(0) = "IV" | |||
v(1) = lIVNO | |||
if (lKO.Locate("DocType;DocNo", v, false, false)) then | |||
lKO.Edit | |||
lKO.FindField("KOAmt").value = 65.57 | |||
lKO.FindField("KnockOff").AsString = "T" | |||
lKO.Post | |||
End IF | |||
'Step 7: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
MsgBox "Done" | |||
End Function | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | <br /> | ||
===JScript/JavaScript=== | |||
This Script only can run using Internet Explorer (till IE 11) | |||
====AR_IV==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_IV Script | ||
|- | |- | ||
| | | | ||
Line 10,545: | Line 10,721: | ||
} | } | ||
function | function AutoInvoice() { | ||
var BizObject, | var BizObject, lMainDataSet, lDetailDataSet; | ||
CreateSQLAccServer(); | CreateSQLAccServer(); | ||
BizObject = ComServer.BizObjects.Find(' | BizObject = ComServer.BizObjects.Find('AR_IV'); | ||
lMainDataSet = BizObject.DataSets.Find('MainDataSet'); | |||
lDetailDataSet = BizObject.DataSets.Find('cdsDocDetail'); | |||
BizObject.New(); | BizObject.New(); | ||
lMainDataSet.FindField('DocKey').value = -1; | |||
lMainDataSet.FindField('DocNo').value = "--IV Test--"; | |||
lMainDataSet.FindField('DocDate').value = "01/10/2016"; | |||
lMainDataSet.FindField('PostDate').value = "01/10/2016"; | |||
lMainDataSet.FindField('Code').value = "300-A0003"; | |||
lMainDataSet.FindField('Description').value = "Sales"; | |||
/*For Tax Inclusive = True with override Tax Amount*/ | |||
lDetailDataSet.Append(); | |||
lDetailDataSet.FindField('DtlKey').value = -1; | |||
lDetailDataSet.FindField('DocKey').value = -1; | |||
lDetailDataSet.FindField('Account').value = "500-000"; | |||
lDetailDataSet.FindField('Description').value = "Sales Item A"; | |||
lDetailDataSet.FindField('Tax').value = "SR"; | |||
lDetailDataSet.FindField('TaxInclusive').value = 0; | |||
lDetailDataSet.FindField('Amount').value = 410.37; | |||
lDetailDataSet.FindField('TaxAmt').value = 24.63; | |||
lDetailDataSet.DisableControls(); | |||
lDetailDataSet.FindField('TaxInclusive').value = 1; | |||
lDetailDataSet.EnableControls(); | |||
lDetailDataSet.FindField('Changed').value = "F"; | |||
lDetailDataSet.Post(); | |||
/*For Tax Inclusive = False with override Tax Amount*/ | |||
lDetailDataSet.Append(); | |||
lDetailDataSet.FindField('DtlKey').value = -1; | |||
lDetailDataSet.FindField('DocKey').value = -1; | |||
lDetailDataSet.FindField('Account').value = "500-000"; | |||
lDetailDataSet.FindField('Description').value = "Sales Item B"; | |||
lDetailDataSet.FindField('Tax').value = "SR"; | |||
lDetailDataSet.FindField('TaxInclusive').value = 0; | |||
lDetailDataSet.FindField('Amount').value = 94.43; | |||
lDetailDataSet.FindField('TaxAmt').value = 5.66; | |||
lDetailDataSet.FindField('Changed').value = "F"; | |||
lDetailDataSet.Post(); | |||
/* Save document */ | /* Save document */ | ||
BizObject.Save(); | BizObject.Save(); | ||
BizObject.Close(); | BizObject.Close(); | ||
alert('Customer | alert('Customer Invoice - has been saved.'); | ||
} | } | ||
</script> | |||
</head> | |||
<body> | |||
<input type="submit" value="SYNC" name="btnSubmit" onclick="AutoInvoice()"> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====SL_CS==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! SL_CS Script | |||
|- | |||
==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! | |||
|- | |||
| | | | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
<html> | <html> | ||
<head> | <head> | ||
<title>Add | <title>Add Cash Sales</title> | ||
<script language="JScript"> | <script language="JScript"> | ||
var ComServer; | var ComServer; | ||
Line 10,653: | Line 10,810: | ||
/*Step 2: Find and Create the Biz Objects*/ | /*Step 2: Find and Create the Biz Objects*/ | ||
BizObject = ComServer.BizObjects.Find(' | BizObject = ComServer.BizObjects.Find('SL_CS') ; | ||
/*Step 3: Set Dataset*/ | /*Step 3: Set Dataset*/ | ||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | ||
lDetail = BizObject.DataSets.Find('cdsDocDetail'); /*lDetail contains detail data */ | |||
/*Begin Looping yr data*/ | /*Begin Looping yr data*/ | ||
/*Step 4 : Insert Data - Master*/ | /*Step 4 : Insert Data - Master*/ | ||
BizObject.New(); | BizObject.New(); | ||
lMain.FindField('Code').AsString = " | lMain.FindField('DocKey').value = -1; | ||
lMain.FindField(' | lMain.FindField('DocNo').AsString = "--IV Test--"; | ||
lMain.FindField(' | lMain.FindField('DocDate').value = "20/12/2017"; | ||
lMain.FindField(' | lMain.FindField('PostDate').value = "20/12/2017"; | ||
lMain.FindField(' | lMain.FindField('Code').AsString = "300-C0001"; /*Customer Account*/ | ||
lMain.FindField('CompanyName').AsString = "Cash Sales" | |||
/*Step 5: Insert Data - | lMain.FindField('Address1').AsString = ""; /*Optional*/ | ||
lMain.FindField('Address2').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address3').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address4').AsString = ""; /*Optional*/ | |||
lMain.FindField('Phone1').AsString = ""; /*Optional*/ | |||
lMain.FindField('Description').AsString = "Sales"; | |||
/*Step 5: Insert Data - Detail*/ | |||
/*For Tax Inclusive = True with override Tax Amount*/ | |||
lDetail.Append(); | |||
lDetail.FindField('DtlKey').value = -1; | |||
lDetail.FindField('DocKey').value = -1; | |||
lDetail.FindField('Seq').value = 1; | |||
lDetail.FindField('Account').AsString = "500-000"; /*Sales Account*/ | |||
lDetail.FindField('Description').AsString = "Sales Item A"; | |||
lDetail.FindField('Qty').AsFloat = 1; | |||
lDetail.FindField('Tax').AsString = "SR"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
lDetail.FindField('UnitPrice').AsFloat = 435; | |||
lDetail.FindField('Amount').AsFloat = 410.37; /*Exclding GST Amt*/ | |||
lDetail.FindField('TaxAmt').AsFloat = 24.63; | |||
lDetail.DisableControls(); | |||
lDetail.FindField('TaxInclusive').value = 1; | |||
lDetail.EnableControls(); | |||
lDetail.Post(); | |||
/*For Tax Inclusive = False with override Tax Amount*/ | |||
lDetail.Append(); | |||
lDetail.FindField('DtlKey').value = -1; | |||
lDetail.FindField('DocKey').value = -1; | |||
lDetail.FindField('Seq').value = 2; | |||
lDetail.FindField('Account').AsString = "500-000"; | |||
lDetail.FindField('Description').AsString = "Sales Item B"; | |||
lDetail.FindField('Qty').AsFloat = 1; | |||
lDetail.FindField('Tax').AsString = "SR"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
lDetail.FindField('UnitPrice').AsFloat = 94.43; | |||
lDetail.FindField('Amount').AsFloat = 94.43; | |||
lDetail.FindField('TaxAmt').AsFloat = 5.66; | |||
lDetail.Post(); | |||
/*For With Item Code*/ | |||
lDetail.Append(); | |||
lDetail.FindField('DtlKey').value = -1; | |||
lDetail.FindField('DocKey').value = -1; | |||
lDetail.FindField('Seq').value = 3; | |||
lDetail.FindField('ItemCode').AsString = "ANT"; | |||
lDetail.FindField('Description').AsString = "Sales Item B"; | |||
/*Step 6: Save*/ | /*lDetail.FindField('Account').AsString = "500-000"; If you wanted override the Sales Account Code*/ | ||
BizObject.Save(); | lDetail.FindField('Qty').AsFloat = 2; | ||
BizObject.Close(); | lDetail.FindField('UOM').AsString = "UNIT"; | ||
alert(' | /*lDetail.FindField('DISC').AsString = "5%+3"; Optional (eg 5% plus 3 Discount)*/ | ||
lDetail.FindField('Tax').AsString = "SR"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
lDetail.FindField('UnitPrice').AsFloat = 100; | |||
lDetail.FindField('Amount').AsFloat = 200; | |||
lDetail.FindField('TaxAmt').AsFloat = 12; | |||
lDetail.Post(); | |||
/*Step 6: Save Document*/ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
alert('Document has been saved.'); | |||
} | } | ||
</script> | </script> | ||
Line 10,698: | Line 10,904: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AR_PM==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_PM Script | ||
|- | |- | ||
| | | | ||
Line 10,706: | Line 10,912: | ||
<html> | <html> | ||
<head> | <head> | ||
<title>Add | <title>Customer Payment</title> | ||
<script language="JScript"> | |||
<html> | |||
<head> | |||
<title>Add Customer Payment</title> | |||
<script language="JScript"> | <script language="JScript"> | ||
var ComServer | var ComServer; | ||
function CreateSQLAccServer() { | function CreateSQLAccServer() { | ||
ComServer = new ActiveXObject( | ComServer = new ActiveXObject("SQLAcc.BizApp"); | ||
if (!ComServer.IsLogin) { /* check whether user has logon */ | if (!ComServer.IsLogin) { /* check whether user has logon */ | ||
ComServer.Login('ADMIN', 'ADMIN', 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', 'SAMPLE.FDB'); | ComServer.Login('ADMIN', 'ADMIN', 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', 'SAMPLE.FDB'); | ||
Line 10,718: | Line 10,928: | ||
} | } | ||
function | function AddPayment() { | ||
var | var BizObject, lMainDataSet, lKnockOffDataSet, V; | ||
CreateSQLAccServer(); | |||
BizObject = ComServer.BizObjects.Find('AR_PM'); | |||
lMainDataSet = BizObject.DataSets.Find('MainDataSet'); | |||
lKnockOffDataSet = BizObject.DataSets.Find('cdsKnockOff'); | |||
BizObject.New(); | |||
lMainDataSet.FindField('DocKey').value = -1; | |||
lMainDataSet.FindField('DocNo').value = "--OR Test--"; | |||
lMainDataSet.FindField('Code').value = "300-C0001"; | |||
lMainDataSet.FindField('DocDate').value = "10/10/2023"; | |||
lMainDataSet.FindField('PostDate').value = "10/10/2023"; | |||
lMainDataSet.FindField('Description').value = "Payment for Account"; | |||
lMainDataSet.FindField('PaymentMethod').value = "310-001"; | |||
lMainDataSet.FindField('ChequeNumber').value = ""; | |||
lMainDataSet.FindField('DocAmt').AsFloat = 106.10; | |||
lMainDataSet.FindField('BankCharge').AsFloat = 0; | |||
lMainDataSet.FindField('UnappliedAmt').AsFloat = 0; | |||
lMainDataSet.FindField('Cancelled').value = 'F'; | |||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'IV'); /*Knock Off DocType*/ | |||
v.SetItem(1, 'IV-00172'); /*Knock Off DocNo*/ | |||
if ( | if (lKnockOffDataSet.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | ||
lKnockOffDataSet.Edit(); | |||
lKnockOffDataSet.FindField('KOAmt').AsFloat = 106.10; | |||
lKnockOffDataSet.FindField('KnockOff').AsString = 'T'; | |||
lKnockOffDataSet.Post(); } | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
alert("Customer Payment - has been saved."); | |||
} | } | ||
function EditPayment(){ | |||
var BizObject, lMainDataSet, lKnockOffDataSet, V, lDocNo, lDocKey; | |||
CreateSQLAccServer(); | |||
var | |||
BizObject = ComServer.BizObjects.Find('AR_PM'); | |||
lMainDataSet = BizObject.DataSets.Find('MainDataSet'); | |||
lKnockOffDataSet = BizObject.DataSets.Find('cdsKnockOff'); | |||
lDocNo = "--OR Test--" | |||
lDocKey = BizObject.FindKeyByRef('DocNo', lDocNo); | |||
BizObject.Params.Find('DocKey').Value = lDocKey; | |||
if (lDocKey != null) { | |||
BizObject.Open(); | |||
BizObject.Edit(); | |||
lMainDataSet.FindField('Description').value = "Payment for Account-Edited"; | |||
lMainDataSet.FindField('PaymentMethod').value = "310-001"; | |||
lMainDataSet.FindField('ChequeNumber').value = ""; | |||
lMainDataSet.FindField('DocAmt').AsFloat = 200.00; | |||
lMainDataSet.FindField('BankCharge').AsFloat = 0; | |||
lMainDataSet.FindField('UnappliedAmt').AsFloat = 0; | |||
lMainDataSet.FindField('Cancelled').value = 'F'; | |||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'IV'); /*Knock Off DocType*/ | |||
v.SetItem(1, 'IV-00172'); /*Knock Off DocNo*/ | |||
if (lKnockOffDataSet.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | |||
lKnockOffDataSet.Edit(); | |||
lKnockOffDataSet.FindField('KOAmt').AsFloat = 200; | |||
lKnockOffDataSet.FindField('KnockOff').AsString = 'T'; | |||
lKnockOffDataSet.Post(); } | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
alert("Customer Payment - has been Edited & saved."); | |||
} | |||
} | |||
function DelPayment(){ | |||
var BizObject, lMainDataSet, lKnockOffDataSet, V, lDocNo, lDocKey; | |||
CreateSQLAccServer(); | |||
BizObject = ComServer.BizObjects.Find('AR_PM'); | |||
lMainDataSet = BizObject.DataSets.Find('MainDataSet'); | |||
lKnockOffDataSet = BizObject.DataSets.Find('cdsKnockOff'); | |||
lDocNo = "--OR Test--" | |||
lDocKey = BizObject.FindKeyByRef('DocNo', lDocNo); | |||
BizObject.Params.Find('DocKey').Value = lDocKey; | |||
if (lDocKey != null) { | |||
BizObject.Open(); | |||
BizObject.Delete(); | |||
BizObject.Close(); | |||
alert("Customer Payment - has been Deleted."); | |||
} | |||
} | |||
</script> | |||
</head> | |||
<body> | |||
<input type="submit" value="Add Payment" name="btnSubmit" onclick="AddPayment()"> | |||
<input type="submit" value="Edit Payment" name="btnSubmit" onclick="EditPayment()"> | |||
<input type="submit" value="Delete Payment" name="btnSubmit" onclick="DelPayment()"> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Customer.IV.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer.IV.RO Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="javascript"> | ||
<html> | |||
<head> | |||
<title>Customer.IV.RO</title> | |||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |||
<script type="text/javascript"> | |||
var ComServer; | |||
function CreateSQLAccServer() { | |||
ComServer = new ActiveXObject("SQLAcc.BizApp"); | |||
if (!ComServer.IsLogin) { /* check whether user has logon */ | |||
ComServer.Login('ADMIN', 'ADMIN', 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', 'SAMPLE.FDB'); | |||
/* UserName, Password */ | |||
} | |||
} | |||
function GetData() { | |||
var lMain, lDetail, lRptVar, lDateFrom, lDateTo; | |||
{ | elem = document.getElementById('txt1'); | ||
CreateSQLAccServer(); | |||
lDateFrom = new Date("January 1 2015"); | |||
lDateTo = new Date("December 31, 2015"); | |||
lRptVar = ComServer.RptObjects.Find('Customer.IV.RO'); | |||
lRptVar.Params.Find('SelectDate').Value = true; | |||
lRptVar.Params.Find('DateFrom').Value = lDateFrom.valueOf(); | |||
lRptVar.Params.Find('DateTo').Value = lDateTo.valueOf(); | |||
lRptVar.Params.Find('AllAgent').Value = false; | |||
lRptVar.Params.Find('AgentData').Value = "----\nLF"; /*Filter by Agent code ---- & HALIM */ | |||
lRptVar.Params.Find('AllArea').Value = true; | |||
lRptVar.Params.Find('AllCompany').Value = true; | |||
lRptVar.Params.Find('AllCurrency').Value = true; | |||
lRptVar.Params.Find('AllDocProject').Value = true; | |||
lRptVar.Params.Find('AllCompanyCategory').Value = true; | |||
lRptVar.Params.Find('AllDocument').Value = true; | |||
lRptVar.Params.Find('IncludeCancelled').Value = false; | |||
lRptVar.Params.Find('PrintDocumentStyle').Value = false; | |||
lRptVar.Params.Find('AllItemProject').Value = true; | |||
lRptVar.Params.Find('AllPaymentMethod').Value = true; | |||
lRptVar.CalculateReport(); | |||
lMain = lRptVar.DataSets.Find('cdsMain'); | |||
lDetail = lRptVar.DataSets.Find('cdsDocDetail'); | |||
/*alert("Count -" + lRptVar.DataSets.Find('cdsDocDetail').RecordCount);*/ | |||
elem.innerHTML += 'From Main'+'\n'; | |||
lMain.First(); | |||
while (!lMain.eof) { | |||
elem.innerHTML += lMain.FindField('DocKey').AsString + ' ' + | |||
lMain.FindField('DocNo').AsString + ' ' + lMain.FindField('DocDate').AsString + ' '+ | |||
lMain.FindField('CompanyName').AsString + ' ' + lMain.FindField('DocAmt').AsString + '\n'; | |||
lMain.Next(); | |||
} | |||
elem.innerHTML += 'End Main'+'\n\n'; | |||
elem.innerHTML += 'From Detail'+'\n'; | |||
lDetail.First(); | |||
while (!lDetail.eof) { | |||
elem.innerHTML += lDetail.FindField('Dockey').AsString + ' ' + lDetail.FindField('Account').AsString + ' ' + | |||
lDetail.FindField('Description').AsString + ' ' + lDetail.FindField('Amount').AsString + '\n'; | |||
lDetail.Next(); | |||
} | |||
elem.innerHTML += 'End Detail'+'\n\n'; | |||
} | |||
</script> | |||
</head> | |||
<body> | |||
<form> | |||
<textarea id="txt1" rows="30" cols="116"></textarea> | |||
<input type="button" value="Calculate" onclick="GetData()"> | |||
</form> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Customer.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer.RO Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="javascript"> | ||
<html> | |||
var | <head> | ||
<title>Add Customer Invoice</title> | |||
<script language='JScript'> | |||
var ComServer; | |||
function CreateSQLAccServer() { | |||
ComServer = new ActiveXObject('SQLAcc.BizApp'); | |||
if (!ComServer.IsLogin) { /* check whether user has logon */ | |||
ComServer.Login('ADMIN', 'ADMIN', 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', 'SAMPLE.FDB'); | |||
/* UserName, Password */ | |||
} | |||
} | |||
function GetCustomerData() { | |||
var RptObject, lDataSet, lDataSet2; | |||
edOutput.value = ''; | |||
edOutput2.value = ''; | |||
//Step 1: Create Com Server object | |||
CreateSQLAccServer(); | |||
//Step 2: Find and Create the Report Objects | |||
RptObject = ComServer.RptObjects.Find('Customer.RO'); | |||
//Step 3: Spool parameters | |||
RptObject.Params.Find('AllAgent').Value = true; | |||
RptObject.Params.Find('AllArea').Value = true; | |||
RptObject.Params.Find('AllCompany').Value = true; | |||
RptObject.Params.Find('AllCompanyCategory').Value = true; | |||
RptObject.Params.Find('AllCurrency').Value = true; | |||
RptObject.Params.Find('AllTerms').Value = true; | |||
RptObject.Params.Find('SelectDate').Value = true; | |||
RptObject.Params.Find('PrintActive').Value = true; | |||
RptObject.Params.Find('PrintInactive').Value = false; | |||
RptObject.Params.Find('PrintPending').Value = false; | |||
RptObject.Params.Find('PrintProspect').Value = false; | |||
RptObject.Params.Find('PrintSuspend').Value = false; | |||
//RptObject.Params.Find('CompanyData').Value = '300-A0003'; | |||
//Step 4: Perform Report calculation | |||
RptObject.CalculateReport(); | |||
lDataSet = RptObject.DataSets.Find('cdsMain'); | |||
lDataSet2 = RptObject.DataSets.Find('cdsBranch'); | |||
//alert('Count ' + lDataSet.RecordCount); | |||
//Step 5 Retrieve the output | |||
lDataSet.First; | |||
while (!lDataSet.eof){ | |||
edOutput.value = edOutput.value + | |||
'Code : ' + lDataSet.FindField('Code').AsString + '\n' + | |||
'Company Name : ' + lDataSet.FindField('CompanyName').AsString +'\n\n'; | |||
lDataSet.Next(); | |||
} | |||
lDataSet2.First(); | |||
while (!lDataSet2.eof){ | |||
edOutput2.value = edOutput2.value + | |||
'Code : '+ lDataSet2.FindField('Code').AsString + '\n' + | |||
'Branch Name : '+ lDataSet2.FindField('BranchName').AsString + '\n' + | |||
'Address 1 : '+ lDataSet2.FindField('Address1').AsString + '\n' + | |||
'Address 2 : '+ lDataSet2.FindField('Address2').AsString + '\n' + | |||
'Address 3 : '+ lDataSet2.FindField('Address3').AsString + '\n' + | |||
'Address 4 : '+ lDataSet2.FindField('Address4').AsString + '\n' + | |||
'Phone 1 : '+ lDataSet2.FindField('Phone1').AsString +'\n\n'; | |||
lDataSet2.Next(); | |||
} | |||
} | |||
</script> | |||
</head> | |||
<body> | |||
<table> | |||
<tr> | |||
<th>Main Table</th> | |||
<th>Branch Branch</th> | |||
</tr> | |||
<tr> | |||
<td> | |||
<TEXTAREA rows=15 cols=75 name="edOutput"></TEXTAREA> | |||
</td> | |||
<td> | |||
<TEXTAREA rows=15 cols=75 name="edOutput2"></TEXTAREA> | |||
</td> | |||
</tr> | |||
</table> | |||
<table width="83%"> | |||
<tr> | |||
<td align="center"> | |||
<input type='submit' value='Sync Data' name='btnSubmit' onclick='GetCustomerData()'> | |||
</td> | |||
</tr> | |||
</table> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Get Next IV Number==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Get Next IV Number Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="javascript"> | ||
<html> | |||
<head> | |||
<title>Add Cash Sales</title> | |||
<script language="JScript"> | |||
var ComServer, lDataSet; | |||
function CreateSQLAccServer() { | |||
ComServer = new ActiveXObject('SQLAcc.BizApp'); | |||
if (!ComServer.IsLogin) { /* check whether user has logon */ | |||
ComServer.Login('ADMIN', 'ADMIN', 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', 'SAMPLE.FDB'); | |||
/* UserName, Password */ | |||
} | |||
} | |||
function zeroPad(num, places) { | |||
var zero = places - num.toString().length + 1; | |||
return Array(+(zero > 0 && zero)).join("0") + num; | |||
/*zeroPad(5, 2); // "05"*/ | |||
} | |||
function GetData() { | |||
var lSQL; | |||
lSQL = "SELECT A.*, B.NEXTNUMBER FROM SY_DOCNO A "; | |||
lSQL = lSQL + "INNER JOIN SY_DOCNO_DTL B ON (A.DOCKEY=B.PARENTKEY) "; | |||
lSQL = lSQL + "WHERE A.DOCTYPE='IV' "; | |||
lSQL = lSQL + "AND A.DESCRIPTION='Customer Invoice' "; | |||
lSQL = lSQL + "AND A.STATESET=1 "; | |||
lDataSet = ComServer.DBManager.NewDataSet(lSQL); | |||
} | |||
function ShowNextNo() { | |||
var Desc, Fmt, NextNo, lResult, lPad; | |||
CreateSQLAccServer(); | |||
GetData(); | |||
if (lDataSet.RecordCount > 0) { | |||
lDataSet.First; | |||
Desc = lDataSet.FindField("Description").AsString; | |||
Fmt = lDataSet.FindField("Format").AsString; | |||
NextNo = lDataSet.FindField("NEXTNUMBER").Value; | |||
alert(Desc); | |||
alert(Fmt); | |||
alert(NextNo); | |||
lPad = Fmt.substr(5, 1); | |||
lPad = zeroPad(NextNo, lPad) | |||
Desc = Fmt.substr(0, 3); | |||
alert(Desc + lPad); | |||
} | |||
} | |||
</script> | |||
</head> | |||
<body> | |||
<input type="submit" value="Show Next No" name="btnSubmit" onclick="ShowNextNo()"> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
====Customer & Supplier Contra==== | |||
==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer & Supplier Contra Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="javascript"> | ||
<html> | |||
var lMain, | <head> | ||
<title>Add Customer Invoice</title> | |||
<script language="JScript"> | |||
var ComServer; | |||
function CreateSQLAccServer() { | |||
lMain | ComServer = new ActiveXObject('SQLAcc.BizApp'); | ||
if (!ComServer.IsLogin) { /* check whether user has logon */ | |||
ComServer.Login('ADMIN', 'ADMIN', 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', 'SAMPLE.FDB'); | |||
/* UserName, Password */ | |||
} | |||
} | |||
function PostARCT() { | |||
var BizObject, lMain, lKO, V; | |||
CreateSQLAccServer(); | |||
BizObject = ComServer.BizObjects.Find('AR_CT'); | |||
lMain = BizObject.DataSets.Find('MainDataSet'); | |||
lKO = BizObject.DataSets.Find('cdsKnockOff'); | |||
BizObject.New(); | |||
lMain.FindField('DocKey').value = -1; | |||
lMain.FindField('DocNo').value = "--CT Test--"; | |||
lMain.FindField('DocDate').value = "01/10/2020"; | |||
lMain.FindField('PostDate').value = "01/10/2020"; | |||
lMain.FindField('Code').value = "300-A0002"; | |||
lMain.FindField('Description').value = "Contra"; | |||
lMain.FindField('DocAmt').value = "100.00"; | |||
//lMain.FindField('UnappliedAmt').value = "0"; | |||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'IV'); /*Knock Off DocType*/ | |||
v.SetItem(1, 'IV-00021'); /*Knock Off DocNo*/ | |||
if (lKO.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | |||
lKO.Edit(); | |||
lKO.FindField('DocAmt').value = "100"; | |||
lKO.FindField('KnockOff').AsString = 'T'; | |||
lKO.Post(); } | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
alert('Customer Contra - has been saved.'); | |||
} | |||
function PostAPST() { | |||
var BizObject, lMain, lKO, V, lDocNo, lDocKey; | |||
CreateSQLAccServer(); | |||
BizObject = ComServer.BizObjects.Find('AP_ST'); | |||
lMain = BizObject.DataSets.Find('MainDataSet'); | |||
lKO = BizObject.DataSets.Find('cdsKnockOff'); | |||
lDocNo = "--CT Test--" | |||
lDocKey = BizObject.FindKeyByRef("DocNo", lDocNo) | |||
BizObject.Params.Find("DocKey").Value = lDocKey | |||
if (lDocKey != null) { | |||
BizObject.Open(); | |||
BizObject.Edit(); | |||
lMain.FindField('Code').value = "400-C0001"; | |||
lMain.FindField('DocAmt').value = "100.00"; | |||
//lMain.FindField('UnappliedAmt').value = "0"; | |||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'PI'); /*Knock Off DocType*/ | |||
v.SetItem(1, 'PI-00001'); /*Knock Off DocNo*/ | |||
if (lKO.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | |||
lKO.Edit(); | |||
lKO.FindField('DocAmt').value = "100"; | |||
lKO.FindField('KnockOff').AsString = 'T'; | |||
lKO.Post(); } | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
alert('Supplier Contra - has been Updated.'); | |||
} | |||
} | |||
</script> | |||
</head> | |||
<body> | |||
<button onclick="javascript:PostARCT();">PostARCT</button> | |||
<button onclick="javascript:PostAPST();">PostAPST</button> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Add Stock Item==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! ST_Item Script | ! Add ST_Item Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="javascript"> | ||
<html> | |||
<head> | |||
<title>Add Stock Item</title> | |||
<script language="JScript"> | |||
var ComServer; | |||
function CreateSQLAccServer() { | |||
ComServer = new ActiveXObject('SQLAcc.BizApp'); | |||
if (!ComServer.IsLogin) { /* check whether user has logon */ | |||
ComServer.Login('ADMIN', 'ADMIN', 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', 'SAMPLE.FDB'); | |||
/* UserName, Password */ | |||
} | |||
} | |||
function InsertData() { | |||
var BizObject, lMain, lDetail; | |||
CreateSQLAccServer(); | |||
/*Step 2: Find and Create the Biz Objects*/ | |||
BizObject = ComServer.BizObjects.Find('ST_ITEM') ; | |||
/*Step 3: Set Dataset*/ | |||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | |||
lUOM = BizObject.DataSets.Find('cdsUOM'); /*lDetail contains detail data */ | |||
/*Begin Looping yr data*/ | |||
/*Step 4 : Insert Data - Master*/ | |||
BizObject.New(); | |||
lMain.FindField('Code').AsString = "Code JScript"; | |||
lMain.FindField('DESCRIPTION').AsString = "Post from JScript" | |||
lMain.FindField('STOCKGROUP').AsString = "DEFAULT"; /*Optional*/ | |||
lMain.FindField('STOCKCONTROL').AsString = "T"; /*Optional*/ | |||
lMain.FindField('ISACTIVE').AsString = "T"; /*Optional*/ | |||
/*Step 5: Insert Data - UOM*/ | |||
lUOM.Edit(); /*For 1St UOM*/ | |||
lUOM.FindField('UOM').AsString = "PCS"; | |||
lUOM.FindField('Rate').AsFloat = 1; | |||
lUOM.FindField('RefCost').AsFloat = 10.2; | |||
lUOM.FindField('RefPrice').AsFloat = 25; | |||
lUOM.Post(); | |||
lUOM.Append(); /*For 2nd UOM*/ | |||
lUOM.FindField('UOM').AsString = "CTN"; | |||
lUOM.FindField('Rate').AsFloat = 12; | |||
lUOM.FindField('RefCost').AsFloat = 102; | |||
lUOM.FindField('RefPrice').AsFloat = 240; | |||
lUOM.Post(); | |||
/*Step 6: Save*/ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
alert('Item has been saved.'); | |||
} | |||
</script> | |||
</head> | |||
<body> | |||
<input type="submit" value="SYNC" name="btnSubmit" onclick="InsertData()"> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Get Company Profile==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Get Company Profile Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="javascript"> | ||
<html> | |||
<head> | |||
<title>Add Cash Sales</title> | |||
<script language="JScript"> | |||
var ComServer, lDataSet; | |||
function CreateSQLAccServer() { | |||
ComServer = new ActiveXObject('SQLAcc.BizApp'); | |||
if (!ComServer.IsLogin) { /* check whether user has logon */ | |||
ComServer.Login('ADMIN', 'ADMIN', 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', 'SAMPLE.FDB'); | |||
/* UserName, Password */ | |||
} | |||
} | |||
function zeroPad(num, places) { | |||
var zero = places - num.toString().length + 1; | |||
return Array(+(zero > 0 && zero)).join("0") + num; | |||
/*zeroPad(5, 2); // "05"*/ | |||
} | |||
function GetData() { | |||
var lSQL; | |||
lSQL = "SELECT COMPANYNAME, REMARK, BRN, BRN2, GSTNO, "; | |||
lSQL = lSQL + "SALESTAXNO, SERVICETAXNO, "; | |||
lSQL = lSQL + "ADDRESS1,ADDRESS2,ADDRESS3,ADDRESS4 FROM SY_PROFILE "; | |||
lDataSet = ComServer.DBManager.NewDataSet(lSQL); | |||
} | |||
function ShowCoProfile() { | |||
var CoName, Rmk, BRN; | |||
CreateSQLAccServer(); | |||
GetData(); | |||
if (lDataSet.RecordCount > 0) { | |||
lDataSet.First; | |||
CoName = lDataSet.FindField("COMPANYNAME").AsString; | |||
Rmk = lDataSet.FindField("REMARK").AsString; | |||
BRN = lDataSet.FindField("BRN").Value; | |||
alert(CoName); | |||
alert(Rmk); | |||
alert(BRN); | |||
} | |||
} | |||
</script> | |||
</head> | |||
<body> | |||
<input type="submit" value="Show Co Profile" name="btnSubmit" onclick="ShowCoProfile()"> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
<br /> | |||
==== | ===Delphi=== | ||
The below example is assuming after you had check the login status. | |||
====GL_JE==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! GL_JE Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain. | procedure TfmMain.dxbb_GL_JEClick(Sender: TObject); | ||
var | var BizApp, lMain, lDtl, lBizObj, lDocKey : Variant; | ||
i : integer; | |||
begin | begin | ||
BizApp := CreateOleObject('SQLAcc.BizApp'); | |||
try | try | ||
lBizObj := BizApp.BizObjects.Find('GL_JE'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lDtl := lBizObj.DataSets.Find('cdsDocDetail'); | |||
lBizObj.New; | |||
lMain.FindField('DOCKEY').Value := -1; | |||
lMain.FindField('DocNo').Value := '--JE Test--'; | |||
lMain.FindField('DocDate').Value := '28 Aug 2017'; | |||
lMain.FindField('PostDate').Value := '28 Aug 2017'; | |||
lMain.FindField('TAXDATE').Value := '28 Aug 2017'; | |||
lMain.FindField('Description').Value := 'Postage'; | |||
lMain.FindField('Cancelled').Value := 'F'; | |||
lMain.FindField('DOCNOSETKEY').Value := 0; | |||
// | lMain.Post; | ||
//For Tax Inclusive | |||
lDtl.Append; | |||
lDtl.FindField('DTLKEY').Value := -1; | |||
lDtl.FindField('DOCKEY').Value := -1; | |||
// | lDtl.FindField('SEQ').Value := 1; | ||
lDtl.FindField('CODE').Value := '610-1000'; | |||
lDtl.FindField('DESCRIPTION').Value := 'Item Desc 1'; | |||
lDtl.FindField('TAX').Value := 'TX'; | |||
// lDtl.FindField('LOCALTAXAMT').AsFloat := 17.32;//For JE you can't override (i.e. system auto calc) | |||
lDtl.FindField('TAXINCLUSIVE').Value := 1; | |||
lDtl.FindField('LocalDR').AsFloat := 306;//Including GST if TAXINCLUSIVE = 1 | |||
lDtl.FindField('DR').AsFloat := 306;//if wanted DR <> LocalDR | |||
lDtl.FindField('CHANGED').Value := 'F'; | |||
lDtl.Post; | |||
//For Tax Exclusive | |||
lDtl.Append; | |||
lDtl.FindField('DTLKEY').Value := -1; | |||
lDtl.FindField('DOCKEY').Value := -1; | |||
lDtl.FindField('SEQ').Value := 2; | |||
lDtl.FindField('CODE').Value := '605-200'; | |||
lDtl.FindField('DESCRIPTION').Value := 'Item Desc 2'; | |||
lDtl.FindField('TAX').Value := 'TX'; | |||
lDtl.FindField('TAXINCLUSIVE').Value := 0; | |||
lDtl.FindField('LocalCR').AsFloat := 100; | |||
lDtl.FindField('CHANGED').Value := 'F'; | |||
lDtl.Post; | |||
//For No GST | |||
lDtl.Append; | |||
lDtl.FindField('DTLKEY').Value := -1; | |||
lDtl.FindField('DOCKEY').Value := -1; | |||
lDtl.FindField('SEQ').Value := 3; | |||
lDtl.FindField('CODE').Value := '610-002'; | |||
lDtl.FindField('DESCRIPTION').Value := 'Item Desc 3'; | |||
lDtl.FindField('TAX').Value := ''; | |||
lDtl.FindField('TAXINCLUSIVE').Value := 0; | |||
lDtl.FindField('LocalCR').AsFloat := 200; | |||
lDtl.FindField('CHANGED').Value := 'F'; | |||
lDtl.Post; | |||
lBizObj.Save; | |||
MessageDlg | MessageDlg('GL_JE-DocNo : ''--JE Test--'' Posted...', mtInformation, [mbOK],0); | ||
finally | finally | ||
lBizObj.Close; | |||
end; | end; | ||
end; | end; | ||
Line 11,320: | Line 11,611: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====GL_PV==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! GL_PV Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain. | procedure TfmMain.dxbb_GLPVClick(Sender: TObject); | ||
var | var lMain, lDtl, lBizObj, BizApp : Variant; | ||
lTime : TDateTime; | lTime : TDateTime; | ||
begin | begin | ||
lTime | lTime := Now; | ||
BizApp := CreateOleObject('SQLAcc.BizApp'); | |||
try | |||
lBizObj := BizApp.BizObjects.Find('GL_PV'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lDtl := lBizObj.DataSets.Find('cdsDocDetail'); | |||
lBizObj.New; | |||
lMain.FindField('DOCKEY').Value := -1; | |||
lMain.FindField('DocNo').AsString := '--CB PV Test1--'; | |||
lMain.FindField('DocDate').Value := '18 Aug 2015'; | |||
lMain.FindField('PostDate').Value := '18 Aug 2015'; | |||
lMain.FindField('TAXDATE').Value := '18 Aug 2015'; | |||
lMain.FindField('Description').AsString := 'Compacc System'; | |||
lMain.FindField('PAYMENTMETHOD').AsString := '310-001'; | |||
lMain.FindField('CHEQUENUMBER').AsString := 'MBB 213245'; | |||
lMain.FindField('DocAmt').AsFloat := 2019; | |||
lMain.FindField('Cancelled').AsString := 'F'; | |||
lMain.FindField('CHANGED').AsString := 'F'; | |||
lMain.Post; | |||
lDtl.Append; | |||
lDtl.FindField('DTLKEY').Value := -1; | |||
lDtl.FindField('DOCKEY').Value := -1; | |||
lDtl.FindField('Code').AsString := '200-300'; | |||
lDtl.FindField('DESCRIPTION').AsString := 'Maybank - Asus A555LD-xx313H'; | |||
lDtl.FindField('TAX').AsString := 'TX'; | |||
lDtl.FindField('TAXAMT').AsFloat := 114.28; | |||
lDtl.FindField('TAXINCLUSIVE').Value := 1; | |||
lDtl.FindField('AMOUNT').AsFloat := 2019; | |||
lDtl.FindField('CHANGED').AsString := 'F'; | |||
lDtl.Post; | |||
lBizObj.Save; | |||
lTime := Now - lTime; | |||
MessageDlg(Format('[Elapsed Time: %s ]',[FormatDateTime ('hh:nn:ss:zzz', lTime)]), | |||
mtInformation, [mbOk], 0); | |||
finally | |||
lBizObj.Close; | |||
end; | |||
end; | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====AR_Customer==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! AR_Customer Script | |||
|- | |||
| | |||
<syntaxhighlight lang="delphi"> | |||
procedure TfmMain.dxbb_CustomerClick(Sender: TObject); | |||
var lMain, lDtl, lBizObj, lBizApp, lDockey : Variant; | |||
lTime : TDateTime; | |||
begin | |||
lTime := Now; | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | lBizApp := CreateOleObject('SQLAcc.BizApp'); | ||
lBizObj := lBizApp.BizObjects.Find('AR_Customer'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lDtl := lBizObj.DataSets.Find('cdsBranch'); | |||
lDocKey := lBizObj.FindKeyByRef('CODE', 'FAIRY'); | |||
try | try | ||
if VarIsNull(lDocKey) then begin | |||
lBizObj.New; | |||
lMain.FindField('Code').value := 'FAIRY'; | |||
lMain.FindField('CompanyName').value := 'FAIRY TAIL'; | |||
lDtl.Edit; //For 1st Branch | |||
lDtl.FindField('BranchName').AsString := 'BILLING'; | |||
lDtl.FindField('Address1').AsString := 'Address1'; | |||
lDtl.FindField('Address2').AsString := 'Address2'; | |||
lDtl.FindField('Address3').AsString := 'Address3'; | |||
lDtl.FindField('Address4').AsString := 'Address4'; | |||
lDtl.FindField('Attention').AsString := 'Attention'; | |||
lDtl.FindField('Phone1').AsString := 'Phone1'; | |||
lDtl.FindField('Fax1').AsString := 'Fax1'; | |||
lDtl.FindField('Email').AsString := 'EmailAddress'; | |||
lDtl.Post; | |||
lDtl.Append; //For 2nd Branch | |||
lDtl.FindField('BranchName').AsString := 'Branch1'; | |||
lDtl.FindField('Address1').AsString := 'DAddress1'; | |||
lDtl.FindField('Address2').AsString := 'DAddress2'; | |||
lDtl.FindField('Address3').AsString := 'DAddress3'; | |||
// | lDtl.FindField('Address4').AsString := 'DAddress4'; | ||
lDtl.FindField('Attention').AsString := 'DAttention'; | |||
lDtl.FindField('Phone1').AsString := 'DPhone1'; | |||
lDtl.FindField('Fax1').AsString := 'DFax1'; | |||
lDtl.FindField('Email').AsString := 'DEmailAddress'; | |||
lDtl.Post; | |||
end else begin | |||
lBizObj.Params.Find('Code').AsString := 'FAIRY'; | |||
lBizObj.Open; | |||
lBizObj.Edit; | |||
lMain.FindField('CompanyName').AsString := 'FAIRY TAIL WIZARD'; | |||
while lDtl.RecordCount > 0 do begin | |||
lDtl.First; | |||
lDtl.Delete; | |||
end; | |||
lDtl.Append; //For 1st Branch | |||
lDtl.FindField('BranchType').AsString := 'B'; | |||
lDtl.FindField('BranchName').AsString := 'BILLING'; | |||
lDtl.FindField('Address1').AsString := 'New Address1'; | |||
lDtl.FindField('Address2').AsString := 'New Address2'; | |||
lDtl.FindField('Address3').AsString := 'New Address3'; | |||
lDtl.FindField('Address4').AsString := 'New Address4'; | |||
lDtl.FindField('Attention').AsString := 'New Attention'; | |||
lDtl.FindField('Phone1').AsString := 'New Phone1'; | |||
lDtl.FindField('Fax1').AsString := 'New Fax1'; | |||
lDtl.FindField('Email').AsString := 'New EmailAddress'; | |||
lDtl.Post; | |||
lDtl.Append; //For 2nd Branch | |||
lDtl.FindField('BranchType').AsString := 'D'; | |||
lDtl.FindField('BranchName').AsString := 'New Branch1'; | |||
lDtl.FindField('Address1').AsString := 'New DAddress1'; | |||
lDtl.FindField('Address2').AsString := 'New DAddress2'; | |||
lDtl.FindField('Address3').AsString := 'New DAddress3'; | |||
lDtl.FindField('Address4').AsString := 'New DAddress4'; | |||
lDtl.FindField('Attention').AsString := 'New DAttention'; | |||
lDtl.FindField('Phone1').AsString := 'New DPhone1'; | |||
lDtl.FindField('Fax1').AsString := 'New DFax1'; | |||
lDtl.FindField('Email').AsString := 'New DEmailAddress'; | |||
lDtl.Post; | |||
end; | |||
lBizObj.Save; | |||
lTime := Now - lTime; | lTime := Now - lTime; | ||
Line 11,387: | Line 11,756: | ||
mtInformation, [mbOk], 0); | mtInformation, [mbOk], 0); | ||
finally | finally | ||
lBizObj.Close; | |||
lBizApp := null; | |||
end; | end; | ||
end; | end; | ||
Line 11,398: | Line 11,765: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AR_PM==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_PM Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain. | procedure TfmMain.dxbb_ARPMClick(Sender: TObject); | ||
var lBizApp, | var lMain, lKO, lBizApp, lBizObj, V : Variant; | ||
begin | begin | ||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | lBizApp := CreateOleObject('SQLAcc.BizApp'); | ||
try | try | ||
lBizObj := lBizApp.BizObjects.Find('AR_PM'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lKO := lBizObj.DataSets.Find('cdsKnockOff'); | |||
lBizObj.New; | |||
lMain.FindField('DOCKEY').Value := -1; | |||
lMain.FindField('DocNo').AsString := '--PM Test--'; //Payment Document Number | |||
lMain.FindField('CODE').AsString := '300-A0001'; | |||
lMain.FindField('DocDate').Value := '28 Aug 2016'; | |||
lMain.FindField('PostDate').Value := '28 Aug 2016'; | |||
lMain.FindField('Description').AsString := 'Payment for A/c'; | |||
lMain.FindField('PaymentMethod').AsString := '320-000'; | |||
lMain.FindField('DocAmt').AsFloat := 1060; | |||
lMain.FindField('Cancelled').AsString := 'F'; | |||
V := lBizApp.CreateOleVariantArray(2); | |||
V.SetItem(0, 'IV'); //Document Type is either is IV or DN for Sales & PI or SD for Purchase | |||
V.SetItem(1, '--IV Test--'); //Invoice Document Number | |||
if lKO.Locate('DocType;DocNo', V.AsOleVariant, False, False) then | |||
begin | |||
lKO.Edit; | |||
lKO.FindField('KOAmt').ASFloat := 500; | |||
lKO.FindField('KnockOff').AsString := 'T'; | |||
lKO.Post; | |||
end; | |||
lBizObj.Save; | |||
MessageDlg | MessageDlg('AR_PM-DocNo : ''--PM Test--'' Posted...', mtInformation, [mbOK],0); | ||
finally | finally | ||
lBizObj.Close; | |||
end; | end; | ||
end; | end; | ||
Line 11,475: | Line 11,814: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====AR_PM-Edit==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! AR_PM Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain. | procedure TfmMain.dxbb_ARPMClick(Sender: TObject); | ||
var | var lMain, lKO, lBizApp, lBizObj, V : Variant; | ||
begin | begin | ||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | |||
try | try | ||
lBizObj := lBizApp.BizObjects.Find('AR_PM'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lKO := lBizObj.DataSets.Find('cdsKnockOff'); | |||
lDocKey := lBizObj.FindKeyByRef('DocNo', '--PM Test--'); | |||
lBizObj.Params.Find('DocKey').Value := VarToStr(lDocKey); | |||
If not VarIsNull(lDocKey) Then begin | |||
lBizObj.Open; | |||
lBizObj.Edit; | |||
lMain.FindField('DOCKEY').Value := -1; | |||
lMain.FindField('DocDate').Value := '28 Aug 2016'; | |||
lMain.FindField('PostDate').Value := '28 Aug 2016'; | |||
lMain.FindField('Description').AsString := 'Payment for A/c'; | |||
lMain.FindField('PaymentMethod').AsString := '310-000'; | |||
lMain.FindField('DocAmt').AsFloat := 800.28; | |||
lMain.FindField('UnappliedAmt').AsFloat := 100.28; | |||
lMain.FindField('Cancelled').AsString := 'F'; | |||
lMain.FindField('CHANGED').AsString := 'F'; | |||
V := lBizApp.CreateOleVariantArray(2); | |||
V.SetItem(0, 'IV'); //Document Type is either is IV or DN for Sales & PI or SD for Purchase | |||
V.SetItem(1, '--IV Test--'); //Document Number | |||
if lKO.Locate('DocType;DocNo', V.AsOleVariant, False, False) then | |||
begin | |||
lKO.Edit; | |||
lKO.FindField('KOAmt').AsFloat := 700.28; // IV Knock Off/Offset Amount | |||
lKO.FindField('KnockOff').AsString := 'T'; | |||
lKO.Post; | |||
end; | |||
lBizObj.Save; | |||
MessageDlg('AR_PM-DocNo : ''--PM Test--'' Updated...', mtInformation, [mbOK],0); | |||
end; | |||
finally | finally | ||
lBizObj.Close; | |||
end; | end; | ||
end; | end; | ||
Line 11,508: | Line 11,869: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====ST_Item==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! ST_Item Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain. | procedure TfmMain.dxbb_ST_ItemClick(Sender: TObject); | ||
var | var lMain, lDtl, lBar, lBizObj, lDockey: Variant; | ||
lTime : TDateTime; | |||
begin | begin | ||
lTime := Now; | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | |||
lBizObj := lBizApp.BizObjects.Find('ST_ITEM'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lDtl := lBizObj.DataSets.Find('cdsUOM'); | |||
lBar := lBizObj.DataSets.Find('cdsBarcode'); | |||
lDocKey := lBizObj.FindKeyByRef('Code', 'FAIRY'); | |||
try | try | ||
if VarIsNull(lDocKey) then begin | |||
lBizObj.New; | |||
lMain.FindField('CODE').value := 'FAIRY'; | |||
lMain.FindField('DESCRIPTION').value := 'FAIRY TAIL'; | |||
lMain.FindField('STOCKGROUP').value := 'DEFAULT'; | |||
lMain.FindField('STOCKCONTROL').value := 'T'; | |||
lMain.FindField('ISACTIVE').value := 'T'; | |||
lDtl.Edit; //For 1St UOM | |||
lDtl.FindField('UOM').AsString := 'PCS'; | |||
lDtl.FindField('Rate').AsFloat := 1; | |||
lDtl.FindField('RefCost').AsFloat := 10.2; | |||
lDtl.FindField('RefPrice').AsFloat := 25; | |||
lDtl.Post; | |||
lDtl.Append; //For 2nd UOM | |||
lDtl.FindField('UOM').AsString := 'CTN'; | |||
lDtl.FindField('Rate').AsFloat := 12; | |||
lDtl.FindField('RefCost').AsFloat := 102; | |||
lDtl.FindField('RefPrice').AsFloat := 240; | |||
lDtl.Post; | |||
lBar.Append; //For 1St UOM Barcode | |||
lBar.FindField('Barcode').AsString := '123456'; | |||
lBar.FindField('UOM').AsString := 'PCS'; | |||
lBar.Post; | |||
lBar.Append; //For 2nd UOM Barcode | |||
lBar.FindField('Barcode').AsString := '7890123'; | |||
lBar.FindField('UOM').AsString := 'CTN'; | |||
lBar.Post; | |||
end else begin | |||
lBizObj.Params.Find('Dockey').Value := lDocKey; | |||
lBizObj.Open; | |||
lBizObj.Edit; | |||
lMain.FindField('DESCRIPTION').value := 'FAIRY TAIL WIZARD'; | |||
while lDtl.RecordCount > 0 do begin | |||
lDtl.First; | |||
lDtl.Delete; | |||
end; | |||
//Insert back with new Price | |||
lDtl.Append; //For 1St UOM | |||
lDtl.FindField('UOM').AsString := 'PCS'; //Make sure this always same as b4 delete data | |||
lDtl.FindField('Rate').AsFloat := 1; //Make sure this always same as b4 delete data | |||
lDtl.FindField('RefCost').AsFloat := 22.3; | |||
lDtl.FindField('RefPrice').AsFloat := 52; | |||
lDtl.FindField('ISBASE').AsFloat := 1; | |||
lDtl.Post;; | |||
lDtl.Append; //For 2nd UOM | |||
lDtl.FindField('UOM').AsString := 'CTN'; //Make sure this always same as b4 delete data | |||
lDtl.FindField('Rate').AsFloat := 12; //Make sure this always same as b4 delete data | |||
lDtl.FindField('RefCost').AsFloat := 102.5; | |||
lDtl.FindField('RefPrice').AsFloat := 260.45; | |||
lDtl.FindField('ISBASE').AsFloat := 0; | |||
lDtl.Post; | |||
while lBar.RecordCount > 0 do begin | |||
lBar.First; | |||
lBar.Delete; | |||
end; | |||
lBar.Append; //For 1St UOM Barcode | |||
lBar.FindField('Barcode').AsString := '888888'; | |||
lBar.FindField('UOM').AsString := 'PCS'; | |||
lBar.Post; | |||
lBar.Append; //For 2nd UOM Barcode | |||
lBar.FindField('Barcode').AsString := '999999'; | |||
lBar.FindField('UOM').AsString := 'CTN'; | |||
lBar.Post; | |||
end; | end; | ||
lBizObj.Save; | |||
lTime := Now - lTime; | |||
MessageDlg(Format('[Elapsed Time: %s ]',[FormatDateTime ('hh:nn:ss:zzz', lTime)]), | |||
mtInformation, [mbOk], 0); | |||
finally | finally | ||
lBizObj.Close; | |||
lMain := null; | |||
lDtl := null; | |||
lBar := null; | |||
lBizObj := null; | |||
lBizApp := null; | |||
end; | end; | ||
end; | end; | ||
Line 11,552: | Line 11,980: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====ST_Item-Edit==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! ST_Item Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain. | procedure TfmMain.dxbb_ST_ItemClick(Sender: TObject); | ||
var lBizApp, | var lMain, lDtl, lBizObj, lBizApp, lDocKey, V : Variant; | ||
begin | begin | ||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | lBizApp := CreateOleObject('SQLAcc.BizApp'); | ||
lBizObj := lBizApp.BizObjects.Find('ST_ITEM'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lDtl := lBizObj.DataSets.Find('cdsUOM'); | |||
lDocKey := lBizObj.FindKeyByRef('Code', '--Stock Item Test--'); | |||
lBizObj.Params.Find('DocKey').Value := VarToStr(lDocKey); | |||
try | try | ||
If not VarIsNull(lDocKey) Then begin | |||
lBizObj.Open; | |||
lBizObj.Edit; | |||
lMain.FindField('Description').value := 'Testing - Description'; | |||
V := lBizApp.CreateOleVariantArray(2); | |||
V.SetItem(0, 'CTN'); //UOM | |||
V.SetItem(1, '12'); //Rate | |||
if lDtl.Locate('UOM;Rate', V.AsOleVariant, False, False) then | |||
begin | |||
lDtl.Edit; | |||
lDtl.FindField('RefCost').AsFloat := 10.20; | |||
lDtl.FindField('RefPrice').AsFloat := 25.00; | |||
lDtl.Post; | |||
end; | |||
lBizObj.Save; | |||
MessageDlg('ST_Item-ItemCode : ''--Stock Item Test--'' Updated...', mtInformation, [mbOK],0); | |||
end; | |||
finally | finally | ||
lBizObj.Close; | |||
end; | end; | ||
end; | end; | ||
Line 11,632: | Line 12,027: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====SL_IV==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! SL_IV Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain. | procedure TfmMain.dxbb_SL_IVClick(Sender: TObject); | ||
var lBizApp, | var lMain, lDtl, lSN, lBizObj, lBizApp, lDockey, V: Variant; | ||
lTime : TDateTime; | lTime : TDateTime; | ||
begin | begin | ||
lTime := Now; | lTime := Now; | ||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | lBizApp := CreateOleObject('SQLAcc.BizApp'); | ||
lBizObj := lBizApp.BizObjects.Find('SL_IV'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lDtl := lBizObj.DataSets.Find('cdsDocDetail'); | |||
lSN := lBizObj.DataSets.Find('cdsSerialNumber'); | |||
V := lBizApp.CreateOleVariantArray(1); | |||
V.SetItem(0, '--IV Test--'); //DocNo | |||
V.SetItem(1, '300-A0001'); //CompanyCode | |||
lDocKey := lBizObj.FindKeyByRef('DocNo;Code', V.AsOleVariant); | |||
try | |||
if VarIsNull(lDocKey) then begin | |||
// | lBizObj.New; | ||
lMain.FindField('DocNo').AsString := '--IV Test--'; | |||
lMain.FindField('CODE').AsString := '300-A0001'; | |||
lMain.FindField('DocDate').Value := '28 Aug 2024'; | |||
lMain.FindField('PostDate').Value := '28 Aug 2024'; | |||
lMain.FindField('TAXDATE').Value := '28 Aug 2024'; | |||
lMain.FindField('Description').AsString := 'Sales'; //Information to shown in Statement | |||
lMain.FindField('Cancelled').AsString := 'F'; | |||
lMain.Post; | |||
lDtl.Append; // For Tax Inclusive = True with override Tax Amount | |||
lDtl.FindField('SEQ').Value := 1; | |||
lDtl.FindField('ItemCode').AsString := 'ANT'; | |||
//lDtl.FindField('ACCOUNT').AsString := '500-000'; //GL Sales Account if wanted override | |||
lDtl.FindField('DESCRIPTION').AsString := 'ANTENA'; | |||
lDtl.FindField('QTY').AsFloat := 1; | |||
lDtl.FindField('UOM').AsString := 'UNIT'; | |||
lDtl.FindField('Disc').AsString := ''; //'5%+3; //Optional(eg 5% plus 3 Discount) | |||
lDtl.FindField('TAX').AsString := 'SV6'; | |||
lDtl.FindField('TAXINCLUSIVE').Value := 1; | |||
lDtl.FindField('UNITPRICE').AsFloat := 435; //Including GST UnitPrice | |||
lDtl.FindField('AMOUNT').AsFloat := 410.37; //Must Excluding GST (Qty * UnitPrice) // Less 0.01 | |||
lDtl.FindField('TAXAMT').AsFloat := 24.63; //Extra 0.01 | |||
lDtl.DisableControls; //For Tax Inclusive Only where TaxAmt is not as Calc | |||
try | |||
lDtl.FindField('TAXINCLUSIVE').Value := 1; | |||
finally | |||
lDtl.EnableControls; | |||
end; | |||
lDtl.Post; | |||
lDtl.Append; // For Tax Inclusive = False with override Tax Amount | |||
lDtl.FindField('SEQ').Value := 2; | |||
lDtl.FindField('ItemCode').AsString := 'ANT'; | |||
//lDtl.FindField('ACCOUNT').AsString := '500-000'; //GL Sales Account if wanted override | |||
lDtl.FindField('DESCRIPTION').AsString := 'ANTENA B'; | |||
lDtl.FindField('QTY').AsFloat := 1; | |||
lDtl.FindField('TAX').AsString := 'SV6'; | |||
lDtl.FindField('UOM').AsString := 'UNIT'; | |||
lDtl.FindField('TAXINCLUSIVE').Value := 0; | |||
lDtl.FindField('UNITPRICE').AsFloat := 94.43; | |||
lDtl.FindField('AMOUNT').AsFloat := 94.43; | |||
lDtl.FindField('TAXAMT').AsFloat := 5.66; //Less 0.01 | |||
lDtl.Post; | |||
lDtl.Append; // For Serial Number | |||
lDtl.FindField('SEQ').Value := 3; | |||
lDtl.FindField('ItemCode').AsString := 'SN1'; | |||
lDtl.FindField('ACCOUNT').AsString := '500-000'; | |||
lDtl.FindField('DESCRIPTION').AsString := 'Sales Serial Number Item'; | |||
lSN.Append; | |||
lSN.FindField('SERIALNUMBER').AsString := 'SN-00001'; | |||
lSN.Post; | |||
lSN.Append; | |||
lSN.FindField('SERIALNUMBER').AsString := 'SN-00002'; | |||
lSN.Post; | |||
lDtl.FindField('QTY').AsFloat := 2; | |||
lDtl.FindField('UOM').AsString := 'UNIT'; | |||
lDtl.FindField('TAX').AsString := 'SV6'; | |||
lDtl.FindField('TAXINCLUSIVE').Value := 0; | |||
lDtl.FindField('UNITPRICE').AsFloat := 94.43; | |||
lDtl.FindField('TAXAMT').AsFloat := 11.33; | |||
lDtl.Post; | |||
end else begin | |||
lBizObj.Params.Find('Dockey').Value := lDockey; | |||
lBizObj.Open; | |||
lBizObj.Edit; | |||
lMain.FindField('Description').AsString := 'Edited Sales'; | |||
while lDtl.RecordCount > 0 do begin | |||
lDtl.First; | |||
lDtl.Delete; | |||
end; | |||
lDtl.Append; | |||
lDtl.FindField('SEQ').Value := 1; | |||
lDtl.FindField('ItemCode').AsString := 'ANT'; | |||
//lDtl.FindField('ACCOUNT').AsString := '500-000'; //GL Sales Account if wanted override | |||
lDtl.FindField('DESCRIPTION').AsString := 'ANTENA'; | |||
lDtl.FindField('QTY').AsFloat := 1; | |||
lDtl.FindField('UOM').AsString := 'CTN'; | |||
lDtl.FindField('TAX').AsString := 'SV6'; | |||
lDtl.FindField('TAXINCLUSIVE').Value := 0; | |||
lDtl.FindField('UNITPRICE').AsFloat := 200; | |||
lDtl.FindField('AMOUNT').AsFloat := 200; | |||
lDtl.FindField('TAXAMT').AsFloat := 12; //Less 0.01 | |||
lDtl.Post; | |||
end; | |||
lBizObj.Save; | |||
lTime := Now - lTime; | lTime := Now - lTime; | ||
Line 11,696: | Line 12,149: | ||
mtInformation, [mbOk], 0); | mtInformation, [mbOk], 0); | ||
finally | finally | ||
lBizObj.Close; | |||
lMain := null; | |||
lDtl := null; | |||
lSN := null; | |||
lBizObj := null; | |||
lBizApp := null; | |||
end; | end; | ||
end; | end; | ||
Line 11,706: | Line 12,162: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Customer.IV.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! Customer | ! Customer.IV.RO Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure | procedure TfmMain.dxbb_RptObjClick(Sender: TObject); | ||
var | var lBizApp, lRptVar : Variant; | ||
lTime : TDateTime; | |||
cdsMain, cdsDtl : TClientDataset; | |||
begin | begin | ||
lTime := Now; | |||
cdsMain := TClientDataset.Create(nil); | |||
cdsDtl := TClientDataset.Create(nil); | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | lBizApp := CreateOleObject('SQLAcc.BizApp'); | ||
lBizApp. | try | ||
lRptVar := null; | |||
lRptVar := lBizApp.RptObjects.Find('Customer.IV.RO'); | |||
lRptVar.Params.Find('SelectDate').AsBoolean := True; | |||
lRptVar.Params.Find('DateFrom').AsDate := '01/01/2015'; | |||
lRptVar.Params.Find('DateTo').AsDate := '31/12/2015'; | |||
lRptVar.Params.Find('AllAgent').AsBoolean := False; | |||
lRptVar.Params.Find('AgentData').AsBlob := '----'#13#10'HALIM'; //Filter by Agent code ---- & HALIM | |||
lRptVar.Params.Find('AllArea').AsBoolean := True; | |||
// lRptVar.Params.Find('AreaData').AsBlob := ; //Not use if AllArea is True | |||
lRptVar.Params.Find('AllCompany').AsBoolean := True; | |||
// lRptVar.Params.Find('CompanyData').AsBlob := ; //Not use if AllCompany is True | |||
lRptVar.Params.Find('AllCurrency').AsBoolean := True; | |||
// lRptVar.Params.Find('CurrencyData').AsBlob := ; //Not use if AllCurrenty is True | |||
lRptVar.Params.Find('AllDocProject').AsBoolean := True; | |||
// lRptVar.Params.Find('DocProjectData').AsBlob := ; //Not use if AllDocProject is True | |||
lRptVar.Params.Find('AllCompanyCategory').AsBoolean := True; | |||
// lRptVar.Params.Find('CompanyCategoryData').AsBlob := ; //Not use if AllCompanyCategory is True | |||
lRptVar.Params.Find('AllDocument').AsBoolean := True; | |||
// lRptVar.Params.Find('DocumentData').AsBlob := ; //Not use if AllDocument is True | |||
lRptVar.Params.Find('IncludeCancelled').AsBoolean := True; | |||
lRptVar.Params.Find('PrintDocumentStyle').AsBoolean := False; | |||
lRptVar.Params.Find('AllItemProject').AsBoolean := True; | |||
lRptVar.Params.Find('AllPaymentMethod').AsBoolean := True; | |||
lRptVar.CalculateReport; | |||
cdsMain.XMLData := lRptVar.DataSets.Find('cdsMain').XMLData; //Master Data | |||
cdsDtl.XMLData := lRptVar.DataSets.Find('cdsDocDetail').XMLData; //Detail Data - To link Master Data use Dockey field | |||
cdsMain.SaveToFile('C:\Temp\_ListM.xml'); //Export To XML file | |||
cdsDtl.SaveToFile('C:\Temp\_ListD.xml'); //Export To XML file | |||
lTime := Now - lTime; | |||
MessageDlg(Format('[Elapsed Time: %s ]',[FormatDateTime ('hh:nn:ss:zzz', lTime)]), | |||
mtInformation, [mbOk], 0); | |||
finally | finally | ||
lRptVar := null; | |||
cdsMain.Free; | |||
cdsDtl.Free; | |||
end; | end; | ||
end; | end; | ||
Line 11,758: | Line 12,223: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Stock.Item.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Stock.Item.RO Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure | procedure TfmMain.dxbb_ST_ITEM_ROClick(Sender: TObject); | ||
var | var lBizApp, lRptVar : Variant; | ||
lTime : TDateTime; | |||
lSQL : | cdsMain, cdsDtl, cdsCat : TClientDataset; | ||
lSQL : string; | |||
begin | begin | ||
lTime := Now; | |||
cdsMain := TClientDataset.Create(nil); | |||
cdsDtl := TClientDataset.Create(nil); | |||
cdsCat := TClientDataset.Create(nil); | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | lBizApp := CreateOleObject('SQLAcc.BizApp'); | ||
lSQL := 'SELECT * FROM ST_ITEM_CATEGORY ' + | |||
'WHERE Category IN (''B-MOTOLORA'',''B-MAXIS'')'; | |||
cdsCat.Data := lBizApp.DBManager.Execute(lSQL); //For filtering Category only | |||
try | try | ||
lRptVar := null; | |||
' | lRptVar := lBizApp.RptObjects.Find('Stock.Item.RO'); | ||
lRptVar.Params.Find('AllItem').AsBoolean := True; | |||
lRptVar.Params.Find('AllStockGroup').AsBoolean := True; | |||
lRptVar.Params.Find('AllCustomerPriceTag').AsBoolean := True; | |||
lRptVar.Params.Find('AllSupplierPriceTag').AsBoolean := True; | |||
// lRptVar.Params.Find('CategoryData').AsBlob := ; //Not use | |||
// lRptVar.Params.Find('CategoryTpl').AsBlob := ; //Not use | |||
// lRptVar.Params.Find('CustomerPriceTagData').AsBlob := ; //Not use if AllCustomerPriceTag is True | |||
// lRptVar.Params.Find('SupplierPriceTagData').AsBlob := ; //Not use if AllSupplierPriceTag is True | |||
// lRptVar.Params.Find('DateFrom').AsDate := '01/01/2015'; //Not use if SelectDate is False | |||
// lRptVar.Params.Find('DateTo').AsDate := '31/12/2015'; | |||
lRptVar.Params.Find('HasAltStockItem').AsBoolean := False; | |||
lRptVar.Params.Find('HasBarcode').AsBoolean := False; | |||
lRptVar.Params.Find('HasBOM').AsBoolean := False; | |||
lRptVar.Params.Find('HasCategory').AsBoolean := False; | |||
lRptVar.Params.Find('HasCustomerItem').AsBoolean := False; | |||
lRptVar.Params.Find('HasOpeningBalance').AsBoolean := False; | |||
lRptVar.Params.Find('HasPurchasePrice').AsBoolean := False; | |||
lRptVar.Params.Find('HasSellingPrice').AsBoolean := False; | |||
lRptVar.Params.Find('HasSupplierItem').AsBoolean := False; | |||
// lRptVar.Params.Find('ItemData').AsBlob := 'ANT 1.0'#13#10'COVER'; //Filter by Item code ANT 1.0 & COVER | |||
// lRptVar.Params.Find('ItemCategoryData').AsBlob := cdsCat.XMLData; //Not use if SelectCategory is False | |||
lRptVar.Params.Find('PrintActive').AsBoolean := True; | |||
lRptVar.Params.Find('PrintInActive').AsBoolean := True; | |||
lRptVar.Params.Find('PrintNonStockControl').AsBoolean := True; | |||
lRptVar.Params.Find('PrintStockControl').AsBoolean := True; | |||
lRptVar.Params.Find('SelectCategory').AsBoolean := False; | |||
lRptVar.Params.Find('SelectDate').AsBoolean := False; | |||
lRptVar.Params.Find('SortBy').AsString := 'Code'; | |||
// lRptVar.Params.Find('StockGroupData').AsBlob := ; //Not use if AllStockGroup is True | |||
lRptVar.CalculateReport; | |||
cdsMain.XMLData := lRptVar.DataSets.Find('cdsMain').XMLData; //Master Data | |||
cdsDtl.XMLData := lRptVar.DataSets.Find('cdsUOM').XMLData; //Detail Data - To link Master Data use Code field | |||
cdsMain.SaveToFile('C:\Temp\_ListM.xml'); //Export To XML file | |||
cdsDtl.SaveToFile('C:\Temp\_ListD.xml'); //Export To XML file | |||
lTime := Now - lTime; | |||
MessageDlg(Format('[Elapsed Time: %s ]',[FormatDateTime ('hh:nn:ss:zzz', lTime)]), | |||
mtInformation, [mbOk], 0); | |||
finally | finally | ||
lRptVar := null; | |||
cdsMain.Free; | |||
cdsDtl.Free; | |||
cdsCat.Free; | |||
end; | end; | ||
end; | end; | ||
Line 11,833: | Line 12,301: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====Customer.Statement.RO==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! Customer | ! Customer.Statement.RO Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure | procedure TfmMain.dxbb_StatementClick(Sender: TObject); | ||
var | var lBizApp, lRptVar : Variant; | ||
lTime : TDateTime; | |||
cdsMain, cdsDtl : TClientDataset; | |||
s : string; | |||
begin | begin | ||
lTime := Now; | |||
cdsMain := TClientDataset.Create(nil); | |||
cdsDtl := TClientDataset.Create(nil); | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | lBizApp := CreateOleObject('SQLAcc.BizApp'); | ||
lBizApp. | s := '<?xml version="1.0" standalone="yes"?> <DATAPACKET Version="2.0"><METADATA><FIELDS>'+ | ||
'<FIELD attrname="ColumnNo" fieldtype="i4" required="true"/><FIELD attrname="ColumnType" fieldtype="string" WIDTH="1"/>'+ | |||
'<FIELD attrname="Param1" fieldtype="i4" required="true"/><FIELD attrname="Param2" fieldtype="i4" required="true"/>'+ | |||
'<FIELD attrname="IsLocal" fieldtype="boolean"/><FIELD attrname="HeaderScript" fieldtype="bin.hex" SUBTYPE="Text" WIDTH="1"/>'+ | |||
'</FIELDS><PARAMS/></METADATA><ROWDATA><ROW ColumnNo="0" ColumnType="" Param1="0" Param2="0" IsLocal="FALSE"/>'+ | |||
'<ROW ColumnNo="1" ColumnType="A" Param1="0" Param2="0" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= 'Current Mth'
end;"/>'+ | |||
'<ROW ColumnNo="2" ColumnType="A" Param1="-1" Param2="-1" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '1 Months'
end;"/>'+ | |||
'<ROW ColumnNo="3" ColumnType="A" Param1="-2" Param2="-2" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '2 Months'
end;"/>'+ | |||
'<ROW ColumnNo="4" ColumnType="A" Param1="-3" Param2="-3" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '3 Months'
end;"/>'+ | |||
'<ROW ColumnNo="5" ColumnType="A" Param1="-4" Param2="-4" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '4 Months'
end;"/>'+ | |||
'<ROW ColumnNo="6" ColumnType="B" Param1="-999999" Param2="-5" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '5 Month & above'
end;"/>'+ | |||
'</ROWDATA></DATAPACKET>'; | |||
try | |||
lRptVar := null; | |||
lRptVar := lBizApp.RptObjects.Find('Customer.Statement.RO'); | |||
// lRptVar.Params.Find('AgentData').AsBlob := ; //Not use if AllAgent is True | |||
lRptVar.Params.Find('AgingData').AsString := s; //Fixed | |||
lRptVar.Params.Find('AgingOn').AsString := 'I'; //Fixed | |||
lRptVar.Params.Find('AllAgent').AsBoolean := True; | |||
lRptVar.Params.Find('AllArea').AsBoolean := True; | |||
lRptVar.Params.Find('AllCompany').AsBoolean := False; | |||
lRptVar.Params.Find('AllCompanyCategory').AsBoolean := True; | |||
lRptVar.Params.Find('AllControlAccount').AsBoolean := True; | |||
lRptVar.Params.Find('AllCurrency').AsBoolean := True; | |||
lRptVar.Params.Find('AllDocProject').AsBoolean := True; | |||
// lRptVar.Params.Find('AreaData').AsBlob := ; //Not use if AllArea is True | |||
// lRptVar.Params.Find('CompanyCategoryData').AsBlob := ; //Not use if AllCompanyCategory is True | |||
lRptVar.Params.Find('CompanyData').AsBlob := '300-A0001'#13#10'300-C0001'; //Filter by Customer Code 300-A0001 & 300-C0001 | |||
// lRptVar.Params.Find('ControlAccountData').AsBlob := ; //Not use if AllControlAccount is True | |||
// lRptVar.Params.Find('CurrencyData').AsBlob := ; //Not use if AllCurrency is True | |||
lRptVar.Params.Find('DateFrom').AsDate := '01 Aug 2016'; | |||
lRptVar.Params.Find('DateTo').AsDate := '31 Aug 2016'; | |||
// lRptVar.Params.Find('DocProjectData').AsBlob := ; //Not use if AllDocProject is True | |||
lRptVar.Params.Find('IncludeZeroBalance').AsBoolean := False; | |||
lRptVar.Params.Find('SelectDate').AsBoolean := True; | |||
lRptVar.Params.Find('SortBy').AsString := 'CompanyCategory;Code;CompanyName;Agent;Area;CurrencyCode;ControlAccount'; | |||
lRptVar.Params.Find('StatementDate').AsDate := '31 Aug 2016'; // Norm same as DateTo | |||
lRptVar.Params.Find('StatementType').AsString := 'O'; //O := Open Item, B := B/F | |||
lRptVar.CalculateReport; | |||
cdsMain.XMLData := lRptVar.DataSets.Find('cdsMain').XMLData; //Master Data | |||
cdsDtl.XMLData := lRptVar.DataSets.Find('cdsDocument').XMLData; //Detail Data - To link Master Data use Code field | |||
cdsMain.SaveToFile('C:\Temp\_ListM.xml'); //Export To XML file | |||
cdsDtl.SaveToFile('C:\Temp\_ListD.xml'); //Export To XML file | |||
lTime := Now - lTime; | |||
MessageDlg(Format('[Elapsed Time: %s ]',[FormatDateTime ('hh:nn:ss:zzz', lTime)]), | |||
mtInformation, [mbOk], 0); | |||
finally | finally | ||
lRptVar := null; | |||
cdsMain.Free; | |||
cdsDtl.Free; | |||
end; | end; | ||
end; | end; | ||
Line 11,891: | Line 12,378: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
==== | ====GL Account List For Sales & Purchase 1==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! GL_Acc Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure | procedure TfmMain.dxbb_GLAccClick(Sender: TObject); | ||
var | var BizApp : Variant; | ||
lDataSet : TClientDataSet; | |||
ASQL : String; | |||
begin | begin | ||
//For Debtor List => SpecialAccType = DR | |||
//For Creditor List => SpecialAccType = CR | |||
BizApp := CreateOleObject('SQLAcc.BizApp'); | |||
lDataSet := TClientDataSet.Create(Self); | |||
try | try | ||
ASQL := 'SELECT A.Code, A.Description FROM GL_ACC A '+ | |||
'LEFT OUTER JOIN GL_ACC B ON (A.Dockey=B.Parent) '+ | |||
'WHERE A.Parent<>-1 ' + | |||
'AND B.Dockey IS NULL ' + | |||
'AND A.SpecialAccType = '''' '+ | |||
'ORDER BY A.CODE '; | |||
lDataSet.Data := BizApp.DBManager.Execute(ASQL); | |||
lDataset.SaveToFile('C:\Temp\_List.xml', dfXML); //Export To XML file | |||
finally | finally | ||
lDataSet.Free; | |||
end; | end; | ||
end; | end; | ||
Line 11,947: | Line 12,411: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
== | ====GL Account List For Sales & Purchase 2==== | ||
=== | {| class="mw-collapsible mw-collapsed wikitable" | ||
! GL_Acc Object Script | |||
|- | |||
| | |||
<syntaxhighlight lang="delphi"> | |||
procedure TfmMain.dxbb_GLAccClick(Sender: TObject); | |||
var BizApp, BizObj : Variant; | |||
lDataSet1, lDataSet2 : TClientDataSet; | |||
ASQL : String; | |||
begin | |||
//For Debtor List => SpecialAccType = DR | |||
//For Creditor List => SpecialAccType = CR | |||
BizApp := CreateOleObject('SQLAcc.BizApp'); | |||
BizObj := BizApp.BizObjects.Find('GL_Acc'); | |||
lDataSet1 := TClientDataSet.Create(Self); | |||
lDataSet2 := TClientDataSet.Create(Self); | |||
try | |||
ASQL :='Parent<>-1 ' + | |||
'AND (SpecialAccType IS NULL OR SpecialAccType = '''' ' + | |||
'OR SpecialAccType = '''') '; | |||
lDataSet1.XMLData:= BizObj.Select('Dockey,Code,Description', ASQL, 'Code', 'SX', '', ''); | |||
= | lDataSet2.XMLData:= BizObj.Select('Parent', '', 'Code', 'SX', '', ''); | ||
lDataset2.First; // Remove Parent Account | |||
while not lDataset2.Eof do begin | |||
if lDataset1.Locate('Dockey', lDataSet2.FindField('Parent').AsString, []) then | |||
lDataset1.Delete; | |||
lDataset2.Next; | |||
end; | |||
lDataset1.MergeChangeLog; | |||
lDataset1.SaveToFile('C:\Temp\_List.xml', dfXML); //Export To XML file | |||
finally | |||
lDataSet1.Free; | |||
lDataSet2.Free; | |||
end; | |||
end; | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
=== | ====Customer.Aging.RO==== | ||
=== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer Aging Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | |||
procedure TfmMain.dxbb_AgingClick(Sender: TObject); | |||
var lBizApp, lRptVar : Variant; | |||
lTime : TDateTime; | |||
cdsMain, cdsDtl : TClientDataset; | |||
s : string; | |||
begin | |||
lTime := Now; | |||
cdsMain := TClientDataset.Create(nil); | |||
cdsDtl := TClientDataset.Create(nil); | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | |||
... | s := '<?xml version="1.0" standalone="yes"?> <DATAPACKET Version="2.0"><METADATA><FIELDS>'+ | ||
'<FIELD attrname="ColumnNo" fieldtype="i4" required="true"/><FIELD attrname="ColumnType" fieldtype="string" WIDTH="1"/>'+ | |||
... | '<FIELD attrname="Param1" fieldtype="i4" required="true"/><FIELD attrname="Param2" fieldtype="i4" required="true"/>'+ | ||
'<FIELD attrname="IsLocal" fieldtype="boolean"/><FIELD attrname="HeaderScript" fieldtype="bin.hex" SUBTYPE="Text" WIDTH="1"/>'+ | |||
'</FIELDS><PARAMS/></METADATA><ROWDATA><ROW ColumnNo="0" ColumnType="" Param1="0" Param2="0" IsLocal="FALSE"/>'+ | |||
'<ROW ColumnNo="1" ColumnType="A" Param1="0" Param2="0" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= 'Current Mth'
end;"/>'+ | |||
'<ROW ColumnNo="2" ColumnType="A" Param1="-1" Param2="-1" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '1 Months'
end;"/>'+ | |||
'<ROW ColumnNo="3" ColumnType="A" Param1="-2" Param2="-2" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '2 Months'
end;"/>'+ | |||
'<ROW ColumnNo="4" ColumnType="A" Param1="-3" Param2="-3" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '3 Months'
end;"/>'+ | |||
'<ROW ColumnNo="5" ColumnType="A" Param1="-4" Param2="-4" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '4 Months'
end;"/>'+ | |||
'<ROW ColumnNo="6" ColumnType="B" Param1="-999999" Param2="-5" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '5 Month & above'
end;"/>'+ | |||
'</ROWDATA></DATAPACKET>'; | |||
try | |||
lRptVar := null; | |||
lRptVar := lBizApp.RptObjects.Find('Customer.Aging.RO'); | |||
lRptVar.Params.Find('ActualGroupBy').AsString := 'Code;CompanyName'; //Fixed | |||
// lRptVar.Params.Find('AgentData').AsBlob := ; //Not use if AllAgent is True | |||
lRptVar.Params.Find('AgingData').AsString := s; | |||
lRptVar.Params.Find('AgingDate').AsDate := '31 Aug 2016'; | |||
lRptVar.Params.Find('AgingOn').AsString := 'I'; //Fixed | |||
lRptVar.Params.Find('AllAgent').AsBoolean := True; | |||
lRptVar.Params.Find('AllArea').AsBoolean := True; | |||
lRptVar.Params.Find('AllCompany').AsBoolean := True; | |||
lRptVar.Params.Find('AllCompanyCategory').AsBoolean := True; | |||
lRptVar.Params.Find('AllControlAccount').AsBoolean := True; | |||
lRptVar.Params.Find('AllCurrency').AsBoolean := True; | |||
lRptVar.Params.Find('AllDocProject').AsBoolean := True; | |||
// lRptVar.Params.Find('AreaData').AsBlob := ; //Not use if AllArea is True | |||
// lRptVar.Params.Find('CompanyCategoryData').AsBlob := ; //Not use if AllCompanyCategory is True | |||
// lRptVar.Params.Find('CompanyData').AsBlob := ; //Not use if AllCompany is True | |||
// lRptVar.Params.Find('ControlAccountData').AsBlob := ; //Not use if AllControlAccount is True | |||
// lRptVar.Params.Find('CurrencyData').AsBlob := ; //Not use if AllCurrency is True | |||
// lRptVar.Params.Find('DocProjectData').AsBlob := ; //Not use if AllDocProject is True | |||
lRptVar.Params.Find('FilterPostDate').AsBoolean := True; | |||
// lRptVar.Params.Find('GroupBy | |||
lRptVar.Params.Find('IncludePDC').AsBoolean := False; | |||
lRptVar.Params.Find('IncludeZeroBalance').AsBoolean := False; | |||
lRptVar.Params.Find('SortBy').AsString := 'Code;CompanyName'; | |||
lRptVar.Params.Find('DateTo').AsDate := '31 Aug 2016'; | |||
lRptVar.Params.Find('IncludeKnockedOffDetail').AsBoolean := False; | |||
lRptVar.CalculateReport; | |||
... | cdsMain.XMLData := lRptVar.DataSets.Find('cdsMain').XMLData; //Master Data | ||
cdsDtl.XMLData := lRptVar.DataSets.Find('cdsDocument').XMLData; //Detail Data - To link Master Data use Code field | |||
. | |||
cdsMain.SaveToFile('C:\Temp\_ListM.xml'); //Export To XML file | |||
cdsDtl.SaveToFile('C:\Temp\_ListD.xml'); //Export To XML file | |||
lTime := Now - lTime; | |||
MessageDlg(Format('[Elapsed Time: %s ]',[FormatDateTime ('hh:nn:ss:zzz', lTime)]), | |||
mtInformation, [mbOk], 0); | |||
finally | |||
lRptVar := null; | |||
cdsMain.Free; | |||
cdsDtl.Free; | |||
end; | |||
end; | |||
</syntaxhighlight> | |||
|} | |||
=== | <div style="float: right;"> [[#top|[top]]]</div> | ||
====GL.CB.RO==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! GL Cash Book Report Object Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain.dxBB_CBClick(Sender: TObject); | |||
var lBizApp, lRptVar : Variant; | |||
lTime : TDateTime; | |||
cdsMain, cdsDtl, cdsTax : TClientDataset; | |||
begin | |||
lTime := Now; | |||
cdsMain := TClientDataset.Create(nil); | |||
cdsDtl := TClientDataset.Create(nil); | |||
cdsTax := TClientDataset.Create(nil); | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | |||
try | |||
lRptVar := null; | |||
lRptVar := lBizApp.RptObjects.Find('GL.CB.RO'); | |||
lRptVar.Params.Find('AllCurrency').AsBoolean := True; | |||
lRptVar.Params.Find('AllDocProject').AsBoolean := True; | |||
lRptVar.Params.Find('AllDocument').AsBoolean := True; | |||
lRptVar.Params.Find('AllItemProject').AsBoolean := True; | |||
lRptVar.Params.Find('AllItemArea').AsBoolean := True; | |||
lRptVar.Params.Find('AllItemAgent').AsBoolean := True; | |||
lRptVar.Params.Find('AllDocAgent').AsBoolean := True; | |||
lRptVar.Params.Find('AllDocArea').AsBoolean := True; | |||
lRptVar.Params.Find('AllPaymentMethod').AsBoolean := False; | |||
// lRptVar.Params.Find('CurrencyData').AsBlob := 'Not use if AllCurrency is true | |||
// For Post Date From & Date To' | |||
lRptVar.Params.Find('DateFrom').AsDate := '01/01/2017'; | |||
lRptVar.Params.Find('DateTo').AsDate := '31/12/2017'; | |||
// lRptVar.Params.Find('DocProjectData').AsBlob := //'Not use if AllDocProject is true | |||
// lRptVar.Params.Find('DocAreaData').AsBlob := //Not use if AllDocArea is true | |||
// lRptVar.Params.Find('DocAgentData').AsBlob := //Not use if AllDocAgent is true | |||
// lRptVar.Params.Find('ItemAgentData').AsBlob := //Not use if AllItemAgent is true | |||
lRptVar.Params.Find('DocType').AsString := 'PV'; //'PV for Payment Voucher & OR for Official Receipt | |||
// lRptVar.Params.Find('DocumentData').AsBlob := //Not use if AllDocument is true | |||
// lRptVar.Params.Find('GroupBy').AsBlob := //If you wanted to grouping the data | |||
lRptVar.Params.Find('IncludeCancelled').AsBoolean := False; | |||
// lRptVar.Params.Find('ItemAreaData').AsBlob := //Not use if AllItemArea is true | |||
// lRptVar.Params.Find('ItemProjectData').AsBlob := //Not use if AllItemProject is true | |||
lRptVar.Params.Find('PaymentMethodData').AsBlob := '310-001'; | |||
lRptVar.Params.Find('PrintDocumentStyle').AsBoolean := True; | |||
lRptVar.Params.Find('SelectDate').AsBoolean := True; //For Post Date | |||
// lRptVar.Params.Find('SelectDocDate').AsBoolean := True; 'For Doc Date | |||
lRptVar.Params.Find('SortBy').AsString := 'PostDate;DocNo'; | |||
lRptVar.CalculateReport; | |||
cdsMain.XMLData := lRptVar.DataSets.Find('cdsMain').XMLData; //Master Data | |||
// | cdsDtl.XMLData := lRptVar.DataSets.Find('cdsDetail').XMLData; //Detail Data - To link Master Data use Dockey field | ||
cdsTax.XMLData := lRptVar.DataSets.Find('cdsTax').XMLData; //Tax List | |||
// | cdsMain.SaveToFile('C:\Temp\_ListM.xml'); //Export To XML file | ||
cdsDtl.SaveToFile('C:\Temp\_ListD.xml'); //Export To XML file | |||
cdsTax.SaveToFile('C:\Temp\_ListT.xml'); //Export To XML file | |||
lTime := Now - lTime; | |||
MessageDlg(Format('[Elapsed Time: %s ]',[FormatDateTime ('hh:nn:ss:zzz', lTime)]), | |||
mtInformation, [mbOk], 0); | |||
finally | |||
lRptVar := null; | |||
cdsMain.Free; | |||
cdsDtl.Free; | |||
end; | |||
end; | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====AR_DP==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer Deposit Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
. | procedure TForm1.Button1Click(Sender: TObject); | ||
var lMain, lBizObj, lBizApp : Variant; | |||
begin | begin | ||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | lBizApp := CreateOleObject('SQLAcc.BizApp'); | ||
lBizApp.Login('ADMIN', 'ADMIN', 'D:\Happy\DB\Default.DCF', 'ACC-0110.FDB'); | |||
lBizObj := lBizApp.BizObjects.Find('AR_DP'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
try | try | ||
// | lBizObj.New; | ||
lMain.FindField('DOCKEY').Value := -1; | |||
lMain.FindField('DocNo').AsString := '--DP Test--'; | |||
lMain.FindField('CODE').AsString := '300-C0001'; | |||
lMain.FindField('DocDate').Value := '28 Oct 2019'; | |||
lMain.FindField('PostDate').Value := '28 Oct 2019'; | |||
lMain.FindField('TAXDATE').Value := '28 Oct 2019'; | |||
lMain.FindField('DEPOSITACCOUNT').AsString := 'PREPAYMENT'; | |||
lMain.FindField('PaymentMethod').AsString := '320-000'; //Bank or Cash account | |||
lMain.FindField('Description').AsString := 'Deposit For Account'; | |||
lMain.FindField('ChequeNumber').AsString := ''; | |||
lMain.FindField('BankCharge').AsFloat := 0; | |||
lMain.FindField('DocAmt').AsFloat := 1000.00; | |||
lMain.FindField('Cancelled').AsString := 'F'; | |||
try | try | ||
lBizObj.Save; | |||
except | |||
on E: Exception do | |||
Memo1.Lines.Append(E.Message); | |||
except | |||
on E: Exception do | |||
end; | end; | ||
lBizObj.Close; | |||
Memo1.Lines.Append('Done'); | |||
// MessageDlg('Done', mtInformation, [mbOk], 0); | |||
finally | finally | ||
lMain := Null; | |||
lBizObj := Null; | |||
lBizApp.Logout; | lBizApp.Logout; | ||
lBizApp := | lBizApp := Null; | ||
end; | end; | ||
end; | end; | ||
Line 12,153: | Line 12,659: | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Customer Deposit to Customer Payment==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer Deposit to Customer Payment Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="delphi"> | ||
procedure TForm1.Button2Click(Sender: TObject); | |||
var lMain, lKO, lBizApp, lBizObj, V : Variant; | |||
cdsTmp : TClientDataset; | |||
lSQL : String; | |||
begin | |||
cdsTmp := TClientDataset.Create(nil); | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | |||
lBizApp.Login('ADMIN', 'ADMIN', 'D:\Happy\DB\Default.DCF', 'ACC-0110.FDB'); | |||
' | try | ||
lSQL := 'SELECT DOCKEY FROM AR_DP ' + | |||
'WHERE DOCNO=''--DP Test--'' '; | |||
cdsTmp.Data := lBizApp.DBManager.Execute(lSQL); | |||
if cdsTmp.RecordCount > 0 then begin | |||
lBizObj := lBizApp.BizObjects.Find('AR_PM'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lKO := lBizObj.DataSets.Find('cdsKnockOff'); | |||
lBizObj.New; | |||
lMain.FindField('DOCKEY').Value := -1; | |||
lMain.FindField('DocNo').AsString := '--PM Test--'; //Payment Document Number | |||
lMain.FindField('CODE').AsString := '300-C0001'; | |||
lMain.FindField('DocDate').Value := '29 Oct 2019'; | |||
lMain.FindField('PostDate').Value := '29 Oct 2019'; | |||
lMain.FindField('Description').AsString := 'Payment for A/c'; | |||
lMain.FindField('PaymentMethod').AsString := 'PREPAYMENT'; | |||
lMain.FindField('DocAmt').AsFloat := 200; | |||
lMain.FindField('FROMDOCTYPE').AsString := 'DP'; //Transfer from Deposit | |||
lMain.FindField('FROMDOCKEY').Value := cdsTmp.FindField('Dockey').AsFloat; //Transfer from Deposit | |||
lMain.FindField('Cancelled').AsString := 'F'; | |||
lMain.FindField('CHANGED').AsString := 'F'; | |||
V := lBizApp.CreateOleVariantArray(2); | |||
V.SetItem(0, 'IV'); //Document Type is either is IV or DN for Sales & PI or SD for Purchase | |||
V.SetItem(1, 'IV-00003'); //Invoice Document Number | |||
if lKO.Locate('DocType;DocNo', V.AsOleVariant, False, False) then | |||
begin | |||
lKO.Edit; | |||
lKO.FindField('KOAmt').ASFloat := 200; | |||
lKO.FindField('KnockOff').AsString := 'T'; | |||
lKO.Post; | |||
end; | |||
try | |||
lBizObj.Save; | |||
except | |||
on E: Exception do | |||
Memo1.Lines.Append(E.Message); | |||
end; | |||
lBizObj.Close; | |||
Memo1.Lines.Append('Done'); | |||
//MessageDlg('AR_PM-DocNo : ''--PM Test--'' Posted...', mtInformation, [mbOK],0); | |||
end else | |||
Memo1.Lines.Append('Deposit No. Not found'); | |||
finally | |||
cdsTmp.Free; | |||
lBizApp.Logout; | |||
lMain := Null; | |||
lBizObj := Null; | |||
lBizApp := Null; | |||
end; | |||
end; | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Line 12,206: | Line 12,736: | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
=== | ====AR_DPDTL_REFUND==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer Deposit Refund Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | |||
procedure TForm1.Button3Click(Sender: TObject); | |||
var lMain, lBizApp, lBizObj : Variant; | |||
cdsTmp : TClientDataset; | |||
lSQL : String; | |||
begin | |||
cdsTmp := TClientDataset.Create(nil); | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | |||
lBizApp.Login('ADMIN', 'ADMIN', 'D:\Happy\DB\Default.DCF', 'ACC-0110.FDB'); | |||
try | |||
lSQL := 'SELECT DOCKEY FROM AR_DP ' + | |||
'WHERE DOCNO=''--DP Test--'' '; | |||
cdsTmp.Data := lBizApp.DBManager.Execute(lSQL); | |||
if cdsTmp.RecordCount > 0 then begin | |||
lBizObj := lBizApp.BizObjects.Find('AR_DPDTL_REFUND'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lBizObj.New; | |||
lMain.FindField('DOCKEY').Value := cdsTmp.FindField('Dockey').AsFloat; | |||
lMain.FindField('Account').AsString := '320-000'; //Bank or Cash account | |||
lMain.FindField('DocDate').Value := '28 Oct 2019'; | |||
: | lMain.FindField('PostDate').Value := '28 Oct 2019'; | ||
lMain.FindField('Description').AsString := 'Deposit Refund'; | |||
: | lMain.FindField('ChequeNumber').AsString := ''; | ||
lMain.FindField('BankCharge').AsFloat := 0; | |||
: | lMain.FindField('PAYMENTAMOUNT').AsFloat := 500.00; | ||
: | |||
try | |||
lBizObj.Save; | |||
except | |||
on E: Exception do | |||
Memo1.Lines.Append(E.Message); | |||
end; | |||
. | lBizObj.Close; | ||
Memo1.Lines.Append('Done'); | |||
// MessageDlg('Done', mtInformation, [mbOk], 0); | |||
end else | |||
Memo1.Lines.Append('Deposit No. Not Found'); | |||
finally | finally | ||
cdsTmp.Free; | |||
lMain := Null; | |||
lBizObj := Null; | |||
lBizApp.Logout; | |||
lBizApp := Null; | |||
end; | end; | ||
end; | end; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
=== | ====AR_DPDTL_FORFEIT==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Customer Deposit Forfeit Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang="delphi"> | |||
procedure TForm1.Button4Click(Sender: TObject); | |||
var lMain, lBizApp, lBizObj : Variant; | |||
cdsTmp : TClientDataset; | |||
lSQL : String; | |||
begin | |||
cdsTmp := TClientDataset.Create(nil); | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | |||
lBizApp.Login('ADMIN', 'ADMIN', 'D:\Happy\DB\Default.DCF', 'ACC-0110.FDB'); | |||
... | try | ||
lSQL := 'SELECT DOCKEY FROM AR_DP ' + | |||
'WHERE DOCNO=''--DP Test--'' '; | |||
cdsTmp.Data := lBizApp.DBManager.Execute(lSQL); | |||
... | |||
if cdsTmp.RecordCount > 0 then begin | |||
lBizObj := lBizApp.BizObjects.Find('AR_DPDTL_FORFEIT'); | |||
lMain := lBizObj.DataSets.Find('MainDataSet'); | |||
lBizObj.New; | |||
lMain.FindField('DOCKEY').Value := cdsTmp.FindField('Dockey').AsFloat; | |||
lMain.FindField('Account').AsString := '532-000'; //Forfeit account | |||
lMain.FindField('DocDate').Value := '28 Oct 2019'; | |||
lMain.FindField('PostDate').Value := '28 Oct 2019'; | |||
lMain.FindField('Description').AsString := 'Deposit Forfeit'; | |||
lMain.FindField('Amount').AsFloat := 150.00; | |||
try | |||
lBizObj.Save; | |||
except | |||
on E: Exception do | |||
Memo1.Lines.Append(E.Message); | |||
end; | |||
lBizObj.Close; | |||
Memo1.Lines.Append('Done'); | |||
// MessageDlg('Done', mtInformation, [mbOk], 0); | |||
end else | |||
Memo1.Lines.Append('Deposit No. Not Found'); | |||
finally | |||
cdsTmp.Free; | |||
lMain := Null; | |||
lBizObj := Null; | |||
lBizApp.Logout; | |||
lBizApp := Null; | |||
end; | |||
end; | |||
</syntaxhighlight> | |||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
=== | ==FAQ== | ||
===Problem with opening CHM Help files?=== | |||
# Right click the chm file & select Properties | |||
[[ | # At General tab Click Unblock button. | ||
# Click Apply | Ok. | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===Still can't open CHM file?=== | |||
# Login SQL Accounting | |||
# Click Tools | Options | General | |||
# Click Register & follow wizard | |||
# Exit SQL Accounting | |||
# Login SQL Accounting | |||
# Run CHM File | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
=== | ===Why when I compile my program with stated unknown method or unknown identifier?=== | ||
: | :If you compiler had error may try add the '''esfw10.dll''' file under the SQL Accounting\bin folder | ||
<div style="float: right;"> [[#top|[top]]]</div> | |||
| | |||
===How to make sure I login to correct database?=== | |||
* Can use the '''Common.Agent.RO''' Report Objects to get the Profile info. | |||
* Then use the cdsProfile Dataset | |||
: - CompanyName Field | |||
: - Remark Field | |||
* Refer to [https://wiki.sql.com.my/wiki/SDK_Live#Get_Company_Profile Get Company Profile] | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
=== | ===Why after post to SQL Accounting the Description3 (More Description)/Notes field it show like this "M y D e s c r i p t i o n" instead of "My Description"?=== | ||
:Make sure you use '''.AsString''' in your code (see example below) | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Description3 Field Script/Code | ||
|- | |- | ||
| | | | ||
... | |||
lDtl.FindField('DESCRIPTION3').'''AsString''' := 'Sales Item A More Description'+ #13 + 'I in 2nd line'; | |||
... | |||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===Can I Ignore Doc No Field & let SQL Accounting to Auto Assign?=== | |||
:Yes but we not recommended as you will lost track when user wanted to know which Doc No in SQL Acc is posted. | |||
: To Set Auto Assign set it as below | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! DocNo Field Script/Code | ||
|- | |- | ||
| | | | ||
... | |||
lMain.FindField('DocNo').'''AsString''' := '<<New>>'; | |||
... | |||
lDocNo := lMain.FindField('DocNo').AsString; //To Get docno after post | |||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===Can I Auto Login & Logout SQL Accounting when doing & after Posting?=== | |||
: Yes can below is example script | |||
: Only work if that PC is no once is using SQL Accounting | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! C Sharp | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="C#"> | ||
Int32 lBuildNo; | |||
dynamic ComServer; | |||
... | |||
public void CheckLogin() | |||
{ | |||
lBizType = Type.GetTypeFromProgID("SQLAcc.BizApp"); | |||
ComServer = Activator.CreateInstance(lBizType); | |||
if (!ComServer.IsLogin) | |||
{ | |||
try | |||
{ | |||
ComServer.Login(edUN.Text, edPW.Text, edDCF.Text, edDB.Text); | |||
ComServer.Minimize(); | |||
} | |||
catch(Exception ex) | |||
{ | |||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); | |||
FreeBiz(ComServer); | |||
} | |||
} | |||
if (ComServer.IsLogin) | |||
{ | |||
lBuildNo = ComServer.BuildNo; | |||
} | |||
} | |||
public void FreeBiz(object AbizObj) | |||
{ | |||
System.Runtime.InteropServices.Marshal.ReleaseComObject(AbizObj); | |||
} | |||
private void btnExport_Click(object sender, EventArgs e) | |||
{ | |||
dynamic BizObject, lMain, lDocKey; | |||
CheckLogin(); | |||
//'Step 2: Find and Create the Biz Objects | |||
BizObject = ComServer.BizObjects.Find("Agent"); | |||
//Step 3: Set Dataset | |||
lMain = BizObject.DataSets.Find("MainDataSet"); //lMain contains master data | |||
//Step 4: Search | |||
lDocKey = BizObject.FindKeyByRef("CODE", edCode.Text); | |||
=== | try | ||
{ | |||
: | try | ||
{ | |||
//Step 5 : Insert or Update | |||
if (Convert.IsDBNull(lDocKey)) | |||
{ | |||
BizObject.New(); | |||
lMain.FindField("CODE").value = edCode.Text; | |||
lMain.FindField("DESCRIPTION").value = edDesc.Text; | |||
} | |||
else | |||
{//Edit Data if found | |||
BizObject.Params.Find("CODE").Value = lDocKey; | |||
BizObject.Open(); | |||
BizObject.Edit(); | |||
lMain.FindField("DESCRIPTION").value = edDesc.Text; | |||
} | |||
//Step 6: Save & Close | |||
BizObject.Save(); | |||
MessageBox.Show("Done", "Status", MessageBoxButtons.OK, MessageBoxIcon.Information); | |||
} | |||
catch (Exception ex) | |||
{ | |||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); | |||
} | |||
} | |||
finally | |||
{ | |||
BizObject.Close(); | |||
//Step 7 : Logout after done | |||
: | FreeBiz(BizObject); | ||
ComServer.Logout(); | |||
FreeBiz(ComServer); | |||
} | |||
} | |||
</syntaxhighlight> | |||
|} | |||
</ | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Delphi | |||
|- | |||
| | |||
<syntaxhighlight lang="delphi"> | |||
: | .... | ||
public | |||
{ Public declarations } | |||
lBizApp : variant; | |||
end; | |||
.... | |||
procedure TForm1.CheckLogin; | |||
begin | |||
lBizApp := null; | |||
lBizApp := CreateOleObject('SQLAcc.BizApp'); | |||
if not lBizApp.IsLogin then begin | |||
lBizApp.Login(edUN.Text, edPW.Text, edDCF.Text, edDB.Text); //Login with preset setting | |||
lBizApp.Minimize; //Mininise the SQLAccounting | |||
end; | |||
end; | |||
=== | procedure TForm1.Button2Click(Sender: TObject); | ||
var BizObject, lMain : Variant; | |||
: | begin | ||
: | try | ||
//Begin Loop your data | |||
::- | try | ||
: | CheckLogin; | ||
:: | BizObject := lBizApp.BizObjects.Find('Agent'); | ||
lMain := BizObject.DataSets.Find('MainDataSet'); | |||
:: | BizObject.New; | ||
lMain.FindField('CODE').AsString := 'HALIM'; | |||
lMain.FindField('Description').AsString := 'HALIM 123'; | |||
BizObject.save; | |||
except | |||
on E: Exception do | |||
MmLog.Lines.Append(E.Message); | |||
end; | |||
// | |||
finally | |||
BizObject.close; | |||
BizObject := null; | |||
lBizApp.Logout; | |||
lBizApp := null; | |||
end; | |||
end; | |||
</syntaxhighlight> | |||
|} | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! VB Script | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
'Copy below script & paste to notepad & name it as eg Agent.vbs | |||
Call PostData | |||
Function CreateSQLAccServer | |||
Set CreateSQLAccServer = CreateObject("SQLAcc.BizApp") | |||
End Function | |||
Function PostData | |||
Dim ComServer, BizObject | |||
'Step 1: Create Com Server object | |||
Set ComServer = CreateSQLAccServer 'Create Com Server | |||
Set WScr = CreateObject("WScript.Shell") | |||
WScript.Sleep 1000 '//Wait 1 second for system loading before proceed | |||
'Step 2: Force Logout to make sure login correct database | |||
If ComServer.IsLogin Then 'if user hasn't logon to SQL application | |||
ComServer.Logout | |||
END IF | |||
'Step 3: Login | |||
ComServer.Login "ADMIN", "ADMIN", "C:\estream\SQLAccounting\Share\Default.DCF", "ACC-0015.FDB" | |||
'Step 4: Find and Create the Biz Objects | |||
Set BizObject = ComServer.BizObjects.Find("Agent") | |||
'Step 5: Set Dataset | |||
Set lMain = BizObject.DataSets.Find("MainDataSet") 'lMainDataSet contains master data | |||
'Step 6 : Posting | |||
BizObject.New | |||
lMain.FindField("CODE").AsString = "_Test_" | |||
lMain.FindField("Description").AsString = "Testing 123" | |||
'Step 7: Save Document | |||
BizObject.Save | |||
BizObject.Close | |||
'Step 8: Logout | |||
ComServer.Logout | |||
MsgBox "Done" | |||
End Function | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
===How to Loop & post SQL Accounting?=== | ===When Post System Prompt Operation aborted Error=== | ||
:Below summary how to loop | : This happen when the Login User ID don't had the to '''Override Sales Min/Max Price''' & | ||
:01. Call ComServer | : Use '''Last Price XXX''' (In Tools | Options | Unit Price) & | ||
:02. Check Login | : 1 of record is below Min Price. | ||
'''Solution''' | |||
: Can try change the Posting Seq like below (UOM then Qty) | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Sequence Field Script/Code | |||
|- | |||
| | |||
... | |||
lDetail.Append(); | |||
lDetail.FindField("Seq").value = 3; | |||
lDetail.FindField("ItemCode").AsString = "ANT"; | |||
lDetail.FindField("Description").AsString = "Sales Item B"; | |||
//lDetail.FindField("Account").AsString = "500-000"; To override the Sales Account Code | |||
'''lDetail.FindField("UOM").AsString = "UNIT";''' | |||
'''lDetail.FindField("Qty").AsFloat = 2;''' | |||
//lDetail.FindField("DISC").AsString = "5%+3"; //Optional(eg 5% plus 3 Discount) | |||
lDetail.FindField("Tax").AsString = "SV"; | |||
lDetail.FindField("TaxRate").AsString = "6%"; | |||
lDetail.FindField("TaxInclusive").value = False; | |||
lDetail.FindField("UnitPrice").AsFloat = 100; | |||
lDetail.FindField("Amount").AsFloat = 200; | |||
lDetail.FindField("TaxAmt").AsFloat = 12; | |||
lDetail.Post(); | |||
... | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===How do my system know there is a changes or update in SQLAccounting?=== | |||
'''Data Entry'''<br> | |||
: In all Document it had a field call <span style="color:#0000ff">UPDATECOUNT</span>. | |||
: Default is null & each changes will +1. | |||
: So if you see 2 meaning it had being update 2 times | |||
: Only available in | |||
:* Version 1001.858 & above | |||
: In Each table it had a field call <span style="color:#0000ff">LASTMODIFIED</span>. | |||
: The value is '''Epoch Time''' or '''Unix Time''' | |||
'''Master Data''' | |||
: Only available in | |||
:* Version 842.765 & above | |||
:* AP_SUPPLIER (Maintain Supplier) | |||
:* AR_CUSTOMER (Maintain Customer) | |||
:* ST_GROUP (Maintain Stock Group) | |||
:* ST_ITEM (Maintain Stock Item) | |||
:* ST_ITEM_TPL (Maintain Item Template) | |||
:* ST_PRICETAG (Maintain Price Tag) | |||
:* TAX (Maintain Tax) | |||
: In Each table it had a field call <span style="color:#0000ff">LASTMODIFIED</span>. | |||
: The value is '''Epoch Time''' or '''Unix Time''' | |||
You can use below function to get the field | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! vbs | |||
|- | |||
| | |||
<syntaxhighlight lang="vbs"> | |||
... | |||
Function GetData | |||
Dim lDataSet, lSQL | |||
lSQL = "SELECT DOCNO, UPDATECOUNT FROM SL_CS " | |||
lSQL = lSQL & "WHERE UPDATECOUNT IS NOT NULL " | |||
lSQL = lSQL & "ORDER BY DOCNO " | |||
Set lDataSet = ComServer.DBManager.NewDataSet(lSQL) | |||
lDataSet.First | |||
While (not lDataSet.eof) | |||
MsgBox "DocNo : " & lDataSet.FindField("DocNo").AsString | |||
MsgBox "UpdateCount : " & lDataSet.FindField("UPDATECOUNT").AsString | |||
lDataSet.Next | |||
Wend | |||
End Function | |||
... | |||
</syntaxhighlight> | |||
|} | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Delphi | |||
|- | |||
| | |||
<syntaxhighlight lang="delphi"> | |||
... | |||
procedure TfmMain.dxbb_GetFieldClick(Sender: TObject); | |||
var BizApp : Variant; | |||
lDataSet : TClientDataSet; | |||
ASQL : String; | |||
begin | |||
BizApp := CreateOleObject('SQLAcc.BizApp'); | |||
lDataSet := TClientDataSet.Create(Self); | |||
try | |||
ASQL := 'SELECT DOCNO, UPDATECOUNT FROM SL_CS ' + | |||
'WHERE UPDATECOUNT IS NOT NULL ' + | |||
'ORDER BY DOCNO '; | |||
lDataSet.Data := BizApp.DBManager.Execute(ASQL); | |||
lDataset.SaveToFile('C:\Temp\_List.xml', dfXML); //Export To XML file | |||
finally | |||
lDataSet.Free; | |||
end; | |||
end; | |||
... | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===Can I control my Stock when I link with other Application?=== | |||
: Yes. We suggest to use Stock Transfer to (eg Location call <span style="color:#0000ff">MOBILE</span>) transfer stock as Reserve to avoid stock over deduct in SQL Accounting | |||
: When other Application post to SQL Accounting they just need set the Location to the Reserve Location (eg <span style="color:#0000ff">MOBILE</span>) | |||
: Below is example posting with location | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Post Location Field Script/Code | |||
|- | |||
| | |||
... | |||
lDtl.FindField('UOM').AsString := 'CTN'; | |||
lDtl.FindField('QTY').AsFloat := 6; | |||
lDtl.FindField('Location').AsString := 'MOBILE'; | |||
... | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===Where to Check the SQL Accounting DCF Path, FileName & FDB FileName?=== | |||
: In Login Screen Click 3 Dot Button then you can see the information | |||
: For SQL Accounting Version 5.2023.957.831 and below | |||
[[File:SDK-FAQ-01.jpg|center]] | |||
: For SQL Accounting Version 5.2023.958.832 and above | |||
[[File:SDK-FAQ-03.jpg|800px|center]] | |||
[[File:SDK-FAQ-02.jpg|554px|center]] | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===How to check & What is the value for Advance Credit Control in Maintain Customer=== | |||
: You can use <span style="color:#0000ff">ComServer.DBManager.NewDataSet(lSQL)</span> function to Query the information | |||
: lSQL = SELECT * FROM AR_CUSTOMERCRCTRL | |||
: You may refer to <span style="color:#0000ff">ControlType</span> column | |||
{| class="wikitable" style="margin: 1em auto 1em auto;" | |||
|- | |||
! ControlType !! Exceed Credit Limit !! Exceed OverDue Limit | |||
|- | |||
| align="center" | 0 || UnBlock || UnBlock | |||
|- | |||
| align="center" | 1 || UnBlock || Block | |||
|- | |||
| align="center" | 2|| UnBlock || Override | |||
|- | |||
| align="center" | 3|| Block || UnBlock | |||
|- | |||
| align="center" | 4|| Block || Block | |||
|- | |||
| align="center" | 5|| Block || Override | |||
|- | |||
| align="center" | 6|| Override || UnBlock | |||
|- | |||
| align="center" | 7|| Override || Block | |||
|- | |||
| align="center" | 8|| Override || Override | |||
|- | |||
| align="center" | 9|| align="center" colspan="2"| Suspended | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===How to get Error/Exception Message Return from SQL Accounting?=== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! C Sharp | |||
|- | |||
| | |||
<syntaxhighlight lang="C#"> | |||
try | |||
{ | |||
BizObject.New(); | |||
.... | |||
BizObject.Save(); | |||
} | |||
catch (Exception ex) | |||
{ | |||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); | |||
} | |||
</syntaxhighlight> | |||
|} | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Python | |||
|- | |||
| | |||
try: | |||
BizObject.Save() | |||
except Exception as e: | |||
print("Oops!", e) | |||
|} | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! VB.Net | |||
|- | |||
| | |||
<syntaxhighlight lang="vb"> | |||
Try | |||
BizObject.[New] | |||
... | |||
BizObject.Save | |||
Catch ex As Exception | |||
MsgBox(ex.Message, MsgBoxStyle.Exclamation) | |||
End Try | |||
</syntaxhighlight> | |||
|} | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Delphi | |||
|- | |||
| | |||
<syntaxhighlight lang="delphi"> | |||
try | |||
lBizObj.New; | |||
.... | |||
lBizObj.Save; | |||
except | |||
on E: Exception do | |||
Memo1.Lines.Text := E.Message; | |||
end; | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===Why Post to SQL Accounting sometime prompt Catastrophic failure Error?=== | |||
'''Possible Problem 1''' | |||
: Make sure you code don't cross over Call action during posting | |||
: Eg Posing SL_SO Header partly then suddenly call other object example Check Customer Code Validity | |||
: Summary action (Correct Steps) | |||
::01. Do Verify 1st (eg Check Customer Code Validity & etc) | |||
::02. Post Transactions | |||
'''Possible Problem 2''' | |||
:Keep Login & Logout till windows not enough time to response | |||
: Summary action (Correct Steps) | |||
::01. Pull Data from Your application/web | |||
::02. Login SQL Accounting 1 time (Auto Login) | |||
::03. Do all your requirement actions (eg. verify, query & posting) | |||
<pre> | |||
eg Posting Cash Sales & Customer Payment | |||
begin looping | |||
BizObject = ComServer.BizObjects.Find("SL_CS") | |||
.... | |||
BizObject.Save | |||
BizObject.Close | |||
FreeBiz(BizObject) | |||
BizObject = ComServer.BizObjects.Find("AR_PM") | |||
.... | |||
BizObject.Save | |||
BizObject.Close | |||
FreeBiz(BizObject) | |||
Next Record | |||
End looping | |||
</pre> | |||
::04. Logout SQL Accounting 1 time (Auto Logout) | |||
::05. Push Data to Your application/web (if any) | |||
'''Possible Problem 3''' | |||
: Company Profile Logo format had problem. | |||
: Solution | |||
::01. Click File | Company Profile | |||
::02. Export out the Logo by right Click the Company Logo | |||
::03. Open the Exported Logo with Photo Editor | |||
::04. Just Click File | Save again as jpg. | |||
::05. Load Back the Save Logo by right Click the Company Logo | |||
::06. Click Save | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===How to Get the GL Account List for Sales & Purchase?=== | |||
: You can use the function <span style="color:#0000ff">ComServer.DBManager.NewDataSet(lSQL)</span> with the following SQL | |||
<pre> | |||
SELECT Code, Description, Description2 FROM GL_ACC A | |||
WHERE (A.Parent<>-1 | |||
AND NOT (EXISTS (SELECT Parent FROM GL_ACC B | |||
WHERE A.DocKey=B.Parent)) | |||
AND (A.SpecialAccType IS NULL OR A.SpecialAccType IN ('', 'AD'))) | |||
ORDER BY Code | |||
</pre> | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===Can I setup a testing/Staging environment for SQL Accounting?=== | |||
:Yes can, you can self setup or we can help you to setup. | |||
:There are 4 types of Testing/Staging | |||
:01. Install the Testing SQL Accounting version & Testing Database in the developer PC | |||
:02. Install the Live SQL Accounting version & User Backup Database in the developer PC | |||
::- Require User Permission for Backup | |||
:03. Setup at User PC/Server & using User Backup Database | |||
::- Require User Permission for Backup & PC/Server setup | |||
:04. Setup at User PC/Server & using Testing Database | |||
::- Require User Permission for PC/Server setup | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===How to Loop & post SQL Accounting?=== | |||
:Below summary how to loop | |||
:01. Call ComServer | |||
:02. Check Login | |||
:03. Call BizObject (eg SL_CS) | :03. Call BizObject (eg SL_CS) | ||
:04. Begin Loop you data | :04. Begin Loop you data | ||
:05. Call Close BizObject (eg BizObject.Close) | :05. Call Close BizObject (eg BizObject.Close) | ||
:06. Continue Call other BizObject (eg AR_PM) | :06. Continue Call other BizObject (eg AR_PM) | ||
:07. Repeat Steps 4 & 5 | :07. Repeat Steps 4 & 5 | ||
:08. Call Logout | :08. Call Logout | ||
:09. Free ComServer | :09. Free ComServer | ||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===How to post Description3 with Unicode?=== | |||
:You have to convert it to rtf format before set to Description3 field | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! C Sharp | |||
|- | |||
| | |||
<pre> | |||
private static string FormatAsRTF(string DirtyText) | |||
{ | |||
System.Windows.Forms.RichTextBox rtf = new System.Windows.Forms.RichTextBox(); | |||
rtf.Text = DirtyText; | |||
return rtf.Rtf; | |||
} | |||
.... | |||
lDtl.FindField("DESCRIPTION3").AsString = FormatAsRTF("ANTENNA ???"); | |||
... | |||
</pre> | |||
|} | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! VB.Net | |||
|- | |||
| | |||
<pre> | |||
Private Shared Function FormatAsRTF(ByVal DirtyText As String) As String | |||
Dim rtf As System.Windows.Forms.RichTextBox = New System.Windows.Forms.RichTextBox() | |||
rtf.Text = DirtyText | |||
Return rtf.Rtf | |||
End Function | |||
.... | |||
lDtl.FindField("DESCRIPTION3").AsString = FormatAsRTF("ANTENNA ???") | |||
... | |||
</pre> | |||
|} | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Delphi | |||
|- | |||
| | |||
<pre> | |||
function TfmMain.PlainTxtToRTF(const AValue:String):String; | |||
var R:TRichEdit; | |||
M : TStringStream; | |||
begin | |||
R := TRichEdit.CreateParented(HWND_MESSAGE); | |||
M := TStringStream.Create(''); | |||
try | |||
R.WordWrap := False; | |||
R.Lines.Add(AValue); | |||
R.Lines.SaveToStream(M); | |||
Result := M.DataString; | |||
finally | |||
R.Free; | |||
M.Free; | |||
end; | |||
end; | |||
.... | |||
lDtl.FindField('DESCRIPTION3').AsString := PlainTxtToRTF('ANTENNA ???'); | |||
... | |||
</pre> | |||
|} | |||
:or Can use our build in Utility function (only available from 5.2022.941.822 & above) | |||
<pre> | |||
.... | |||
lDtl.FindField("Description3").AsString = ComServer.Utility.PlainTextToRichText("ANTENNA ??? ??") | |||
... | |||
</pre> | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! PHP | |||
|- | |||
| | |||
<pre> | |||
<!DOCTYPE html> | |||
<html> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 14 Sep 2022<br>"; | |||
#This action to show & post Description3 with unicode | |||
$ComServer = null; | |||
function CheckLogin() | |||
{ | |||
global $ComServer; | |||
$ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | |||
$status = $ComServer->IsLogin(); | |||
if ($status == true) | |||
{ | |||
#$ComServer->Logout(); | |||
} | |||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | |||
"C:\eStream\SQLAccounting\Share\Default.DCF", #DCF file | |||
"ACC-0082.FDB"); #Database Name | |||
} | |||
function GetData(){ | |||
global $ComServer; | |||
$lSQL = "SELECT Description3 FROM ST_ITEM | |||
WHERE Code='ANT' "; | |||
$lDataSet = $ComServer->DBManager->NewDataSet($lSQL); | |||
if ($lDataSet->RecordCount > 0) { | |||
$lDataSet->First(); | |||
$rtf = $lDataSet->FindField('Description3')->AsString(); | |||
echo $rtf; | |||
echo "<br>== <br>"; | |||
echo "<br>Result after RTF: <br>"; | |||
$txt = $ComServer->Utility->RichTextToPlainText($rtf); | |||
echo "<TEXTAREA rows=10 cols=80 id='edResult1' >".$txt. "</TEXTAREA>"; | |||
echo "<br>== <br>"; | |||
echo "??? ??"; | |||
}else { | |||
echo "Record Not Found"; | |||
} | |||
} | |||
function PostData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("ST_AJ"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); | |||
$lDetail = $BizObject->DataSets->Find("cdsDocDetail"); | |||
$BizObject->New(); | |||
$lMain->FindField("DocKey")->value = -1; | |||
$lMain->FindField("DocNo")->AsString = "<<New>>"; | |||
$lMain->FindField("DocDate")->value = "04/20/2020"; #MM/DD/YYYY | |||
$lMain->FindField("PostDate")->value = "04/20/2020"; #MM/DD/YYYY | |||
$lMain->FindField("Description")->AsString = "Stock Adjustment"; | |||
#Insert Data - Detail - Increase Stock Qty | |||
$lDetail->Append(); | |||
$lDetail->FindField("DtlKey")->value = -1; | |||
$lDetail->FindField("DocKey")->value = -1; | |||
$lDetail->FindField("Seq")->value = 1; | |||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | |||
$lDetail->FindField("Description")->AsString = "Sales Item B"; | |||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lDetail->FindField("UOM")->AsString = "UNIT"; | |||
$lDetail->Post(); | |||
#Insert Data - Detail - Reduce Stock Qty | |||
$lDetail->Append(); | |||
$lDetail->FindField("DtlKey")->value = -1; | |||
$lDetail->FindField("DocKey")->value = -1; | |||
$lDetail->FindField("Seq")->value = 2; | |||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | |||
$lDetail->FindField("Description")->AsString = "NOKIA CHARGER ???"; | |||
$lDetail->FindField("Description3")->AsString = $ComServer->Utility->PlainTextToRichText("NOKIA CHARGER ??? ??"); | |||
$lDetail->FindField("Qty")->AsFloat = -5; | |||
$lDetail->FindField("UOM")->AsString = "UNIT"; | |||
$lDetail->Post(); | |||
$BizObject->Save(); | |||
$BizObject->Close(); | |||
try{ | |||
$BizObject->Save(); | |||
$BizObject->Close(); | |||
}catch (Exception $e) { | |||
echo 'Caught exception: ', $e->getMessage(), "\n"; | |||
} | |||
} | |||
if (isset($_POST['BtnData'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
GetData(); | |||
echo "<br>"; | |||
echo date("d M Y h:i:s A")." - Done"; | |||
PostData(); | |||
echo "<br>"; | |||
echo date("d M Y h:i:s A")." - Done ST_AJ"; | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
?> | |||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Get RTF n Post RTF"/> | |||
</form> | |||
</body> | |||
</html> | |||
</pre> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
=== | ===Why the TAXEXEMPTIONREASON field become empty even I have pass the value in?=== | ||
: | :Make sure the TAXRATE field is set to empty | ||
<pre> | <pre> | ||
.... | .... | ||
lDtl.FindField( | lDtl.FindField('Tax').AsString := 'SVE'; | ||
lDtl.FindField('TaxRate').AsString := ''; | |||
lDtl.FindField('TaxExemptionReason').AsString := 'my tax exemption reason'; | |||
... | ... | ||
</pre> | </pre> | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
Latest revision as of 01:43, 14 March 2025
Introduction
This is the "Bridge" direct live linking between External Program with SQL Accounting
Pros
- Can Live or Batch Update.
- Can do action such as New, Edit & Delete.
- About 95% of modules is covered.
- Can direct Retrieve/Get Information From Connected Database.
- Able to do Automation (i.e. auto login & update data).
- Support GST & SST.
- Free of Charge (Freeware) for End User on SDK Linking.
Cons
- Must had programming knowledge.
- Must had SQL Accounting installed & running.
- Must self do checking else error prompt will unable to “capture”.
- Only supported in IE for JScript
Requirement
- Microsoft Windows 8.1 and above (recommended with 64 bits windows)
- Intel i5, i7 and above computer.
- 8 GB of RAM (recommended 12 GB and above).
- Firebird (For Automatic Login & Logout Only)
- SQL Accounting
- Windows Scheduler (For Automatic Login & Logout Only)
Documentation
Linking Flow
- Highlight in Yellow Color is the Windows base Application/Function you need to Develop/Create.
Example 1 - POS System
Example 2 - Cloud/Mobile System
Example 3 - Cloud/Mobile System with SQL Connect Public
- The SDK can be build in in your system or a Standalone windows Application(Middle Application).
- If you build in your system then it can be sync anytime either by a special interface with parameter (eg Date From, Date To & etc) or each transaction after post(not recommended)
- If you create a Standalone windows Application(Middle Application) you can make use the Windows Schedule to sync or call from you system to execute/run the Standalone windows Application(Middle Application).
Steps
CHM File
- Install SQL Accounting Click here
- Create Sample Data
- Login (username & password is Admin)
- Double click the SQLSDK.chm file
- Click Application Object | Business Objects
- Click the word "here"
- Click Yes
- In the list Look for (example)
- - AR_IV -> Customer Invoice
- - AR_CN -> Customer Credit Note
- - AP_PI -> Supplier Invoice
- - SL_IV -> Sales Invoice
- - PH_PI -> Purchase Invoice
- - ST_AJ -> Stock Adjustment
External Application Linking
- Login SQL Accounting
- Login External Application
- Click Post to SQL Accounting button or Click Save button from External Application.
- ----------------------------------------------------------------------------------------------------------------------------------------------------
- ----------------------------------------------------------------------------------------------------------------------------------------------------
Available Programming Language
Example External Program
VB. Net
- Example VBDotNet-20230819
C Sharp
- Example CSharp-20230819
Steps (C Sharp & VB.Net Only)
The example video is how to
- 01. Open DCF in D:\Happy\DB\Default.DCF
- 02. Datatabase is ACC-0008.FDB
- 03. Click Complete Post button
- 04. Where to check in SQL accounting after Post (Steps-2.gif)
Available Function
- - Complete Post - SL_CS, SL_CN, AR_PM, AR_CN & AR_CF
- - Batch Post - Cash Sales - SL_CS
- - Batch Post...2 DB
- - Batch Post...2 DCF
- - Add Stock Assembly with Override Raw Materials - ST_AS
- - Add Stock Job Order to Stock Assembly with Override Raw Materials - PD_JO & ST_AS
- - Add Agent - Agent
- - Get Agent Description
- - Add Journal Voucher - Add GL JE
- - Edit GL Journal Voucher - Edit GL_JE
- - Edit Sales Cash Sales - SL_CS
- - Delete Cash Sales - Del SL CS - SL_CS
- - Customer Aging - Customer.Aging.RO
- - Get Sales Invoice Listing - Sales.IV.RO
- - Stock Item List
- - Add SKU with Edit SKU - ST_ITEM
- - Del SKU - ST_ITEM
- - Get DCF Database List
- - Month End - FIFO
- - Month End - WA (Weighted Average)
- - Get Options...(Perform Tax / Local Amount Rounding, 5 Cents Rounding (Sales Invoice) & 5 Cents Rounding (Cash Sales)
- - Get Next Invoice No.
- - Is Valid ST_Item
- - Is Valid GL_Acc
- - Outstanding SO - Sales.OutstandingSO.RO
- - Read RTF n Picture Data...
- - Get Customer List - AR_Customer
- - Add Customer with Edit Customer - AR_Customer
- - Del Customer - AR_Customer
- - Add GL Payment Voucher - Add GL_PV
- - Transfer Document - DO to SL_IV
- - Get Transfer Info. 1 - At Invoice Find DO Number & Date
- - Get Transfer Info. 2 - At DO Find Invoice Number & Date
- - GL Ledger
- - Add Stock Transfer - Add ST XF
- - Add Stock Adjustment - Add ST AJ
- - Get Serial Number Balance - Serial No. Bal.
- - Add Customer Deposit - Deposit
- - Transfer Customer Deposit to Payment - Deposit to PM
- - Refund Deposit - Deposit Refund
- - Forfeit Deposit - Deposit Forfeit
- - Enable Support DocNo Format with Month & Year Format
- - Add AR IV
- - Add AR CN
- - Add AR PM Bounce Chq
- - Add GL Ledger RO
- - AR Statement
- - Add Add/Edit AR PM
- - Add LogInOut (For Testing purpose)
History - C Sharp & VB.Net
- 19 Aug 2023...
- - Add Add/Edit AR PM
- - Add LogInOut (For Testing purpose)
- 14 Jun 2022
- - Add AR Statement
- - Fix Error when click 2nd time for Report.
- 27 Apr 2022
- - Add/Edit Location
- - Rename Caption for Add Customer to Add/Edit Cust
- - Rename Caption for Add Agent to Add/Edit Agent
- - Add Reconnect
- - Add/Edit ST_Batch
- - Fix bug on KillApp should Sleep 2 seconds after run the KillApp
- 18 Mar 2021
- - Enable Support DocNo Format with Month & Year Format
- - Add AR IV
- - Add AR CN
- - Add AR PM Bounce Chq
- - Add GL Ledger RO
- 22 May 2020
- - Fix Complete Post Action cause SQLAcc still not exit after logout
- - Add/Edit Customer Contra
- 28 Mar 2020
- - SL DO to SL IV button - Check Transfer Status should excluded Cancelled
- - Add Get Transfer Info. 1 - At Invoice Find DO Number & Date
- - Add Get Transfer Info. 2 - At DO Find Invoice Number & Date
- 04 Mar 2020
- - Add Post with Serial Number for Complete Post
- - Fix Posting Seq Error on Complete Post
- - Add GL JE
- - Add GL_PV
- - Add Additional Note for Outstanding SO button
- 05 Feb 2020
- - Add Customer Deposit
- - Add Customer Deposit to PM
- - Add Customer Deposit Refund
- - Add Customer Deposit Forfeit
- - Add SL DO to SL IV
- - Add 12 Months Aging Parameter for Customer.Aging.RO
- - Add Add ST AJ - Stock Adjustment
- - Add Add ST XF - Stock Transfer
- 22 Oct 2019
- - Add GL Ledger function
- - Add Cust. IV Listing function
- - Add Serial No. Bal function
- - Fixed Error on Auto Logout Error when using ComServer.DBManager.NewDataSet(lSQL)
- 23 Aug 2019
- - Add Del SKU function
- - Add Customer List... function
- - Add Add Customer function
- - Add Del Customer function
- - Add Del SL CS function
- 31 Jul 2019
- - Add Read RTF n Picture Data... function.
- 10 Jul 2019
- - Fixed KillApp function not working in some situation.
- 11 Jun 2019
- - Fixed Auto Logout Prompt Error.
- - Fixed SQLAcc not Fully Exit when Call Auto Logout.
- - Fixed Batch Post 2 DB error for CSharp
- 06 Jun 2019
- - Fixed unable to Update Stock Item for Add SKU.
- - Add Update UOM for Add SKU.
- - Add C Sharp Coding
- 23 May 2019
- - Update Complete Post - Add Description3 (More Description)
- - Fixed Batch Post.. keep login when looping
- - Add Get Outstanding SO - Sales.OutstandingSO.RO
- 05 May 2019
- - Add Condition for Stock Item List only filter if edCode is not empty
- - Add Prompt Message If Login Fail
- - Add SQLAcc Build No Condition for Get Sales Invoice Listing to support version 776 & above
- - Add SKU - ST_ITEM
ASP.Net C Sharp
01. Make sure Enabled the following function in IIS Manager - Sites - YourSiteName - Authentication
- - Anonymous Authentication
- - ASP.Net Impersonation (Make sure set Specific user (Windows Login User & Password))
02 Make sure the Windows user set in ASP.Net Impersonation is Login
- Example ASPDotNet-20210816
Available Function
- - Get Agent Description
- - New & Update Customer/Supplier Info.
- - Edit Cash Sales
- - Edit Purchase Invoice
- - Complete Post
- - GL PV
- - Add Add/Edit Agent
- - Add Add/Edit Terms
- - Add Add/Edit ST Item
- - Delete Cash Sales
- - Add SL SO
History
- 16 Aug 2021
- - Add SL SO
- 19 Feb 2021
- - Delete Cash Sales
- 16 Sep 2020
- - Add Add/Edit ST Item
- - Fix some comment note error
- 23 Jun 2020
- - Add Add/Edit Agent
- - Add Add/Edit Terms
- 22 May 2020
- - Add Edit Purchase Invoice
- - Add Complete Post
- - Add GL PV
- 06 Dec 2019
- - Add Edit Cash Sales
- - Enable Run Time Set User Name, Password, DCF & FDB
Python
- Module Require in Python
- - pypiwin32 (Mandatory) -> pip install pypiwin32
- - Pillow (Optional for Picture) -> pip install Pillow
Common
- Common.py file for example code
ExpandCommon Function |
---|
Agent
ExpandAgent Script |
---|
Get Company Profile
ExpandGet Company Profile |
---|
Complete Post
ExpandSL_CS, AR_PM, SL_CN & AR_CN Script |
---|
Get Picture & Description3(Rich Text)
ExpandGet Picture & Description3(Rich Text) Script |
---|
Get Invoice Next Number
ExpandGet Invoice Next Number Script |
---|
Stock Item
ExpandStock Item Script |
---|
AR_Customer
ExpandAR_Customer Script |
---|
Sales Invoice
ExpandSL_IV |
---|
Purchase Invoice
ExpandPH_PI |
---|
GL Ledger
ExpandGL Ledger Script |
---|
GL Trial Balance
ExpandGL Trial Balance Script |
---|
Terms
ExpandTerms |
---|
Stock Adjustment
ExpandST_AJ |
---|
Sales Order
ExpandSales Order |
---|
Sales.PriceHistory.RO
ExpandSales.PriceHistory.RO Script |
---|
Get Edited Sales Invoice List
ExpandGet Edited Sales Invoice List Script |
---|
SO to DO
ExpandGet Outstanding SO by SO Number transfer to DO Script |
---|
Stock Month End - Weighted Average
ExpandStock Month End - Weighted Average Script |
---|
Stock Month End - FIFO
ExpandStock Month End - FIFO Script |
---|
Login 2 Database
ExpandLogin 2 Database |
---|
Get Stock Qty Balance
ExpandGet Stock Qty Balance |
---|
Maintain Asset Item
ExpandMaintain Asset Item |
---|
Customer Payment
ExpandAR_PM |
---|
Customer Due Listing
ExpandCustomer Due Listing |
---|
PHP
- Tested PHP Version : 7.4.3/8.1.10
- Add this in ..\xampp\php\php.ini
[PHP_COM_DOTNET] extension=php_com_dotnet.dll
- Grid.css file for example code
ExpandGrid.css file |
---|
Get Agent
ExpandGet Agent Script |
---|
Add & Edit Agent
ExpandAdd & Edit Agent Script |
---|
Delete Agent
ExpandDelete Agent Script |
---|
Complete Post
ExpandSL_CS, AR_PM, SL_CN & AR_CN Script |
---|
Get Invoice Next Number
ExpandGet Invoice Next Number Script |
---|
Add & Edit AR_Customer
ExpandAdd & Edit AR_Customer Script |
---|
Get Stock List
ExpandGet Stock List Script |
---|
AR_IV
ExpandAR_IV Script |
---|
Get Outstanding Invoice List
ExpandGet Outstanding Invoice List Script |
---|
Stock Month End - Weighted Average
ExpandStock Month End - Weighted Average Script |
---|
Stock Month End - FIFO
ExpandStock Month End - FIFO Script |
---|
Add & Edit Stock Item
ExpandAdd & Edit Stock Item Script |
---|
Add Stock Issue
ExpandAdd Stock Issue Script |
---|
Add Points
ExpandAdd Points Script |
---|
AR_CN
ExpandAR_CN Script |
---|
SO to DO
ExpandSO to DO Script |
---|
ST_AJ
ExpandST_AJ Script |
---|
Get Stock Serial Number balance
ExpandGet Stock Serial Number Balance List Script |
---|
SL_IV-Add, Edit & Delete
ExpandInsert, Edit & Delete Invoice Script |
---|
GL_PV-Add, Edit & Delete
ExpandInsert, Edit & Delete Invoice Script |
---|
GL_JE-Add, Edit & Delete
ExpandInsert, Edit & Delete Invoice Script |
---|
Get Outstanding SO List
ExpandGet Outstanding SO List Script |
---|
Get Stock Item Picture
ExpandGet Stock Item Picture Script |
---|
Customer.Aging.RO
ExpandCustomer.Aging.RO Script |
---|
Get Description3
ExpandGet Description 3 Script |
---|
AR_PM-Add, Edit & Delete
ExpandAR_PM-Add, Edit & Delete Script |
---|
Customer.Statement.RO
ExpandCustomer.Statement.RO Script |
---|
AP_SP-Add, Edit & Delete
ExpandAP_SP-Add, Edit & Delete Script |
---|
Node JS
- Module Require in Node JS
- - Winax (Mandatory) -> npm install winax
Common
- Common.js file for example code
ExpandCommon Function |
---|
Get Company Profile
ExpandGet Company Profile |
---|
Complete Post
ExpandComplete Post |
---|
Get Picture & Description3(Rich Text)
ExpandGet Picture & Description3(Rich Text) Script |
---|
Get Stock Qty Balance
ExpandGet Stock Qty Balance Script |
---|
SO to DO
ExpandSO to DO Script |
---|
Get Build No
ExpandGet Build No Script |
---|
VB Script
Get Company Profile
ExpandCompany Profile Script |
---|
Complete Post
ExpandSL_CS, AR_PM, SL_CN & AR_CN Script |
---|
AR_IV
ExpandAR_IV Script |
---|
AR_IV-Edit
ExpandAR_IV Edit Script |
---|
AR_PM
ExpandAR_PM Script |
---|
AR_PM-Edit
ExpandAR_PM Edit Script |
---|
Customer.RO
ExpandCustomer.RO Report Object Script |
---|
Customer.Statement.RO
ExpandCustomer.Statement.RO Report Object Script |
---|
GL.CB.RO
ExpandGL.CB.RO Report Object Script |
---|
AR_Customer
ExpandAR_Customer - Script |
---|
AR_Customer-Edit
ExpandAR_Customer - Edit Script |
---|
GL.TrialBalance.RO
ExpandGL Trial Balance Report Object Script |
---|
Customer.Aging.RO
ExpandCustomer Aging Report Object Script |
---|
GL.JE.RO
ExpandGL Journal Voucher Report Object Script |
---|
SL_CS
ExpandSL_CS Script |
---|
Customer.PM.RO
ExpandCustomer.PM.RO Script |
---|
Sales.IV.RO
ExpandSales.IV.RO Script |
---|
Customer.DueDocument.RO
ExpandCustomer.DueDocument.RO Script |
---|
Customer.IV.RO
ExpandCustomer.IV.RO Script |
---|
Sales.OutstandingSO.RO
ExpandSales.OutstandingSO.RO Script |
---|
Common.PaymentMethod.RO
ExpandCommon.PaymentMethod.RO Script |
---|
Common.Agent.RO
ExpandCommon.Agent.RO Script |
---|
Stock.Item.RO
ExpandStock.Item.RO Script |
---|
Stock Item Balance
ExpandGet Stock Item Balance Script |
---|
ST_IS
ExpandST_IS Script |
---|
ST_RC
ExpandST_RC Script |
---|
ST_AJ
ExpandST_AJ Script |
---|
ST_XF
ExpandST_XF Script |
---|
AP_PI-Edit
ExpandAP_PI Edit Script |
---|
SL_DO to SL_IV
ExpandSL_DO to SL_IV Script |
---|
SL_IV-Edit
ExpandSL_IV-Edit Script |
---|
GL_JE
ExpandGL_JE Script |
---|
GL_JE-Edit
ExpandGL_JE-Edit Script |
---|
GL_JE-Delete
ExpandGL_JE-Delete Script |
---|
Get Invoice Next Number
ExpandGet Invoice Next Number Script |
---|
Auto Run Doc. Number
ExpandSales Order Auto Run Doc Number Script |
---|
GL_PV
ExpandCash Book PV Script |
---|
ST_Item with Opening
ExpandST_Item with Opening Script |
---|
GL Stock Value-Insert,Edit & Delete
ExpandGL Stock Value Insert, Edit & Delete Script |
---|
Stock Item Template to SL_IV
ExpandStock Item Template to SL_IV Script |
---|
AR_CN
ExpandAR_CN Script |
---|
JScript/JavaScript
This Script only can run using Internet Explorer (till IE 11)
AR_IV
ExpandAR_IV Script |
---|
SL_CS
ExpandSL_CS Script |
---|
AR_PM
ExpandAR_PM Script |
---|
Customer.IV.RO
ExpandCustomer.IV.RO Report Object Script |
---|
Customer.RO
ExpandCustomer.RO Report Object Script |
---|
Get Next IV Number
ExpandGet Next IV Number Script |
---|
Customer & Supplier Contra
ExpandCustomer & Supplier Contra Script |
---|
Add Stock Item
ExpandAdd ST_Item Script |
---|
Get Company Profile
ExpandGet Company Profile Script |
---|
Delphi
The below example is assuming after you had check the login status.
GL_JE
ExpandGL_JE Script |
---|
GL_PV
ExpandGL_PV Script |
---|
AR_Customer
ExpandAR_Customer Script |
---|
AR_PM
ExpandAR_PM Script |
---|
AR_PM-Edit
ExpandAR_PM Script |
---|
ST_Item
ExpandST_Item Script |
---|
ST_Item-Edit
ExpandST_Item Script |
---|
SL_IV
ExpandSL_IV Script |
---|
Customer.IV.RO
ExpandCustomer.IV.RO Report Object Script |
---|
Stock.Item.RO
ExpandStock.Item.RO Report Object Script |
---|
Customer.Statement.RO
ExpandCustomer.Statement.RO Report Object Script |
---|
GL Account List For Sales & Purchase 1
ExpandGL_Acc Object Script |
---|
GL Account List For Sales & Purchase 2
ExpandGL_Acc Object Script |
---|
Customer.Aging.RO
ExpandCustomer Aging Report Object Script |
---|
GL.CB.RO
ExpandGL Cash Book Report Object Script |
---|
AR_DP
ExpandCustomer Deposit Script |
---|
Customer Deposit to Customer Payment
ExpandCustomer Deposit to Customer Payment Script |
---|
AR_DPDTL_REFUND
ExpandCustomer Deposit Refund Script |
---|
AR_DPDTL_FORFEIT
ExpandCustomer Deposit Forfeit Script |
---|
FAQ
Problem with opening CHM Help files?
- Right click the chm file & select Properties
- At General tab Click Unblock button.
- Click Apply | Ok.
Still can't open CHM file?
- Login SQL Accounting
- Click Tools | Options | General
- Click Register & follow wizard
- Exit SQL Accounting
- Login SQL Accounting
- Run CHM File
Why when I compile my program with stated unknown method or unknown identifier?
- If you compiler had error may try add the esfw10.dll file under the SQL Accounting\bin folder
How to make sure I login to correct database?
- Can use the Common.Agent.RO Report Objects to get the Profile info.
- Then use the cdsProfile Dataset
- - CompanyName Field
- - Remark Field
- Refer to Get Company Profile
Why after post to SQL Accounting the Description3 (More Description)/Notes field it show like this "M y D e s c r i p t i o n" instead of "My Description"?
- Make sure you use .AsString in your code (see example below)
ExpandDescription3 Field Script/Code |
---|
Can I Ignore Doc No Field & let SQL Accounting to Auto Assign?
- Yes but we not recommended as you will lost track when user wanted to know which Doc No in SQL Acc is posted.
- To Set Auto Assign set it as below
ExpandDocNo Field Script/Code |
---|
Can I Auto Login & Logout SQL Accounting when doing & after Posting?
- Yes can below is example script
- Only work if that PC is no once is using SQL Accounting
ExpandC Sharp |
---|
ExpandDelphi |
---|
ExpandVB Script |
---|
When Post System Prompt Operation aborted Error
- This happen when the Login User ID don't had the to Override Sales Min/Max Price &
- Use Last Price XXX (In Tools | Options | Unit Price) &
- 1 of record is below Min Price.
Solution
- Can try change the Posting Seq like below (UOM then Qty)
ExpandSequence Field Script/Code |
---|
How do my system know there is a changes or update in SQLAccounting?
Data Entry
- In all Document it had a field call UPDATECOUNT.
- Default is null & each changes will +1.
- So if you see 2 meaning it had being update 2 times
- Only available in
- Version 1001.858 & above
- In Each table it had a field call LASTMODIFIED.
- The value is Epoch Time or Unix Time
Master Data
- Only available in
- Version 842.765 & above
- AP_SUPPLIER (Maintain Supplier)
- AR_CUSTOMER (Maintain Customer)
- ST_GROUP (Maintain Stock Group)
- ST_ITEM (Maintain Stock Item)
- ST_ITEM_TPL (Maintain Item Template)
- ST_PRICETAG (Maintain Price Tag)
- TAX (Maintain Tax)
- In Each table it had a field call LASTMODIFIED.
- The value is Epoch Time or Unix Time
You can use below function to get the field
Expandvbs |
---|
ExpandDelphi |
---|
Can I control my Stock when I link with other Application?
- Yes. We suggest to use Stock Transfer to (eg Location call MOBILE) transfer stock as Reserve to avoid stock over deduct in SQL Accounting
- When other Application post to SQL Accounting they just need set the Location to the Reserve Location (eg MOBILE)
- Below is example posting with location
ExpandPost Location Field Script/Code |
---|
Where to Check the SQL Accounting DCF Path, FileName & FDB FileName?
- In Login Screen Click 3 Dot Button then you can see the information
- For SQL Accounting Version 5.2023.957.831 and below
- For SQL Accounting Version 5.2023.958.832 and above
How to check & What is the value for Advance Credit Control in Maintain Customer
- You can use ComServer.DBManager.NewDataSet(lSQL) function to Query the information
- lSQL = SELECT * FROM AR_CUSTOMERCRCTRL
- You may refer to ControlType column
ControlType | Exceed Credit Limit | Exceed OverDue Limit |
---|---|---|
0 | UnBlock | UnBlock |
1 | UnBlock | Block |
2 | UnBlock | Override |
3 | Block | UnBlock |
4 | Block | Block |
5 | Block | Override |
6 | Override | UnBlock |
7 | Override | Block |
8 | Override | Override |
9 | Suspended |
How to get Error/Exception Message Return from SQL Accounting?
ExpandC Sharp |
---|
ExpandPython |
---|
ExpandVB.Net |
---|
ExpandDelphi |
---|
Why Post to SQL Accounting sometime prompt Catastrophic failure Error?
Possible Problem 1
- Make sure you code don't cross over Call action during posting
- Eg Posing SL_SO Header partly then suddenly call other object example Check Customer Code Validity
- Summary action (Correct Steps)
- 01. Do Verify 1st (eg Check Customer Code Validity & etc)
- 02. Post Transactions
Possible Problem 2
- Keep Login & Logout till windows not enough time to response
- Summary action (Correct Steps)
- 01. Pull Data from Your application/web
- 02. Login SQL Accounting 1 time (Auto Login)
- 03. Do all your requirement actions (eg. verify, query & posting)
eg Posting Cash Sales & Customer Payment begin looping BizObject = ComServer.BizObjects.Find("SL_CS") .... BizObject.Save BizObject.Close FreeBiz(BizObject) BizObject = ComServer.BizObjects.Find("AR_PM") .... BizObject.Save BizObject.Close FreeBiz(BizObject) Next Record End looping
- 04. Logout SQL Accounting 1 time (Auto Logout)
- 05. Push Data to Your application/web (if any)
Possible Problem 3
- Company Profile Logo format had problem.
- Solution
- 01. Click File | Company Profile
- 02. Export out the Logo by right Click the Company Logo
- 03. Open the Exported Logo with Photo Editor
- 04. Just Click File | Save again as jpg.
- 05. Load Back the Save Logo by right Click the Company Logo
- 06. Click Save
How to Get the GL Account List for Sales & Purchase?
- You can use the function ComServer.DBManager.NewDataSet(lSQL) with the following SQL
SELECT Code, Description, Description2 FROM GL_ACC A WHERE (A.Parent<>-1 AND NOT (EXISTS (SELECT Parent FROM GL_ACC B WHERE A.DocKey=B.Parent)) AND (A.SpecialAccType IS NULL OR A.SpecialAccType IN ('', 'AD'))) ORDER BY Code
Can I setup a testing/Staging environment for SQL Accounting?
- Yes can, you can self setup or we can help you to setup.
- There are 4 types of Testing/Staging
- 01. Install the Testing SQL Accounting version & Testing Database in the developer PC
- 02. Install the Live SQL Accounting version & User Backup Database in the developer PC
- - Require User Permission for Backup
- 03. Setup at User PC/Server & using User Backup Database
- - Require User Permission for Backup & PC/Server setup
- 04. Setup at User PC/Server & using Testing Database
- - Require User Permission for PC/Server setup
How to Loop & post SQL Accounting?
- Below summary how to loop
- 01. Call ComServer
- 02. Check Login
- 03. Call BizObject (eg SL_CS)
- 04. Begin Loop you data
- 05. Call Close BizObject (eg BizObject.Close)
- 06. Continue Call other BizObject (eg AR_PM)
- 07. Repeat Steps 4 & 5
- 08. Call Logout
- 09. Free ComServer
How to post Description3 with Unicode?
- You have to convert it to rtf format before set to Description3 field
ExpandC Sharp |
---|
ExpandVB.Net |
---|
ExpandDelphi |
---|
- or Can use our build in Utility function (only available from 5.2022.941.822 & above)
.... lDtl.FindField("Description3").AsString = ComServer.Utility.PlainTextToRichText("ANTENNA ??? ??") ...
ExpandPHP |
---|
Why the TAXEXEMPTIONREASON field become empty even I have pass the value in?
- Make sure the TAXRATE field is set to empty
.... lDtl.FindField('Tax').AsString := 'SVE'; lDtl.FindField('TaxRate').AsString := ''; lDtl.FindField('TaxExemptionReason').AsString := 'my tax exemption reason'; ...
See also
- Need assistance? May email to support@sql.com.my