Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8848069
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T12:20:27+00:00 2026-06-14T12:20:27+00:00

APEX version: 4.1.1.00.23 I have a shuttle on a page, and when I move

  • 0

APEX version: 4.1.1.00.23

I have a shuttle on a page, and when I move item(s) to the right panel from the left, I want to update a table in the database with what is in a select list.

In this case, when I select ‘Analyst_1’ from the drop down, it will populate the right side based on javascript.

enter image description here

DB table (before clicking button):
Field                          Analyst
Co-Borrower Credit Score       Analyst_1
Appraised Value                (null)
Appraisal Identifier           (null)

Then, after I move some items from the left panel to the right panel and click ‘Apply Changes’, I want ‘Analyst_1’ to be put in the analyst field on the DB for each of the field names on the right panel.

enter image description here

DB table (after clicking button):
Field                          Analyst
Co-Borrower Credit Score       Analyst_1
Appraised Value                Analyst_1
Appraisal Identifier           Analyst_1

Here is my code for when the button ‘Apply Changes’ is clicked.

Update Data_Table
set ANALYST_NAME = :P51_ANALYST
where FIELD = :P51_SHUTTLE_RIGHT;

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T12:20:29+00:00Added an answer on June 14, 2026 at 12:20 pm

    I used the following code to get the DB to update the Analyst (select list) based ONLY on the items in the right panel to work.

    NOTE: This only updated the DB based on the right panel. If you move something from the right panel, to the left panel, it will still appear on the right panel after the page is submitted.

    Create page process (PL/SQL anonymous block) after submit:

    declare
        tab apex_application_global.vc_arr2;
        l_count number;
    begin
        tab := apex_util.string_to_table (:P51_SHUTTLE);
        for i in 1..tab.count 
        loop
        select count(*) into l_count from DQ_MANUAL_EDIT WHERE DQ_ATTRIBUTE = tab(i);
         if l_count > 0 then 
           UPDATE DQ_MANUAL_EDIT
           SET DQ_ANALYST = :P51_DQ_ANALYST
           WHERE DQ_ATTRIBUTE = tab(i);
        end if;
        end loop;
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The scenario: I have an ApEx page which pulls a record from a table.
APEX version: 4.1.1.00.23 I have a shuttle that populates the right site based on
I'm using Oracle APEX and I have a report region in a page that
i want to call a apex method from a custom Button I realise we
I have a html/javascript web page that I need to run unmodified on APEX
Friends, My apex page has several different radio groups, each one can have the
In Oracle ApEx, I have 6 regions on one page. Within Region 5, I
I have two apex:datatable in my VF page. I need an option of printing
I have apex tag that generate input text field. <apex:page id=my_page> <apex:inputText id=foo id=c_txt></apex:inputText>
I'm an apex beginner and I have a question. I have a blank page

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.