Row Insert Same Rowset

Local Row &ROW; Local Rowset &RS1, &RS2, &RS_LEVEL2; &RS1 = GetLevel0()(1).GetRowset(Scroll.Level1); &RS2 = &RS1(1).GetRowset(Scroll.Level2);/* Copy from rowset*/ &RS_LEVEL2 = &RS1(CurrentRowNumber()).GetRowset(Scroll.Level2);/* Copy to */ &RS2.CopyTo(&RS_LEVEL2); /*Copy*/ /* This is where you are inserting a row and want to copy to the new row all the rows and child record data */

Comments

Post a Comment