Quantcast
Channel: My Errors & My Solutions
Viewing all 123 articles
Browse latest View live

Unix set date and time command


HOW TO remove Facebook virus “http://www.ԣԣԡԣԣԡ.com/?ԣԡ

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

How to remove Facebook virus that publishes for you (with your name) the following message with your contacts tagged:

http://www.ԣԣԡԣԣԡ.com/?ԣԡ << Look Here !

Cause:
You received the notify that your friend tagged you in a message with the above message.
You opened the link that show the following page

Virus Facebook

You clicked to play the video and when appears the following alert

Virus Facebook - Business Flash Player !

you clicked the Add button.

How to remove Facebook virus?

Solution:
Open Google Chrome, click the Chrome menu Google_Chrome_menu on the browser toolbar then select Settings, click on Extensions and how to remove facebook virus - Remove from Chrome Remove from Chrome at the line of the extension Business Flash Player !

Did my HOW TO help you? Leave a reply.

HOW TO remove Facebook virus “http://www.ԣԣԡԣԣԡ.com/?ԣԡ << Look Here !”

Microsoft Windows Phone –“0×89731812″

The name ‘DisplayModes’ does not exist in the current context

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

The name ‘DisplayModes’ does not exist in the current context

The error above is caused from the following code:

@{
    Layout = "~/Views/Shared/_Layout.cshtml";
    DisplayModes.RequireConsistentDisplayMode = true;
}

Solution:

Replace

DisplayModes.RequireConsistentDisplayMode = true;

with

DisplayModeProvider.Instance.RequireConsistentDisplayMode = true;

Did my solution solve your problem? Leave a reply.

The name ‘DisplayModes’ does not exist in the current context

Tips & Tricks – Trim method in Microsoft Dynamics NAV (Microsoft Business Solutions-Navision)

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

My Tip & Trick help you to implement Trim function in C/AL for Microsoft Dynamics Nav.

Trim

Removes all white-space characters from the start and end of a string.

You can use the C/AL function DELCHR with the following syntax:

NewString := DELCHR(String [, Where] [, Which])

So, you can use the following code:

String := DELCHR(String,'<>',' ');

TrimStart or LTrim

Removes all white-space characters from the start of a string.

String := DELCHR(String,'<',' ');

TrimEnd or RTrim

Removes all white-space characters from the end of a string.

String := DELCHR(String,'>',' ');

NOTE:
Since “spaces” are used as the default for Which, we can skip second parameter and write code like this:

String := DELCHR(String,'<>');

Do you think that my Tip & Trick is useful? Leave a reply.

Tips & Tricks – Trim method in Microsoft Dynamics NAV (Microsoft Business Solutions-Navision)

Cannot resolve the collation conflict between “SQL_Latin1_General_CP1_CI_AS” and “Latin1_General_100_CI_AS” in the equal to operation.

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

Cannot resolve the collation conflict between “SQL_Latin1_General_CP1_CI_AS” and “Latin1_General_100_CI_AS” in the equal to operation.

in Italian

Impossibile risolvere il conflitto tra le regole di confronto “SQL_Latin1_General_CP1_CI_AS” e “Latin1_General_100_CI_AS” nell’operazione equal to.

Cannot resolve the collation conflict between…, SELECT command example

SELECT * FROM YourTableName1 One INNER JOIN YourTableName2 Two on One.YourColumnName = Two.OffendingColumn

Cause:
You have two tables with different collation in the columns

Solution 1:

Use COLLATE Left or Right side of comparison in your SELECT command, for example:

SELECT * FROM YourTableName1 One INNER JOIN YourTableName2 Two on One.YourColumnName = Two.OffendingColumn COLLATE SQL_Latin1_General_CP1_CI_AS

Solution 2:
Change collation of your OffendingColumn in one of your tables so you’ll have the same collation in for successive comparison

ALTER TABLE YourTableName
ALTER COLUMN OffendingColumn
VARCHAR(100) COLLATE Latin1_General_CI_AS NOT NULL

Did my solution solve your problem? Leave a reply.

Cannot resolve the collation conflict between “SQL_Latin1_General_CP1_CI_AS” and “Latin1_General_100_CI_AS” in the equal to operation.

Package Microsoft SQL Server 2005 Express failed with error. See detailed message above.

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

Package Microsoft SQL Server 2005 Express failed with error. See detailed message above.

The above error message appears when you try to install Microsoft Navision 6 Client on Windows Vista or Windows 7 or Windows 8.

Package Microsoft SQL Server 2005 Express failed with error

Solution:

  1. To copy the contents of DVD to your computer’s hard drive
  2. To explore the content to find \\Prerequisite Components\\Microsoft SQL Server 2005 Express folder
  3. Right-click on the SQLEXPR.EXE file Property -> Compatibility and set the Compatibility Mode to the previous O.S. version
  4. I suggest you to set the Compatibility Mode also for the Autorun.exe file in the main folder.

Did my solution solve your problem? Leave a reply.

Package Microsoft SQL Server 2005 Express failed with error. See detailed message above.

HOW TO change country in your Google account


HOW TO open virtual keyboard on Windows

F keys missing on virtual keyboard (On-Screen Keyboard) on Windows

The breakpoint will not currently be hit. The specified module has not been loaded

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

The breakpoint will not currently be hit. The specified module has not been loaded

When you debug with Visual Studio 2005 and a Windows Mobile/Windows CE/Pocket PC from 5.0 to 6.5 version device running .NET Compact Framework 2.0 breakpoint not works showing a ring instead of the normal red dot and when holding the mouse over it shows the above error message.

Solution:
Close Visual Studio and re-install the SDK.

Note: If still not work download and install the following patch
.NET Compact Framework 2.0 Service Pack 1 Patch

Did my solution solve your problem? Leave a reply.

The breakpoint will not currently be hit. The specified module has not been loaded

Microsoft Expression Studio 4 Ultimate requires Product Key

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

Microsoft Expression Studio 4 Ultimate requires Product Key

Microsoft Expression Studio 4 Ultimate includes:

  • Expression Blend 4 + SketchFlow
  • Expression Studio 4 Web Professional
  • Expression Design 4
  • Expression Encoder 4 Pro

You downloaded the installation ISO from Microsoft website and you have a company license for this software.
You read “no product key needed” in the Microsoft website but a few of days after installation when you’ll open a tool of this software appears a window with a message that require to insert a Product Key

Solution:
Use the following key:

6WDDQ-K7D4F-GQGF4-2VYBJ-8K6MB

Did my solution solve your problem? Leave a reply.

Microsoft Expression Studio 4 Ultimate requires Product Key

Encryption key was not found.

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

Encryption key was not found.

When you try to insert a new Credit Card in Microsoft Dynamics NAV 2013 appears the above error message.

Encryption key was not found

Solution:

  1. In the Search box, enter Payment Services Connection Setup, and then choose the related link.
  2. On the Actions tab, in the Encryption group, choose Generate Key to generate the encryption key that is stored on the Microsoft Dynamics NAV Server.

Experience: I suggest you if you use the Generate Key functionality to download and store in a secure backup the key generated using the button Download Key on the Actions tab, in the Encryption group.

Reference: How to: Set Up a Payment Services Connection

Did my solution solve your problem? Leave a reply.

Encryption key was not found.

HOW TO calculate the Day of the Year number in C/SIDE

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

You can calculate the Day of the Year number in C/SIDE by the difference between the date (in my example I use the current date defined by the operating system using the function TODAY) and the first day of year of the date using the CALCDATE function. You need to add 1 to the result to include the day of the date that you are using.

HOW TO calculate the Day of the Year number in C/SIDE

Number := TODAY-CALCDATE('<-CY>',TODAY)+1;

If you need it as Text you need to convert it using the FORMAT function

String := FORMAT(TODAY-CALCDATE('<-CY>',TODAY)+1);

Did my HOW TO help you? Leave a reply.

HOW TO calculate the Day of the Year number in C/SIDE

Cannot build the page {PageNo}. The metadata object Table {TableNo} was not found.

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

When you try to run an imported page in Nav 2013 you receive the following error:


Microsoft Dynamics NAV
—————————

Cannot build the page {PageNo}.
The metadata object Table {TableNo} was not found.
—————————
OK
—————————

The metadata object Table {TableNo} was not found.

Cause:
TableRelation property of any field is having {TableNo}

Solution:
In the Development Environment design the SourceTable of the page {PageNo}.
Check all fields table relations that have the {TableNo} as TableRelation and fix them up writing the correct table.

Did my solution solve your problem? Leave a reply.

Cannot build the page {PageNo}. The metadata object Table {TableNo} was not found.


HOW TO calculate the weekday name in RDLC

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

To calculate the weekday name in RDLC you can use a combination of two Visual Basic functions:

  1. DatePart
    Syntax
    DatePart(interval,date[,firstdayofweek[,firstweekofyear]])
    

    firstdayofweek is an Optional parameter and the Default value is 1 (Sunday).
    firstweekofyear is an Optional parameter and the Default value is 1 (January).

  2. WeekdayName
    Syntax
    WeekdayName(weekday[,abbreviate[,firstdayofweek]])
    

    abbreviate is an Optional parameter. A Boolean value that indicates if the weekday name is to be abbreviated.
    firstdayofweek is an Optional parameter and the Default value is 1 (Sunday).

  3. HOW TO calculate the weekday name in RDLC

    CORRECT RESULTS

    =WeekDayName(DatePart("w", Fields!CurrentDate_System.value,0))
    =WeekDayName(DatePart("w", Fields!CurrentDate_System.value,0,0))
    

    WRONG RESULTS

    =WeekdayName(DatePart("w", Fields!CurrentDate_System.Value))
    =WeekdayName(DatePart("w", Fields!CurrentDate_System.Value),false,0)
    

    Did my HOW TO help you? Leave a reply.

    HOW TO calculate the weekday name in RDLC

HOW TO change data for all Companies

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

HOW TO change data for all Companies?

You have different ways to complete this task, the choice depends from how many lines or Companies you have. In the following steps I will explain you how to change data for all Companies in C/SIDE using the CHANGECOMPANY Function (Record):

  1. Create a new ProcessingOnly Report using with the System Table 2000000006 – Company as Data Source of a DataItem.
  2. Declare a C/AL Globals Variable of DataType Record with the table that you need.
  3. Insert the following code in the OnAfterGetRecord trigger

    TO MODIFY

    GLSetup.CHANGECOMPANY(Name);
    
    GLSetup.MODIFYALL("Allow Posting From", 010114D); 
    GLSetup.MODIFYALL("Allow Posting To", 310114D);
    

    or

    TO DELETE

    ChangeLogSetup.CHANGECOMPANY(Name);
    
    ChangeLogSetup.DELETEALL; 
    
    1. Did my HOW TO help you? Leave a reply.

      HOW TO change data for all Companies Sergio Castelluccio

You do not have permission to read the Change Log Setup table

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

—————————
Microsoft Dynamics NAV
—————————
You do not have permission to read the Change Log Setup table.

—————————
OK
—————————

You do not have permission to read the Change Log Setup table

Cause:
The customer doesn’t have permission to read the Change Log Setup table with his license.
Someone activated and deactivated the Change Log functionality with developer license.
As result there is a blank line in the Change Log Setup table.

Solution:
Open the Change Log Setup table with developer license and remove the blank line.
Otherwise, if you have an installation with Microsoft SQL Server, you can delete this blank line directly running a query in SQL.

Did my solution solve your problem? Leave a reply.

You do not have permission to read the Change Log Setup table Sergio Castelluccio

HOW TO disable Mobile Theme in Jetpack

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

When you’ve activated the Mobile Theme it appeared an alert about how to deactivate it

HOW TO disable Mobile Theme in Jetpack

but maybe, like it happened to me, you didn’t read the message or you’ve forgot it.

HOW TO disable Mobile Theme in Jetpack

Solution:
Press the Learn More button

Mobile Theme in Jetpack

then the Configure button will change in Deactivate

Mobile Theme in Jetpack with Deactivate button

NOTE: This is the way to deactivate/disable each functionality in the Jetpack plugin.

Did my HOW TO help you? Leave a reply.

HOW TO disable Mobile Theme in Jetpack Sergio Castelluccio

The client version does not match the server version

$
0
0

My Errors & My Solutions My Errors & My Solutions - It Could Happen To You

—————————
Microsoft Dynamics NAV
—————————
The client version does not match the server version. You can only connect to a server with a matching version.

Client version: {ClientVersionNumber}

Server version: {ServerVersionNumber}
—————————
OK
—————————

The client version does not match the server version

Cause:
I’ve installed more builds of NAV 2013 in the same pc and I receive the error message when I try to run an object from the Microsoft Dynamics NAV Development Environment or activate the Debugger.
To install more builds in the same machine I created a copy of the subfolder 70 and renamed the copy in 70 – 34346.
You should receive the same error message if you install NAV 2013 R2 although it has a subfolder 71.

Solution:
To run an object you could create a different icon to run the correct version of the client before to try to run an object from the Development Environment but this workaround doesn’t work if you want to activate the Debugger.
Create a .reg file, using a text editor like Notepad, for each build that you’ve installed:

NAV2013.reg

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\DYNAMICSNAV\Shell\Open\Command] 
@="C:\\Program Files (x86)\\Microsoft Dynamics NAV\\70\\RoleTailored Client\\Microsoft.Dynamics.Nav.Client.exe -protocolhandler \"%1\""

and NAV2013_34346.reg

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\DYNAMICSNAV\Shell\Open\Command] 
@="C:\\Program Files (x86)\\Microsoft Dynamics NAV\\70 - 34346\\RoleTailored Client\\Microsoft.Dynamics.Nav.Client.exe -protocolhandler \"%1\""

Did my solution solve your problem? Leave a reply.

The client version does not match the server version Sergio Castelluccio

Viewing all 123 articles
Browse latest View live