| Title | Under | Posted on |
|---|---|---|
| how to create application status in peoplesoft campus solutions 8.9 version | PeopleSoft Functional | 05/17/2012 - 4:09am |
| horizantal text in charts | PeopleSoft Technical | 05/10/2012 - 4:57am |
| no current buffer context error | PeopleSoft Technical | 05/10/2012 - 1:19am |
| Integration Broker : Operating Instance/Pub Contracts/Sub Contracts | PeopleSoft Technical | 04/24/2012 - 11:05am |
What is your question?
kavnaidu, we might be able to help if we can read your mind ;) - Please try editing your post and provide us with more information on what you are trying to ask.
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
You can treat the scroll as a rowset and use following two functions.
Go to PeopleCode API Reference> Rowset class > Built in functions and read about following.
1) DeleteRow :
Syntax : DeleteRow(n)
Example :
For &I = &RS2.ActiveRowCount To 1 Step -1 If None(&CHECK_SEQ) Then &RS2.DeleteRow(&I); End-If; End-For;2) InsertRow:
Syntax : InsertRow(n)
Example :
&ROWSET.InsertRow(2);Post new comment