Announcements
Is it possible to get any info about 0125000.exe?
Thanks!
*This post is locked for comments
Hi Andrew
0125000.Exe represents the Budget Maintenance (01.250.00) Screen.
This screen is used to set up operating budgets.
Budgets contain information meant to be compared to account balances but do not affect account balances.
Entering values for budgets allows you to have the values printed on financial reports.
You can maintain budgets for future and past years in addition to the current year.
You can enter and maintain as many budgets as you desire by using a different Ledger ID for each budget.
Thanks
Hi Santhosh,
Thank you!
From my understanding 0125000.Exe can be used fro importing new budgets from Excel. Do you know you know if importing process is documented?
Thanks.
Hi Andrew,
Yes You can use the Budget Maintenance screen to insert the budget for the relevant Acct and Sub Acct combination for the fiscal year by manually or load the Budget from Excel file using Transaction Import screen under Administration module.
Hi SANTHOSH.
Is it possible to call 0125000.Exe from an external application, VBA for example and automate importing process?
You can call the application 0125000.Exe through Solomon Object Model / Tools for VB and load the budget data but from external application its very difficult t.
That's me again.
Do you know why MyToolbar.StartApplication("0125000.exe") may cause type mismatch error.?
Code is below:
Dim BudgetMaint As SIVApplication
Dim MyToolbar As New SIVToolbar
Set MyToolbar = New SIVToolbar
MyServerName = Worksheets("Login").Range("B1").Value
MySysDBName = Worksheets("Login").Range("B2").Value
MyCoID = Worksheets("Login").Range("B3").Value
MyUserID = Worksheets("Login").Range("B4").Value
MyPwd = Worksheets("Login").Range("B5").Value
MyToolbar.Login MyServerName, MySysDBName, MyCoID, MyUserID, MyPwd
Set BudgetMaint = MyToolbar.StartApplication("0125000.exe")
If Worksheets("Login").Range("B6").Value = True Then
BudgetMaint.Visible = True
End If
You can try this below code in custom screen which developed in VB.Net.
MyServerName = Convert.Tostring(Worksheets("Login").Range("B1").Value)
MySysDBName = Convert.Tostring(Worksheets("Login").Range("B2").Value)
MyCoID = Convert.Tostring(Worksheets("Login").Range("B3").Value)
MyUserID = Convert.Tostring(Worksheets("Login").Range("B4").Value)
MyPwd = Convert.Tostring(Worksheets("Login").Range("B5").Value)
MyToolbar.Login Trim(MyServerName), Trim(MySysDBName), Trim(MyCoID), Trim(MyUserID), Trim(MyPwd)
Set BudgetMaint = MyToolbar.StartApplication(My.Application.Info.DirectoryPath & “\GL\” &
"0125000.exe")
MyToolbar.GetCustomizationLevel(3,””,False)
MyToolbar.visible = True
This will help you to overcome the Type mismatch issue.
Thanks,
Perumalsamy R
**This posting is provided "AS IS" with no warranties and confers no rights.
Hi
You need to include the Convert.ToString option to avoid this casting issue. You can refer the above Post by PerumalSamy. It is right.
Hope this helps
Thanks & Regards
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.