Wednesday, 8 November 2017

Is paraller processing possible in NetSuite
Schedulescript Status

Workflow action script and UserEvent Scripts?
What is the difference between fieldChange and PostSourcing function?

Field change function will trigger on after changing the value of field if you are moving from that field field change function will trigger.


PostSourcing function will trigger on after sourcing all the dependent fields on that field
what is the difference between userEventBeforeSubmit and userEventAfterSubmit?

It's based on requirement if you want to perform the operations before saving of the record then we will use the beforeSubmit operation.
If you want perform the operations after saving of the record then we will use the afterSubmit event.

Tuesday, 7 November 2017

What is the difference between onSave and Before Submit functions.

1.onSave function is used to do the validation purpose.By using onSave function we can stop the record save .
2.By using before submit function we can't stop the record saving
What is the difference between Client and User Event scripts

1.Generally client scripts are useful to do the validations on the record fields.
2. Userevent scripts are used to do  record level operations
                            
What is the difference between pageInit and Before Load functions?

1. By using pageInit function it's not possible to create the fields in NetSuite but by using Before Load form object paramter we can create fields.
2. Before Load function used to do the operations on records.
3. Pageinit function is used to do the after loading the page from the server if you want to set values at that time pageinit function will be useful