New Field not Showing up in Report, part II.

I had this issue with another report, and I was told that I hadn't brought my new field down all the way through to the final Select.  With this report, I thought I had done just that, but the new field is still not showing up.  I have pasted the code below with my additions highlighted.  Can someone tell me what I am doing wrong?  Thanks.
WITH SEL_ACCTS AS(
SELECT
CASE
WHEN RMSCUSTTYP = 'I'
THEN
CASE
WHEN
Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM)) <> ','
THEN
Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM))
ELSE
END
ELSE
RMSCMPNAME
END AS "DEBTOR NAME",
RMSACCTNUM AS "CLIENT ACCOUNT#",
rmslastpmt,rmsjdgdate,
CASE WHEN RMSJDGDATE  = 0 THEN  (RMSCHGAMT+RMSASSCCST+RMSACRDINT+UDCCOSTS1+UDCCOSTS2)-(RMSRCVPCPL+      
    RMSXCSRCVS+RMSRCVDCST+RMSRCVDINT+UDCRECCS1+UDCRECCS2)  
    ELSE (RMSJDGCHOF+RMSJDGCSTS+RMSJDGINTS+JDGCOSTS1+JDGCOSTS2)-(JDGRECVRYS+     
    JDGXCSRCVS+JDGRCVCSTS+JDGRCVINTS+JDGRECCS1+JDGRECCS2)
    END AS BALANCE,
A.RMSFILENUM,
RMSDATEASG AS PLC_DT,
ATTRNYCODE,
RMSSTATECD As "State Code",
RAND() AS RANDNUMGEN
FROM
REPORTING.RMASTER As A
left join reporting.rcomker b
on a.rmsfilenum = b.rmsfilenum
left join reporting.rprdbal c
on a.rmsfilenum = c.rmsfilenum
WHERE
RMSDATEASG < REPLACE(CHAR(CURRENT DATE - 180 DAYS, ISO),'-','')
AND recordtype =  'D'
and ATTRNYCODE IN ({?AGCY_CODE})),
GET_ACCTS AS(
SELECT
"DEBTOR NAME",
"CLIENT ACCOUNT#",plc_dt,
case when plc_dt > 0 then  Cast(Timestamp(plc_dt||'000000') As Date)  end AS "PLACED DATE",
ATTRNYCODE,
"State Code",
A.RMSFILENUM,case when rmslastpmt > 0 then Cast(Timestamp(rmslastpmt||'000000') As Date) end  as rmslastpmt, rmsjdgdate,balance
FROM
SEL_ACCTS AS A
ORDER BY RANDNUMGEN
FETCH FIRST {?#_of_Accts} Rows Only),
financials as (
select "DEBTOR NAME",
"CLIENT ACCOUNT#",
"PLACED DATE",
a.ATTRNYCODE,
A.RMSFILENUM,rmslastpmt,case when rmsjdgdate > 0 then Cast(Timestamp(rmsjdgdate||'000000') As Date) end  as rmsjdgdate,balance,
sum(case when e.rmstrancde between '3A' and '39' or e.rmstrancde in ('1G','1U') then e.rmstranamt end) as costspent,
sum(case when (e.rmstrancde between '5A' and '69' or e.rmstrancde = '1P') and postdate > rmsjdgdate then 
          e.rmstranamt                                                     
                                         end) as pmtamt,
sum(case when e.rmstrancde = '5C'  then  e.rmstranamt      end) as costrecvd
from get_accts a
left join reporting.rfinanl e
on a. rmsfilenum = e.rmsfilenum
and   (e.rmstrancde between '3A' and '69'                                      
or e.rmstrancde in ('1P','1G','1U'))                                          
and postdate > plc_dt and a.attrnycode = e.attrnycode
group by
"DEBTOR NAME",
"CLIENT ACCOUNT#", "PLACED DATE",
a.ATTRNYCODE,
A.RMSFILENUM,rmslastpmt,case when rmsjdgdate > 0 then Cast(Timestamp(rmsjdgdate||'000000') As Date) end  ,balance )
select "DEBTOR NAME",
"CLIENT ACCOUNT#",
"PLACED DATE",
"State Code",
a.ATTRNYCODE,rmslastpmt, rmsjdgdate,balance,c.rmsbalance as plc_bal,costspent, pmtamt,costrecvd,
Cast(Timestamp(max(case when b.hstnewvalu in ( 'L31')  then b.rmstrandte else  null end)||'000000') As Date)  as servicedate,
Cast(Timestamp(max(case when b.hstnewvalu in ( 'L13','P13')  then b.rmstrandte else  null end)||'000000') As Date)  as garnishdate,
Cast(Timestamp(max(case when b.hstnewvalu in ( 'L14','P14')  then b.rmstrandte else  null end)||'000000') As Date)  as levydate,
Cast(Timestamp(max(case when b.hstnewvalu in ( 'L17','P17')  then b.rmstrandte else  null end)||'000000') As Date)  as suitfiledate,
Cast(Timestamp(max(case when b.hstnewvalu in ( 'L12','P12')  then b.rmstrandte else  null end)||'000000') As Date)  as liendate
from financials a
left join reporting.rhistfl b
on a.rmsfilenum = b.rmsfilenum
and b.RMSTRANCDE = 'MT' And b.RMSFLDIMPL = 'RMSSTATUS'
and b.hstnewvalu in ('L12','L13','L14','L17','P12','P13','P14','P17','L19','PJC','L31')
left join reporting.rhistfl c
on a.rmsfilenum = c.rmsfilenum
and c.RMSTRANCDE = 'MR' AND c.RMSFLDIMPL = 'ATTRNYCODE' and c.hstnewvalu in ({?AGCY_CODE})
group by
"DEBTOR NAME",
"CLIENT ACCOUNT#", "PLACED DATE",
a.ATTRNYCODE,rmslastpmt,rmsjdgdate  ,balance,c.rmsbalance,costspent, pmtamt,costrecvd, "State Code"

hi David,
some questions:
1) do you mean that statecode is not showing up in the Field Explorer?
2) if you run this through your db query tool, what is the result?
3) if you create a new report off of this syntax, what is the result?
-jamie

Similar Messages

  • New Field not Showing up in Report.

    I have a CR query that I am editing to add a column to my report.  When I make my edits, the query runs, but I do not see the new field in the field explorer.  The part in purple is what I added.  Do I need to add it elsewhere in the code?
    WITH SEL_ACCTS AS(
    SELECT
    CASE WHEN RMSCUSTTYP = 'I' THEN
    CASE WHEN Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM)) <> ',' THEN  Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM))
    ELSE ''
    END
    ELSE
    RMSCMPNAME
    END AS "DEBTOR NAME",
    RMSACCTNUM AS "CLIENT ACCOUNT#",
    case when RMSHOMEPHN = '' or RMSWORKPHN = '' or RMSFAXPHN = '' or RMSMOBLPHN = '' then  'Y' else 'N' end as skipplcmt,
    A.RMSBILENUM,
    RMSDATEASG AS PLC_DT,
    ATTRNYCODE,
    RMSGATECD As "Gate Code",
    RAND() AS RANDNUMGEN
    FROM
    REPORTING.RMASTER As A
    left join reporting.rcomker b
    on a.rmsbilenum = b.rmsBilenum
    WHERE
    RMSDATEASG > REPLACE(CHAR(CURRENT DATE - 90 DAYS, ISO),'-','')
    AND recordtype =  'D'
    and ATTRNYCODE IN ({?AGCY_CODE})),
    GET_ACCTS AS(
    SELECT
    "DEBTOR NAME",
    "CLIENT ACCOUNT#",
    Cast(Timestamp(plc_dt||'000000') As Date)  AS "PLACED DATE",randnumgen,skipplcmt,
    PLC_DT,
    ATTRNYCODE,
    A.RMSBILENUM
    FROM
    SEL_ACCTS AS A
    LEFT JOIN
    REPORTING.RPRDBAL AS B ON A.RMSBILENUM = B.RMSBILENUM
    ORDER BY RANDNUMGEN
    FETCH FIRST {?#_of_Accts} Rows Only),
    GET_ACTV AS(
    SELECT
    G.*,
    RMSTRANDTE,
    ACTION_CODE,rmstrantim,
    RESULT_CODE
    From GET_ACCTS AS G LEFT JOIN RPTINGDATA.ROACTREACC AS R ON G.RMSBILENUM = R.RMSBILENUM AND G.ATTRNYCODE = R.ATTRNYCODE AND RMSTRANCDE = '9R'
        AND (ACTION_CODE IN('1','2','3','4','5','7','14','16','22','25','26','27','29','36','44','66') OR RESULT_CODE IN ('2','14','56','58','59','60','61','62','66')) AND RMSTRANDTE >= PLC_DT )
    SELECT 
    "DEBTOR NAME",
    "CLIENT ACCOUNT#",
    "PLACED DATE",
    PLC_DT,
    ATTRNYCODE,
    RMSBILENUM,skipplcmt,
    MIN(CASE WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29')
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTATTEMPT,
    SUM(CASE WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29')
        THEN 1 END) AS ATTEMPT#,
    SUM(CASE WHEN RESULT_CODE IN ('2','56','58','59','60','61','62','66')
        THEN 1 END) AS CONTACT#,
    SUM(CASE WHEN RESULT_CODE = '14'
        THEN 1 END) AS PROMISE#,
    MIN(CASE WHEN ACTION_CODE = '44'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTMGRRVW,
    SUM(CASE WHEN ACTION_CODE = '44'
        THEN 1 END) as MANAGER#,
    MIN(CASE WHEN ACTION_CODE = '1'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTLETTER,
    MIN(CASE WHEN ACTION_CODE = '36'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTSCRUB,
    max(CASE WHEN ACTION_CODE in ('1','2','14','16','22','66')
        then 'Y' else 'N' end) as locateacct,
    sum(case WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29') and (rmstrantim between 80000 and 100000 or rmstrantim between 180000 and 210000) and (  DAYOFWEEK(DATE (
                        SUBSTR ( DIGITS (rmstrandte) , 1 , 4 ) || '-' ||
                        SUBSTR ( DIGITS (rmstrandte) , 5 , 2 ) || '-' ||
                        SUBSTR ( DIGITS (rmstrandte) , 7 , 2 ) )) in (1,7) ) then 1 else 0 end) as primecall,
    FROM GET_ACTV
    GROUP BY
    "DEBTOR NAME",
    "CLIENT ACCOUNT#",
    "PLACED DATE",
    PLC_DT,
    ATTRNYCODE,
    RMSBILENUM,skipplcmt

    It's not showing up because it's only in the first With Select - it hasn't been brought down all the way through to the final Select.  Here's how you need to change it;
    WITH SEL_ACCTS AS(
            SELECT
              CASE WHEN RMSCUSTTYP = 'I' THEN
                CASE WHEN Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM)) <> ',' THEN  Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM))
                ELSE ''
                END
              ELSE RMSCMPNAME
              END AS "DEBTOR NAME",
              RMSACCTNUM AS "CLIENT ACCOUNT#",
              case when RMSHOMEPHN = '' or RMSWORKPHN = '' or RMSFAXPHN = '' or RMSMOBLPHN = '' then  'Y' else 'N' end as skipplcmt,
              A.RMSBILENUM,
              RMSDATEASG AS PLC_DT,
              ATTRNYCODE,
              RMSGATECD as "Gate Code",
              RAND() AS RANDNUMGEN
            FROM REPORTING.RMASTER As A
              left join reporting.rcomker b on a.rmsbilenum = b.rmsBilenum
            WHERE RMSDATEASG > REPLACE(CHAR(CURRENT DATE - 90 DAYS, ISO),'-','')
              AND recordtype =  'D'
              and ATTRNYCODE IN ({?AGCY_CODE})),
    GET_ACCTS AS(
            SELECT
              "DEBTOR NAME",
              "CLIENT ACCOUNT#",
              Cast(Timestamp(plc_dt||'000000') As Date)  AS "PLACED DATE",randnumgen,skipplcmt,
              PLC_DT,
              ATTRNYCODE,
              A.RMSBILENUM,
             "Gate Code"
            FROM SEL_ACCTS AS A
              LEFT JOIN REPORTING.RPRDBAL AS B ON A.RMSBILENUM = B.RMSBILENUM
            ORDER BY RANDNUMGEN
            FETCH FIRST {?#_of_Accts} Rows Only),
    GET_ACTV AS(
            SELECT
              G.*,
              RMSTRANDTE,
              ACTION_CODE,rmstrantim,
              RESULT_CODE
            From GET_ACCTS AS G
              LEFT JOIN RPTINGDATA.ROACTREACC AS R ON G.RMSBILENUM = R.RMSBILENUM AND G.ATTRNYCODE = R.ATTRNYCODE AND RMSTRANCDE = '9R'
                AND (ACTION_CODE IN('1','2','3','4','5','7','14','16','22','25','26','27','29','36','44','66')
                OR RESULT_CODE IN ('2','14','56','58','59','60','61','62','66')) AND RMSTRANDTE >= PLC_DT )
    SELECT 
      "DEBTOR NAME",
      "CLIENT ACCOUNT#",
      "PLACED DATE",
      PLC_DT,
      ATTRNYCODE,
      RMSBILENUM,
      skipplcmt,
      "Gate Code"
      MIN(CASE WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29')
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTATTEMPT,
      SUM(CASE WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29')
        THEN 1 END) AS ATTEMPT#,
      SUM(CASE WHEN RESULT_CODE IN ('2','56','58','59','60','61','62','66')
        THEN 1 END) AS CONTACT#,
      SUM(CASE WHEN RESULT_CODE = '14'
        THEN 1 END) AS PROMISE#,
      MIN(CASE WHEN ACTION_CODE = '44'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTMGRRVW,
      SUM(CASE WHEN ACTION_CODE = '44'
        THEN 1 END) as MANAGER#,
      MIN(CASE WHEN ACTION_CODE = '1'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTLETTER,
      MIN(CASE WHEN ACTION_CODE = '36'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTSCRUB,
      max(CASE WHEN ACTION_CODE in ('1','2','14','16','22','66')
        then 'Y' else 'N' end) as locateacct,
      sum(case WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29') and (rmstrantim between 80000 and 100000 or rmstrantim between 180000 and 210000) and
         (  DAYOFWEEK(DATE (SUBSTR ( DIGITS (rmstrandte) , 1 , 4 ) || '-' || SUBSTR ( DIGITS (rmstrandte) , 5 , 2 ) || '-' || SUBSTR ( DIGITS (rmstrandte) , 7 , 2 ) )) in (1,7) )
         then 1 else 0 end) as primecall,
    FROM GET_ACTV
    GROUP BY
      "DEBTOR NAME",
      "CLIENT ACCOUNT#",
      "PLACED DATE",
      PLC_DT,
      ATTRNYCODE,
      RMSBILENUM,
      skipplcmt,
      "Gate Code"
    -Dell

  • SPM 5.2 - problem with reason/activity fields - not showing in the report

    Dear experts,
    I have a situation that is hard to describe.
    We have SPM 5.2 - all set and working, now the problem is that for some of the FF sessions the tool is either not reporting the reason/activity fields (due to some technical problem that is occuring randomly) or the users have found a way to abuse the fields and make thier way around them. (these fields are very important for our SOX controls)
    I have created test users to see how they are entering without filling the reason/activity fields, but no luck - i couldnt enter.
    As you know the Activity field is mandatory text field and at least one character must be entered,  but I don`t think this is the workaround, because even if you put space the report still will show it. I have examples where the report is not showing anything.
    The worst is that I can`t simulate such cases.
    Have you ever heard of such nosense?
    Thank you,
    Iliya

    I think I found it - Application deficiency. It is the language that you are logged with. If it is not English the application is not recording the text that you type in the reason/activity fields upon FF session.
    I hope the latest patches are fixing this!
    BR
    Iliya

  • Text Fields Not Showing in Design or Live View

    Hello Everyone,
    I have run into a problem trying to create a simple contact form through Dreamweaver CS6.  I have two text fields for Name & Email, and 1 text area for Comments.  The issue I am running into is that the text fields are not showing in Design or Live view.  I have set-up all variables required for the server for the form to work... but that should not have any effect on the text field showing...  I tried uploading my contact page with the same result of no text fields showing...
    What is really laughable is that the "text area" I placed in my form for Comments shows up in Design & Live view just fine.  I am thinking that I am missing something, but just do not know what exactly.  The form is styled through CSS.
    Here is the form code:
         <div id="CRDForm">
           <form action="http://www.sweetformimi.com/formmail/formmail.php" method="post" enctype="application/x-www-form-urlencoded" name="contact" target="_self" id="contact">
        <input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT,AUTH_TYPE,REMOTE_USER">
        <input type="hidden" name="recipients" value="[email protected]" />
        <input type="hidden" name="subject" value="Contact Form" />
             <label><p>Your Full Name
               <input name="Name" type="text" id="Name" size="40" /></p>
             </label>
             <label><p>Email
             <input name="email" type="text" accesskey="2" tabindex="2" title="Email" value="Email"></p>
             </label>
             <label>Comments<br />
             <textarea name="comments" cols="40" rows="10" accesskey="3" tabindex="3" title="Comments"></textarea>
             </label>
             <input name="submit" type="submit" accesskey="4" tabindex="4" title="submit" value="submit">
           </form>
        </div>
    Are there other variables I should be thinking about in the rest of my site?  I am using a fluid grid layout.  I have CSS for desktop, tablet, and phone devices.  I also have a primary CSS file that imports all three.  The sites structure was done by using <header>, <article>, <footer>, and of course <div> tags. 
    Has anyone ever experienced the "text fields" not showing up before? Is it a simple fix as reinstalling Dreamweaver CS6?  Finally, another thing I should mention is that I did have a previous version of Dreamweaver on my comp, which was CS3.  I did not uninstall that before installing the newer version.  I assumed (and I could be wrong here) that it would automatically replace the older version.
    I apoligize for it being long winded, but I am looking for some help on this issue...
    Thank You

    Hey thank you osgood for the reply!
    When I look at code for long hours it sort of blurs together, and I miss things... I think that happens to the most of us
    Ya I found what was blocking my text fields in my desktop.css
    I primarily work through code view, and currently working on quite a few projects kind of makes your eyes miss the small errors.
    Thanks again!

  • Camera new d810 not showing pix up in raw files in elements 11

    camera new d810 not showing pix up in raw files in elements 11 and lightroom 4

    DNGC 8.7 can be found, here:  http://www.adobe.com/downloads/updates/
    You can purchase upgrades to LR and/or PSE, here:
    http://www.adobe.com/products/catalog/software._sl_id-contentfilter_sl_catalog_sl_software _sl_mostpopular.html

  • Option claims from CRM are not showing in BW report.

    Hi All,
    We are having a problem with BW report. The report shows all the claims thatt are created in CRM system( spource sys- CRM). We notices that claims that are called as option claims are not showing in BW report, but they are present in BW. I have checked filters in report design. no filters exist. Where they are getting filtered out. Please help me.
    Haaris..

    Hi,
    I am giving you ore information on the above issue, the above query is running on an infoset, I realized, data is missing from infoset. Where as the data is present in DSO.
    The other thing I can see every other claim in BW, but I cannot see Option claim which are very less compared to other claims.
    The infoset has four DSOs and one characteristic as components.
    Please let me know if you get any idea?
    Haaris.

  • Safari 6.0.1 not showing in System Report (installations)

    I have noticed that Safari 6.0.1 is not showing in System Report (installations) only the previous Safari 5.1.7 - Anyone know why this should be so? Now in Mountain Lion we do not have the update info in Software Update as before; only by going to "About this Mac". Any help appreciated!

    Now in Mountain Lion we do not have the update info in Software Update
    If you click your Apple menu icon you should see Software Update from the drop down menu.
    Clicking Software Update should open the App Store for you.

  • New field NOTES required for each activity listed in BP factsheet

    Hi Experts.
    We are trying to have a new field NOTES for each activity listed in BP factsheet. For activity we have several fields like description, status , dates etc but notes (long text) is not there for the activity.
    Could anyone help us out.
    Regards,
    Rahul

    Hi Saumya,
    I want to use the standard activity notes field here.
    My requirement is to display the column Activity notes in activities assigment block of account Factsheet.
    BP_Factshheet/Activities is the view and the Context node BUILACTIVITY does not have the attribute activity notes.
    Please give your inputs
    Regards,
    Rahul

  • Approved App Does Not Show in the App Part Section.

    Hi all,
      I have successfully add an App from the SharePoint App Store to my SharePoint Site which was developed using SharePoint 2013. The added app was successfully Approved then when I try to add that app using the App Part to a web page I cannot Find it
    in the App Part section. I looked in the Site Collection Features & Site Features I couldn't find the app to activate. I don't think I have done some kind of mistake. So then what else I have to do to add that App part to the web page.
     Could someone try to solve this matter?
     Thanks,
     Regards,
     Chiranthaka

    Ok I found the solution from another thread & it is at the below!
    Cannot Add
    Approved App To A Web Page - App Does Not Show in the App Part Section.

  • User-Defined Alphanumeric field not showing in Crystal Cross-Tab Reports

    Hi  All,
    We are facing the given below issue in crystal reports :
    In Crystal Cross-tab reports User defined fields with alphanumeric datatype are not displaying where as User defined Fields created with Numeric datatype are displayed and SAP fields for eg; Item name which are AlphaNumeric datatype are showing up.Can any body help us on this?
    Regards
      Uma

    Hi Uma,
    You may check these first:
    Re: Problem after upgrding to SAP B1 8,81 PL07
    Re: Crystal not displaying  UDF
    Re: UDF not visible in crystal report
    Thanks,
    Gordon

  • New process form field not showing in previously provisonned user's process

    Hello,
    I added a new field to my AD process definition to map a new attribute (division) and made that new version active.
    I created the needed process task and pre-populate adapter so that this field is being provisoned upon crete and update in target resource.
    I also updated the TRIGGERS lookup to fire the process task upon update.
    Works fine so far.
    I now have a major problem : previously provisioned users still show the "old process form" and have no "division" field available. Therefore, when I update the division field in the user definition, it fires the process task but that task cannot write to the process form field. Am I stuck for these users with this old process form?? Can I update to the new one (obviously, revoking and re-provisionning is not an option since I DON'T wan to delete the user account even for a few seconds...)
    Thanks for your help.

    To update your previously provisioned users to your new form, you must use the Form Version Control Utility. There are a lot of posts within the forum about using it. Here's a link to the Oracle documentation to learn more about the utility.
    [http://docs.oracle.com/cd/E21764_01/doc.1111/e14308/formver.htm]
    Sunny Tsang

  • I am having issues with parts of my Facebook news page not showing and games not running.

    For the last three days, I have been having issues running Facebook on Firefox. First, the side panels on the news page are not showing, which means I cannot connect to games like Farmville or Bejeweled Blitz. Those side panels were showing the previous two days, but when trying to connect, I had a message about the secure setting and I would get the message "you are no longer logged onto FB, connect to FB to play".

    Try clearing cache and cookies. Next make sure your plug-ins are up to date. If both do not resolve you issue try [[Safe mode]]
    If you issue is resolved by this post please click Solved it! so we can assist others.

  • Text field not showing record set options

    I entered the following php code to a text field in a form:
    <p>
          <label for="date">Select Available Date</label>
          <select name="date" class="text" id="date">
            <option value="0" selected="selected">select your preferred travel date</option>
                <?php while ($row_rsDep = mysql_fetch_assoc($rsDep)) {
                      echo '<option>' . date('d.m.Y',strtotime($row_rsDep['Start_Date_Eur'])) . ' - ' . date('d.m.Y',strtotime($row_rsDep['End_Date_Del'])) . '-' . $row_rsDep['Itinerary_Code'] . '</option>';
              ?>       
          </select>
        </p>
    In the text field it shows only the option=0 "select your preferred travel date" and does not show the rest of the options as available from the database.
    Any idea what is wrong with my code?
    Thanks,
    zabberwan

    I do have it showing in the sidebar showing as a repeating region. I commented it out and entered your code, but this time it shows nothing at all, not even an error!
    The problem may have to do with "VIEWS" as I am working partly with Views on the external server. The server guys are having problems allowing Views. They did allow it for my account, but somehow this is not working. So I update my database leaving out the 3 tables created as views out of a total of 8. On the contrary on the local server the database is working fine, so that may not be the problem after all.
    I had got it work a fortnight back, but lost it as I had to redo a few things with the forms it is in. On the sidebar it is working fine otherwise as a repeating region and showing all the dates of all itineraries. Only it's not working in the form, where it shows the preselected string (select your preferred travel date), but not the rest of the options.
    About changing the email, one has to change the whole ID  and profile etc. and then you can't log into your own account with the same user name, you have to have a different one, so that your own thread is no longer your own. What a pile of goons at the wheels! And what a disappointment with otherwise such a great bunch of forums.. I'll now have to contact the staff and would like them wipe out all my ID's and Profiles at Adobe and make a new one. It's such a rotten mess. This thing even ruined my ID at Adobe Browser Lab.
    I suppose we'll leave it for Mr. Nobody to fix it, like so many other things especially around Christmas!
    zabberwan

  • Records Not Showing Up On Report

    I'm using Crystal XI
    I can take the query from "Show SQL Query..." and paste it into a query screen in SQL Server 2008 management studio and retrieve the correct records.  However, the report itself does not contain all the records the should have been returned.
    To the best that I can figure, the records where a transaction date (date/time field) is null is not showing up on the report.  I only display the field, do not do any calculations based on the field. 
    It is part of the record selection formula, where I test for the field to be between start/end parameters or is null (which produces the correct SQL query as I stated above)
    So why are the records not showing up on the report, and more importantly, how do I get them to show up?
    TIA

    It already was set to "Exception for Nulls"
    On the other hand, just on a whim, I tried reversing the order of the query from what it was:
    {MyQuery.Company = {?Company}
        And
        {MyQuery.Transaction_Date} In {?Start/End Date}
        Or
        IsNull({MyQuery.Transaction_Date})
    To:
    {MyQuery.Company = {?Company}
        And
        IsNull({MyQuery.Transaction_Date})
        Or
        {MyQuery.Transaction_Date} In {?Start/End Date}
    And that seemed to work.  I'm not sure why it will work in the Mangement Studio, but not in Crystal Reports, but at least it works.
    Thanks for the tug in the right direction.

  • Managed Metadata Fields not showing up in preview mode

    0down
    votefavorite
    In our SharePoint 2013 Publishing page, managed metadata fields doesn't show in preview, they show up only in edit mode or after we publish page.
    Is this bug?
    Thanks in advance.

    Hi,
    According to your post, my understanding is that the managed metadata fields not display in preview.
    I tried to reproduce the issue, the managed metadata fields worked well in my environment.
    I create a publishing page, add a library web part which contained managed metadata columns.
    Then click the preview option in the ribbon, the managed metadata columns worked well.
    Did the issue occur in other publishing pages? You can create a new publishing page to check whether it works.
    Did you use the compatibility mode or add the site into trusted sites?
    You can use compatibility mode to check whether it works.
    Open IE->Tools->Compatibility View Settings
    You can also add the site into Trusted sites.
    Open the IE->Internet Options->Security->Sites->add the site into the Websites, then check whether it works.
    What's more, you can use other browsers to check whether it works, such as Firefox, Chrome.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Excel chart - create second axis

    I've created a script which makes an Excel object, takes some data, generates a chart and then exports the chart as a JPG. The thing is it's a CPU report with one series for Mhz and one for % - and using only one axis results in it ending in the thou

  • Scripting Airport UTILITY to choose TC setup

    I have latest Timecapsule 2TB. Most routers and network drive offerr setup via an HTTP interface ; this has been said already, TimeCapsule has no web-based setup. I have created 2 setups on my TimeCapsule, one with wif-fi activated, the other without

  • Photo sharing website

    I have a few photo sharing albums that until the other day worked perfectly now the links bring me to apples Photos info page and not my photos. Anyone else having this issue?

  • Safari Tab management

    Hello all. Thanks in advance for any thoughts you have. I'll be blunt. Is there any way to disable the new tab management in Safari? It used to be there was a pop-up menu list to the right if you had a lot, like with the bookmarks. I have a loooot of

  • SMS Messaging

    I can't figure out how to text message more than one person at the same time. Am I missing something?