Get Created Date and Compare it with our Current Date and Time

We have created an extension in which order time will be stored in the Sales Order (SO). Based on the current time and the order time, we will provide an option for customers to edit an order. They can add, remove, and update items. This edit option is available on the My Account page. The… Continue reading Get Created Date and Compare it with our Current Date and Time

To check whether the Date created date and Line system note date is the same or not

If you want to check whether the sales order’s date created and the line system notes date are the same or not, we need to create a formula text field in the saved search. formulatext: CASE WHEN (TO_CHAR({datecreated}, ‘DD/MM/YYYY HH24:MI’)=TO_CHAR({linesystemnotes.date}, ‘DD/MM/YYYY HH24:MI’)) THEN ‘Yes’ ELSE ‘No’ END When we use this formula in the saved… Continue reading To check whether the Date created date and Line system note date is the same or not