FRM-40502 unable to read list of values

Hi all
FRM-40502 unable to read list of values
am getting this error when i try to populate list of values for some employees only
The LOV query is as follows
Select dsm_code,dsm_desc,dsm_content from deschange_master
where dsm_orgn=:parameter.p_orgn
and (dsm_ctry =:parameter.p_ctry or :parameter.p_ctry is null)
and(dsm_loc =:parameter.p_loc or :parameter.p_loc is null)
and( dsm_oru =:parameter.p_oru or :parameter.p_oru is null)
and
((DSM_CODE  like '%PWI%' and DSM_CODE like '%INCR%')
and (select count(eih_emp_code)from employee_increment_header
where eih_emp_code =:edcd_emp_code and
to_date(eih_eff_date,'DD-MON-RR') = to_date(:desig_date,'DD-MON-RR'))=1)
or
((DSM_CODE not like '%PWI%' and DSM_CODE not like '%INCR%')
and (select count(eih_emp_code)from employee_increment_header
where eih_emp_code = :edcd_emp_code and
to_date(eih_eff_date,'DD-MON-RR') = to_date(:desig_date,'DD-MON-RR'))<>1)
order by dsm_code

Hi,
You have missed 1 equal sign in the last portion of the query. Check the below code. (Not tested)
Select dsm_code,dsm_desc,dsm_content from deschange_master
where dsm_orgn=:parameter.p_orgn
and (dsm_ctry =:parameter.p_ctry or :parameter.p_ctry is null)
and(dsm_loc =:parameter.p_loc or :parameter.p_loc is null)
and( dsm_oru =:parameter.p_oru or :parameter.p_oru is null)
and
((DSM_CODE  like '%PWI%' and DSM_CODE like '%INCR%')
and (select count(eih_emp_code)from employee_increment_header
where eih_emp_code =:edcd_emp_code and
to_date(eih_eff_date,'DD-MON-RR') = to_date(:desig_date,'DD-MON-RR'))=1)
or
((DSM_CODE not like '%PWI%' and DSM_CODE not like '%INCR%')
and (select count(eih_emp_code)from employee_increment_header
where eih_emp_code = :edcd_emp_code and
to_date(eih_eff_date,'DD-MON-RR') = to_date(:desig_date,'DD-MON-RR'))=1)
order by dsm_codeRegards,
Manu.

Similar Messages

  • Frm-40502: oracle error: unable to read list of values

    Hi All,
    I am personalizing the assignment form, where we need to restrict the JOB LOV based on Organization value.
    In Forms Personalization we are creating the record group from query and attaching to Job field.
    The query is,
    SELECT DISTINCT j.NAME, DECODE (1, 2, 1, NULL) c_valid_job_flag,
    j.job_id job_id
    FROM per_jobs_v j
    WHERE j.business_group_id + 0 = :CTL_GLOBALS.BUSINESS_GROUP_ID
    AND j.date_from <= :CTL_GLOBALS.SESSION_DATE
    AND ( (j.date_to IS NULL)
    OR (j.date_to >= :CTL_GLOBALS.SESSION_DATE)
    ORDER BY j.NAME
    When we use this query, we are getting the error "frm-40502: oracle error: unable to read list of values"
    If i replace the bind variable with values we are not getting the error and its working fine.
    Replace query:
    SELECT DISTINCT j.NAME, DECODE (1, 2, 1, NULL) c_valid_job_flag,
    j.job_id job_id
    FROM per_jobs_v j
    WHERE j.business_group_id + 0 = 202
    AND j.date_from <= TRUNC(SYSDATE)
    AND ( (j.date_to IS NULL)
    OR (j.date_to >= TRUNC(SYSDATE))
    ORDER BY j.NAME
    how to use bind variables (Block.field) here? We are getting this error only when using the bind variable in the query.
    Please share your ideas.
    Thanks.

    Hi;
    What is your EBS version? There are 96 docs avaliable about similar error message. I suggest use metalink for your issue
    You can also check:
    FRM-40502: Oracle Error: Unable To Read List Of Values [ID 1161404.1]
    Frm-40502: Oracle Error: Unable To Read List Of Values. [ID 351931.1]
    FRM 40502: Oracle Error:Unable to Read List of Values [ID 179162.1]
    Regard
    Helios

  • Forms Personalization - FRM-40502: ORACLE error: unable to read list of val

    Hi,
    I am using Forms Personalization to create an LOV using builtin. In the Builtin, I have put the sql query under create record group from query. In the query, when I hardcode a value, in a where condition, the LOV works fine but when I replace the hardcoded value with :block.field value, it gives the error, FRM-40502: ORACLE error: unable to read list of values. Below is the part of the sql query where I am facing this issue.
    "WHERE related_customer_id = :ORDER.INVOICE_TO_CUSTOMER_ID"
    Please get back to me if anyone has faced similar problem.
    Thanks all in advance,
    Regards,
    AN

    Please post a new thread for each issue. Tacking onto a 2 year old post is generally a bad idea.
    Forms personalization is a feature in Oracle E+Biz Suite and as such you should post your question in this forum:
    OA Framework

  • Unable to read checkbox tag value in workshop

    I'm trying to embed a repeater tag in a form, the JSP code is, the requirement is to get a list of records and display them to the user. The user then has to select a particular row of values and this is sent back to the database. I am able to display all the rows correctly from the database, but when I put the check box on my jsp, i am unable to get the proper value of the checkbox to determine which row has been selected so that I can post those values to the database.
    I am trying to use a check box within a repeater tag, but even though I have a boolean[] varible defined in my form bean I am unable to get the form bean value for each row.
    my jsp looks as follows
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
    <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
    <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
    <netui:html>
    <head>
    <title>
    Peripheral Data available in Arbor
    </title>
    </head>
    <body>
    <netui:image src="resources/images/verio_logo.gif"/>
    <netui:image src="resources/images/about_hd.jpg"/>
    <h2>Peripheral Data available in Arbor</h2>
    <netui:form action="updatePeripheralData">
    <netui-data:callPageFlow method="getPeripheralDataArrayList" resultId="peripheralDataList"/>
    <netui-data:repeater dataSource="{pageFlow.peripheralDataList}">
    <netui-data:repeaterHeader>
    <table border="1">
    <tr>
    <td><b>Select</b></td>
    <td><b>Arbor Description</b></td>
    <td><b>Arbor Id</b></td>
    <td><b>Universal Id</b></td>
    <td><b>Revenue Type</b></td>
    <td><b>Equipment Type</b></td>
    <td><b>Journal Code</b></td>
    <td><b>Tax Group</b></td>
    </tr>
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <tr>
    <td>
    <netui:checkBox defaultValue="{container.item.dataSelected}" dataSource="{actionForm.dataSelected}"/>
    </td>
    <td>
    <netui:label value="{container.item.prod_description}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.prod_description}" dataSource="{actionForm.productDescription}"/>
    </td>
    <td>
    <netui:label value="{container.item.application_prod_id}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.application_prod_id}" dataSource="{actionForm.productId}"/>
    </td>
    <td>
    <netui:label value="{container.item.universal_prod_id}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.universal_prod_id}" dataSource="{actionForm.universalProductId}"/>
    </td>
    <td>
    <netui:label value="{container.item.revenue_type_code}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.revenue_type_code}" dataSource="{actionForm.revenueType}"/>
    </td>
    <td>
    <netui:label value="{container.item.equip_type_code}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.equip_type_code}" dataSource="{actionForm.equipmentType}"/>
    </td>
    <td>
    <netui:label value="{container.item.gl_code}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.gl_code}" dataSource="{actionForm.glCode}"/>
    </td>
    <td>
    <netui:label value="{container.item.tax_category_id}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.tax_category_id}" dataSource="{actionForm.taxCategory}"/>
    </td>
    </tr>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></table></netui-data:repeaterFooter>
    </netui-data:repeater>
    <netui:button value="Add Peripheral Data" type="submit"/>
    </netui:form>
    </body>
    </netui:html>
    I am not sure why I am unable to pass my checkbox value to my boolean variable.
    Please help.
    Thanks
    Bobby.

    1. Add your list (getPeripheralDataArrayList) as a property of the FormBean.
    2. Set the repeater dataSource to the list in the FormBean.
    3. Set he CheckBox dataSource="{container.item.dataSelected}", as well as all other members in the lists object.
    4. In the controller iterate through the list to find the row selected when the form is submitted.
    Hope this helps...

  • Unable to read the total value.

    Hi guys,
    I am able to get the total for alv table column.. but i want to display the total value  in some other text view field.
    In order to do that... first i have to read the total value, and have to set the same to text view field,
    total value is of type   ( DATA: LV_AGGR_RULE TYPE REF TO CL_SALV_WD_AGGR_RULE. )
    but my text view field attribute is of STRING TYPE.
    So am getting conversion error. Pleas help me in this.
    Regards
    Farooq
    Edited by: farooq basha on Jun 13, 2011 12:52 PM

    Hi ,
    Try to loop your internal table on the column "Amount" and make a sum for that particular column, u will get the required sum Amount..
    Thanks
    Aisurya

  • Unable to read list price in CRM order

    Dear Experts
    i have a scenario where my client maintained new pricing procedure for which he has maintained a list price?(ZPRC) by using reference condition type (PR00) in r/3
    i runned all customizing objects relating to pricing and even runned arequest for  dnl_cond_a004 all have been succeslfully downloaded but i am
    unable to find condition record for list price(ZPRC) when i am trying to Create an order,but i can  able to  enter the condition type(ZPRC) manually
    couldyou tell me what could be the problem why condition types(ZPRC) are not picked automatically.
    Thanks & Regards
    V.srinivas

    Hi V.srinivas,
                      Check for the Access Sequence of your Pricing in the Order,
    In the Accesses Tab in Your Order you can see how the Pricing is Determined and the Accesses that are used to Determine the Pricing Condition.
    Check for your Pricing Procedure and the Condition Accesses that you have used for the Pricing Conditions to be Determined.Check the Access Sequence of your Condition Access which determines the Pricing from Price List Ensure it Contains the Table Name "SAP155" This is the Table for the Price List Determination.
    I doubt that your Condition Type is not able to Find the Price Record for the Price List for the Article and so it is not Appearing in the Order::Check for the Condition Records have been Downloaded in the CRM Table for Price List "CNCCRMPRSAP155" and then try to sort why the Priceses arenot Appearing in the Order.
    Also for Manual Entry for a Condition Record you need to Select the Option "Manual Entry Has Priority"
    in the Tab Changes for the Condition Record in Condition Types.
    Hope it Answered your Query..
    Revert Back for Clarifications if Any..
    Thanks and Regards,
    RK.

  • Unable to read edited cell values from table view 'LineEDIT' mode

    Hello Gurus,
    Need urgent help on Cell binding - Here's what I have:
    I have a bsp with one tableview for users to update shelf quantity.
    Selection mode is <b>Lineedit</b>. I used this only bcos in this I need not select a row to update it - let me know if this is wrong.
    Our users do not like to click on the row to select and edit it! I am not getting the edited values from the tableview.
    Although I am using a contoller and view, it's not really an MVC. Can someone please guide me on this?
    <b>
    code in IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS
    append initial line to p_column_definitions assigning <def>.
    <def>-columnname = 'SHLQTY'.
    <def>-title = 'Shelf Qty'.
    <def>-EDIT = 'X'.
    Code in IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START.
    p_replacement_bee = CL_HTMLB_INPUTFIELD=>FACTORY(
                                id        = p_cell_id
    *                            type      = 'DATE'
    *                            showhelp  = 'TRUE'
    *                            type       = 'QUAN'
                                VALUE      = val
                                cellvalue = 'TRUE'
                                _VALUE = P_CELL_BINDING )
    </b>
    I do not see anything coming in <b>P_CELL_BINDING</b> .
    Tableview in layout
    <b>
    <htmlb:tableView id                    = "result"
                           design                = "STANDARD"
                           headerText            = "Header Text"
                           filter                = "SERVER"
                           onNavigate            = "onMyNavigate"
                           selectionMode         = "lineedit"
                           emptyTableText        = "No records found!"
                           onRowSelection        = "onMyRowSelection"
                           allRowsEditable       = "TRUE"
                           selectedRowKeyTable   = "<%= rkTab %>"
                           table                 = "<%= datatab %>"
                           selectedRowIndexTable = "<%= sRTable %>"
                           iterator              = "<%= iterator %>"
                           visibleRowCount       = "10" >
          </htmlb:tableView>
    </b>
    I update an internal table Datatab with all the values I require.
    Any idea why the cell binding id not working?
    Many thanks in advance.
    Mike

    Hi Mike,
    databinding is not possible with application classes. There are just a nice way to handle "session variables". You can use them with MVC as well.
    Before MVC there was flow logic. Single formfield-values are receved e.g. when declared as page parameters. Values from tableViews are received e.g. in OnInputProcessing" by fetching the TV-Object from HTMLB_MANAGER and then calling methods like "GET_CELL_VALUE".
    DATA: tv          type ref to CL_HTMLB_TABLEVIEW,
          table_event type ref to CL_HTMLB_EVENT_TABLEVIEW.
    tv ?= CL_HTMLB_MANAGER=>GET_DATA( request = request
                                      name    = 'tableView'
                                      id      = 'mytv1' ).
    table_event = tv->data.
    myValue = table_event->get_cell_value( row_index  = 1 column_index = 1 ).
    good luck,
    stefan.

  • List of Values does not works

    Hi
    After applying group level security in business view I am unable to use list of values.
    I am using Crystal Reports XI Release 2.
    Any ideas why this occurs.
    Wini

    Hi Wini
    As you have applied the group level security or rights to the users in Business view you may come across 'list of values failure' error.
    Instead I would suggest you to remove the rights from the Buisness View and give the rights to the users in the Enterprise.
    Hope this helps you.
    Please let us know if you have any further queries.
    Regards
    Ashwini Yadav

  • We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    Already gone through following three notes but didn't found resolution.
    APXPAWKB: FRM-41830 When Clicking on Payment Document LOV (Doc ID 1081305.1)
    R12: APXPAWKB: Payment Document Lov Is Empty When Entering A Payment (Doc ID 857587.1)
    R12: Payment Workbench Error: FRM-41830 List Of Values Contains No Entries (APXPAWKB.FMB) (Doc ID 1323875.1)

  • When I am trying to create an organization in HRMS, and clicking on Type field, it is showing me "Frm-41830: List of values contains no entries". Please suggest me what is the solution

    When I am trying to create an organization in HRMS, and clicking on Type field, it is showing me "Frm-41830: List of values contains no entries". Please suggest me what is the solution

    Hi,
    Type is one part of Org creation....
    Optionally, select an organization type in the Type field.
    Organization types do not classify your organization, you use them for reporting purposes only. The type may identify the function an organization performs, such as Administration or Service, or the level of each organization in your enterprise, such as Division, Department or Cost Center. You create the organization types you require by entering values for the Lookup Type ORG_TYPE.
    Regards:
    Shahzad M. Saleem (mark this answer as helpful if it helps u)

  • Read more than one attribute from list of values record

    Hi,
    I am using Jdev 11.1.1.3.0.
    I have the following situation,
    have defined a read only view (schools information) which is a list of values for schools information ( schoolId, school name and school code) , I have to execute Query for that view as an Invoke Action in the executable s of the page,
    I need three attributes (A, B, C) in another view (name it student's school) to be set to the school information corresponding to a school chosen from a SelectOneChoice List
    I could not define the schools information as LOV for the attributes in the student's school, as I have to execute it in the executable s,
    I have an Iterator for the schools Information on the page and, bound the attribute A (from the student's school) SelectOneChoice as list to the school name (from school Information) , and then tried to read the current row of the schools Information Iterator like this inside a bean:
       Row  tempRow = getIteratorBinding("CmnLookupPrevSchoolRegView1Iterator").getCurrentRow();
       currStdPrevSchoolRow.setAttribute("B", tempRow.getAttribute("SchoolId"));
       currStdPrevSchoolRow.setAttribute("C", tempRow.getAttribute("SchoolCode"));but referring to the data saved in the DB, the values stored for the attributes B and C are not corresponding to the chosen school name , but corresponding to the first row of the iterator. ( not the current chosen)
    is there any suggestions, to have another approach to connect all the three attributes to the corresponding chosen values.
    or maybe it is just some properties for the Iterators,
    thanks in advance
    best regards,

    Hi,
    Have a look here: http://blogs.oracle.com/jdevotnharvest/2010/12/reading_the_selected_value_of_an_adf_bound_select_list_in_java.html
    If you read from a list binding then you get the row value from there as well - not from the iterator as lists don't change the current row
    Frank

  • How to read the selected value of a dropdown list box

    Hello,
    I have 2 custom fields which are of type dropdown list on Accounts(CRMM_ACCOUNT) PCUI application details tab.I need to read the selected value of first dropdown list item,based on that second dropdown list will be populated.
    I know where to populate the dropdown list box,it is in FILL_DROPDOWN_LISTBOX.
    I dont know how to trap the selection made on dropdown list.
    PLease guide me on how to trap the dropdown list field selection value.
    Thanks in advance.
    Thirumala.

    Hello,
    Check what is done in standard for the fielf REGION which is inked to the country.
    Otherwise, you can do the following :
    - in field group customizing, for field 1, flag the 'send request' flag. So, when you change the value in this field via the dropdown, the MAC methods are immediately called.
    - Put the new value in a global variable (GV).
    - in the fill_dropdown_listbox method, get the value from this GV and based on it, filter the values for the dropdown of field 2.
    Hope this will help you,
    Regards,
    Frederic

  • How to read list item and display Title and on click hyperlink as value by javascript /jquery

    on newform.aspx just above the top of cancel button I want to put 1 hyperlink "Help"
    but I want to do this by script/jquery by reading my configuration list where 1 column is TITLE and other is- URL
    in TITLE column will write "Help" and in URL column  I will write
    http://portal1234/sites/sudha/MyHelppage.aspx
    so script should read Title and display Help--->1st part
    Script should read Value column and on click of help-(display link) the respective url should be open in new window.-->second part
    Please let me know reference code for adding anchor tag dynamically by reading from list
    I can see hyperlink near cancel button-
    $(document).ready(function(){
    var HelpLinkhtml ='<a href="#" text="Help">Help</a>';
    var position =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    now for reading from list I am trying below script-
    $(document).ready(function() {
        GetHelpLinkFromConfigList();
    function GetHelpLinkFromConfigList()
     //The Web Service method we are calling, to read list items we use 'GetListItems'
     var method = "GetListItems";
     //The display name of the list we are reading data from
     var list = "configurationList";
     //We need to identify the fields we want to return. In this instance, we want the Title,Value fields
     //from the Configuration List. You can see here that we are using the internal field names.
     var fieldsToRead = "<ViewFields>"+"<FieldRef Name='Title' />"+"<FieldRef Name='Value' />"+"</ViewFields>";
     //comment
     var query = "<Query>" +
                            "<Where>" +
                                "<Neq>" +
                                    "<FieldRef Name='Title'/><Value Type='Text'>Help</Value>"
    +
                                "</Neq>" +
                            "</Where>" +
                            "<OrderBy>" +
                                "<FieldRef Name='Title'/>" +
                            "</OrderBy>" +
                        "</Query>";
     $().SPServices(
     operation: method,
        async: false,
        listName: list,
        CAMLViewFields: fieldsToRead,
        CAMLQuery: query,
        completefunc: function (xData, Status) {
        $(xData.responseXML).SPFilterNode("z:row").each(function() {
        var displayname = ($(this).attr("ows_Title"));
        var UrlValue = ($(this).attr("ows_Value")).split(",")[0];
        AddRowToSharepointTable(displayname,UrlValue)
    function AddRowToSharepointTable(displayname,UrlValue)
        $("#NDRTable").append("<tr align='Middle'>" +
                                    "<td><a href='" +UrlValue+ "'>+displayname+</a></td>"
    +
                                   "</tr>");
    <table id="NDRTable"></table>
    Thanks :)
    sudhanshu sharma Do good and cast it into river :)

    Hi,
    From your description, you want to add a help link(read data from other list) into new form page.
    The following code for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(AddHelpLink, "sp.js");
    function AddHelpLink() {
    var context = new SP.ClientContext.get_current();
    var list= context.get_web().get_lists().getByTitle("configurationList");
    var camlQuery= new SP.CamlQuery();
    camlQuery.set_viewXml("<View><Query><Where><Eq><FieldRef Name='Title'/><Value Type='Text'>Help</Value></Eq></Where></Query></View>");
    this.listItems = list.getItems(camlQuery);
    context.load(this.listItems,'Include(Title,URL)');
    context.executeQueryAsync(function(){
    var ListEnumerator = listItems.getEnumerator();
    while(ListEnumerator.moveNext())
    var currentItem = ListEnumerator.get_current();
    var title=currentItem.get_item("Title");
    var url=currentItem.get_item("URL").get_url();
    var HelpLinkhtml ='<a href="'+url+'">'+title+'</a>';
    $("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    },function(sender,args){
    alert(args.get_message());
    </script>
    Result:
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Unable to read values populated using Java Script

    hi Experts,
    we generated a BSP Page through some SPRO setting it contains HTML and ABAP scripts.
    in that we have 2 select - option - dropdowns. i first one is being populated by ABAP script. second one is being populated by java script.
    the BSP page is working fine. but i am unable to read the second dropdown value using a class method
    we call this class method in the BADI : CRM_SERVICE_WEBREQ. method : FORM_ON_EVENT
      CALL METHOD cl_uxs_xml_services=>get_value_via_xpath
      EXPORTING
        ir_node                   = ir_form_data
        id_xpath                  = 'secondChoice'
         id_xpath_namespace_uri    =
         id_xpath_namespace_prefix =
         id_multi_namespace        =
      RECEIVING
        rd_value                  = lv_value
      EXCEPTIONS
        not_found                 = 1
        not_unique                = 2
        OTHERS                    = 3
    but i am able to read other fields in the page. i am not sure but i changed the id and name on the second drop down.
    pls let me know how to read the value for second drop down.

    Hi Ben Grice,
    ASP.NET questions should be post in
    ASP.NET forums. You can get better help there.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I am unable to add to my bookmarks and my reading list on my iPhone.

    I am unable to add to my bookmarks and my reading list on my iPhone 4S. I was able to perform these two functions yesterday. In addition my bookmarks have been deleted. Any help would be greatly appreciated.
    Thanks in advance

    Make a master list, preferably on iCloud.
    You should be able to move contacts around via iTunes.
    Just drop the vCards into the Address Book and wait for the sync to finish.

Maybe you are looking for

  • Firefox window will not open - firefox.exe closes by itself

    Hello, I have a problem with Firefox not being able to start when I double-click the icon on my desktop. I'm not sure what version I was using before, but I uninstalled whatever version I had before and installed the latest version (14.0.1), with no

  • *Help* Spry Horizontal Menu Bar wont show and cant seem to center it with rest of content

    Hey, I am a newbie to Dreamweaver and was wondering if someone can help me with the Spry Horizontal Menu Bar.... http://www.djdanmatthews.net 1) After moving mouse over diffrent areas of Spry menu bar the text seems to disapear or not show up? 2) I c

  • Hidden fields does not appear as usual???

    Hi! My form does not work today as it used to... I have show/hide fields on certain values, and it does not work today. The hidden fields should appear when I choose anything else then "other" from the dropbox. Could someone please take a look at my

  • ASM not starting up

    ASM is not starting up on couple of nodes with error Maximum Tranmission Unit (mtu) of the ether adapter is different on the node running instance 3, and this node. Ether adapters connecting the cluster nodes must be configured with identical mtu on

  • Control indicators for controlling area donot exist"

    I have created one po order for which I am getting the error as"control indicators for controlling area donot exist" Can some body tell me me how to solve ths issue and wt settings needs to be done in IMG Regards Chitra