Add combo list / drop down list item element at runtime in Oracle forms.

Syntax

PROCEDURE ADD_LIST_ELEMENT
(list_name VARCHAR2,
list_index, NUMBER
list_label VARCHAR2,
list_value NUMBER);

Example

Declare
  nElmntCount Number;
Begin
   -- First count the total list element currently in list item 
   nElmntCount := Get_list_element_count('yourlist');
   -- Then add it by adding + 1 to total count element 
   Add_list_element('yourlist', nElmntCount + 1, 'A Value', 'A Value');
End;

See also:
http://www.foxinfotech.in/2013/04/adding-value-combolist-runtime-oforms.html

Adding List Item Element At Runtime In Oracle Forms


 

相关文章:

  • 2022-01-20
  • 2021-10-09
  • 2021-07-04
  • 2021-09-02
  • 2021-05-28
  • 2021-09-08
  • 2022-12-23
猜你喜欢
  • 2021-09-18
  • 2021-09-25
  • 2021-08-20
  • 2021-08-22
  • 2022-03-08
  • 2022-02-24
  • 2021-10-07
相关资源
相似解决方案