Fill another textbox based on list item value

I have a list_item with option1, option2, option3 and 'N/A' with values 1,2,3,4. There is another text field called startdate of date type format FMMM/DD/RRRR. I would like to display date '01/01/1900' in the text box whenever user select 'N/A' in the list item.
I used varuious trigger - WHEN-LIST-CHANGED or POST_CHANGED with following code.
if :block1.options = 'N/A' then          
:block1.startdate := '11/11/1111';
else
:block1.startdate := :block1.startdate ;
end if;
On both triggers, I am getting error when I select 'N/A' in a list item
FRM-40735: WHEN-LIST-CHANGED trigger raised unhandled exception ORA-01843.
-1403: ORA-01403: no data found
Could you please help me with this? I will really appreciate it.
Thanks,
user7954680

Hi,
You might want to check this
ORA-01843 is caused coz of the following reasons
Cause: A date specified an invalid month. Valid months are: January-December, for format code MONTH, and Jan-Dec, for format code MON.
Action: Enter a valid month value in the correct format.
-Nisar

Similar Messages

  • How to send a list item value to URL to open data related to item value

    Hi,
    Iam using Apex4.0 and iam facing some problem. Iam unable to send selected list item value to the url specified in the HTMl region.
    Here i want to open the data related to list item value in other page.
    List item - :Familyp
    i want to pass this selected value to the url and when ever user selected the list item and clicks on the url, then it should display the item value related data in new page.
    I tried with &FamilyP in url but it's not working. Any one help me plz.
    Regards
    Vamsi.Tata

    Is it a normal Select list or Multi Select list?
    If you have select list that allows you to select multiple options then you cannot pass it through URL. Multi-select /Shuttle keep colon separated list in the item, and this confuses Apex because the Apex URL uses colons for a different purpose. No escaping or URL encoding will help.
    If it is normal select list that allows selection of only one option then you can pass through the url. Unless of course the data has a colon in it.
    For multi-select, and when the value contains colon, the only way is to save the value in session state, same page item or any other place like Application Item, and then reference it at the other end. Never pass through the URL.
    Regards,

  • How to make a tabular form readonly based on an item value

    Hi everyone,
    I am getting there, but I need to make a tabular form read-only based on an item value.
    I've copied this from somewhere (thanks) and changed it for my needs and it works great to set the second column of my form
    to read only.
        var els = jQuery('#Entry_Form input[name="f02"]');
        /*var r = confirm("els is " + els);*/
        els = els.filter(function(index){
          return jQuery(this).val() != "";
        });Just need to set the jQuery selector to jQuery("td[headers='PRODUCT_NAME']"), cos that's my column name.
    also need to give a static id of Entry Form to the form.
    I'll try to understand what this code means exactly one of these days, but now I need to make
    the whole tabular form read only based on a text item, :P5_CONTROL.
    Grateful for any help on this, in the above format if possible. Greek to me but compact and it works.
    Regards.
    Leckraj

    Hi,
    actually, there is no code, just one dynamic action. You may have to change the event which triggers it.
    Event: Change
    Selection Type:     Items(s)
    Item(s): P1_ED     
    Condition: equal to     
    Value: D
    True Action 1
    Action: Disable
    Fire On Page Load: yes
    Selection Type: jQuery Selector
    jQuery Selector: input[id^="f"]
    True Action 2
    Action: Disable
    Fire On Page Load: yes
    Selection Type: jQuery Selector
    jQuery Selector: input[id="check-all-rows"]
    False Action 1
    Action: Enable
    Fire On Page Load: yes
    Selection Type: jQuery Selector
    jQuery Selector: input[id^="f"]
    False Action 2
    Action: Enable
    Fire On Page Load: yes
    Selection Type: jQuery Selector
    jQuery Selector: input[id="check-all-rows"]
    Regards, Garry

  • Update existing list item value in sharepoint using web service code

    I have the below code which I am trying to run for updating the list item value. "Settings" is the list name and the item in this list is having index of 1.
    Main()
            ListsSoapClient client = new ListsSoapClient();           
            client.ClientCredentials.Windows.ClientCredential = System.Net.CredentialCache.DefaultNetworkCredentials;
            client.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;
            string strListName = "Settings";          
            client.Open();          
            XElement listData = client.GetList(strListName);  
            string listID = listData.Attribute("ID").Value;
            string version = listData.Attribute("Version").Value;
            // string version = listData.Attribute("View").Value; Doesnt work
            // Method 1 : Make the call to SharePoint
            var listItems = client.GetListItems(strListName, null, null, null, null, null, null);
            List<XElement> results = listItems.Descendants().ToList();
            XElement updateItem = results[1];
            updateItem.SetAttributeValue("ows_Value", "value to update");
            client.UpdateListItems(strListName, updateItem); //Didnt work
            // Method 2 : Make the call to SharePoint
            string strBatch = "<Method ID='1' Cmd='Update'>" +
                            "<Field Name='ID'>1</Field>" +
                            "<Field Name='Title'>" + "999" + "</Field></Method>";
            XmlDocument xmlDoc = new System.Xml.XmlDocument();
            System.Xml.XmlElement elBatch = xmlDoc.CreateElement("Batch");
            //elBatch.SetAttribute("OnError","Continue"); //Not mandatory ?
            //elBatch.SetAttribute("ListVersion","1"); //Not mandatory ?
            //elBatch.SetAttribute("ViewName", "00F85842-35AD-4AED-8DF7-0F903FB850BE"); is it mandatory ?
            elBatch.InnerXml = strBatch;
            client.UpdateListItems(strListName, XmlElementToXelement(elBatch)); //doesnt work
            client.Close();
       public static XElement XmlElementToXelement(XmlElement e)
            return XElement.Parse(e.OuterXml);
    How do we get the ViewName value of the list using code ? why is it not mandatory in Method 2. At the end of the method1 i am getting the below exception.How do I fix this ?
     Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.

    you can get view name using below links:
    http://stackoverflow.com/questions/14857811/sharepoint-web-services-getlistitems-view-name
    http://www.a2zmenu.com/Blogs/SharePoint/Get-selected-view-name-of-a-SharePoint-List.aspx
    you can use SPList.getview method.

  • How to Get the required List Item values by using Where Clause

    I have two tables named "TAX_RULES","BILL"
    1. " Tax_Rules" (Sub_Head_Code,Tax_ID,Tax_Percentage)
    { While "Sub_Head_Code" field is unique,
    Tax_ID describes that there are two kinds of Tax_IDs based on Tax_percentage which is 6% for some Sub_Head_Codes and 3.5% for the remainng Sub_Head_Codes. I have given Tax_ID 1 for 6% and Tax_ID 2 for Sub_Head_codes having 3.5%. }
    2. "BILL" (Bill_ID,Sub_Head_Code,Tax_ID,Bill_Amount)
    {While "Bill_ID" describes unique Bill Identification Number,
    Sub_Head_Code and Tax_ID are behaving like composite foreign key from Tax_Rules table}
    I have design form for both tables.
    In BILL form i am trying to get values of Tax_ID from Tax_Rules table at run-time by using WHEN-NEW-FORM-INSTANCE.
    For this whenever i select a Sub_Head_Code in Bill Form, all the Tax_IDs that i have recorded against each Sub_Head_Code which is either 1 or 2 against 6% and 3.5% respectively.
    But I want that whenever i select a "Sub_Head_Code", Only that Tax_ID which is associated with that Sub_Head_Code ahould come in the LIST ITEM.
    I have used WHERE clause but that is useless.
    Following is the Code that i have applied in the WHE-NEW-ITEM-INSTANCE Trigger at FORM LEVEL
    <CODE>
    DECLARE
         rg_n1 VARCHAR2(40) :='TAX_ID';
         rg_idn1 RecordGroup;
         gc_idn1 GroupColumn;
         errcode NUMBER;
    BEGIN
         CLEAR_LIST('BILL.TAX_ID');
         rg_idn1 := Find_Group(rg_n1);
    IF      Id_Null(rg_idn1) then
              rg_idn1 := Create_Group(rg_n1);
         gc_idn1 := Add_Group_Column(rg_idn1,'EXPLAIN',CHAR_COLUMN,60);     
              gc_idn1 := Add_Group_Column(rg_idn1,'TAX_ID',CHAR_COLUMN,3);
         END IF;
         errcode := Populate_Group_With_Query(rg_idn1,'select TAX_ID,TAX_ID from TAX_RULES');
         POPULATE_LIST('BILL.TAX_ID',RG_IDn1);
    END;
    </CODE>

    In the Tax Rules table, you state:
    "Sub_Head_Code" field is unique
    In the Bill table, you state:
    Sub_Head_Code and Tax_ID are behaving like composite foreign key from Tax_Rules table
    If the Sub_Head_Code is unique, then it's acting as a primary key, so Sub_Head_Code and Tax_ID in the Bill table are not behaving like a composite foreign key. The Sub_Head_Code is a foreign key, and the Tax_ID is irrelevant as far as keys are concerned.
    It is not clear what it is you want to do.
    If you want to display the Tax_IDs from the Bill table when you select a Sub_Head_Code from the Tax_Rules table, then change your query to:
    select TAX_ID, TAX_ID from BILL where Sub_Head_Code = :Tax_Rules.Sub_Head_Code
    If you want to display the Tax_IDs from the Tax_Rules table when you select a Sub_Head_Code from the Bill table, then change your query to:
    select TAX_ID, TAX_ID from TAX_RULES where Sub_Head_Code = :Bill.Sub_Head_Code
    If this is not what you want, then clarify what it is you want to do. Don't say:
    "I want that whenever i select a "Sub_Head_Code", Only that Tax_ID which is associated with that Sub_Head_Code"
    because it is not clear what tables you are referring to.

  • How to refresh list item values before report is run?

    We have two SELECT LIST items (drop boxes) on our report. One SELECT LIST has values of "World Region" (e.g. NORTH AMERICA, SOUTH AMERICA, EUROPE, ASIA)
    the other SELECT LIST has values of "Subregion" (e.g. NORTHERN EUROPE, SOUTHERN EUROPE, SOUTHEAST ASIA etc...)
    The values in the Subregion list are dependent on the value that is chosen from the "World Region" List. Can someone tell up how to update the values in the Subregion list BEFORE we submit the page? We can get these values to update (via sql query) when the page is submitted but that is only happening after the report gets run- which is not what we want. We want the user to select a Region from one SELECT LIST and then see all the qualifying Subregions for that Region in the Subregion SELECT LIST. Only after both Region and Subregion have been selected do we want to run the report. Thank for any help on this.

    hey john--
    john) things like Scott's reference to "The name of the LOV Item". What does this really mean?
    raj) in htmldb there's a concept of items at the page and at the app level. page level items have ui component associated with them. in scott's explanation above, he's talking about using a page-level item with a "Display as" type of "select list w/submit" for your first select list. in that case, he's suggesting you have one select list item drive the values of another. when the self-submitting select list submits the page, it sets an htmldb built-in variable called :REQUEST to the name of the self-submitting select list item. in your follow-up post's example, that'd be "REGION_LIST". scott was explaining how you could control the functionality on your page by adding conditions to things like...
    :REQUEST = 'REGION_LIST'
    ...or using declarative Condition options like "Request = Expression 1" and then putting the string "REGION_LIST" in that Expression1 field. so in your case, you have a report region that you don't want displayed until the user's done selecting from your Subregion list. an easy way to handle that would be to add a hidden item (where "Display as" is set to "Hidden") to your page, for example :P1_LAST_REQUEST, to store the last value of :REQUEST. put a Computation on your page that populates :P1_LAST_REQUEST with :REQUEST each time the page is submitted. then put a Condition on your report region that makes it only render when :P1_LAST_REQUEST != 'REGION_LIST'. so this way your users can select a Region and have the page submit itself. the page will then redraw with the values of subregion list correctly populated (you'd presumably use :REGION_LIST in your subregion LOV query to achieve the filtered values) w/o your report region displayed. the user would then select a correct subregion and click some sort of "run my report" button. this time when the page redraws, :P1_LAST_REQUEST would be set so something other than "REGION_LIST" (it'd be set to whatever you named your "run my report button") and so your report region would display as desired.
    hope this helps,
    raj

  • How to change List item value

    Hi All,
    The scenario is like this....
    I have two list item Country and State.....Now when I select a specfic country from the list item.....corresponding state will come in the State list item....
    Plz Help me to solve the issue....
    Thanks in Advance.
    T.Halder

    Halder,
    In the WHEN-LIST-CHANGED trigger of the country list item write,
    DECLARE
         Num_Temp           NUMBER;
         RG_Group_ID RECORDGROUP;
    BEGIN     
         RG_Group_ID := CREATE_GROUP_FROM_QUERY('RG_STATE', 'SELECT STATE_NAME, STATE_CODE FROM STATE_TABLE WHERE COUNTRY_CODE = ''' || :CB_COUNTRY || '''');
         Num_Temp           := POPULATE_GROUP(RG_Group_ID);
         CLEAR_LIST('CB_STATE');
         POPULATE_LIST('CB_STATE', RG_Group_ID);
         :CB_MODULE := GET_LIST_ELEMENT_VALUE('CB_STATE', 1);
         DELETE_GROUP(RG_Group_ID);
    END;Replace the field names, table and and control name as per your requirement.
    Regards,
    Manu.
    If my response or the response of another was helpful or Correct, please mark it accordingly

  • SP Designer - Update list item value error

    Hi,
    I'm making holiday requests with SP designer, and my workflow works well, however, when the manager validation task is created, I would like to add the holiday request's details (such as start date, end date, Employee ID, etc).
    So I have a list called "Holiday request" and an associated task list where all the validation tasks are stored.
    What I tried was to use the "Update list item" function to update the Employee ID value (in the validation task column I created) with the holiday request's Employee ID value. So what I did was this :
    (I initially posted a picture but I cannot, apparently)
    The list I work on is the associated task list. I chose the field "Employee ID" and set the value to "Current item : Employee ID".
    In my lookup, I've set the associated content field and in the value : "Current Item:Title"
    I have also tried to use the Current Item:ID (which would be the Holiday request's ID), but it didn't work either. I've been testing a lot and wanted to know if you guys had any suggestions ?
    Thanks a lot.
    Cheers

    Below are steps need to performed to update custom fileds in task form
    1. Create custom task content type using SharePoint 2013 workflow task.
    2. Add your fields here (start date, end date, Employee ID etc).
    3. Make sure this custom task content type is associated with workflow task list.
    4. In the assign task activity change the Task content type to your custom task content type.
    5.From the single task activity properties uncheck "Wait for Task completion".
    The below screenshot i have updated Empid in task form with current list Item id. You can update them according to your requirement.
    Hope this helps.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Unseen user parameter data when it is based on list of values

    Hi All;
    i use oracle report builder version 6.0.8.8.3 on win98 platform and i have a silly problem.
    When i create a user parameter with list of values , the list does not display any data .
    When i select any empty row from the list the report runs correctly displaying the data filtered where the selected emty row indicating that the list contains data but it does not appear in the list.
    I feel that it is a bug in my version.
    thank you in advance.

    i discovered a new notice about this problem,
    when the data displayed is arabic ,it does not appear.
    when it is english ,it appears clearly.
    my nls_lang=american_america.ar8mswin1256 and i tried another nls_lang=american_america.ar8msawin and it does not work also.
    i tried to un check the hide first column property but both arabic & english data do not appear
    thank u for your concern

  • Calculate DropDown List items values

    I have 7 DDLists for the availability of the employees for 7 days the week.
    DD1, DD2, DD3, DD4, DD5, DD6, DD7
    The list items for all are the same:
    Day, Evening, Night, N/A(Not Available)
    How I can calculate  in a field  the Total Days of Availability
    and in a separate field Total Days N/A?
    Thank you

    Hi,
    A few things to correct
    1) You must use square brackets -- My Fault -- not sure how that one got past me!
              DDLday[i]
    2) DDLs can't have values the same for the items meaning change them to:
         0 = N/A, 1= Day, 2= Eve, 3= Nite
    3) You only need the 1 script --don't place script on the NumNA field--delete that whole script
    4) At the end of the script, you must reference the N/A Field correctly. You're not using the name you gave it--you're using the name I gave it so it can't find it.
         NumNA = notAvailable  //Either rename the NA field to NumNA  or change the script but putting the field name you're using
    5) Finally, I don't remember coming accross this before, but the script needs to have the last 2 lines switched. It seems to matter.
    var available = 0
    var notAvailable = 0
    for i = 0 upto 6 do
         if(DDLday[i] > "0")then    //square brackets
              available = available + 1
              continue
         else
              notAvailable = notAvailable + 1
              continue
         endif
    endfor
    NumNA = notAvailable     //NumNA is the other field
    $ = available                       // this must be the last line
    So, 2 of the problems were my fault.
    That should do it.
    Stephen

  • Filter List Item Values

    Hi,
    I am new to Oracle. Keeping in view the simple "EMP" table. I made a form that displays all the records in tabular form and the attribute "MGR" being displayed as "List Item". I am able to convert the "MGR" from Text Box to List Item and the values are being displayed properly and all the operations are sucesful.
    The problem is: I want to Filter the List Item against every row. I do not want the Name of the selected employee to be visible in List Box. As a person can not be his own Manager.
    Waiting for a reply,
    Aqeel.

    Table mh_category has 2 columns---
    column1 contains these values- a,a,a,a,b,b,c,c
    and column2 contains the corresponding values 1,2,3,4,5,6,7,8
    User sees A only once.
    when-new-item-instance trigger of list_item is calling a procedure shown below ....
    PROCEDURE list_type IS
         rg_name     varchar2(60) := 'RG';
         rg_id     RecordGroup;
         errcode     NUMBER;     
    BEGIN
         rg_id := Find_Group(rg_name);
         IF Id_Null(rg_id) THEN
              rg_id := Create_group_From_Query(rg_name,'SELECT distinct mh_type as column1, mh_type as column2 FROM mh_category order by 1');
         END IF;
         errcode := Populate_Group( rg_id );
         Clear_List ('mh_category.mh_type');
         Populate_List('mh_category.mh_type', rg_id);
    END;
    Edited by: 831050 on Jan 31, 2011 11:24 AM

  • How to branch 2 different pages on submit based on the item value.

    Hello Everybody,
    I am trying to branch from one page to 2 diiferent pages based on values on item value which I set in page 1 on submit.
    Create page processing (after submit) in page 35 wrote following plsql :
    begin
    CASE :p35_exempt_rad
    when 'ex' THEN
    :P38_TEST_MSG := 'yes';
    when 'nex' THEN
    :P38_TEST_MSG := 'no';
    else
    raise case_not_found;
    end case;
    end;
    Then created 2 conditional branch under page 35 as follow:
    Branch 1:
    target type: Page in this application
    page: 38
    condition type: Value of item in expression 1 = expression 2
    Expression 1 = :P38_TEST_MSG
    Expression 2 = 'yes'
    When Button Pressed = p35_submit
    Branch 2:
    target type: Page in this application
    page: 33
    condition type: Value of item in expression 1 = expression 2
    Expression 1 = :P38_TEST_MSG
    Expression 2 = 'no'
    When Button Pressed = p35_submit
    But on pressing submit, getting error msg: ERR-1777: Page 35 provided no page to branch to.
    Your help/ suggestion would be highly appreciated.
    Raj.

    I believe Expression 2 should not contain quotes. It should be:
    Then created 2 conditional branch under page 35 as follow:
    Branch 1:
    target type: Page in this application
    page: 38
    condition type: Value of item in expression 1 = expression 2
    Expression 1 = :P38_TEST_MSG
    Expression 2 = yes
    When Button Pressed = p35_submit
    Branch 2:
    target type: Page in this application
    page: 33
    condition type: Value of item in expression 1 = expression 2
    Expression 1 = :P38_TEST_MSG
    Expression 2 = no
    When Button Pressed = p35_submitRobert
    http://apexjscss.blogspot.com

  • Populating fields based on list box values

    I have created an application based off of a table and so the 1st page is the actual report and the 2nd page is the data entry form. I have changed the form elements (like text box to select list) etc.
    I need to have (2) text box fields populated based on the value from the 2nd select list box. I created a pl/sql page process that will check the value of the select list and assign values to the text boxes. This is triggered when a POPULATE button is pressed.
    When I select a truck number in the select list - nothing happens and the original select list values get reset back to original. There is another button used in order to insert the data so that's why I figured I needed to add another button to trigger the population of the text boxes from a table. Here is my pl/sql page process used to populate:
    BEGIN
    SELECT dr1_name, dr2_name
    INTO
    :P2_DRIVER_1, :P2_DRIVER_2
    FROM
    active_drivers a
    WHERE
    :P2_DRIVER_CODE = a.code;
    END;
    It is set to fire on submit - before computations and validations.
    Regards,
    Jeff

    Not sure if this is the best way but it works for me……
    Make P2_DRIVER_CODE be a form element of Select List with Submit
    Create 2 items, P2_DRVR1 and P2_DRVR2, of form element Hidden
    Edit the P2_DRIVER_1 item. In the source region enter :P2_DRVR1 in Post Calculation Computation.
    Edit the P2_DRIVER_2 item. In the source region enter :P2_DRVR2 in Post Calculation Computation.
    Create a page rendering computation for item: P2_DRVR1.
    Type: SQL Query
    Computation Point: Before Header
    Computation: SELECT dr1_name FROM active_drivers a WHERE a.code = :P2_DRIVER_CODE
    Create a page rendering computation for item: P2_DRVR2.
    Type: SQL Query
    Computation Point: Before Header
    Computation: SELECT dr2_name FROM active_drivers a WHERE a.code = :P2_DRIVER_CODE
    When an item is selected in P2_DRIVER_CODE the page will submit/refresh, causing the computations to be fired. P2_DRIVER_1 and P2_DRIVER_2 will be populated by the return of the queries in the computations respectively.
    P2_DRIVER_1 and P2_DRIVER_2 are still editable by the user (unless you define them as read only) but if you have another select list with submit on the form, if used, the page will refresh and the computation will run again overwriting what the user has entered.
    Suppose I want the user to be able to change the defaults and keep from losing them (changed back to default) in case another item submits/refreshes the page.
    Create a hidden item P2_DRIVER_CODE_CHANGE with the source of: Static Text. For the Default Value enter &P2_DRIVER_CODE. (include the period after &P2_DRIVER_CODE)
    Edit the P2_DRVR1 and P2_DRVR2 computations and in the Conditional Computations region set:
    Condition Type: Text in Expression 1 != Expression 2 (include &ITEM substitutions)
    Expression1: &P2_DRIVER_CODE.
    Expression2: &P2_DRIVER_CODE_CHANGE.
    Hope this works for you,
    Jeff

  • Change background color of textbox based on non-visible value

    Hello,
    I have a 10g master - detail form. I was wondering how can I change background color of text box (NAME) based on non-visivle item (MODIFIED_BY) value.
    So far, I have created two visual attributes and have put following code on "WHEN_NEW_BLOCK_INSTANCE" trigger
    if( :main.MODIFIED_BY = 'COCO') then
         SET_ITEM_PROPERTY('main.NAME',VISUAL_ATTRIBUTE,'VA_BLUE');
    else
         SET_ITEM_PROPERTY('main.NAME',VISUAL_ATTRIBUTE,'VA_RED');
    end if;
         But, it always goes to "ELSE" part and make RED color for all records. Could you please help me with this?
    Thanks.

    Got it.
    Post Query trigger on block
         if (:main.MODIFIED_BY ='COCO') then
              set_item_instance_property('main.NAME',current_record,visual_attribute,'VA_BLUE');
         else
              set_item_instance_property('main.NAME',current_record,visual_attribute,'VA_RED');
         end if;Thanks

  • Range from columns based on list of values

    Hi,
    I have a table that has a key_code and a alt_code like this
    with values like so.. (has 2 million records in 8.1.7 Database)
    KEY_CODE ALT_CODE
    0001     AA
    0001          AB
    0001          AF
    0001          G4
    0001          G5
    0001          G6
    0200          BB
    0200 BC
    0200 BD
    0200 Bx
    I'm struggling with the concept of how to create a range of these values.
    There is one problem I'm running into.
    The alt code must be in a valid code list to have a break in the range
    An example would be
    VALID ALT_CODES TABLE
    B1
    B2
    ZA
    ZB
    ZC
    ZH
    ZJ
    ZK
    WHAT I'M LOOKING FOR IS THE OUTPUT TO BE
    KEY_CODE          BEGRANGE               ENDRANGE
    10               B1                    B2
    10               ZA                    ZK
    20               ZA                    ZJ
    WHAT I'VE GOT SO FAR IS
    SOMETHING THAT LOOKS LIKE
    THE PROBLEM IS THAT THE VALID ALT_CODE LIST IS NOT SEQUENTIAL AND THERE ARE GAPS.
    SO IF, FOR EXAMPLE THERE IS NO CODE ZD IT WILL BREAK A RANGE ON IT THE VALUE BETWEEN ZC AND ZH
    WHEN I DON'T WANT IT TO.
    KEY_CODE          BEGRANGE               ENDRANGE
    10               B1                    B2
    10               ZA                    ZC
    10               ZH                    ZH
    10               ZJ                    ZK
    20               ZA                    ZC
    20               ZH                    ZH
    20               ZJ                    ZJ
    I'd be most grateful for your input.

    Ditto.
    And where the hell does this row come from (not to mention the 10s and 20s being totally different key codes from the first table)?
    KEY_CODE BEGRANGE ENDRANGE
    10 B1 B2
    10 ZA ZK
    20 ZA ZJ <-- ??

Maybe you are looking for

  • Discoverer Plus associate with the Oracle Application Server Infrastructure

    Hi Everyone, I just install the Oracle BI (v 10.1.2.0.2) into my 2003 server so I could use the Discoverer Plus and Viewer. This is a stand alone BI installation (I guess, I have little knowledge about Discoverer plus or Oracle AS). My question is ho

  • Sending iPod in for repair/replacement

    I am debating whether I should or not... Do I call apple first? If so, what's the number? (I'm in Canada and I think the closest place is in Toronto) Do I have to send anything with it? (bill, earbuds, usb cord, etc.) How long would I have to wait? C

  • How to Use Function_Loader_Inlay in SCM APO Version 4?

    Hi , I was going through the SE38 - Program - Function_Loader_Inlay , to check the possibilities of upload and download product/location combinations in SCM APO version of 4.0. But I am not able to use it as per the selection screen given. Please let

  • No symbol for tools.

    My tools suddenly stopped displaying the relevant symbol (circle for the brush, etc.) whenever I move it to cover the photo I want to manipulate. Photoshop 8 used to do the same thing.

  • Wrong value is passing from one form to a other form's parameter

    I am passing value from one form to another form using following code DECLARE      pl_id ParamList; pl_name VARCHAR2(10) := 'task_id'; BEGIN pl_id := Get_Parameter_List(pl_name); --destroy_parameter_list(pl_id); IF Id_Null(pl_id) THEN      null; ELSE