Hi,Condition 1 - I have used custom object to hide "Add New" of 2 Cross References and it is working as expected if i am trying to create new record or edit the record.Condition 2 - I have used Rules to Make 1st Cross Reference "Read Only" When Statu...
I have a custom object which creates an engagement along with some values however user first need to select values and then save the selected values by clicking the save button then the user hits the generate engagement button to create and copy the ...
Hello,Is there a way via custom code to check if XREF has changed/modified? click function is working but change does not work.FieldID = xref field id$('div[id*="'+ FieldID + 'c"]').click(function(){console.log('check');}); Thanks,Lisa
Hi @Ilya ,I am looking for a custom object code to display warning message "to fill in the field in the cross reference as it is blank" when on main application form status is selected as submitted then code should check in cross reference grid if fo...
I'm looking for custom code to disable or hide the menu item 'copy'. I do see several posts where others are looking for the same functionality. In my previous role, I do know that this was accomplished but I believe the code lived on the server, mak...
I have a Custom Object storing data in sessionStorage. The code is very simple:Sys.Application.add_load(function() { console.log('Sys.Application.add_load() has been executed.'); sessionStorage.setItem('applicationId', 'a001'); }); It's very strange ...
Good morning to the community: I apologize in advance if this question is rudimentary as I am trying to learn how to support and utilize COs in our system...I have an existing CO (written by someone long gone) that is designed to build multiple Assig...
Hi All,We have written a custom object button ( on the record page) which when clicked brings data from another app and refreshes the page. For page refresh we are using the view button code __doPostBack('master$btnView','')But page is refreshed, it ...
When trying to compare dates ie date1 - date2. The page gets stuck on loading. Is there a better way?Code$('div[id^="' + statusStartdateId + '"]').change(function () {var startDate = new Date($CM.getFieldValue(startdateId));var dueDate = new Date($('...
I am trying to get a value from a field on the form in edit mode. I have read the code below should work but it is always returning null. The end goal is to compare to dates and show warning if start date is after due date. It may be worth noting the...
Question for the community:I'm debugging an existing CO where it reads the value of the Overall Status field but, when the record is first created it throws an exception at the “getFieldValue()” (which I would expect) as the field is essentially "EMP...
I'm building a 'Guide Me' for my findings solution and I'm having trouble to referencing divs that aren't in the same section as the code. 1- I created a new section 'Guide me' and added the code to the custom object 'Step 0'2- Since the code is only...
I am working on the pop up message when a user selects an advanced workflow button. For example if the user selects “Approved”, a pop up message : “Please confirm.” appeared and required user to click ‘OK’ or ‘Cancel’ button. If user selects ‘OK’, th...
Hello!I am building a 'Guide me' for my findings in Archer, the code is running (including in Archer) but I don't know how to get the ID of the fields/sections and put it in my script. Can anyone help me? intro.setOptions({ steps: [ { intro: 'Welcome...
Hello everyone.For a custom object I am creating, I have the necessity to create a large number of User Groups.Is there a maximum number of them?Thanks
I have a number of values list fields that need to be populated from a corresponding calculated values list field. All fields are on layout, with some in sections and some in tab sets, if that matters.Field1 is calculated VLField2 is manually updated...
Need to meet the requirement for CFR-Part 11- Custom Code is the only option as SAML is not allowed per Archer. Below is the requirement. Anyone done this custom object in ArcherREQUIRMENT:The system shall provide a separate computer system logon eve...
I am trying to create a custom object to save a record based on a value in a values list. The field ID is 38492 and the value ID is 12987. Below is what I have so far, but no luck, any ideas?
I need help in Custom Code to stop retiring the record from Published Status if Calculated Field has Yes Value.Scenario:Calculated Field - YesStatus = PublishedIf user tried to Change Status to Retired from Published (When Calculated Field = Yes), it...
Is there a way to detect the language of the user's profile and display the Actions according to the chosen language?Currently we have to display the Actions in French and English.see image in the attached fileThanks