File name logic

Embed Size (px)

DESCRIPTION

File name logic

Citation preview

//******************************************************** // Set the FileName for the BP to use//******************************************************** string[256] strProcessID;string[256] strFileName;string[256] strCurDate; string[256] strCurTime; strProcessID =""; strFileName = ""; strCurDate = ""; strdate(#0373:68,"%y%m%d",strCurDate); strdate(#9830,"%H%M%S",strCurTime);select xpathresult into strProcessID from processdata where Xpath="ProcessID"; strFileName = #0143 + "_" + #G142 + "_" + strCurDate + strCurTime + "_" + strProcessID + #0028;update processdata set xpathresult = strFileName where xpath="TranslationOutput/FileName";