getStandardTransactionCodes()
Function Declaration |
|
Type |
Interface function |
Description |
Retrieve transaction codes that are standard for this data format. On the format profile record, the Code Type Mapping subtab displays a grid where you can provide custom transaction codes and map them to corresponding bank data types in NetSuite. For details, see Mapping Custom Bank Codes. |
Returns |
void |
Input Parameters |
context -a JavaScript object with the property createNewStandardTransactionCode(). |
Example
function getStandardTransactionCodes(context) {
context.createNewStandardTransactionCode({
transactionCode: 'CREDIT',
transactionType: 'DEPOSIT'
});
}