Back up files transferred from a source application

In an FTP transfer step, expand the Advanced settings. Enter a Backup files path value relative to the file system’s root directory. For example, if you want integrator.io to store a copy of the transferred file at ftps://ftp.my-site.com/integrations/backup, enter /integrations/backup. This path must already exist on the server.  Save your export, run the flow, and verify the existence of the archived files. The… Continue reading Back up files transferred from a source application

Published
Categorized as Celigo Tagged

Sales Order EDI Segments and their Explanations with Example data

EDI File: UNA:+.? ‘ UNB+UNOA:3+SUPPEDI:ZZZ+BGW:ZZZ+231024:2358+115883′ UNH+1+INVOIC:D:96A:UN’ BGM+381+9036648188+9′ DTM+137:20231024:102′ RFF+OI:3988367′ NAD+BY+100++BGW TEST COMPANY+675 MACARTHUR AVENUE CENTRAL+PINKENBA+QLD+4008′ RFF+AHP:48009669836′ NAD+SU+30000++SUPPLIER EDI’ RFF+AHP:42004969304′ PAT+3′ DTM+13:20231231:102′ LIN+1++EVH4S11NC:VP’ PIA+1+XXXEVH4S11NC:BP’ IMD+F++:::AC EASY HOME CHARGER’ QTY+47:1:PCE’ MOA+128:1009.85′ PRI+AAA:1009.85′ TAX+7+GST’ MOA+124:100.99′ UNS+S’ CNT+2:1′ MOA+77:1110.84′ MOA+128:1009.85′ MOA+176:100.99′ TAX+7+GST’ MOA+124:100.99′ UNT+26+1′ UNZ+1+115883′ Explanation: ### UNA Segment – UNA:+.? ‘  – UNA: Service String Advice segment, used… Continue reading Sales Order EDI Segments and their Explanations with Example data

File naming for FTP Imports

Specify how the files uploaded to the FTP site should be named. You can type ‘{{{‘ to include a predefined timestamp or unique file identifier in your file name. For example, FileXYZ-{{{timestamp “YY-MM-DD” “America/Los_Angeles”}}}.txt will upload files with the following pattern: FileXYZ-16-06-30.txt in America/Los_Angeles time. Or, FileXYZ-{UUID}.txt will upload files with the following pattern: FileXYZ-69368e91d9a440f79165b73afd46859d.txt… Continue reading File naming for FTP Imports

Published
Categorized as Celigo Tagged

Generating passwordGUID and hostkey for connecting external servers via suitelet

Solution var HTTPSMODULE, SFTPMODULE, SERVERWIDGETMODULE;var HOST_KEY_TOOL_URL = ‘https://ursuscode.com/tools/sshkeyscan.php?url=’;/** *@NApiVersion 2.x *@NScriptType Suitelet *@NModuleScope Public */define([“N/https”, “N/sftp”, “N/ui/serverWidget”], runSuitelet);//********************** MAIN FUNCTION **********************function runSuitelet(https, sftp, serverwidget){ HTTPSMODULE= https; SERVERWIDGETMODULE= serverwidget; SFTPMODULE= sftp; var returnObj = {}; returnObj.onRequest = execute; return returnObj;}function execute(context){ var method = context.request.method; var form = getFormTemplate(method); if (method == ‘GET’) { form =… Continue reading Generating passwordGUID and hostkey for connecting external servers via suitelet