Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
HiPlease help me in this condition.When a Contact Object Record is created from Skuid Page.Suppose that Skuid page is having a field named “Email” .I want to add a condition that while creating a new Contact record from that skuid page if the email id entered by a user already exists in any of the Contact object record,a error message get displayed like “Duplicate Email Id Not Allowed” and Record not save.Thanks
In this videohttps://www.youtube.com/watch?v=ILBytrnw3Ao at 18:00 minutes there is a feature that looks like this: It allows the testing of merge syntax to see the results. Is this tool available for my use? Where and and how would I install it?
I’m following these instructions for improving Skuid page performance. Using the Developer console, I’ve found a query that’s negatively impacting page performance - but this query isn’t for a model I’ve defined on my page. This query looks to be querying permissions on the running user. Is there a way to improve performance of this query? Has anyone else run into this?11:40:10:289 SOQL_EXECUTE_BEGIN [670]|Aggregations:1|select Profile.Name,Profile.UserLicense.LicenseDefinitionKey,CallCenterId,Profile.PermissionsApiEnabled,Profile.PermissionsViewEncryptedData,Profile.PermissionsTransferAnyEntity,Profile.PermissionsTransferAnyLead,Profile.PermissionsTransferAnyCase, (select Id,PermissionSet.Name,PermissionSet.PermissionsApiEnabled,PermissionSet.PermissionsViewEncryptedData,PermissionSet.PermissionsTransferAnyEntity,PermissionSet.PermissionsTransferAnyLead,PermissionSet.PermissionsTransferAnyCase from PermissionSetAssignments where ((PermissionSet.PermissionsApiEnabled = true) OR (Pe
I have a URL formula field on a custom object. I include that field on a field editor component. It is not rendering as a clickable link as it does on a standard SFDC page layout.
This one is a bit out there… but I know you all like to solve skuid/salesforce puzzles, so here goes…We have an object in our app which contains almost exclusively checkbox fields. It would be awesome if the admins of various orgs using our app could easily edit or add fields to that object from within the skuid ui.I’m imagining what amounts to a skuid table which shows the names of all of the checkbox fields on the object, and let’s users add fields (and edit labels, but not api names).Is there any way to grab that kind of metadata and display it in skuid? I think I could get to the list of fields through a custom component? And then use the field metadata to display only the checkbox fields. The trick would be how to write metadata back to SFDC. Can Apex do that?Is this too crazy to even think about?
Hi, While loading the page, the below error received Request to service “SFDC_REST_Service” failed: Invalid Request: Read timed out Also this is happening to a user but tried with few of other users, there was no such error. Any one has any idea on this ? This is happening every time for the same user. (Tried to delete the cash and log-out and log-in back … but no luck) I checked in Payload, in Network–>XHR–>apexremote–>Headers–>Request Payload–>data[0] –>the JASON formed very well as shown in below picture.
Hi Earlier, while using VF page we had the below snippet in use: function tokenizeCreditCard(CCNumber){ if ( CCNumber == null || CCNumber.length < 15 || CCNumber.length > 16 ) { popupjQuery$('#creditCardErrorDiv').html( '<b>'+'Please enter valid 16 digit Credit Card Numbers'+'</b>'); return false; } // Strip out spaces from input value var fixedCard = CCNumber.replace( /s+/g, "" ); console.log( "noSpaces: '" + fixedCard + "'" ); CCNumber = fixedCard; var token = ""; var isDebug = false; var parsedJSON = ""; //popupjQuery$("[id*='BPCardNumber']").val(''); try { var soapMsg = '{ "cc":"' + CCNumber + '"}'; //json request message sforce.connection.sessionId = "{!$Api.Session_ID}"; // url : "{!sdtUrl}", sforce.connection.remoteFunction({
Hi All,We are using clone button on a detail page and there is Save custom button on Clone page. Everything is working fine from cloning the record to saving clone record. But we have faced a strange issue, when user tries to click 2 time on the Save button on clone page, a javascript popup get displayed and it asked for staying on the page or leave the page. when we select leave the page, we see error on the page and record with blank value gets created in the systemThe URL shows something like this …https://nbcusales–sandbox1–c.cs25.visual.force.com/apex/pageName?Id=clone_1Is anybody have idea why javascript popup gets displayed while clicking 2 time on the save button and why we get this Clone_1 ID instead of the new record ID?RegardsRahul
When you add a value with a space to your multipicklist and render it as checkboxes, the following happens:The first word will be the for attribute of the checkbox label, with the rest of the String it does something weird.
Hi guys, I’m running into a Skuid Mobile bug. Currently I have one page being redirected to another page and I’m passing the {{Id}} so that it brings up the correct record. On desktop and even in Dev console for Chrome, but when I try this within the app, the Id is not passing.Has anyone seen this error or know a fix for it?Thanks,
Be a ware of the following Spring 16 issue with managed packages: From: Salesforce H&T Automation [mailto:system@salesforce.com] Sent: Wednesday, March 9, 2016 8:10 PMTo: bill.fox@foxconsulting.usCc: email2help-en_us@qmbypdihw0dki9buqvufod4s.3xsfgeas.3.apex.salesforce.comSubject: Case - Open - Comment Added - #13259036 You are receiving this e-mail because you have been added to the referenced Salesforce case by a colleague or the case has been updated. If you wish to post a comment to the case, please respond to the unique email address provided for this case or log in to the Help and Training portal. Email sent to “Salesforce H&T Automation” will not be processed. We are unable to accept screenshots or attachments through email. As an alternative, you can perform those functions by logging in to the Help site and attaching the materials to your case directly. Case Number: 13259036 Problem Type: General Salesforce Functionality Product Topics: Mobile - Salesforce1 Case Sub
I have updated to the latest release 7.34.When I set the service URL to /calendars/{{$Model.Users.data.0.Email}}/events and the Path to Contents to items I can see the Google fields i.e. Id; Description etc. When I select the Start field its field type is Date only and not Datetime. Thus I cannot incorporate this in the Skuid Calendar component.I used Skuid release 7.27 and I can see the Start field as Datetime?Is this an in between versions glitch?
I’ve got some drawers in a table which contain a Table. On those tables a row action is to open a popup and show some more Details. This work good so far.I can open as many drawers as I like and it gets displayed just fine.As soon as I open a popup (either in the “parent” or the drawer table), all table headers of the opened drawers align with the table headers of the “parent” table. As well do all summary-fields (they’re just floating around on the screen, no where particular).If I scroll to the top, everything gets displayed again just fine. But as soon as I scroll down 1px, the above described happens again.I have no snippets running on the action to open the popup nor other funny things.I tried to find a solution for that but didn’t come up with anything so far.Before opening the popup:After opening the popup:Please let me know if you’ve ever encountered anything similar and how you’ve handled it. Any help is much appreciated!CheersP.S. Skuid version is 7.35
When i click on save button without enter any data, i am getting some error messages like " field is required" whatever i have written in my snippet code. my requirement is like ’ i want to clear the error message when i click required field or when i enter the data on that field. can any one give sample snippet for this requirement.
I have a table that’s technically capturing two models - a Campaign Member, and the Lead that’s tied to said Campaign Member. Editing either of the models is done by opening a drawer. Ideally, I’d like the Cancel and Save buttons for the row to only render when there are unsaved changes to either model. So I threw in render conditions for that. The initial appearance worked - I made changes, and the Cancel button appeared. Pressed Cancel, and the changes were removed. Perfect. Except, if I made NEW changes, the Cancel button didn’t reappear. For the action, I’m simply saying “Cancel changes in 2 Models” and calling out both the Campaign Member and the Lead (same models that are referenced in the screenshot). Should I be adding something else to make the Cancel button “re-useable”?
Hi, On my calendar, When i click on event, the popup comes up normally but now a Skuid Error appears on the calendar page (not popup). When I try to click on the error to display the error message nothing is happening, How can I see the detail of error? is there another way? Thx
This one was odd. Found the issue to this condition not working mid way through video. But as per title, any condition is ignored if user doesn’t have read permission to field.I’d say that the default behaviour is that the user should not get the records in this situation. If the field is needed to evaluate whether to provide the records, then I’d say they shouldn’t get the records until they have appropriate access to the field.
I am trying to use lightning builder and getting this error. Is this skuid or salesforce.
I’m using skuid to override a list view in the salesforce console but need some help with custom css to optimize the layout. I’m using the standard theme. And the requirement is reduce the padding in the table rows so i can reduce the whitespace (highlighted in red in the screenshot attached). can i use inline css to do this and if so, how? Thank you.
UnitTests_Core SearchRequests System.AssertException: Assertion Failed: Same value: null Stack Trace: Class.skuid.UnitTests_Core.SearchRequests: line 5375, column 1 UnitTests_Core Ui_ConsistentConditions System.QueryException: entity type skuid__Page__c does not support search Stack Trace: Class.skuid.Utils.GetConditionSOQL: line 1810, column 1 Class.skuid.UnitTests_Core.Ui_ConsistentConditions: line 783, column 1 UnitTests_Core Utils_Multicurrency_AddCurrencyIsoCodeFields System.AssertException: Assertion Failed: Expected length: 112, actual length: 96: Expected: SELECT Name,AccountId,Account.Name,Amount,ExpectedRevenue,CloseDate,Id,CurrencyIsoCode FROM Opportunity LIMIT 21, Actual: SELECT Name,AccountId,Account.Name,Amount,CloseDate,Id,CurrencyIsoCode FROM Opportunity LIMIT 21 Stack Trace: Class.skuid.UnitTests_Core.Utils_Multicurrency_AddCurrencyIsoCodeFields: line 3563, column 1
Hi I have designed the Calendar page , the user who use this page should be able to edit the event and link a opportunity, and should not able to change the Start time and end Time,I was able to achieve this by FLS on the object. But the user is able to drag and drop the time so he is ultimately able to change the start time and end time which I don’t want them to do.
Can I add common request headers to a REST model with basic http auth after I’ve created the model service? I have the options while I’m creating it, but once it’s created, I can’t access the common request headers section unless I change the auth type to something else.
I have created REST webservice to read a static resource and return a list of records to SKUID REST client, My problem is, I want to send the entire JSON string to my update (POST) method. when I say req.requestBody; RestRequest req = RestContext.request; system.debug(' req '+req.requestBody); I get only the edited cell value as a BLOB. How could I send all the table values at once in a JSON string on save. REST update method in SKUID; below is my JSON string in Static resource : I want the same string to be formatted in SKUID before calling the REST update, { “totalResults”:20, “startIndex”:0, “dataList”:[ [ “AE001”, “detail 1”, "detail 2 " ], [ “AE002”, “detail 1”, "detail 2 " ] ] } Thanks
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.