Having SQL join problems!

I have got a master recordset and this is the SQL for it:
SELECT fld_contentID, fld_contentPAGE, fld_contentIMGSLDR, fld_contentTITLE, fld_contentTOP, fld_contentPODL, fld_contentPODR, fld_contentBOTTOM, fld_contentBGIMG, fld_contentSHOW, fld_contentDATE
FROM tbl_content
WHERE fld_contentPAGE = '1'
ORDER BY fld_contentDATE DESC
This works fine. I can populate the page with the content that I want.
I have a second table with secondary information within it for promotional needs. This table serves what I am referring to as 'pods' of info. I am trying to pull and join content from the table called tbl_pods using the unique ID of the pod record and joining it with a field in the tbl_content table, and that field is called fld_contentPODL. Here's the code:
SELECT *
FROM tbl_pods
JOIN tbl_content ON tbl_content.fld_contentPODR = tbl_pods.fld_podID
WHERE fld_podID = podrvar
Name: podrvar
Type: Interger
Default value: %
Run-time Value: $_GET['tbl_content.fld_contentPODL']
I have tried every variation of JOIN that I can think of, but it just won't work with a dynamic default value. If I give a specific default value of 1, instead of %, then it works as expected, but only by being specific which means it's not loading the variable dynamically.
Can somebody please highlight the problem with my join statement, cos this is driving me mental!
Is there something wrong with my master table tbl_contents. I can't see that there is as I am using the field fld_contentPODL to hold the unique ID of the pod, so surely I can join the tables on that! Am I passing data incorrectly? I didn't think I was as I am asking to join the data of tbl_pods to the data of tbl_contentPODL, which should work.
Thanks in advance.
Mat

What I mean by dynamic default value is the content of the field in the record which is effectively the 'master' instruction to load the content of the JIONed table record using the field fld_podID (in tbl_pods). Basically, as you put it, the runtime value. I used % as an example just because I have tried loads of other things! I normally use -1 which DW sets by default.
So, my database is like this:
Main page content is held in a table called: tbl_content
fld_contentID - INT (primary key) - Value eg: 1 to what ever!
fld_contentTITLE - VARCHAR - Value eg: About us
fld_contentTOP - VARCHAR - Value eg: Blah blah blah
fld_contentPODL - INT - Value eg: 1 (or 2 or 3 etc based on how many records I have in tbl_pods.fld_podID)
The 'pods' content is held in a table called: tbl_pods
fld_podID - INT (primary key) - Value eg: 1 to what ever!
fld_podNAME - VARCHAR - Value eg: Book for Xmas
fld_podCONTENT - VARCHAR - Value eg: We're taking bookings now, so get in touch to ensure you don't miss out.
What I am trying to do is JOIN tbl_content.fld_contentPODL to tbl_pod.fld_podID and then display the runtime content associated with the record so I can display 'Book for Xmas, We're taking bookings now...'
Here's my page code:
<?php require_once('Connections/conn_t3pi.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
mysql_select_db($database_conn_t3pi, $conn_t3pi);
$query_rs_content = "SELECT * FROM tbl_content WHERE fld_contentPAGE = '1' ORDER BY fld_contentDATE DESC";
$rs_content = mysql_query($query_rs_content, $conn_t3pi) or die(mysql_error());
$row_rs_content = mysql_fetch_assoc($rs_content);
$totalRows_rs_content = mysql_num_rows($rs_content);
$podlvar_rs_podl = "-1";
if (isset($_GET['tbl_pods.fld_podID'])) {
  $podlvar_rs_podl = $_GET['tbl_pods.fld_podID'];
mysql_select_db($database_conn_t3pi, $conn_t3pi);
$query_rs_podl = sprintf("SELECT * FROM tbl_pods JOIN tbl_content ON tbl_content.fld_contentPODL = tbl_pods.fld_podID WHERE tbl_content.fld_contentPODL = %s", GetSQLValueString($podlvar_rs_podl, "int"));
$rs_podl = mysql_query($query_rs_podl, $conn_t3pi) or die(mysql_error());
$row_rs_podl = mysql_fetch_assoc($rs_podl);
$totalRows_rs_podl = mysql_num_rows($rs_podl);
?>
<!DOCTYPE HTML>
<html>
<head><title>Untitled Document</title></head>
<body>
<h1 class="pinyon"><?php echo $row_rs_content['fld_contentTITLE']; ?></h1>
    <?php echo $row_rs_content['fld_contentTOP']; ?>
    <p><a href="http://localhost/~matthewstuart/ThreePigeons/page.php?ID=1">link</a></p>
  <h4><?php echo $row_rs_podl['fld_podNAME']; ?></h4>
  <p><?php echo $row_rs_podl['fld_podCONTENT']; ?></p>
</body>
</html>
<?php
mysql_free_result($rs_content);
mysql_free_result($rs_podl);
?>
I've made the SQL bold so it's easier to pick out. Yeah, I am at a loss as I can make the correct content appear if I physically type the correct runtime ID, but if I have a runtime that is loaded by the master record, then it doesn't show anything. I can't figure out why! I am sure I just have something switched around either in the JOIN or in the WHERE, but I don't know what though.
Thanks.
Mat

Similar Messages

  • OWB 10.2.0.4 ANSI SQL join problem

    Hi
    Its seams to me, that in OWB 10.2.0.4 there is something broken with ANSI SQL joins and instead of ANSI joins there is used oracle SQL joins only. Maybe someone can point some solutions? I can’t rewrite all mappings with union and other operators. And manually pl/sql editing also would be big problem.

    "Am I correct in assuming you did not code ANSI joins?" -> yes, i am coding Oracle SQL joins and with this option just generating ANSI joins.
    With ANSI SQL join you can use OR and IN operands (and code looks more readable).
    It is question of performance (so for example 80% of dataset you can join by one column other 15% by second etc ..). So this all can be rewritten also in Split->join->union all, but if you have several such joins, this will be painfully.

  • SQL JOIN problem

    Hello,
    To output data on my .php website I use a SQL database. One
    particular page needs information from 3 tables:
    1. Product (product.id, product.name)
    2. Partner (partner.productid, parner.shopname)
    3. Shop (shop.shopshopname)
    I currently have this code running to make it happend:
    SELECT *
    FROM (product LEFT JOIN partner ON product.id =
    partner.productid) LEFT JOIN shop ON partner.shopnaam =
    shop.shopshopnaam
    WHERE product.categorie = 'Kinderwagens' AND
    product.hoofdmodel = '1'
    ORDER BY product.name ASC, shop.shopcpc DESC
    The idea is that every product.name gets outputted in a list
    just once and that it picks partner.productid of the row with the
    highest corresponding shop.cpc.
    Example: I have a lot of product.id's where product.id =
    "1000 is found 4 times in partner.productid. All product.name's are
    outputted and ascend correctly. However, product.name with
    product.id=1000 is outputted 4 times. I only want it outputted once
    where it pickes the corresponding partner.id where its
    corresponding shop.shopcpc is highest. What do I do to prevent it
    from outputting all 4?
    I know its kind of complex to explain, if there are questions
    please let me know.

    I kind of fixed this problem with a group by:
    SELECT *
    FROM (product LEFT JOIN partner ON product.id =
    partner.productid) LEFT JOIN shop ON partner.shopnaam =
    shop.shopshopnaam
    WHERE product.categorie = 'Kinderwagens' AND
    product.hoofdmodel = '1'
    GROUP BY product.naam
    ORDER BY product.naam ASC, shop.shopcpc DESC
    However, by doing this my ORDER BY shop.shopcpc doesnt work
    anymore. Anyone know how to fix this?

  • Hello everyone!! I'm having a big problem trying to reinstall oracle xe 10g

    I'm having a big problem with Oracle XE 10g, and I have no more ideas about what should i do
    Some weeks ago I installed this database on my PC, and everything was working fine. I could access to the DB, with the web interface or command line.
    But I uninstalled all the system 'cause suddenly I started having problems with the SQL command line, and now, after reinstalling the system several times, I can't acces to the database (web or command line).
    When I try to acces manually by command line, this happends:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>sqlplus
    SQL*Plus: Release 10.2.0.1.0 - Production on Jue Sep 9 11:23:52 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Username: sys
    Password:*********
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Another try:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on Jue Sep 9 11:17:24 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    SQL> CONNECT SYS as SYSDBA
    Password:********
    Conected to an Idle Intance.
    SQL> startup
    ORA-01078: failure in processing system parameters
    ORA-01565: error in identifying file 'C:\oraclexe\app\oracle\product\10.2.0\serv
    er\dbs/spfileXE.ora'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) System cannot find the file.
    SQL> help
    SP2-0171: Help system is unavailable.
    What should I do???? Reinstalling Oracle XE is not working fot me.... U_U
    Thanks!!!

    Finally I discover what were happening to me...
    When you remove oracle XE, the uninstall system "forget" to delete the route of the bin directory in the PATH variable
    Thanks for the help!!
    =)

  • SQL Join Help

    SQL Experts,
    I have a query below. Can I improve the SQL joining order in highlighted section - Lines 31 to 40
    SNIOTM.SNI_PA_OTM_ARC_DRVR -- around 200K rows
    SNIOTM.SNI_PA_ORD_SHP_STATUS -- 8 rows
    Edited by: 922411 on May 12, 2013 7:42 PM

    922411 wrote:
    SQL Experts,
    I have a query below. Can I improve the SQL joining order in highlighted section - Lines 31 to 40
    SNIOTM.SNI_PA_OTM_ARC_DRVR -- around 200K rows
    SNIOTM.SNI_PA_ORD_SHP_STATUS -- 8 rowsYou need not worry about the Joining Order, Oracle CBO is efficient enough to choose the Most Efficient way of joining the tables. However, it will depend on your Oracle Version, which you have not mentioned. If you are 10g or higher then you certainly need not worry.
    If you sense a problem in performance of query, then I will suggest you read the linked threads in {message:id=9360003} and post the details as specified.
    Only this will help us provide releavant suggestions and avoid guessing games.
    PS:- Do not forget to post Oracle Version and the Explain Plan in {noformat}{noformat} tags, exactly as specified.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Help - Bean Binding an SQL join to a gui component(jtable) in Netbeans?

    Good afternoon. I'd like to ask if there is a way to data bind an SQL Join from 2 or more tables to a
    GUI component(Jtable) in Netbeans. All the tutorials show is how to bind all the fields of 1 database table
    to the component. Under the BIND/ELements option the IMPORT DATA TO FORM menu only allows
    you to choose 1 among the database tables from a selected database.
    Is there a way to configure an SQL query and attach it to the component?
    Thanks.

    This is not a Swing problem. Try a NetBeans forum.

  • Converting oracle join to Ansi sql join

    Hi Guys,
    I am new to SQL and trying to convert the following Oracle query (joins) into ANSI sql joins...Can someone please help me?
    SELECT M.EXTERNALCODE, M.NAME AS MNAME, SC.BIRIM, SM.TRANSACTIONDATE, SMD.AMOUNT,
    SMD.UNITPRICE, SM.ID AS SMID, SMD.ID AS SMDID, F.NAME AS FNAME,
    IFNULL (SMD.AMOUNT, 0, SMD.AMOUNT) * IFNULL (SMD.UNITPRICE, 0, SMD.UNITPRICE) AS TOTALPRICE, SMD.AMOUNT AS RECEIVED_QUANTITY,
    PD.ORDERID, PD.AMOUNT QUANTITY, PO.PROCESSDATE
    FROM STOCKMAINTRANSACTION SM,
    STOCKMAINTRANSACTIONDETAIL SMD,
    MATERIAL M,
    STOCKCARD SC,
    FVSTOCK FVS,
    FIRM F,
    PURCHASEORDER PO,
    PURCHASEORDERDETAIL PD,
    PURCHASEORDERDETAILSUPPLIED PDS
    WHERE SM.ID = SMD.MAINTRANSACTIONID
    AND SMD.MATERIALID = M.ID
    AND SMD.STOCKCARDID = SC.ID
    AND SM.PROPREF = FVS.RECORDID(+)
    AND FVS.FIELDID(+) = 2559
    AND FVS.FLEVEL(+) = 'F'
    AND F.ID(+) = SUBSTR (FVS.FVALUE, 1, 9)
    AND SM.TRANSDEFID in (999,2329,2344,2370,150000903,150005362)
    AND SMD.CANCELLED = 0
    AND SMD.STOCKUPDATED = 1
    AND SMD.ID = PDS.STOCKMAINTRANSACTIONDETAILID
    AND PDS.ORDERDETAILID = PD.ORDERDETAILID
    AND PO.ORDERID = PD.ORDERID
    AND (M.ID = {@MATERIALID@} OR {@MATERIALID@} = 0)
    AND (SM.STOREID = {@STOREID@} OR {@STOREID@} = 0)
    AND (F.ID = {@SUPPLIERID@} OR {@SUPPLIERID@} = 0)
    AND SM.TRANSACTIONDATE BETWEEN {@STARTDATE@} AND {@ENDDATE@}
    ORDER BY F.NAME, M.EXTERNALCODE, SM.TRANSACTIONDATE
    Really appreciate the help!
    Thanks.

    Hi,
    Welcome to the forum!
    To convert to ANSI syntax, replace join conditions in the WHERE clause
    FROM           x
    ,             y
    WHERE         x.x1  = y.y1
    AND           x.x2  = y.y2with ON conditions in the FROM clause:
    FROM           x
    JOIN             y   ON    x.x1  = y.y1
                             AND   x.x2  = y.y2In inner joins, conditions that do not reference 2 tables are not really join conditions, so it doesn't matter if they are in the FROM clause or in the WHERE clause.
    In your case
    SM.TRANSDEFID in (999,2329,2344,2370,150000903,150005362)could be part of a join condition involving sm, or it could be in the WHERE clause. Most people find it clearer if 1-table conditions like this are in the WHERE clause.
    Again, this only applies to inner joins. For outer joins, all conditions that apply to a table that may lack matching rows must be included in the FROM clause, like this:
    LEFT OUTER JOIN  fvstock   fvs  ON   sm.propref       = fvs.recordid
                                    AND  fvs.fieldid  = 2559
                        AND  fvs.flevel   = 'F'Try it.
    If you have trouble, post your best attempt, along with CREATE TABLE and INSERT statements for a little sample data from all the tables involved, and the results you want from that data. Simplify the problem. Post only the tables and columns that you don't know how to handle.
    See the forum FAQ {message:id=9360002}
    user8428528 wrote:
    AND (M.ID = {@MATERIALID@} OR {@MATERIALID@} = 0)
    AND (SM.STOREID = {@STOREID@} OR {@STOREID@} = 0)
    AND (F.ID = {@SUPPLIERID@} OR {@SUPPLIERID@} = 0)
    AND SM.TRANSACTIONDATE BETWEEN {@STARTDATE@} AND {@ENDDATE@}This is not valid Oracle SQL. Is {@MATERIALID@} some kind of variable?

  • After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!

    After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!
    iTunes is a mess! It couldn't find it's own libraries and I was forced to create a new one. Now I don't know where my music is or if any's missing.

    columbus new boy wrote:
    How crap is that?
    It's not crap at all.
    It's not that simple. For example, I've 3500 songs on my MacBook but don't want them all on my phone, so I have to manually select each song again???
    There has to be a solution.
    Why not simply make a playlist with the songs you want on the iPhone?
    and maintain a current backup of your computer.

  • HT6030 Having major Mail problems since I updated Maverick on my 27" iMac. Delays deleting emails and moving emails to other folders. Anyone else having this issue? If so, any known fixes?

    I have an iMac that around 3 years old. Just installed Mavericks when it first was released. I also have a Time Capsule (2TB) that runs my network to my other three Apple devices: iPad2, iPhone 5s and a new Apple TV. Having major Mail issues here. Everything is very delayed and extremely slow. Moving emails to other folders sometimes takes a few minutes and the same goes for deleting emails. Delete them and they don't go into the trash for several minutes. It's getting very frustrating to say the least. Mail also quits very often. Mail also will freeze with the little color ball spinning, therefore I would have to force quit Mail. When the errors occur, it's automatically sent to Apple but there hasn't been an update since 10.9.1 that has fixed it. Apparently, that update was only for gmail issues. Anyone having the same problem? Fixes please?

    I have my entire network and all Apple devices setup as IMAP, not POP. If your settings are setup as a POP account on all devices, emails will not erase when deleted on your other devices. Just something to keep in mind. I'm sure you're aware of this but just wanted to throw it out there. Google IMAP vs POP. However, it seems like your having the same issues as I am. I'm going to swing by an Apple store by me and speak to the genius bar and see if they can come up with something or are aware of this issue. Keep you posted.

  • I am having a DNS problem with my computer. My laptop connects to the internet and my skype works normally but when i try to surf the web it says "DNS Look up failed".

    MY PROBLEM
    I am having a DNS problem with my laptop. It connects normally to th e wifi internet but when i try to surf the net it says "DNS Look up failed"
    This problem only occurs when with the internet at my house. whenever i connect elsewhere my computer works normally. My ipod, iphone, tablet and other friends computers work normally when they are connected to my internet. i use dmy neigbours nework a couple of times from my house and it wrks normally.
    Also when i turn my laptop on or off i can browse for a few minutes or seconds before it fails again. My skype works like there is no problem
    WHAT I HAVE TRIED TO RESOLVE IT
    I have tried changing the DNS, i used open DNS and google free DNS and it still didnt make a difference.
    I have rebooted router many times, nothing
    I have changed my home router, nothing
    I backed up my computer, resored everything it to factory setting and put everything back on; still nothing
    Run a diagnostics at 'Best buy' and they say nothing is wrong; but i know there is something wrong with the DNS
    I have tried different "sudo" type of codes on my comupter from stuff i got online and nothign has proved fruitful yet.
    i tried using safari, Google chrome and firefox, all not loading
    WHAT DO I DO TO FIX THIS?

    You are correct.  Syncing should transfer any purchased media, including videos, from your device to your iTunes library provided your computer is authorized for the Apple ID used to make these purchases.  You mentioned that you have uninstalled iTunes before, but if you didn't follow this guide exactly, uninstalling iTunes and all of its components in the order specified, it may not have been successful so you should try again:  Windows XP or Windows Vista/7.

  • I am having some huge problems with my colorspace settings. Every time I upload my raw files from my Canon 5D mark II or 6D the pics are perfect in color. That includes the back of my camera, the pic viewer on my macbook pro, and previews. They even look

    I am having some huge problems with my colorspace settings. Every time I upload my raw files from my Canon 5D mark II or 6D the pics are perfect in color. That includes the back of my camera, the pic viewer on my macbook pro, and previews. They even look normal when I first open them in photoshop. I will edit, save, and then realize once i've sent it to myself to test the color is WAY off. This only happens in photoshop. I've read some forums and have tried different things, but it seems to be making it worse. PLEASE HELP! Even viewing the saved image on the mac's pic viewer is way off once i've edited in photoshop. I am having to adjust all my colors by emailing myself to test. Its just getting ridiculous.

    Check the color space in camera raw, the options are in the link at the bottom of the dialog box. Then when saving make sure you save it to the srgb color space when sending to others. Not all programs understand color space and or will default to srgb. That won't necessarily mean it will be accurate, but it will put it in the ballpark. Using save for web will use the srgb color space.

  • I am having an MacBok Pro 13inch,having an Startup Problem, the time i press the power button after few seconds the apple symbol appears w/a loading sign below it

    i am having an MacBook Pro 13inch  , having an Startup Problem , the time i press the power button after few seconds the apple symbol appears with a loading sign below it and wont go further ahead of it . My data is all in the hard drive .. . I even tried the Internet recovery but no use !!!! but still no respons and the recovery and macintosh hd is now lock! but earlier only the recovery is lock and after both of them is lock.  i can reinstall,... and i didnt try to back up any data bec i dont know how? so please help me to resolve my prroblem.?

    luoie wrote:
    This thing happend,, it say Disk utility stopped repairing "Macintosh HD" disk utility can't repair this disk
    Sorry, possibly you need a new hard drive or try reformating. First
    you can try something like http://www.alsoft.com/diskwarrior/  it has been known to repair disk that DiskUtility could not. YMMV and they don't give it away.
    If Disk Warrior can not repair then you need to Reformate the drive. Make sure you have a back-up in place no matter what.
    http://www.apple.com/support/backup/
    Disk Utility will tell you something about it's SMART status:

  • I am having the same problems as several posters here.

    I am having the same problems as several posters here. My note 3 was pre-ordered and worked fine until may 16th of this year. This was the date of an ota upgrade to kitkat. After apps were "optimized" I first noticed such a power drain that my phone lasted 4 hours on standby without use. I uninstalled several apps including facebook which and rolled back google play services for several days. This helped my battery life which extended from 4 to 12 hours at low use. Previously, I could use the phone for nearly 48 hours without charging and using a number of apps which involved graphics, sound and data. Which leads to my next point, any graphically charged app (games generally) causes my phone to heat up tremendously and the phone leaks power like a sieve; again I reiterate this began may 16 with an ota update to kitkat which was rolled out by verizon MUCH later than other carriers but clearly didn't involve fixes.  Finally, and the most nagging problem of all....my mobile connectivity has been shot. I have dropped calls, I have had to drive to get signal, I have missed calls and I cannot afford this!! I am a home health nurse and must be in contact with MD offices and patients. Even mobile connectivity in my home is affected as I have two bars at max. I have noticed the wireless indicator go from 0 to 5 bars in a rapid cycle 5 to 6 times in a few second period and result in "no mobile network found" if I try to call anyone. This service is unacceptable and I don't want to have to root my phone as I am not sure that this would fix the problem. This is a 700 dollar phone and I shouldn't have these problems. If a solution cannot be reached, I am under contract for another year and several months and I demand a new phone. I will be saving all communications (or lack thereof) via screen shot for documentation.

    markaandersonco2006,
    Have you tried wiping your cache partition?  I noticed extremely poor battery life after the KK update, like you, (maybe 5 hours of use before requiring charging) and I saw a message on one of the Android Central forum (actually for the AT&T version of the Note 3) that mentioned to try wiping the cache partition.  That appears to have worked. Since then, my battery life has been phenomenal.  I don't know why this worked, or the downside of doing it.  But it worked.   As I write this, my battery is at 66%, and has been on for 14.5 hours (with one brief charge of 15 or so minutes in my car last night).
    Wiping the Cache partition from Recovery Mode
    This won't erase any important data.  Perform the following procedure:
    1) Turn off the device.
    2) Press and hold the following three buttons at the same time:
         a) Volume Up key
         b) Home key
         c) Power key
    3) When 'GALAXY Note 3' appears on the screen, let go of the Power key but continue to press and hold the Volume Up key and the Home key.
    4) When the Android System Recovery screen appears, release the Volume Up and Home keys.
    5) Press the Volume Down key to highlight 'wipe cache partition.'
    6) Press the Power key to select and wipe the cache.
    7) With 'reboot system now' highlighted, press the Power key to restart the device.
    Good Luck!

  • I am having a strange problems on the Data entry Forms

    A form that has been used since 2005 in an old version of HFM 3.51 was migrated to SYstem 11.1.2.1 in January of 2012 and has been working since then. Suddenly we start having some strange problems. Our response time has been very slow and I am wondering if there were some problems in any of the services. Maybe a service did not start properly related to the WEB forms.
    We entered a number in one of the cell to be: 348336349 as soon as we hit enter, the number was formatted to 348,336,349 but when I submit the number it came back as 3. I tried it several times and it did not work, I checked the scaling and that was set blank. One of my user tried it and it did not work. I tried looking into the Preferences and my screen froze. In the meantime one of my user was able to enter the number and was able to refresh it as well. Then she enter another number on a different cell and the same problem occurred it seemed as if it truncated all the digits except for the left most digit, we are unable to figure out how to resolve this issue. The number entereed in the cell is 826,251,218 it stores 8 and loses the rest of the 8 digits. I right click and checlk the properties and it says that it has stored 8 instead of 826,251,218.
    Following is the DEF script. Does anyone has any ideas, I am wondering if I have to restart the services..
    ReportType=WebForm
    ReportLabel=Aging_Receivables
    ReportDescription=Aging Receivables
    Instructions=Please make sure you set up your point of view (POV) appropriately. Business Unit (BU): AG, CE and Other_BU. Brand: Case, NH and Other_Brand.
    BackgroundPOV=S#Actual.Y#2011.P#Jan.w#YTD.V#<Entity Currency>.I#[ICP None].C2#SERVICED.C3#GL_INPUT.C4#Input
    SelectablePOVList=S{[Hierarchy]}.Y{[Hierarchy]}.P{[Third Generation]}.E{[Hierarchy]}.C1{[Base]}.C2{[Hierarchy]}.C3{[Base]}.C4{GL.[Hierarchy]}
    C1=A#Current
    C2=A#0_To_30
    C3=A#Total_Current
    C4=A#31_To_60
    C5=A#61_To_90
    C6=A#91_To_120
    C7=A#121 Plus
    C8=A#Total_Past_Due
    C9=A#Total_Aging_Rec
    C10=A#Current_OffBook
    C11=A#Past_Due_OffBook
    C12=A#T_Aging_Rec_OffBook
    C13=A#Total_MP_Aging_Rec
    C14=A#Aging_Rec_Diff
    R1=C1#_Retail
    R2=C1#_Wholesale_Tot
    R3=C1#_Wholesale
    R4=C1#_Wholesale_Natl
    R5=C1#_Wholesale_Othr
    R6=C1#_Credit_Card
    R7=C1#_Specialized_Lending
    R8=C1#_Marine
    R9=C1#_Soris
    R10=C1#_Other
    R11=C1#_Material
    R12=C1#Sup_Product
    FormInputBoxLength=23
    PrintNumRowsPerPage=33
    PrintNumDataColsPerPage=8
    ShowLabels=False
    ShowDescriptions=True
    SuppressColHeaderRepeats=False
    Edited by: user8267293 on Aug 8, 2012 12:41 PM
    Edited by: user8267293 on Aug 8, 2012 12:43 PM

    Hi,
    Did you find a way to solve your problem ? We have exactly the same for one application and we are using the same version of HFM : 11.1.2.1.
    This problem is only about webforms. We can correctly input data through Data Grids or Client 32.
    Thank you in advance for your answer.

  • I have Iphoto '09, version 8.1.2 (424). I am having an identical problem.  All my pictures are imported into Iphoto when I downloaded them from my camera.  Until recently, I thought that the pictures were actually saved in the library.  Since I need to cr

    I have Iphoto '09, version 8.1.2 (424). I am having an identical problem.  All my pictures are imported into Iphoto when I downloaded them from my camera.  Until recently, I thought that the pictures were actually saved in the library.  Since I need to crop my pictures for the web, and Iphoto doesn't do that, I purchased Photoshop Elements to do that.  To my surprise, when I try to get a picture from Iphoto to Photoshop, it can't be done. That was when I realized, after wasting a lot of time, that the photos are not in the Iphoto library.
    I started naming the pictures on Iphoto so I had a recognizable file name to open on Photoshop. Couldn't find it.  I looked in the Backup folder and the Transfer software folder (I have a Nikon camera), and the names I entered in the Iphoto display, could not be found.
    When I am trying to upload a photo to the web, I get the Finder folder showing  with an active folder called "Photos" under "Media", which only displays Iphoto and PhotoBooth.  This is a folder name that I cannot find in my HD anywhere when I look for it.  If I edit a picture with Photoshop, I am not going to save it back to Iphoto (not sure whether it will work properly).  How do I get my folder of edited photos to show when I want to upload a picture to the web?
    Where (the name of the folder) do I find the pictures I see displayed on the Iphoto library, including any name changes, keywords added, and so on?

    See my response to your other post.

Maybe you are looking for

  • Yet another user with "grayed-out" music

    I've recently switched to new mac. I guess i didn't sync iphone properly because all my music is grayed-out and not on my mac. none of it's itunes purchased, it's all non-replaceable non drm recordings. where did they go? why can't i play it through

  • Error com.sap.aii.af.ra.ms.api.RecoverableException: Received HTTP res 404

    Hi Friends, In file to file scenario i am getting this error. Transmitting the message to endpoint http://spcc-sappidev:50000/sap/xi/engine?type=entry using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.Recovera

  • Corrupt Flash CC File

    Something crazy happened one day and Flash CC stopped working.  Not sure if related, but Creative Cloud wouldn't load either.  The installation team helped get Creative Cloud working, so I updated Flash and it finally opened, although glitchy.  Playi

  • I can't log into Adobe Business Catalyst. I always get an error.

    I know I'm using the correct user name and password. I've been trying to check the status reports of the website iampjanthony.com Everytime I try to login, it gives me an error message!!! I can't figure it out. File not found (404 error) If you think

  • Create extractor via rso2 using fm

    Hello How to create a datasorce via rso2 using an r3 standard fm ? When i enter an standard r3 fm  (CS_BOM_EXPL_MAT_V2) in rso2 and try to save i get error saying  " The specified table  does not exist " Is there any how to guide or can anyone plz gi