Skip to content
Snippets Groups Projects
Commit d3a110bc authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

[Projekt: Entwicklung - Neon][TicketNr.: 1036415][Übernahme AUDIT und Logging...

[Projekt: Entwicklung - Neon][TicketNr.: 1036415][Übernahme AUDIT und Logging aus bestehendem xRM-Basic für ADITO 2019]
parent c7c5ceed
No related branches found
No related tags found
No related merge requests found
......@@ -5,10 +5,10 @@
<column name="USER_NEW" type="NVARCHAR(50)">
<constraints nullable="false"/>
</column>
<column name="DATE_NEW" type="TIMESTAMP">
<column name="DATE_NEW" type="DATETIME">
<constraints nullable="false"/>
</column>
<column name="DESCRIPTION" type="LONGVARCHAR(2147483647)"/>
<column name="DESCRIPTION" type="NCLOB"/>
<column name="LOGTYPE" type="CHAR(1)"/>
<column name="SOURCE_TABLENAME" type="NVARCHAR(30)"/>
<column name="SOURCE_TABLENAMEID" type="CHAR(36)"/>
......
......@@ -15,6 +15,13 @@ import("Context_lib");
*/
function OrganisationUtils() {}
/*
* retrieves the name of an organisation with a select statement
*
* @param {String} pOrganisationId the ID of the organisation that shall be searched in the database;
*
* @return {String} the name of the organisation
*/
OrganisationUtils.getNameByOrganisationId = function(pOrganisationId)
{
var orgname = "";
......@@ -27,6 +34,13 @@ OrganisationUtils.getNameByOrganisationId = function(pOrganisationId)
return orgname;
};
/*
* retrieves the name of an organisation with a select statement
*
* @param {String} pContactId the ID of the corresponding org-contact of the organisation that shall be searched in the database;
*
* @return {String} the name of the organisation
*/
OrganisationUtils.getNameByContactId = function(pContactId)
{
var orgname = "";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment