Recordset data 'not retrieving'

Hi,
     I'm following a 'Building your first dynamic website' tutorial
(Tutorial: http://192.150.8.60/devnet/dreamweaver/articles/first_dynamic_site_pt1.html)
for which all Dreamweaver files are supplied, and when I get to creating a 'Recordset' and selecting the required table
the table data (which has been supplied/created) doesn't appear.
(Recordset section: http://192.150.8.60/devnet/dreamweaver/articles/first_dynamic_site_pt2_03.html)
When I click the test button I get a 'MySQL Error 1142 – SELECT command denied to user 'user'@'localhost' for table 'tablename'.
However when I click the 'define' button, the connections for the site dialogue box appears and when I edit the table and test it through the MySQL Connection dialogue I get a 'Connection successful' message.
I assume it's to do with permissions, of sorts?
Any guidance greatly appreciated,
Many thanks in advance...

Hi
The error is caused by the user name for the database not having the permissions set correctly.
Log into your mysql database admin program using the master user, user name and password and set the privileges for the user you are using in the dreamweaver connection.
PZ
www.pziecina.com

Similar Messages

  • Data not retrieved in WebI with Measures calculated in Universe on SAPBW

    Hi,
    Pls share if such error is faced anywhere else and if there is any solution to this.
    Environment: SAP BI 7.01 and SAP BO XI 3.1 SP2 FP2.9
    Universe has calculated measures.
    Problem: No data is fetched by WebI when both direct measures (straight from BEx) and calculated measures are used.
    However, data is correctly retrieved if either only the direct measures are used or calculated measures are used.
    Thanks!

    Good CKF parsed for you @ Universe.
    If possible you can create Variable @WebI :
    Var=[Grs Sales] + [Returns]
    So that you can use it document (20 reports)
    This way you can solves the issue as of now.
    Gracias...!!

  • IMac HD replaced due to fault, old data not retrieved - how do i re-instal CS5? my disc wont work

    Hi, I have an apple iMac desktop, my HD went on it so i had it replaced. The technicians were unable to retrieve the data off the old HD which had my CS5 Suite on it. how do i put it back on my computer? Cheers, katie

    Hi katiepivot
    Please Refer : http://prodesigntools.com/all-adobe-cs5-direct-download-links.html
    Follow the instructions on the page to start your download.. Use your serial key to activate it
    ~Mandy

  • Data not retrieved although it exist in the database

    Hi
    I have the following sql statements. Am supposed to find the no. of lots per dept
    and the percentage which is from the same table.
    Table is PWRKF2MV.
    The problem is that when one of the query (eq. from c) has no data the following
    query will result in no data too.
    And if one of the query has no data, the totqty will result in 0 too.
    Appreciate any help. Thx
    SQL statement: -
    select a.ppdept dpt, count(a.porqty) lot1, (count(a.porqty)/nvl(i.totqty,1))*100 tot1,
    b.dept dpt2, nvl(b.lot2,1) lot2, (nvl(b.lot2,1)/nvl(i.totqty,1))*100 tot2, c.dept3 dpt3, nvl(c.lot3,1) lot3, (nvl(c.lot3,1)/nvl(i.totqty,1))*100 tot3,
         d.dept4 dpt4, nvl(d.lot4,1) lot4, (nvl(d.lot4,1)/nvl(i.totqty,1))*100 tot4, e.dept5 dpt5, nvl(e.lot5,1) lot5, (nvl(e.lot5,1)/nvl(i.totqty,1))*100 tot5,
         f.dept6 dpt6, nvl(f.lot6,1) lot6, (nvl(f.lot6,1)/nvl(i.totqty,1))*100 tot6, g.dept7 dpt7, nvl(g.lot7,1) lot7, (nvl(g.lot7,1)/nvl(i.totqty,1))*100 tot7,
         h.dept8 dpt8, nvl(h.lot8,1) lot8, (nvl(h.lot8,1)/nvl(i.totqty,1))*100 tot8, i.dept9, nvl(i.totqty,0) totqty
    from pwrkf2mv a,
    (select ppdept dept, count(porqty) lot2, sum(porqty) tot2
    from pwrkf2mv
    where pafidt between :p_startdate and :p_enddate
    and rtrim(ppdept) = nvl(rtrim(:p_dept),rtrim(ppdept))
    and prodno = nvl(rtrim(:p_prodno),prodno)
    and ppname like '%'||:p_proddesc||'%'
    and porqty between 26 and 50
    group by ppdept) b,
    (select ppdept dept3, count(porqty) lot3, sum(porqty) tot3
    from pwrkf2mv
    where pafidt between :p_startdate and :p_enddate
    and rtrim(ppdept) = nvl(rtrim(:p_dept),rtrim(ppdept))
    and prodno = nvl(rtrim(:p_prodno),prodno)
    and ppname like '%'||:p_proddesc||'%'
    and porqty between 51 and 75
    group by ppdept) c,
    (select ppdept dept4, count(porqty) lot4, sum(porqty) tot4
    from pwrkf2mv
    where pafidt between :p_startdate and :p_enddate
    and rtrim(ppdept) = nvl(rtrim(:p_dept),rtrim(ppdept))
    and prodno = nvl(rtrim(:p_prodno),prodno)
    and ppname like '%'||:p_proddesc||'%'
    and porqty between 76 and 100
    group by ppdept) d,
    (select ppdept dept5, count(porqty) lot5, sum(porqty) tot5
    from pwrkf2mv
    where pafidt between :p_startdate and :p_enddate
    and rtrim(ppdept) = nvl(rtrim(:p_dept),rtrim(ppdept))
    and prodno = nvl(rtrim(:p_prodno),prodno)
    and ppname like '%'||:p_proddesc||'%'
    and porqty between 101 and 200
    group by ppdept) e,
    (select ppdept dept6, count(porqty) lot6, sum(porqty) tot6
    from pwrkf2mv
    where pafidt between :p_startdate and :p_enddate
    and rtrim(ppdept) = nvl(rtrim(:p_dept),rtrim(ppdept))
    and prodno = nvl(rtrim(:p_prodno),prodno)
    and ppname like '%'||:p_proddesc||'%'
    and porqty between 201 and 500
    group by ppdept) f,
    (select ppdept dept7, count(porqty) lot7, sum(porqty) tot7
    from pwrkf2mv
    where pafidt between :p_startdate and :p_enddate
    and rtrim(ppdept) = nvl(rtrim(:p_dept),rtrim(ppdept))
    and prodno = nvl(rtrim(:p_prodno),prodno)
    and ppname like '%'||:p_proddesc||'%'
    and porqty between 501 and 1000
    group by ppdept) g,
    (select ppdept dept8, count(porqty) lot8, sum(porqty) tot8
    from pwrkf2mv
    where pafidt between :p_startdate and :p_enddate
    and rtrim(ppdept) = nvl(rtrim(:p_dept),rtrim(ppdept))
    and prodno = nvl(rtrim(:p_prodno),prodno)
    and ppname like '%'||:p_proddesc||'%'
    and porqty > 1000
    group by ppdept) h,     
    (select ppdept dept9, nvl(count(porqty),1) totqty
    from pwrkf2mv
    where pafidt between :p_startdate and :p_enddate
    and rtrim(ppdept) = nvl(rtrim(:p_dept),rtrim(ppdept))
    and prodno = nvl(rtrim(:p_prodno),prodno)
    and ppname like '%'||:p_proddesc||'%'
    group by ppdept) i     
    where a.pafidt between :p_startdate and :p_enddate          
    and a.ppdept = b.dept(+)
         and b.dept = c.dept3(+)
         and c.dept3 = d.dept4(+)
         and d.dept4 = e.dept5(+)
         and e.dept5 = f.dept6(+)
         and f.dept6 = g.dept7(+)
         and g.dept7 = h.dept8(+)
         and h.dept8 = i.dept9(+)
    and prodno = nvl(rtrim(:p_prodno),a.prodno)
    and ppname like '%'||:p_proddesc||'%'
    and a.porqty between 0 and 25
    group by a.ppdept, b.dept, b.lot2, b.tot2, c.dept3, c.lot3, c.tot3,
         d.dept4, d.lot4, d.tot4, e.dept5, e.lot5, e.tot5,
         f.dept6, f.lot6, f.tot6, g.dept7, g.lot7, g.tot7,
         h.dept8, h.lot8, h.tot8, i.dept9, i.totqty
    Data sample: -
    A-CSFA      1.00     100.00          0.00     0.00          0.00     0.00          0.00     0.00          0.00     0.00          0.00     0.00          0.00     0.00          0.00     0.00          0.00
    A-DIGITA     118.00     12.85     A-DIGITA     244.00     26.58     A-DIGITA     12.00     1.31     A-DIGITA     198.00     21.57     A-DIGITA     106.00     11.55     A-DIGITA     223.00     24.29     A-DIGITA     16.00     1.74     A-DIGITA     1.00     0.11     A-DIGITA     918.00

    Hi
    I have added the THEN. It is still the same.
    SQL> ED
    Wrote file afiedt.buf
    1 SELECT ppdept,
    2 count(lot1) lot1, (count(lot1) / sum(lot1)) * 100 tot1,
    3 count(lot2) lot2, (count(lot2) / sum(lot2)) * 100 tot2,
    4 count(lot3) lot3, (count(lot3) / sum(lot3)) * 100 tot3,
    5 count(lot4) lot4, (count(lot4) / sum(lot4)) * 100 tot4,
    6 count(lot5) lot5, (count(lot5) / sum(lot5)) * 100 tot5,
    7 count(lot6) lot6, (count(lot6) / sum(lot6)) * 100 tot6,
    8 count(lot7) lot7, (count(lot7) / sum(lot7)) * 100 tot7,
    9 count(lot8) lot8, (count(lot8) / sum(lot8)) * 100 tot8,
    10 FROM
    11 (
    12 SELECT ppdept,
    13 CASE WHEN porqty BETWEEN 0 AND 25 THEN
    14 porqty
    15 ELSE
    16 0
    17 END lot1,
    18 CASE WHEN porqty BETWEEN 26 AND 50 THEN
    19 porqty
    20 ELSE
    21 0
    22 END lot2,
    23 CASE WHEN porqty BETWEEN 51 AND 75 THEN
    24 porqty
    25 ELSE
    26 0
    27 END lot3,
    28 CASE WHEN porqty BETWEEN 76 AND 100 THEN
    29 porqty
    30 ELSE
    31 0
    32 END lot4,
    33 CASE WHEN porqty BETWEEN 101 AND 200 THEN
    34 porqty
    35 ELSE
    36 0
    37 END lot5,
    38 CASE WHEN porqty BETWEEN 201 AND 500 THEN
    39 porqty
    40 ELSE
    41 0
    42 END lot6,
    43 CASE WHEN porqty BETWEEN 501 AND 1000 THEN
    44 porqty
    45 ELSE
    46 0
    47 END lot7,
    48 CASE WHEN porqty > 1000 THEN
    49 porqty
    50 ELSE
    51 0
    52 END lot8,
    53 porqty
    54 FROM pwrkf2mv
    55 WHERE pafidt BETWEEN &p_startdate AND &p_enddate
    56 AND rtrim(ppdept) = nvl(rtrim(&p_dept), rtrim(ppdept))
    57 AND prodno = nvl(rtrim(&p_prodno), prodno)
    58 AND ppname LIKE '%' || &p_proddesc || '%'
    59 )
    60* GROUP BY ppdept
    SQL> /
    Enter value for p_startdate: 20050801
    Enter value for p_enddate: 20051015
    old 55: WHERE pafidt BETWEEN &p_startdate AND &p_enddate
    new 55: WHERE pafidt BETWEEN 20050801 AND 20051015
    Enter value for p_dept:
    old 56: AND rtrim(ppdept) = nvl(rtrim(&p_dept), rtrim(ppdept))
    new 56: AND rtrim(ppdept) = nvl(rtrim(), rtrim(ppdept))
    Enter value for p_prodno:
    old 57: AND prodno = nvl(rtrim(&p_prodno), prodno)
    new 57: AND prodno = nvl(rtrim(), prodno)
    Enter value for p_proddesc:
    old 58: AND ppname LIKE '%' || &p_proddesc || '%'
    new 58: AND ppname LIKE '%' || || '%'
    porqty
    ERROR at line 14:
    ORA-00936: missing expression

  • Error while creating money market transaction - payment details not retrieving from BP master data.

    Hello friends
                      I have error while creating financial transaction. Payment details are not retrieving from BP master data to creating financial transaction screen.
    No payment details entered for transaction
    Message no. FTR0030
    Please advise to set off this.
    Thanks & Regards
    Swami

    Dear Swami,
    Please select one payment details in Business partner and use assigned tab from top selection parameter from standing instruction to assigned bank details to product type.
    It will open other window like above example for each product of treasury, then assign bank details to product. Once assigned and save.
    System will pick payment details in deal automatically based on business partner.
    Hope this solve your issue.
    Regards,
    Jain
    Message was edited by: Jain Varghese

  • Can not retrieve data source status

    I have 3 DPS (6.3) running fine with 3 (6.2) DS downstream, running fine as well, on RHAS 4 U4 .
    I don't understand why the DPS console always report it can not retrieve the data sources status. I checked the DS access logs, and I see each DPS
    default monitoring request (on the "" DN) every 30 seconds, which returns one entry, and no obvious error in any DPS or DS error log .
    Any idea ?

    Hi,
    it looks like a a known problem to me that may appear in the following situation:
    In somes cases, the proxy and the DSCC (console) uses different hostnames: For instance, the proxy may be registered to the admin framework as myhost.sun.com and the proxy itself may use only myhost. Operation status is exposed by the proxy as an LDAP entry with dn cn=myhost,.....,cn=monitor. When there is a naming mismatch, the console search for cn=myhost.sun.com,...., cn=monitor and can't find the entry, so the status is unknown.
    Don't know if you are in this situation but it might worth checking this.
    Hope this helps
    -Sylvain

  • Submit MC.9 does not retrieve data in background processing.

    Hi,
    Im submitting transaction MC.9 in one of my programs. The submit statement seems to retrieve data when the program is run in the foreground, but when the program is scheduled to run in the background the submit statement does not retrieve data.
    kindly advise,
    regards.
    Message was edited by:
            sheldon barretto

    Hi Tushar,
    Thanks for ur reply.
    I tried wat you asked to, but no spool was generated for the job. In SM37 it says that the Job (RMCB0300) is completed, but theres no spool list entry.
    Does it mean i cant run MC.9 in background.
    regards,
    Message was edited by:
            sheldon barretto

  • The data from a table of a database are not retrieved in ADF BC Application

    I have two separate ADF BC applications. Each application retrieve
    the data from the same scheme of a database. Both applications work
    well when I launch them under embedded OC4J. I have deployed
    these applications to a standalone OC4J. When I launch one application,
    the data from a database's table are retrieved. When I launch the other
    application, the data from a database's table are not retrieved. Why? Please,
    help me.

    Any error message ?
    Frank

  • Remote historical data is not retrieved completely viewing it in MAX4

    Hi,
    since I installed LabVIEW 8 I have some problems retrieving historical data from another computer. Sometimes not all data is retrieved (if I zoom in or out or move back in time) and this missing data won't be retrieved ever.
    I already deleted the Citadel cache once, but after this even less data was retrieved... What's really weird, is, that for channels which weren't retrieved correctly, the data gets not updated anymore!
    On the remote computer I have a LabVIEW DSC Runtime 7.1 running (MAX 3.1.1.3003) on my local computer MAX 4.0.0.3010 and LabVIEW 8 DSC (development system) is installed parallel to LV DSC 7.1.1 (dev system). LV 8 is installed for testing purposes (I doubt we'll switch soon) and overall I like MAX 4. The HyperTrend.dll on my local computer is version  3.2.1017.
    This is really a quite annoying bug!
    So long,
        Carsten
    Message Edited by cs42 on 02-02-2006 09:18 AM

    Hi,
    > We've been unable to reproduce this issue. If you could provide some additional information, it might help us out.
    I did fear this, as even on my computer it is happening just sometimes...
    > 1) How many traces are you viewing?
    The views I observed this in had 2 to 13 traces.
    > 2) How often are the traces being updated?
    For some it's pretty often (about once a second), for some it's very infrequent (no change in data, that means updated because of max time between logs). I more often see this for traces that are updated very infrequently. But I think I've seen this for frequent traces as well (for these it does work currently).
    > 3) Are the traces being updated by a tag value change, or by the "maximum time between logs" setting in the engine?
    It happened for both types.
    > 4) What is the frequency of the "maximum time between logs" setting?
    Max time between logs is 10 minutes.
    > 5) Is the Hypertrend running in live mode when you zoom out/pan?
    I think it happened in both modes, but it defenitely did in live mode.
    > 6) If you disable/re-enable live mode in the Hypertrend, does the data re-appear?
    I couldn't trigger the loading of the data. All I did is wait and work with MAX (zooming, panning, looking at data) and after quite a while (some hours), the data appeared.
    Just tested this on a view where data is missing (for some days now!), and it didn't trigger data reloading. Zooming and panning don't as well. There's a gap of up to 3 days now for some traces. 7 of the 13 traces of this view are incompletely shown. All stopping at the same time but reappearing at different ones.
    AFAIR from the laboratory computer (these are temperatures and it's very plausable that these didn't change), there wasn't any change in these traces so they all got logged because of max time...
    I just created a new view and added these traces: the gap is there as well.
    (Sorry to put this all in this entry even if it is related to you other questions, but I started this live test with disable/re-enable live mode. )
    > 7)
    Are the clocks on the client and server computers synchronized? If not
    synchronized, how far apart are the times on the two computers?
    They should be (Windows 2000 Domain synchronized to ADS), but are 5 seconds apart.
    One thing I remember now: I have installed DIAdem 10 beta 2 (10.0.0b2530, USI + DataFinder 1.3.0.2526). There I had (and reported) some problems with data loading from a Citadel Database of a remote machine as well. This was accounted to some cache problem. Maybe a component is interfering?
    Thanks for investigating.
    Cheers,
        Carsten

  • Adobe form data not being retrieved by Web Dynpro application

    Hi,
    I have created an online interactive Adobe form embedded in a Web Dynpro ABAP application.  The Web Dynpro application calls a function module to update data in SAP.  My problem is that the ABAP code that was generated to retrieve the data from the Adobe form and call the function module does not retrieve the data if it has been typed into any of the input fields.  Oddly enough, it does work if the data is entered by using the value helps that have been placed on the form. 
    I would appreciate any suggestions.
    Thanks!
    Russell

    Use messageboxes on various events to find out when your value dissapeears.
    If you´re not sure about the binding, you can always drag/drop from data view tab onto the layout and check the binding which the system generates for you. Just to make sure.
    Regards Otto

  • Purchase order data for ATP category BH and BI not retrieved

    Hi Experts,
    I have a requirement where I need to extract purchase orders data from the bapi BAPI_POSRVAPS_GETLIST3. I am passing the locations, products and ATP categories AG,EF,BF,BI and BH. However, my bapi works correctly for AG,EF and BF, but it does not retrieve the data for BI and BH categories.
    I have debugged the bapi and found that it is unable to retrieve data from the live cache.
    Can anybody please help me out and let me know the exact reason for this issue? I have checked the return table of the bapi and it does not give any error message as well.
    Looking forward to your reply.
    Thanks in advance.
    --Warm Regards,
    Prajakta K.

    Hi,
    BI (stock transport order) and BH (PreqRel) are demand elements for which there exist corresponding receipt element as BF (Purchase order) and AG (Preq) respectively. BAPI will give data for these categories.Thus you can get data for BI and BH from corresponding BF and AG.
    Similarly EF (Dep:Preq) is receipt element and you will not get data for corresponding demand element which is available in the system as EG (Dep:ConRel).
    I think BAPI is working fine.
    Regards,
    ~Vaibhav

  • Exception occured in OraOLEDB: Accessor is not a parameter accessor. in NI_Database_API.lvlib:Rec Fetch Recordset Data (R).vi- NI_Database_API.lvlib:Rec Fetch Recordset Data (CR).vi-

    I have a sql query that run directly in the database but when I attempt to run it in labview using the create_parameterized_query.vi I and fetch_recordset_data.vi get the following error: 
    Error -2147217845 occurred at NI_Database_API.lvlib:Rec Fetch Recordset Data (R).vi->NI_Database_API.lvlib:Rec Fetch Recordset Data (CR).vi
    Exception occured in OraOLEDB: Accessor is not a parameter accessor. in NI_Database_API.lvlib:Rec Fetch Recordset Data (R).vi->NI_Database_API.lvlib:Rec Fetch Recordset Data (CR).vi->  
    I've been using the tracer utility to try to see what the problem is but so far I haven't been able to figure out the problem.  I have several other tables in my database that I'm pulling data from and this same structure and they run without any problems.  
     I'm enclosing my .vi
    Thanks
    Attachments:
    Bottom_contact(SubVI).vi ‏21 KB

    Hi montyponty,
    According to a Google search it looks like error  2147217845 shows up a couple of times with Oracle databases. Does the following page offer any helpful suggestions:
    http://forums.devx.com/showthread.php?t=47596
    From which VI does the error originate from? Can you post the other code that does work so we have a comparison?
    Joshua B.
    National Instruments
    NI Services
    NI Support Resources
    NI Training Resources

  • Could not retrieve transport type data for Receive Location

    can someone lend me a help to this error, i was encountering this error for days, and i haven't found solution till now, thanks in advance!\
    Could not retrieve transport type data for Receive Location 'Receive' from config store. Primary SSO Server 'server' failed. No credentials have been set for the mapping.
     (Microsoft.BizTalk.ExplorerOM)
    For help, click: http://go.microsoft.com/fwlink/?LinkId=47400&ProdName=Microsoft+BizTalk+Server+2010&ProdVer=3.9.469.0&EvtSrc=Microsoft.BizTalk.ExplorerOM.Resources&EvtID=IDS_ERR_RL_SSO_GETCONFIG

    After a long time of googling finally I got the problem resolved. The steps I followed are as follows:
    Go To SSO Adminnistration -> System -> Restore Secret and select the secret file.
    If you dont know the path of the secret file try once in the location "C:\Program Files\Common Files\Enterprise Single Sign-On".
    Select the file and provide the password. Once the master secret restores the error will not come.

  • Could not retrieve server initialization data

    This is in regard to recent issue reported under MS Project 2010 Proffesional edition. We were trying to connect MS Project 2010 Proffesional Client edition to MS Project 2010 server so that we can upload the project to resource center directly.
    Right information is added under info-> Accounts and post to that MS Project client reports the following error "Could not retrieve server initialization data". Please let me know how to get rid of this.
    Quick help is required!!
    Thanks
    Yash Bindlish

    - Confirm you created your Project Server account within the Project Client? This is done from the backstage by clicking File > Info tab. If you haven't completed
    this step, you cannot connect to Project Server.
    - Confirm when you open Project Professional 2010, did you register the account?
    To register the account
    FILE   >>> INFO 
    >>> "Manage Accounts"
    Also, make sure all the accounts do not have a default account. 
    This is to make sure the default "Computer" account is not being used.
    Also you can try with
     “Disable the loopback check”
    http://support.microsoft.com/default.aspx/kb/896861?p=1
    Thanks

  • Field With No Data Not Being Retrieved

    I have a Crystal Reports that is not retrieving the correct data.  The fields has
    a value of "POST" or nothing in the field.  When I code the "Selection Formulas"
    for "Record" (i.e equal to "POST") I get the correct number of records, but when I
    reverse the logic (i.e not equal to "POST"), I receive no records at all.  I
    changed the "Report Options" to "Convert Database NULL Values to Default" and
    "Convert Other Null Values to Default" (with both, one or no boxes checked), I
    get the same results.  I also changed "Options" ("Null Treatment") for
    "Exceptions For Nulls" and also tried "Default Values For Nulls". What must I do to
    retrieve these records that nothing in the "" fileld ?  Sample code is
    below.  Thanks  ! ! !
    Gives Correct Data
    in {?Withdrawn Date}
    And = "POST"
    Does Not Give Correct Data
    in {?Withdrawn Date}
    And NE "POST"
    Edited by: Lenell Hooker on Mar 24, 2010 7:09 PM

    hi,
    in {?Withdrawn Date}
    And
    if isnull( ) then TRUE
    else
    <> "POST"
    Please try it. It will work.
    Regards,
    Vamsee

Maybe you are looking for

  • After Using Ethernet Connection For Months Airport Will No Longer Connect.

    For the last few months I have been connecting my iMac to my Netgear Wireless Router by an Ethernet cable, as I no longer needed to use a wireless connection. Yesterday, my son tried to connect to my wireless router with his Toshiba laptop. He connec

  • X-fi elite Pro Driver for Windows 7 64bit

    )X-fi elite Pro Driver for Windows 7 64bitH Hi all I've read in the past and toady some topics about the x-fi drivers and windows 7. Due to the fact, that I want to install win7 64bit in the next few days, i just want to know which drivers I should u

  • My portal DAD is down even after all correct properties are set.

    Hi, could any one update my question why the DAD is down (checked from OEM console) even after the properties set are correct? is there a way to troubleshoot it? I would be thankfull if I could get the answer/How to trouble shoot it? Thanks, Vijay.

  • How To  Get Mobile Safari Cascading Dropdown To Refresh?

    Hi I am trying to do a straight forward cascading dropdown for mobile safari. I have this working 100% in safari itself, which shows normal style drop downs. But mobile safari dropdowns have a 'next' button. Hitting this next button takes you to the

  • WARNING: You MUST backup your data before doing anything to your computer

    99.99% of the time, problems you see on this board can be solved by a prudent backup plan. Lost data files, hard drive failures, testing for hardware issues, testing for software issues, misplaced data files, incompatible applications, failed softwar