JointLantic

How to Change Grid Column Name of Grid/Scroll level 1 in Peoplecode

How to Change Grid Column Name of Grid/Scroll level 1 in Peoplecode Dynamically

  1. Double Filed Properties in Scroll Area/ Grid and

go to General  Tab and key name of field = ‘LINK’

 

2. Use PeopleCode at Page Peoplecode

Local Grid &GRID;
Local GridColumn &GRIDCOLUMN;

&GRID = GetGrid(Panel.TEST_MAIN, “COURSE”);

/* Panel.TEST_MAIN = Component,  COURSE = Record Name in Level 1 */

&GRIDCOLUMN = &GRID.GetColumn(“LINK”);
&GRIDCOLUMN.Label = “New Label”

http://www.jointlantic.com/disable-grid-column-page-field-name-using-peoplecode-peoplesoft/

Exit mobile version