My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
seems I need to add a filter for mainline... working now, but don't know why the search needs to show all items without mainline filter. If Main Line filter is set to 'F' then the search result will return multiple lines depending on the line items of the transaction. By default it's set to false, not sure though if…
-
Hi jimmyf, for record exposure requests like this, you need to file a support case. A support specialist will then file the necessary defect or enhancement on your behalf.
-
There is an existing UG post that also discusses about this. You can view it from this link: https://usergroup.netsuite.com/users/forum/platform-areas/customization/custom-records/285304-what-is-the-best-way-to-accomplish-a-many-to-many-relationship-among-custom-record
-
This is being tracked under Defect # 229281 - "Workflow > Custom Form field not showing as option for Set Field Value for Workflows deployed on custom records". Please file a support case so that your issues will be monitored under this defect as well. As an alternate solution, you can make use of workflow action script.
-
At first glance, your script might be running into some permission issues because it is trying to execute a secure logic from an external resource. You might want to try setting your suitelet into an external one and set the last parameter on your nlapiResolveURL into true. Here's a documentation about that API:…
-
All custom URL parameters must be prefixed with 'custparam' for them to properly work. Please try changing this line: params['opportunity'] To: params['custparam_opportunity']
-
Helloadurangalvis, You might have set the Deployment Status to 'Released' but must have forgotten to check the 'Select All' checkbox under the Audience tab on the deployment page (Customization > Scripts > Name of script > Deployments). Check this box and it should work now.
-
The New Feature Training videos for SuiteScript 2.0 are now available. Please visit the following pages from SuiteAnswers for these videos: SuiteCloud: SuiteScript - Part 1 (ID: 43296) - https://netsuite.custhelp.com/app/answers/detail/a_id/43296/kw/43296 SuiteCloud: SuiteScript - Part 2 (ID: 43297) -…
-
Roles are currently not yet exposed in SuiteScript. This is being tracked by enhancement request # 241442. Filing a support case to be attached to this enhancement will help increase its visibility to the Product Management team.
-
Hi Aaron@MIT, Are you establishing a one-to-one relationship? If yes, you can do this by creating either a Custom Entity Field or a Custom Transaction Body Field. Apply it on either the Support Case or the Sales Order. You can then set the field with the sales order/support case that you'd like to associate with the…
-
You were right PatrickAlc! I meant Custom CRM field. :)
-
Currently, there's no functionality that allows bundle dependencies. This would be an enhancement. Why would you need to declare dependencies though?
-
Another way is to customize the form itself and edit the field label under the Screen Fields on the form customization page. However, this would only work if the business requirement does not have any problems with using a different form.
-
Hi karenn, this SOAP request might help. <search xsi:type='platformMsgs:SearchRequest'> <searchRecord xsi:type='listAcct:ItemSearchAdvanced'> <criteria xsi:type='listAcct:ItemSearch'> <basic xsi:type='platformCommon:ItemSearchBasic'> <internalId operator='anyOf' xsi:type='platformCore:SearchMultiSelectField'> <searchValue…
-
Good info. And how about a SOAP for selecting the case(s) related to an Issue ? Thank You Hi tshearer, You can try this: <soapenv:Body> <platformMsgs:search> <platformMsgs:searchRecord xsi:type="s0:SupportCaseSearchAdvanced"> <s0:criteria> <s0:issueJoin> <platformCommon:internalIdNumber operator="notEmpty" />…
-
Are you doing a search with criterion '-none of- NONE'? Here's a SOAP request that might help you: <customFieldList xmlns="urn:common_2015_1.platform.webservices.netsuite.com"> <customField operator="noneOf" scriptId="custbody_next_set_approvers" xsi:type="SearchMultiSelectCustomField"…
-
I just setup ADFS 2.0 and have it working with Office 365. I'm new to ADFS and SAML, could someone tell me what URLs we need to use for the Identity Provider Login Page, Logout Landing Page, and IDP Metadata URL. I'd like to test this on our sandbox environment. I assume this can be used for login/logout page:…
-
Hi everyone, yes NetSuite now supports SAML (just rolled out late last year). Please check the Help Guide/SuiteAnswers for more info.
-
If you're aiming to go to Sandbox, the Assertion Consumer Service URL that you must put is: https://system.sandbox.netsuite.com/saml2/acs Please see SuiteAnswers article # 30089 for more details.
-
The reason is 'supervisor' is not included in the metadata of an Estimate record. If you're using formula, you would need to use join fields. Have you tried using this: {salesrep.supervisor}
-
I believe I followed the steps that you did based on how you described it but my list/record field gets disabled just fine, showing the sourced text. Can we have the exact settings of the list/record field and the snippet of the script?
-
I tested deploying a form level SuiteScript 2.0 code on one of my forms and it worked. Could you give your sample code please? Here's mine. [CODE ]/** * * @NaPiVersion 2.0 * @Nscripttype clientscript * */ define (function() { function returnAlert() { alert("SuiteScript 2.0 Form Level"); }; return { pageInit: returnAlert };…
-
Hi ssilveri77, currently, there's no way for you to see the execution logs from a form-level script. The alternate solution is to convert it into a record-level script. If you are interested in this functionality, you can file a support case so that it can get attached to this enhancement. Enh # 218610 : SuiteScript > Log…
-
Did you set the Initiation to After Record Submit? What is the field type of the one you're setting the value of the transaction number with? Did you select 'Current Record' under the 'Selection' on the Create Record action page? Kindly check these three as it could only be a misconfiguration.
-
You can also do this in the UI via the Condition Visual Builder. Field = User Role Compare Type = none of Selection = Administrator
-
Hi gustavobosio, the most plausible solution that I can suggest is to add conditions on the workflow actions to avoid this.
-
Thank you for those details SererraMike. To solve your issue, the formula that you should use is {tranid} instead of {transactionnumber}. The {transactionnumber} is a field similar to {tranid} but it is only supported for some other transaction types, Vendor Bill record for example. The problem is that the {tranid} is not…
-
If Auto-Generated number is enabled for the Project record, this 'Auto' checkbox will be hidden on the form and the Project ID will show 'To Be Generated'. Disabling it would show the Auto checkbox again.
-
An alternate solution is through scripting. Here's the SuiteAnswers article: Create transaction records via the Workflow Manager (ID: 22521[LEFT])[/LEFT]
-
This is currently not possible via workflows. Please file a support case to request for an enhancement request. A script would work as an alternate solution.