What is the correct way to show the audit(View Change Log) button in the detail view?Custom field doesn't appear in sugarCRMAdding javascript include using extensionTroubleshooting dynamic dropdowns in SugarCRM 6.5Enabling Global Search on Custom module with sugarCRM 6.5+Create a subpanel to a flex related module in sugarcrmPopulating a field when choosing a relate field _ suite crmHow to create a logic hook in SugarCRM/SuiteCRM based on info in 'Campaign' subpanel of Leads?Module framework vs Extension framework (sugarCRM, SuiteCRM)How to implement a custom field/column in Suite CRM Views
Is a tag line useful on a cover?
Mathematical cryptic clues
Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.
Mage Armor with Defense fighting style (for Adventurers League bladeslinger)
How to write a macro that is braces sensitive?
US citizen flying to France today and my passport expires in less than 2 months
Are the number of citations and number of published articles the most important criteria for a tenure promotion?
Do I have a twin with permutated remainders?
Why are electrically insulating heatsinks so rare? Is it just cost?
What typically incentivizes a professor to change jobs to a lower ranking university?
How does strength of boric acid solution increase in presence of salicylic acid?
How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?
How can I make my BBEG immortal short of making them a Lich or Vampire?
Schoenfled Residua test shows proportionality hazard assumptions holds but Kaplan-Meier plots intersect
How to find program name(s) of an installed package?
Why can't I see bouncing of a switch on an oscilloscope?
Is it possible to do 50 km distance without any previous training?
Why do falling prices hurt debtors?
How could an uplifted falcon's brain work?
Languages that we cannot (dis)prove to be Context-Free
Why don't electron-positron collisions release infinite energy?
Why does Kotter return in Welcome Back Kotter?
How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?
Have astronauts in space suits ever taken selfies? If so, how?
What is the correct way to show the audit(View Change Log) button in the detail view?
Custom field doesn't appear in sugarCRMAdding javascript include using extensionTroubleshooting dynamic dropdowns in SugarCRM 6.5Enabling Global Search on Custom module with sugarCRM 6.5+Create a subpanel to a flex related module in sugarcrmPopulating a field when choosing a relate field _ suite crmHow to create a logic hook in SugarCRM/SuiteCRM based on info in 'Campaign' subpanel of Leads?Module framework vs Extension framework (sugarCRM, SuiteCRM)How to implement a custom field/column in Suite CRM Views
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a custom module with a field marked as an auditable field, but the View Change Log button is not shown either in the edit view or in the detail view.
I made the this steps
To make the field auditable I created the following file custom/Extension/modules/CustomModule/Ext/Vardefs/field_name.php I have added the following content
<?php
$dictionary['CustomModule']['fields']['field_name']['audited'] = true;
To make the module auditable I created the following file custom/Extension/modules/CustomModule/Ext/Vardefs/enable_auditing.php with the following content
<?php
$dictionary['CustomModule']['audited'] = true;
After doing the above and Run Quick Repair & Rebuild the View Change Log button is not created in the edit view or in detail.
I checked that the custommodule_audit table is created and data is added to the table.
I can confirm that the module should be audited by default, in this file modules/ppw_PN_Poyecto/vardefs.php exist this configuration
$dictionary['CustomModule'] = array(
'table' => 'custom_module',
'audited' => true,
'inline_edit' => true,
'duplicate_merge' => true,
'fields' => array (...)
...
What is the correct way to show the audit(View Change Log) button in edit/detail views?
php sugarcrm suitecrm
add a comment |
I have a custom module with a field marked as an auditable field, but the View Change Log button is not shown either in the edit view or in the detail view.
I made the this steps
To make the field auditable I created the following file custom/Extension/modules/CustomModule/Ext/Vardefs/field_name.php I have added the following content
<?php
$dictionary['CustomModule']['fields']['field_name']['audited'] = true;
To make the module auditable I created the following file custom/Extension/modules/CustomModule/Ext/Vardefs/enable_auditing.php with the following content
<?php
$dictionary['CustomModule']['audited'] = true;
After doing the above and Run Quick Repair & Rebuild the View Change Log button is not created in the edit view or in detail.
I checked that the custommodule_audit table is created and data is added to the table.
I can confirm that the module should be audited by default, in this file modules/ppw_PN_Poyecto/vardefs.php exist this configuration
$dictionary['CustomModule'] = array(
'table' => 'custom_module',
'audited' => true,
'inline_edit' => true,
'duplicate_merge' => true,
'fields' => array (...)
...
What is the correct way to show the audit(View Change Log) button in edit/detail views?
php sugarcrm suitecrm
add a comment |
I have a custom module with a field marked as an auditable field, but the View Change Log button is not shown either in the edit view or in the detail view.
I made the this steps
To make the field auditable I created the following file custom/Extension/modules/CustomModule/Ext/Vardefs/field_name.php I have added the following content
<?php
$dictionary['CustomModule']['fields']['field_name']['audited'] = true;
To make the module auditable I created the following file custom/Extension/modules/CustomModule/Ext/Vardefs/enable_auditing.php with the following content
<?php
$dictionary['CustomModule']['audited'] = true;
After doing the above and Run Quick Repair & Rebuild the View Change Log button is not created in the edit view or in detail.
I checked that the custommodule_audit table is created and data is added to the table.
I can confirm that the module should be audited by default, in this file modules/ppw_PN_Poyecto/vardefs.php exist this configuration
$dictionary['CustomModule'] = array(
'table' => 'custom_module',
'audited' => true,
'inline_edit' => true,
'duplicate_merge' => true,
'fields' => array (...)
...
What is the correct way to show the audit(View Change Log) button in edit/detail views?
php sugarcrm suitecrm
I have a custom module with a field marked as an auditable field, but the View Change Log button is not shown either in the edit view or in the detail view.
I made the this steps
To make the field auditable I created the following file custom/Extension/modules/CustomModule/Ext/Vardefs/field_name.php I have added the following content
<?php
$dictionary['CustomModule']['fields']['field_name']['audited'] = true;
To make the module auditable I created the following file custom/Extension/modules/CustomModule/Ext/Vardefs/enable_auditing.php with the following content
<?php
$dictionary['CustomModule']['audited'] = true;
After doing the above and Run Quick Repair & Rebuild the View Change Log button is not created in the edit view or in detail.
I checked that the custommodule_audit table is created and data is added to the table.
I can confirm that the module should be audited by default, in this file modules/ppw_PN_Poyecto/vardefs.php exist this configuration
$dictionary['CustomModule'] = array(
'table' => 'custom_module',
'audited' => true,
'inline_edit' => true,
'duplicate_merge' => true,
'fields' => array (...)
...
What is the correct way to show the audit(View Change Log) button in edit/detail views?
php sugarcrm suitecrm
php sugarcrm suitecrm
edited Mar 8 at 13:27
user615274
asked Mar 8 at 3:59
user615274user615274
1,62011423
1,62011423
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55056519%2fwhat-is-the-correct-way-to-show-the-auditview-change-log-button-in-the-detail%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55056519%2fwhat-is-the-correct-way-to-show-the-auditview-change-log-button-in-the-detail%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown