This blog is dedicated to all my technical learnings and findings. As they say use all the brains you have and borrow all the brains you can, so this is my share of lending my learnings to all you guys out there. I would like to acknowledge here that some parts of these posts would be reproduced as a part of my web-browsing mainly because having it all in one place is far more convenient.
Sunday, March 01, 2009
Minimize Outlook to Tray
HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Preferences
add a new DWORD value
MinToTray = 1
Sunday, February 08, 2009
Not In Vs Not Exists
| EMP_NBR | EMP_NAME | MGR_NBR |
| 1 | DON | 5 |
| 2 | HARI | 5 |
| 3 | RAMESH | 5 |
| 4 | JOE | 5 |
| 5 | DENNIS | NULL |
| 6 | NIMISH | 5 |
| 7 | JESSIE | 5 |
| 8 | KEN | 5 |
| 9 | AMBER | 5 |
| 10 | JIM | 5 |
Now, the aim is to find all those employees who are not managers. Let’s see how we can achieve that by using the “NOT IN” vs the “NOT EXISTS” clause.
SQL> select count(*) from emp_master where emp_nbr not in ( select mgr_nbr from emp_master );
COUNT(*)
———-
0
SQL> select count(*) from emp_master T1 where not exists ( select 1 from emp_master T2 where t2.mgr_nbr = t1.emp_nbr );
COUNT(*)
———-
9
Now there are 9 people who are not managers. So, you can clearly see the difference that NULL values make and since NULL != NULL in SQL, the NOT IN clause does not return any records back.
Saturday, January 31, 2009
There is no value entry within the Filter
1. Average Cost Calc. Type = Item
2. Average Cost Period = Month
The error was something like:
There is no Value entry within the Filter
Filters : Item No: 1100053749, Valution Date: 01/01/09..31/12/08
On debugging we found the error was being caused by an FINDSET; statement which was issues in the following Codeunit:
Codeunit : 5895, Inventory Adjustment
function : AvgValueEntriesToAdjustExist(OutbndValueEntry;ExcludedValueEntry,AvgCostAdjmtEntryPoint)
Got around the issue after a detailed profiling of the code and found that when the valuation date changes and a new filter is being evaluation in the code it somehow caused caused a wrong filter on the Value Entry Table the code snipped was as shown below
IF "Valuation Date" > CalendarPeriod."Period End" THEN BEGIN
CalendarPeriod."Period Start" := "Valuation Date";
AvgCostAdjmtEntryPoint.GetValuationPeriod(CalendarPeriod);
END;
How i managed to get around the issue was to add one line here as shown below:
IF "Valuation Date" > CalendarPeriod."Period End" THEN BEGIN
CalendarPeriod."Period Start" := "Valuation Date";
AvgCostAdjmtEntryPoint."Valuation Date" := "Valuation Date";
AvgCostAdjmtEntryPoint.GetValuationPeriod(CalendarPeriod);
END;
I finally concluded that the problem was encountered when a value entry record was found for a new financial year (2009 in this case) and there were no records for the previous year end (December 2008).
If we look at the code GetValuationPeriod(CalendarPeriod) in Table 5804 "Avg. Cost Adjmt. Entry Point" at the end of the function the following lines were setting the values to be used to set the filter :
//*****************************************************************************
IF FiscalYearAccPeriod."Starting Date" IN [CalendarPeriod."Period Start"..CalendarPeriod."Period End"] THEN
IF "Valuation Date" < FiscalYearAccPeriod."Starting Date" THEN
CalendarPeriod."Period End" := CALCDATE('<-1D>',FiscalYearAccPeriod."Starting Date")
ELSE
CalendarPeriod."Period Start" := FiscalYearAccPeriod."Starting Date";
//*****************************************************************************
All we did was to set the valuation date so that it does not evaluate to less then the Financial Period."Start Date"
Friday, January 30, 2009
Navision Filters
? which can be used while building a filter to substitute one unknown character pretty much like the Wildcard Characters used in DOS days
@ which can be used to ignore the case of the text being searched for
thus @co* would search for anything beginning with Co , cO, CO or co followed by any character as indicated by an asterix.
There has been some other types of filters which are referred to in Navision code with commands like FIND('=><') OR FIND('=<>')
1. '=><' when the above three expressions are combined it would stand for. If equal '=' rec is not found, search for a record which is smaller '<' and if smaller rec is not found search for a rec which is bigger '>' basically means find anything which was used in olden days to check if the rec filter was empty or not.
2. '=<>' this would translate to find something "equal to" or "not equal to" which means "find anything" similar to the command above
Today we also have ISEMPTY commmand to determine if a recordset is empty.
Monday, January 19, 2009
Procedure to Update Statistics for All indexes of a Table
Runs UPDATE STATISTICS against all user-defined and internal tables in the current database.
Find the user defined procedures to run it for a table.
/*
select 'usp_update_statistics [' + name + ']' + char(13) + char(10)
+ 'go' + char(13) + char(10)
from sysobjects where type = 'U'
and not ascii( right ( [name], 1 ) ) between 48 and 57
*/
Alter procedure usp_update_statistics
@Table_Name varchar(255)
as
declare @Index_Name varchar(255)
declare @SQL nvarchar(500)
declare index_cursor cursor for ---Getting index name
select name from sysindexes
where id = object_id(@Table_Name)
and indid > 0
and indid < 255
and (status & 64)=0
order by indid
open index_cursor
fetch next from index_cursor
into @Index_Name
while @@fetch_status=0
begin
set @SQL = ''
set @SQL = @SQL + 'update statistics [' + @Table_Name + '] ( [' + @Index_Name + '] )'
set @SQL = @SQL + ' WITH FULLSCAN, NORECOMPUTE'
exec sp_executesql @SQL
print @SQL
print ''
fetch next from index_cursor
into @Index_name
end
close index_cursor
deallocate index_cursor
print 'Complete.'
Monday, January 05, 2009
sp_cursorfetch
Some RND and found that the sp_cursorfetch is implemented by the database library to manage the cursors at the server side. Before a cursor fetch can be issue a cursor open statement has to be declared which would contain the base statement for the cursor. Once i found the statement being used for the cursor i did a execution plan display and found that it was not using the correct index.
I then updated the statistics for the index using the Update Statistics command we all know that statistics decide the selectivity of an index once this was done the cursor started using this index and the issue was resolved.
Wednesday, December 03, 2008
Format Strings
Below is one example what i wanted to do was to generate a file name in the format DDMMYY-HHMMSS.txt also i wanted DD (Date) to be two characters and MM (Month) to be padded with 1 zero if it was 1 character in length. Amazingly the entire thing could be achieved just by one amazing function FORMAT
FORMAT(CURRENTDATETIME,0,'<FillerCharacter,0><Day,2><Month,2><Year><Hours24,2><Minutes,2><Seconds,2>')
All the different parameters that can be used with FORMAT function are well documented in the online help.
Tuesday, November 25, 2008
Browse For Folder in Navision
IF DefaultFolderName = '' THEN
DefaultFolderName := 'C:\Folder'
ELSE
DefaultFolderName := DefaultFolderName + '\Folder';
FolderName := CmmDlg.OpenFile('Select Folder'
, DefaultFolderName
, 4
, 'All File (*.*)|*.*'
, 0 );
//Truncate the file name from the path
Ctr :=STRLEN(FolderName);
WHILE Ctr > 0 DO BEGIN
IF COPYSTR(FolderName, Ctr, 1) = '\' THEN BEGIN
FolderName := COPYSTR(FolderName, 1, Ctr -1 );
EXIT;
END;
Ctr -= 1;
END
The only thing we are doing here is that we are providing a default filename in the browse window thus the open button is enabled without waiting for the user to select a file name.
Wednesday, November 12, 2008
Arabic Data
1. Install Supplemental Language Support for this go to Control Panel -> Regional and Language options -> Languages Tab select the Install files for complex script and right to left languages.
2. In the input languages click on the details button and add arabic keyboard support.
3. Change the Language for Unicode Programs this can be changed from Control Panel -> Regional and Language options -> Advanced Options Tab.
4. Once the language has been changed the database collation should be change to support the new code page. For this use the alter database option -> Collation Tab and select the collation for the arabic language.
Now you are all set to save english and arabic in the Navision database.
Sunday, November 09, 2008
OnCreateHyperLink and OnHyperLink
When the send to desktop option is used the first thing the option does is to call the OnCreateHyperlink trigger with the URL as the parameter. The URL parameter can be modified in the trigger giving one a control over what needs to be placed in the URL string. The OnHyperLink trigger is called when the form is accessed using this link and the URL is passed in the trigger.
Wednesday, November 05, 2008
PrintOnlyIfDetail Property in Navision Reports
Monday, October 20, 2008
Adjust Exchange Rates Dimension Error
In cases where the G/L has been tightly bound by dimension rules it can sometimes fails in this case it is necessary to understand the entries that this batch job passes and accordingly have the rules in place.
The Batch job as mentioned in the help creates one entry per currency per posting group of the banks defined. Because it consolidates the entries it cannot pick the dimensions from the source transactions. Thus it picks the dimensions which are defined as the default dimensions on the bank card. Thus we need to make sure that the dimension rules are met by these default dimensions. The entries are passed to the control accounts defined in the posting groups for the banks and the exchange gain or loss accounts.
In case of adjusting the Customer and Vendor Accounts it passes entries to the control accounts and a balancing entry is passed to the Exchange gain or loss accounts as configured in the the currency setup.
Saturday, October 04, 2008
Columns in a Primary Key Index
select object_name(SI.id) tableName, SI.name indexName, SC.name
from sysindexes SI
inner join sysindexkeys SIK
on SIK.id = SI.id
and SIK.indid = SI.indid
inner join syscolumns SC
on SC.colid = SIK.colid
and SC.id = SI.id
where 1=1
and object_name(SI.id) = 'SalesHeader'
and SI.status in ( 2066 , 2048 )
sysindexes (T-SQL)
| Column name | Data type | Description |
| id | int | ID of table (for indid = 0 or 255). Otherwise, ID of table to which the index belongs. |
| status | int | Internal system-status information: |
| 1 = Cancel command if attempt to insert | ||
| duplicate key. | ||
| 2 = Unique index. | ||
| 4 = Cancel command if attempt to insert | ||
| duplicate row. | ||
| 16 = Clustered index. | ||
| 64 = Index allows duplicate rows. | ||
| 2048 = Index used to enforce PRIMARY KEY | ||
| constraint. | ||
| 4096 = Index used to enforce UNIQUE constraint. | ||
| first | binary(6) | Pointer to the first or root page. |
| indid | smallint | ID of index: |
| 1 = Clustered index. | ||
| >1 = Nonclustered. | ||
| 255 = Entry for tables that have text or image | ||
| data. | ||
| root | binary(6) | For indid >= 1 and <>root is the pointer to the root page. For indid = 0 or indid = 255, root is the pointer to the last page. |
| minlen | smallint | Minimum size of a row. |
| keycnt | smallint | Number of keys. |
| groupid | smallint | Filegroup ID on which the object was created. |
| dpages | int | For indid = 0 or indid = 1, dpages is the count of data pages used. For indid=255, it is set to 0. Otherwise, it is the count of index pages used. |
| reserved | int | For indid = 0 or indid = 1, reserved is the count of pages allocated for all indexes and table data. For indid = 255, reserved is a count of the pages allocated for text or image data. Otherwise, it is the count of pages allocated for the index. |
| used | int | For indid = 0 or indid = 1, used is the count of the total pages used for all index and table data. For indid = 255. used is a count of the pages used for text or image data. Otherwise, it is the count of pages used for the index. |
| rowcnt | binary(8) | Data-level rowcount based on indid = 0 and indid = 1, and the value is repeated for indid >1. For indid = 255, rowcnt is set to 0. |
| rowmodctr | int | Counts the total number of inserted, deleted, or updated rows since the last time statistics were updated for the table. |
| soid | tinyint | Sort order ID that the index was created with. 0, if there is no character data in the keys. |
| csid | tinyint | Character set ID that the index was created with. 0, if there is no character data in the keys. |
| xmaxlen | smallint | Maximum size of a row. |
| maxirow | smallint | Maximum size of a nonleaf index row. |
| OrigFillFactor | tinyint | Original fillfactor value used when the index was created. This value is not maintained; however, it can be helpful if you need to re-create an index and do not remember what fillfactor was used. |
| reserved1 | tinyint | Reserved. |
| reserved2 | int | Reserved. |
| FirstIAM | binary(6) | Reserved. |
| impid | smallint | Reserved. Index implementation flag. |
| lockflags | smallint | Used to constrain the considered lock granularities for an index. For example, a lookup table that is essentially read-only could be set up to do only table level locking to minimize locking cost. |
| pgmodctr | int | Used to track the number of pages that have changed in an index. |
| keys | varbinary(816) | List of the column IDs of the columns that make up the index key. |
| name | sysname | Name of table (for indid = 0 or 255). Otherwise, name of index. |
| statblob | image | Statistics BLOB. |
| maxlen | int | Reserved. |
| rows | int | Data-level rowcount based on indid = 0 and indid = 1, and the value is repeated for indid >1. For indid = 255, rows is set to 0. Provided for backward compatibility. |
syscolumns (T-SQL)
| Column name | Data type | Description |
| name | sysname | Name of the column or procedure parameter. |
| id | int | Object ID of the table to which this column belongs, or the ID of the stored procedure with which this parameter is associated. |
| xtype | tinyint | Physical storage type from systypes. |
| typestat | tinyint | For internal use only. |
| xusertype | smallint | ID of extended user-defined data type. |
| length | smallint | Maximum physical storage length from systypes. |
| xprec | tinyint | For internal use only. |
| xscale | tinyint | For internal use only. |
| colid | smallint | Column or parameter ID. |
| xoffset | smallint | For internal use only. |
| bitpos | tinyint | For internal use only. |
| reserved | tinyint | For internal use only. |
| colstat | smallint | For internal use only. |
| cdefault | int | ID of the default for this column. |
| domain | int | ID of the rule or CHECK constraint for this column. |
| number | smallint | Subprocedure number when the procedure is grouped (0 for nonprocedure entries). |
| colorder | smallint | For internal use only. |
| autoval | varbinary(255) | For internal use only. |
| offset | smallint | Offset into the row in which this column appears; if negative, variable-length row. |
| status | tinyint | Bitmap used to describe a property of the column or the parameter: |
| 0x08 = Column allows null values. | ||
| 0x10 = ANSI padding was in effect when varchar or varbinary columns were added. Trailing blanks are preserved for varchar and trailing zeros are preserved for varbinary columns. | ||
| 0x40 = Parameter is an OUTPUT parameter. | ||
| 0x80 = Column is an identity column. | ||
| type | tinyint | Physical storage type from systypes. |
| usertype | smallint | ID of user-defined data type from systypes. |
| printfmt | varchar(255) | For internal use only. |
| prec | smallint | Level of precision for this column. |
| scale | int | Scale for this column. |
| iscomputed | int | Flag indicating whether the column is computed: |
| 0 = Noncomputed | ||
| 1 = Computed | ||
| isoutparam | int | Is whether the procedure parameter is an output parameter: |
| 1 = True | ||
| 0 = False | ||
| isnullable | int | Is whether the column allows null values: |
| 1 = True | ||
| 0 = False |
sysindexkeys (T-SQL)
| Column name | Data type | Description |
| id | int | ID of the table |
| indid | smallint | ID of the index |
| colid | smallint | ID of the column |
| keyno | smallint | Position of the column in the index |
Friday, October 03, 2008
Reading Varbinary Data
master.dbo.fn_varbintohexstr( @@DBTS)
Windows Scheduled Task
Took quite some time to figure this out this is a handy information.
Saturday, September 06, 2008
NewEnum() As IUnknown
The problem is that the NewEnum() as IUnknown is a special function and should be marked with the ProcedureID of -4 for it to function the properties for each procedure can be invoked and changed using the Tools -> Procedure Attributes.. option.
Sunday, August 31, 2008
Using PostMessage API
Dim hWindow As Long, hNotepad As Long
hNotepad = FindWindow("notepad", vbNullString)
hWindow = FindWindowEx(hNotepad, 0&, "edit", vbNullString)
Call SendText(hWindow, "Hello")
Public Declare Function PostMessage Lib "user32" Alias "PostMessageA" (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
Public Const WM_KEYDOWN = &H100
Public Const WM_KEYUP = &H101
Public Const WM_CHAR = &H102
Public Sub SendText(hWnd As Long, Text As String)
Dim I As Integer
If hWnd = 0 Then Exit Sub
Dim zwParam As Long
Dim zlParam As Long
Dim xwParam As Long ' used For WM_CHAR
For I = 1 To Len(Text)
' First, get the lParam for WM_KEYDOWN
zwParam = GetVKCode(Mid$(Text, I, 1))
xwParam = zwParam And &H20 ' wants Hex20 added To it so A7 goes to C7 and 15 -> 35 (hex values)
zlParam = GetScanCode(Mid$(Text, I, 1))
PostMessage hWnd, WM_KEYDOWN, zwParam, zlParam
DoEvents
Next
End Sub
Private Function GetVKCode(ByVal Char As String) As Long
On Error Resume Next
Char = UCase(Left$(Char, 1))
GetVKCode = Asc(Char)
End Function
Private Function GetScanCode(bChar As String) As Long
' To get scancodes:
' Start SPY++ on Notepad
'Type in all chars and then stop SPY++ logging. It will tell you all scancodes
' Note: Scancode 1E = &H1E0001,30 = &H30
' 0001
Select Case LCase$(Left$(bChar, 1))
Case "a"
GetScanCode = &H1E0001
Case "b"
GetScanCode = &H300001
Case "c"
GetScanCode = &H2E0001
Case "d"
GetScanCode = &H200001
Case "e"
GetScanCode = &H120001
Case "f"
GetScanCode = &H210001
Case "g"
GetScanCode = &H220001
Case "h"
GetScanCode = &H230001
Case "i"
GetScanCode = &H170001
Case "j"
GetScanCode = &H240001
Case "k"
GetScanCode = &H250001
Case "l"
GetScanCode = &H260001
Case "m"
GetScanCode = &H320001
Case "n"
GetScanCode = &H310001
Case "o"
GetScanCode = &H180001
Case "p"
GetScanCode = &H190001
Case "q"
GetScanCode = &H100001
Case "r"
GetScanCode = &H130001
Case "s"
GetScanCode = &H1F0001
Case "t"
GetScanCode = &H140001
Case "u"
GetScanCode = &H160001
Case "v"
GetScanCode = &H2F0001
Case "w"
GetScanCode = &H110001
Case "x"
GetScanCode = &H2D0001
Case "y"
GetScanCode = &H150001
Case "z"
GetScanCode = &H2C0001
Case Else
GetScanCode = 0
End Select
End Function