Untitled
unknown
plain_text
2 years ago
3.4 kB
8
Indexable
/**
* Module Description
*
* Version Date Author Remarks
* 1.00 07 Aug 2023 mbarredo_appwrap
*
*/
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Access mode: create, copy, edit
* @returns {Void}
*/
function clientPageInit(type){
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @returns {Boolean} True to continue save, false to abort save
*/
function clientSaveRecord(){
return true;
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Sublist internal id
* @param {String} name Field internal id
* @param {Number} linenum Optional line item number, starts from 1
* @returns {Boolean} True to continue changing field value, false to abort value change
*/
function clientValidateField(type, name, linenum){
return true;
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Sublist internal id
* @param {String} name Field internal id
* @param {Number} linenum Optional line item number, starts from 1
* @returns {Void}
*/
function clientFieldChanged(type, name, linenum){
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Sublist internal id
* @param {String} name Field internal id
* @returns {Void}
*/
function clientPostSourcing(type, name) {
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Sublist internal id
* @returns {Void}
*/
function clientLineInit(type) {
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Sublist internal id
* @returns {Boolean} True to save line item, false to abort save
*/
function clientValidateLine(type){
return true;
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Sublist internal id
* @returns {Void}
*/
function clientRecalc(type){
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Sublist internal id
* @returns {Boolean} True to continue line item insert, false to abort insert
*/
function clientValidateInsert(type){
return true;
}
/**
* The recordType (internal id) corresponds to the "Applied To" record in your script deployment.
* @appliedtorecord recordType
*
* @param {String} type Sublist internal id
* @returns {Boolean} True to continue line item delete, false to abort delete
*/
function clientValidateDelete(type){
return true;
}
Editor is loading...