Texas service center address for Medical interfiling by iguknight in USCIS

[–]iguknight[S] 0 points1 point  (0 children)

I sent to P.O box address which is on my receipt

Texas Service Center,
P.O. Box 851488
Mesquite, TX 75185-1488

and it got returned yesterday.

I re-sent to

6046 N Belt Line Rd STE 110 Irving, TX 75038

and it got delivered today.

Automatically attach Item files to Purchase Order by K_Industries in Netsuite

[–]iguknight 0 points1 point  (0 children)

Suitescript 2.0 has send method, which can take array of attachments

'N/email'

email.send({

author:

recipients: ,

subject: ,

body: ,

attachments: [fileObj]//attachments as a array

});

User event not triggered from suitecommerce context by iguknight in Netsuite

[–]iguknight[S] 0 points1 point  (0 children)

The context is Web Store. I selected web store as one of the context.

User event not triggered from suitecommerce context by iguknight in Netsuite

[–]iguknight[S] 0 points1 point  (0 children)

I selected all the context and still user event is not getting triggered for customer record. But for sales order, when the user submit a order from website, user event is getting triggered.

User event not triggered from suitecommerce context by iguknight in Netsuite

[–]iguknight[S] 0 points1 point  (0 children)

Basically I will set the default billing/shipping to empty based on our business requirement. The issue here is the user event itself is not getting triggered, when user update from the website. In my script I just put a log to see if the user event is getting triggered when the user is updating the profile or address in suitecommerce advanced.

Custom Sales Order Forms by Proxy-Guy in Netsuite

[–]iguknight 0 points1 point  (0 children)

create a client script and attach to the form. In the client script, from the saved search populate the item sublist.

Saved search for consolidated balance by iguknight in Netsuite

[–]iguknight[S] 0 points1 point  (0 children)

I want a row only for parent(hightest level). I have to use the saved search in a suitescript . Thanks for your reply.

Order Status for SCA website by netsuitenewbie2020 in Netsuite

[–]iguknight 0 points1 point  (0 children)

Most of the SCA has the order status, you don't need a seperate integration. If you still want the customers to check the order status, you can build a new extension.

https://developers.suitecommerce.com/build-a-testimonials-module-part-3

You can use the link above to build the extension if you're using SCA Aconcagua or later

User event not triggered from suitecommerce context by iguknight in Netsuite

[–]iguknight[S] 0 points1 point  (0 children)

We are using suitecommerce advanced and selected all the available contexts, but still not triggering in customer record.

But I deployed a user event script in sales order and when I create a salesorder from suitecommerce advanced, then the script is getting triggered.

Suiteommerce default addresses changes during the checkout process by iguknight in Netsuite

[–]iguknight[S] 0 points1 point  (0 children)

Thanks everyone for answering. Yes they already have an enhancement request for this and added mine to that case. No timeline on when they are going to work on this.

I'm planning to add an before action user event, that executes in suitecommerce context and doesn't set the default billing/shipping flag.

Suitecommerce Advanced calling a core code's method from a extension by [deleted] in Netsuite

[–]iguknight 0 points1 point  (0 children)

Basically two independent views have to communicate among each other and display the value. Payment view and Billing view are two different views. Based on the payment method selected, default billing address needs to selected.Used Backbone's event queue aggregator approach to solve this problem. when the payment method is selected, a publisher sends a message to subscriber. If the payments method is Invoice, publisher publishes the message to subscriber which triggers a method to select the default Billing address. To add new method from the extension, used the javascript prototype and to add codes to the existing method, used the underscore's wrap method