Products | Versions |
---|---|
TIBCO Scribe Insight | 7.02 and above |
The SCRIBE.KSYNC tables in the Scribe Internal Database contain the names of the system tables. Use SQL statements to update the system table names in your Scribe Internal Database.
Assume that you are using a Spanish language version of Dynamics NAV and the system table names are in Spanish.
Note: The Spanish language table names used in this example are not the table names used by the Spanish language version of Dynamics NAV, they are provided only to illustrate how to modify the Scribe Internal Database
In the table above the English names are the table names expected by TIBCO Scribe® Insight. The Spanish table names are the ones currently in the system tables. To modify the Scribe Internal Database to recognize the Spanish table names do the following:
1. Open SQL Server Management Studio or another tool that allows you to run SQL statements. update SCRIBE.KSYNC set KEYVALUE='LicenseInformation' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.LICENSEINFOTABLENAME' update SCRIBE.KSYNC set KEYVALUE='Text' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.LICENSEINFOCOLUMNNAME' update SCRIBE.KSYNC set KEYVALUE='Session' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.SESSIONTABLENAME' update SCRIBE.KSYNC set KEYVALUE='UserID' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.USERIDCOLUMNNAME' update SCRIBE.KSYNC set KEYVALUE='User' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.USERTABLENAME' update SCRIBE.KSYNC set KEYVALUE='ExpiryDate' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.2013EXPIRATIONDATECOLUMNNAME' update SCRIBE.KSYNC set KEYVALUE='UserName' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.2013USERNAMECOLUMNNAME' |
update SCRIBE.KSYNC set KEYVALUE='Licencia' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.LICENSEINFOTABLENAME' update SCRIBE.KSYNC set KEYVALUE='Texto' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.LICENSEINFOCOLUMNNAME' update SCRIBE.KSYNC set KEYVALUE='Sesiones' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.SESSIONTABLENAME' update SCRIBE.KSYNC set KEYVALUE='NumeroUsuario' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.USERIDCOLUMNNAME' update SCRIBE.KSYNC set KEYVALUE='Usuario' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.USERTABLENAME' update SCRIBE.KSYNC set KEYVALUE='FechaCaducidad' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.2013EXPIRATIONDATECOLUMNNAME' update SCRIBE.KSYNC set KEYVALUE='NombreUsuario' where SECTION='ADAPTERS' and KEYNAME='DYNAMICSNAVADAPTER.2013USERNAMECOLUMNNAME' |