My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter!  Submit your nomination today. 
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
- 
                Hello @kees.netsuiteadmin, Only SuiteScript can produce a near-duplicate: create the new Quote, copy body/line fields, re-create Activities (Tasks/Events/Phone Calls), and reattach the same files. Communications subtab: Emails/Messages cannot be cloned to another record. Activities do not carry over; you must re-create…
 - 
                Hello @User_3IXS3, Just wanted to check If you still need assistance, please don't hesitate to let us know so we can provide you with additional support. Thank you and have a great day ahead!
 - 
                Hello @Jo_M, I agree with what @Angela Bayliss has to say. Thank you so much @Angela Bayliss for addressing the concern.
 - 
                Hello @User_DR9DT, Can you please elaborate the behavior you would expect. For example : You have a Custom Role that uses Accounting Center and you would like to restrict PBCS reports and show financial or other reports to them ? Let me know the details of your expected behavior so that I can re-create it on my end and…
 - 
                Hello @User_8DP9L, glad to have you with us today, and thanks for posting here in the NetSuite Support Community! Greetings everyone! We have a fellow member who could use our assistance. Please don't hesitate to share your knowledge and insights to help them out. Your input is highly valued and appreciated! In case you…
 - 
                Hello @Ron Mc, I think I found what's wrong in the above code. Your Location part : "location": { id: 6 }, Should be "location": { "id": 6 }, Let me know if that fixes the issue for you.
 - 
                Hello @Elizabeth Vance, glad to have you with us today, and thanks for posting here in the NetSuite Support Community! Greetings everyone! We have a fellow member who could use our assistance. Please don't hesitate to share your knowledge and insights to help them out. Your input is highly valued and appreciated! In case…
 - 
                Hello @User_3IXS3, Please let us know if this is regarding approving New Created Vendors(Vendor Record) or approving Vendor Bills. When creating a workflow to Approve Vendors you might need to add certain custom fields and hence it would require different steps than the one posted above. I will post the steps accordingly…
 - 
                Hello @User_3IXS3, Below are the steps to Create a Vendor Approval Workflow : To establish a hierarchical vendor bill approval process using workflow, follow these steps: Navigate to Customization > Workflow > Workflows > New Under Basic Information: Name: Enter Vendor Bill Hierarchy Record Type: Select Transaction Sub…
 - 
                Hello @brocha, Thank you for the update. Glad it worked for you! ______ In case you know someone who is new to NetSuite, we encourage you to direct them to our newly launched "New to NetSuite" page. This page is specifically designed to offer them information and guidance and help them make the most out of their NetSuite…
 - 
                Hello @Brandon liu, Thank you for the update in future if you need assistance, please don't hesitate to let us know so we can provide you with additional support. ______ In case you know someone who is new to NetSuite, we encourage you to direct them to our newly launched "New to NetSuite" page. This page is specifically…
 - 
                Hello @User_DR9DT, Just wanted to check if you were able to see my previous comment. Please provide the requested information so we can proceed with further investigating your concern.
 - 
                Hello @brocha, I was able to print the Total Quantity using the code I mentioned earlier. I have also attached the screenshot below. So here's how you would modify the code : Output : If the problem persist it's best recommended to submit a case so that Support can investigate and take a deeper look into this." ______ In…
 - 
                Hello @Ron Mc, The payload looks fine to me. If you’re still encountering this issue, I recommend submitting a support case so that the team can investigate further, as it may require deeper analysis. _____ In case you know someone who is new to NetSuite, we encourage you to direct them to our newly launched "New to…
 - 
                Hello @Sarah Iacoboni, glad you were able to find a way through it. Feel free to post questions or reach out in future if needed. _______ In case you know someone who is new to NetSuite, we encourage you to direct them to our newly launched "New to NetSuite" page. This page is specifically designed to offer them…
 - 
                Hello @esabis, Thank you for the update feel free to reach out if you need assistance.
 - 
                Hello @brocha, Just wanted to check if you were able to see the possible solution provided in my previous comment. If it was helpful, could you do us a quick favor and click "Yes" on "Did this answer the question?" It helps others with the same question find the answer quickly, and you'll earn points and unlock the Answer…
 - 
                Hello @User_DR9DT, You generally cannot hide individual locked/bundled searches directly via permissions. I am trying to recreate this on my Test Environment and will update you on a workaround or exact changes to be made. Just to confirm if am looking at the correct bundle. (337580 PBCS). One way to work around report…
 - 
                Hello @User_DR9DT, sorry for the delay. I am working on this and will get back to you with an update shortly.
 - 
                Hello @User_15SCL, Just wanted to check if you were able to see the possible solution provided in previous comments by community members. If it was helpful, could you do us a quick favor and click "Yes" on "Did this answer the question?" It helps others with the same question find the answer quickly, and you'll earn points…
 - 
                Hello @User_K51C7, Just wanted to check if you were able to see the possible solution provided in my previous comment. If it was helpful, could you do us a quick favor and click "Yes" on "Did this answer the question?" It helps others with the same question find the answer quickly, and you'll earn points and unlock the…
 - 
                Hello @Brandon liu Just wanted to check if you were able to see the possible solution provided in my previous comment. If it was helpful, could you do us a quick favor and click "Yes" on "Did this answer the question?" It helps others with the same question find the answer quickly, and you'll earn points and unlock the…
 - 
                Hello @Sarah Iacoboni, The user access email in Netsuite is a unique system generated email which cannot be CC'd to anyone. This is because it contains a unique access link which if shared can lead to security issues this is by design. Hence you cannot use a workflow or native Netsuite setting by default to CC that…
 - 
                Hello @brocha,It turns out that because ${item.quantity} isn’t a raw number it’s a formatted string like "9,999.99". FreeMarker’s ?number can only convert plain numeric text. The comma is a thousands separator, not a digit, so parsing fails.So we normalize the text first. Can you please try using the code below : For Total…
 - 
                Hello @brocha, To add the total quantity to the code you provided above, can you please try the below : Calculate the Total Quantity anywhere before the Total Table : <#assign totalQty = 0> <#list record.item as tq> <#assign totalQty = totalQty + (tq.quantity?number!0)> </#list> And then modify your final total code with :…
 - 
                Hello @User_15SCL, The Employee Center in NetSuite is used specifically in relation to a set of licenses with reduced functionality and permissions. NetSuite charges less for these licenses and restricts the access and permissions of these roles accordingly. The Employee Center license is counted when the role assigned to…
 - 
                Hello @Brandon liu NetSuite only “locks” the exact record a user is editing. If A is open in Edit, NetSuite doesn’t automatically lock its child B records. So if User Ben opens A, and while he’s editing, User Joe changes a related B, Ben’s save can overwrite Joe’s change (depending on how A writes to Bs). This is a classic…
 - 
                Hello @Ron Mc, Sorry for the delay. I tried creating the vendor bill and I was able to Create one using the article below. Can you please take a look at this. POST {{COMPANY_URL}}/services/rest/record/v1/vendorBill { "entity":{"id": {{vendorId}} }, "item": { "items": [{ "item": {"id": {{ItemId}} }, "rate": 10 }] } } 1.…
 - 
                Hello @Yee Yie, glad to have you with us today, and thanks for posting here in the NetSuite Support Community! Greetings everyone! We have a fellow member who could use our assistance. Please don't hesitate to share your knowledge and insights to help them out. Your input is highly valued and appreciated! In case you know…
 - 
                Hello @User_K51C7, Below are some ways to check which services are using SOAP, I have also mentioned Removal of SOAP Web Services SuiteAnswer which mentions everything related to what should be done when it's no longer supported and the Plan of Gradual removal of SOAP Services and changes as per each release. To See all…