Posts

Showing posts from December, 2014

Third Level Traverse

Local RowSet &RS1,&RS2,&RS3; Local Row    &Row1,&Row2,&Row3; Local Field  &Fld1,&Fld2,&Fld3; Local Number &i,&j,&k;     &RS1 = GelLeve0()(1).GetRowSet(Scroll.FirstLevelRecordName);           For &i = 1 to &RS1.ActiveRowCount                  &Fld1 = &RS1(&i).GetRecord(Record.FirstLevelRecordName).GetField(Field.FieldName).value;              &RS2 = &RS1(&i).GetRow(&i).GetRowSet(Scroll.SecondLevelRecordName);                  For &j = 1 to &RS2.ActiveRowCount                          &Fld2 = &RS2()(&j).GetRecord(Record.SecondLevelRecordName).GetField(Field.SecondLevelFieldName).Valule;                            &RS3 = &RS2(&J).GetRow(&j).GetRowSet(Scroll.ThidLevelRecordName);                               For&k = 1 to &RS3.ActiveRowCount                                      &Fld3 = &RS3(&k).GetRecord(Record.ThirdLevelRec

Basic Setup Of HRMS

Basic Setups HRMS Basic HRMS Setup's and adding the Benefits to the Employee Setup Create SETID Navigation: Main Menu ->PeopleTools ->Utilities ->Administration ->TablesetID's Create Business Unit Navigation: Main Menu ->Setup HRMS ->Foundation Tables ->Organisation ->Business Unit Setup Location: Navigation: Main Menu ->Setup HRMS ->Foundation Tables ->Organisation ->Location Add a company Navigation: Main Menu ->Setup HRMS ->Foundation Tables ->Organisation ->Company Create an Establishment ID Navigation: Main Menu ->Setup HRMS ->Foundation Tables ->Organisation ->Establishment Create Departments Navigation: Main Menu ->Setup HRMS ->Foundation Tables ->Organisation ->Departments Setting the Business Unit options default Navigation: Main Menu ->Setup HRMS ->Foundation Tables ->Organisation ->Business Unit options default (Enter the company and Country details)

Dynamic Views In Peoplesoft

Image
Understanding Dynamic Prompts in PeopleSoft Every so often during the interviews, we encounter this question a lot and without a proper understanding we end up improvising the explanation. The question is -  What do you know about dynamic prompts and how we can create them? Well, let’s get to the point and try understanding the concept with examples. Prompts enable user to select a value from the list of predefined control values for a field in a page during transactions.  For Example, when we create a new department, to select the company we click on the prompt for company field and select one of the listed values. In this case, the list of companies displayed in the prompt is static and is directly pulled from the record COMPANY_TBL.  Below is the record field properties of COMPANY field in the record DEPT_TBL, In this case, there is no control over what are all the values will be prompted to the user, whatever is available in the record COMPANY_TBL, will be lis