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

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

TIME_ENTRY_DISALLWD

Issues I will get an error while saving the time entry in UI or in the script. I have verified that the time entry is billable and the time entries are “Unbilled”. The error message is listed below, “type”:”error.SuiteScriptError”,”name”:”TIME_ENTRY_DISALLWD”,”message”:”P&L Test Project does not allow time entry.” Solution I have found the reason for the issue,… Continue reading TIME_ENTRY_DISALLWD

Custom Suitelet for changing the Project Status

This script creates a custom suitelet form with fields project Name, project subsidiary, Current Status, New Status.On selecting the new status from the dropdown field ithe value will set on the project record.and can add this link to the Employee center. /** * @NApiVersion 2.1 * @NScriptType Suitelet */define([‘N/record’, ‘N/redirect’, ‘N/runtime’, ‘N/search’, ‘N/ui/message’, ‘N/ui/serverWidget’], /**… Continue reading Custom Suitelet for changing the Project Status