Thursday 21 June 2018

Monday 18 June 2018

Aras Innovator filesRevision

filesRevision:
This setting controls when the client machine has to refresh all Aras Innovator settings, used whenever there is an update to the Innovator.  This setting is in the web.config file, in the …\Innovator\Client\ directory (Example: C:\Program Files (x86)\Aras\Innovator\Innovator\Client\). The setting is part of the chachingModule tag. 

</runtime> 
<cachingModule moduleEnabled="true" filesRevision="std" />
 </configuration>

 Every time a change is made to the static content on the server (html, images, etc.) you need to change this value from std to 2, 3, 4, etc.  As with any change to production, Aras strongly suggests you notify users to log out of their current session while deploying the change.   Any changes made to the Aras Innovator installation require the following steps to ensure deployment to all users:

Deploy the change to the installed code tree on the server.
Edit the web.config file in the Client folder. 
Set the appropriate filesRevision value:   
  ...    </runtime> 
<cachingModule moduleEnabled="true" filesRevision="2" />
</configuration>

Restart the w3svc service(IIS).

Thursday 14 June 2018

Invalid object name 'LOCALE'.



Invalid object name 'LOCALE'.

refer:
http://community.aras.com/en/forums/topic/320-support-qampa-exception-during-initialization/

Login failed for user 'innovator_regular'.

The Database is not available:Cannot open database "Inn" requested by the login
The login failed.

Login failed for user 'innovator_regular'.

solution

Open SSMS
Expand Security
Expand Logins
Right click on  innovator_regular user
Select Properties
Click on User Mapping
check under Map for your data base
Check db_owner
Ok

or

run below

exec sp_change_users_login 'Update_One', 'innovator_regular', 'innovator_regular'

exec sp_addrolemember 'db_owner','innovator_regular'

Print or Save the Web page as .PDF Using Java Script

http://www.2my4edge.com/2013/06/print-or-save-web-page-as-pdf-using.html
http://www.namasteui.com/jspdf/

Aras Innovator change Data base connection string

If you have installed Aras Innovator
Go to IIS
Expand Sites-->Default Web Site
Select your Innovator web site: ex: InnovatorServer
Right click on InnovatorServer
Select Explore
You will land at : C:\Program Files (x86)\Aras\Innovator\Innovator
Go one folder up
C:\Program Files (x86)\Aras\Innovator
You will find InnovatorServerConfig.xml
In the above file data base connection string will be there
Open InnovatorServerConfig.xml file in notepad administrator mode
you will find <DB-Connection

<DB-Connection
 id="Innovator"
 database="InnovatorSolutions"
 server="localhost"
 uid="innovator"
 pwd="innovator" />

in the above line, you can change db server and name

Wednesday 13 June 2018

Error , 'Aras.IOM.Item' does not contain a constructor that takes 2 arguments

var selectedItemClass = new Item("Item Class", "get"); -Javascript
Error: Line number 18, Error Number: CS1729, 'Aras.IOM.Item' does not contain a constructor that takes 2 arguments

Item selectedItemClass = this.getInnovator().newItem("Item Class", "get"); - C#

ArasLabs

https://github.com/ArasLabs

Install Aras Innovator

We can install Aras Innovator in Server or client
For server installation-
https://www.youtube.com/watch?v=2uof2j-ZjIU

For client installation-
https://www.youtube.com/watch?v=OaR0zs7ma9s

Monday 4 June 2018

Aras Innovator error System.Net.WebException: The remote server returned an error: (503) Server Unavailable

Aras Innovator error System.Net.WebException: The remote server returned an error: (503) Server Unavailable

Root cause: IIS
Solution: I have un installed IIS and re-installed, then it has resolved the issue.