Unity'de hareket görmeyen Stok,Cari ve Muhasebe kartlarını iptal etmek
kullanım dışı yapmak için siteden topladığım kodları tek başlık altında toplamak istedim. Kartları silmek isteyen arkadaşlara tavsiyem önce aşağıdaki kodlarlar kartları kullanım dışı yapmak ve sonra muhasebe programından kartları toplu çıkartmak olacaktır.
Önemli not bu işlemleri gerçekleştirirken lütfen gerekli özeni gösteriniz.
Sizlere tavsiyem kartları kullanım dışı yapmak yeterli olmalı. a ve b seçenekleri bu işlem için yeterli. C seçeneği ise kartları silmek için yapılan bir işlem. C seçeneğini gerçekleştirmemenizi tavsiye ediyorum.
1)Hareket Görmemiş Cari Kartları Kullanımdışı Yapmak için
a) Öncelikle hareket görmeyen cari kartların bir dökümünü alalım.
SELECT * FROM LG_108_CLCARD
WHERE LOGICALREF NOT IN (SELECT CLIENTREF FROM LG_108_01_CLFLINE) order by CODE ASC
alınan döküm ile muhasebe programında sonucun doğru olup olmadığını test edelim.
b) Eğer döküm ve muhasebe programındaki durum aynı ise aşağıdaki kodlarla kartları kullanımdışı yapalım
UPDATE LG_108_CLCARD
SET ACTIVE=1 --KULLANIMDIŞI YAPMAK ICIN
WHERE LOGICALREF NOT IN (SELECT CLIENTREF FROM LG_108_01_CLFLINE)
c) b seçeneğini de gerçekleştirdikten sonra muhasebe programından kullanımdışı kartları görelim. Ctrl - A tuş kombinasyonu ile hareket görmeyen tüm kartları seçelim. Ve sağ tıkladıktan sonra Toplu Kart Çıkar seçeneğini seçelim. Eğer hata yapacağınızı düşünüyorsanız bu seçeneği gerçekleştirmeyiniz.
Hareketsiz cari kartlar silinmiş olması gerekli.
Önemli not bu işlemleri gerçekleştirirken lütfen gerekli özeni gösteriniz.
2)Hareket Görmemiş Muhasebe Hesap Kodlarını Kullanımdışı Yapmak için
a) Öncelikle hareket görmeyen kartların bir dökümünü alalım.
SELECT * FROM LG_108_EMUHACC
WHERE LOGICALREF NOT IN (SELECT ACCOUNTREF FROM LG_108_01_EMFLINE) order by CODE ASC
alınan döküm ile muhasebe programında sonucun doğru olup olmadığını test edelim.
b) Eğer döküm ve muhasebe programındaki durum aynı ise aşağıdaki kodlarla kartları kullanımdışı yapalım. Ancak burada dikkat edilmesi gereken ana hesapları kullanımdışı yapmamalıyız.
UPDATE LG_108_EMUHACC
SET ACTIVE=1 --KULLANIMDIŞI YAPMAK ICIN
WHERE LOGICALREF NOT IN (SELECT ACCOUNTREF FROM LG_108_01_EMFLINE)
c) b seçeneğini de gerçekleştirdikten sonra muhasebe programından kullanımdışı kartları görelim. Ctrl - A tuş kombinasyonu ile hareket görmeyen tüm kartları seçelim. Ve sağ tıkladıktan sonra Toplu Kart Çıkar seçeneğini seçelim. Eğer hata yapacağınızı düşünüyorsanız bu seçeneği gerçekleştirmeyiniz.
Hareketsiz muhasebe hesap kodları silinmiş olması gerekli.
Önemli not bu işlemleri gerçekleştirirken lütfen gerekli özeni gösteriniz.
3) Hareket Görmemiş Stok Kartlarını Kullanımdışı Yapmak için
a) Öncelikle hareket görmeyen kartların bir dökümünü alalım.
SELECT * FROM LG_108_ITEMS
WHERE LOGICALREF NOT IN (SELECT STOCKREF FROM LG_108_01_STLINE)
alınan döküm ile muhasebe programında sonucun doğru olup olmadığını test edelim.
b) Eğer döküm ve muhasebe programındaki durum aynı ise aşağıdaki kodlarla kartları kullanımdışı yapalım.
UPDATE LG_108_ITEMS
SET ACTIVE=1 --KULLANIMDIŞI YAPMAK ICIN
WHERE LOGICALREF NOT IN (SELECT STOCKREF FROM LG_108_01_STLINE)
c) b seçeneğini de gerçekleştirdikten sonra muhasebe programından kullanımdışı kartları görelim. Ctrl - A tuş kombinasyonu ile hareket görmeyen tüm kartları seçelim. Ve sağ tıkladıktan sonra Toplu Kart Çıkar seçeneğini seçelim. Eğer hata yapacağınızı düşünüyorsanız bu seçeneği gerçekleştirmeyiniz.
Hareketsiz stok kartları silinmiş olması gerekli.
Unity için Navigatör kurulumu
1- *.lrf dosyaları (6 tane) navi.sys (1 tane) C:\Program Files\Microsoft Office\OFFICE11 dizinine kopyalanacak

2- LGNAVI.DLL dosyası C:\Program Files\Microsoft Office\OFFICE11\XLSTART dizinine kopyalanacak.
3- Kopyalama tamamlandığında “incorrect registry settings “ hatası veriyorsa versiyon hatası olabilir. Yaptığımız örnekte LGNAVI.dll 1.71.0.0 , LENGINE1 1.71.0.0 olduğunda sorun giderildi.
How can i install/remove a .net windows service using InstallUtil?
With Community Server 2007.1, it is now possible to install multiple instances of a Windows
Service without the need for custom MSI builds. This is done by manually
installing the Windows Service with the command line utility and specifying the
name of the service to be used.
Previously, the limitations on multiple installs were due to the product name installed with
the MSI, the hard coded service name in the service installer, and also some
registry keys that were needed by the installer. Doing multiple
installations required these to be manually changed in code and re-compiled in
a custom build.
With the new version, the hard coded limitations have been removed, allowing for one
instance of the add-ons to be installed with the MSI, and then additional
instances of the program to be activated through the command line.
How to Install
In order to install additional instances of the service, you will need to use the
InstallUtil.exe program that is included with the .NET Framework SDK (available
here). The InstallUtil.exe program is located in the .NET Framework's
installation directory, which will typically be in the
following directory:
C:\Windows\Microsoft.NET\Framework\v2.0.50727
First, you will need to create the first instance by installing using the MSI package. This extracts all of the files and allows you to quickly install your first instance. To create a second instance, you will need to make a copy of the installation directory, since the second instance will need its own set of files, configuration, and will run separately from the first instance.
The add-ons are normally installed to a folder in C:\Program Files\Telligent by default.
Once you have created a copy of the add-on's installation files, you need to register it with
Windows as a service. To activate it, you will install the service using InstallUtil.exe and add a /name parameter to specify what the service will be named. The names have to be unique, so if you already have " PostGreSQL Backup Service ", you might need to name it "PostGreSQL Backup Service". You then specify the filename of the Windows Service, which is usually like “postgrebackup.exe ". So for example, it would be:
installutil c:\postgrebackup\postgrebackup.exe /LogToConsole=true /LogFile=c:\backuplog.log
You would need to run this from a command prompt within the add-ons directory. The name
must be in quotes if it contains spaces, and it must come before the filename. After installation, if you bring up the Windows Services console (Start, Run, services.msc), you should find the new service installed and listed alphabetically.
You may need to add the path to the InstallUtil.exe program onto the command if the .NET
Framework folder isn't in your PATH setting.
How to Uninstall
Uninstalling the service is very similiar to installing. You will still use the InstallUtil.exe program and will need to specify the name of the service to uninstall, though this time you will need to add a /u switch to specify that you intend to uninstall it. For instance:
InstallUtil /u /name=" PostGreSQL Backup Service" postgrebackup.exe
The name must be specified since if you have multiple instances of the same executable
installed, it will need to know which one. If no name is specified, it will remove the one with the default name as opposed to a custom named one.
Again, the uninstall and name parameters must come before the filename so that it know they are for that file.
You may need to add the path to the InstallUtil.exe program onto the command if the .NET
Framework folder isn't in your PATH setting.
BlackListIP control on Serenity platform (.NET Core)
In the Serenity platform, if you want to block IPs that belong to people you do not want to come from outside in the .net core web project,...
-
Logo Tiger programında kullanılan veritabanı tabloları aşağıdadır. 1. XXX olarak üç digit ile gösterilen bölüm firma numarasını belirtir....
-
Devexpress AspxGridView kolonlarında filtre türünü değiştirmek için grid üzerindeki ilgili kolonda Settings--> AutoFilterCondition = defa...
-
TABLO ADI AÇIKLAMA L_PERSONEL Çalışma Alanı Tanımları L_SYSLOG Kullanıcı Kaydı İzleme L_L...