Posts

Showing posts from October, 2017

PeopleCode : How to check whether a specific file exits in a given path

Local array of string &arrFileExists; Local string &strDestinationPath, &strFileDir, &strEmpFileName, &strTaoName; &strFileDir = X_MIS_LD_HC_RUN.FILE_PATH.Value; &strEmpFileName = X_MIS_LD_HC_RUN.FILE_NAME.Value; &strTaoName = X_MIS_LD_HC_RUN.FILE_NAME2.Value; &strDestinationPath = &strFileDir | "/" | &strEmpFileName | ".txt"; If FileExists(&strDestinationPath, %FilePath_Absolute) And       FileExists(&strFileDir | "/" | &strTaoName | ".txt", %FilePath_Absolute) Then Else    MessageBox(0, "", 31000, 148, "Message Not Found"); End-If;

Other Important topics

Home Basic Navigations (Application Designer) Basic Setups HRMS Application Engine SQR Tables (PeopleTools.HRMS,Benfits,,Payroll) FAQ PeopleSoft Course Contact me PeopleSoft Wednesday, May 19, 2010 Search Process of a component in Update mode (UpdateDisplay/UpdateDisplayall) and Component Build Processing or Page build process in Update/Update Displayallmode When we click on the component portal in menu then the following below PeopleCode events will fire Search Process Record Field SearchInit ComponentRecord SearchInit -->Click on Search Record Field SearchSave ComponentRecord SearchSave Component Build Process or Page Build processing in Updatedisplay/UpdateDisplayall mode -->Select the Employee ID from the list then Record Field RowSelect ComponentRecord RowSelect Component Level Prebuild Record Field FieldFormula Record Field RowInit ComponentRecord RowInit Component level Postbuild Page Activate fires and displays the page When w