Proposal for Creating a field on Bills with link to any of the attached Documents

DeliverablesĀ  Client needs a field on Bill that holds link for each attached documents of that bill Solution As a solution, we could create a new Field Attachment Links which is a Rich Text field. We could use a Saved search for setting Dynamic default value for that field. The saved search will list all… Continue reading Proposal for Creating a field on Bills with link to any of the attached Documents

To open the link in a saved search result in a new Tab

Scenario: Need to open the link in a new tab of the saved search result. Solution The links can be created using Formula(Text). We can specify the navigation using the <a> tag. You can add target=”_blank” along with the URL. This will make the link to be opened in a new tab when it is… Continue reading To open the link in a saved search result in a new Tab

Adding Freezing Header for Sales Orders

Scenario: Sales Orders have item sublist Table, which lists items in each SO. If the number of items becomes too large, we need to scroll the table down, which will also scrolls the table header too. Make this table header freeze and make other details scrollable. Solution: It needs a User Event script. In it’s… Continue reading Adding Freezing Header for Sales Orders

Assigning new resources directly to Project Task

Usually if you want to add a resource to a project task, that resource should first added to project. Then only you can add them in to the project task. But you can add resources directly to a project task. For that the project record, which has the corresponding project task, there will be a… Continue reading Assigning new resources directly to Project Task

Adding Loading symbol while processing

Scenario: When some process is processing if you need to show any kind of loading symbol for representing the process may take some time. For this you need to add a loading symbol on the page Solution: For this you need to add a jQuery section with a HTML code block. The HTML code block… Continue reading Adding Loading symbol while processing

Suitelet Page For Resource Allocation

Scenario: We need to create a suitelet page for resource allocation. The suitelet page should contain similar pages like the same. The Body fields should contain, Project Name. Common project fields. The sublist structure should same as the below image. Solution We can use a client script for the validation and another suitelet for background… Continue reading Suitelet Page For Resource Allocation

Showing Warning/ Success Messages in Suite lets

Scenario: We need show a warning message when an error occurs and a success message if the process completed. You can use ‘message‘ for showing warning/ information messages in a suitelet. ‘N/ui/message‘ module can be used for that. in the above example, we can create the message by using message.create method. As an option, you… Continue reading Showing Warning/ Success Messages in Suite lets