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

Similar Messages

  • 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

  • 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

  • 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

  • Adding new field KUONR in VF05 Standard Report from table VBRK

    Hello All,
    I need to add the Assignment Number Field KUONR from the table VBRK into VF05 standard Report and show the respective Assignment Number for the Billing Document.
    Please suggest the exact OSS note and the process
    The SAP Version is SAP ECC 6.0.
    Thanks and Regards
    Karthik

    Hi Karthik,
    Welcome to the forum!
    Please refer to the thread given below. Hope it helps.
    How to Add new fields to display in VF05
    Regards,
    Sridhar

  • 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.

  • Some SQL fields not showing data in Crystal XI R2

    I have a report that is using a stored procedure.  In this stored procedure we have many fields that are being passed over to Crystal.  A small portion of these fields do not show any data when you browse them in Crystal.  But when you check on the SQL Server 2005 side, they contain data.  So we know that the issue is probably on the Crystal side because there is data on the SQL side.
    I originally thought that the problem may be caused by Null values in the database, but I used Crystal to convert the Null's to numeric zero if it was a number, and still there was no data showing up.
    Also in the stored procedure, we are passing 2 parameters a start and end date.   But that seems irrelevent to why some of the fields are not containing data like they should.
    Why would some fields show no values at all, and some fields shows values? 
    Any ideas on how to correct this situation so data will show up for all the fields like they are suppose too?
    Thanks everyone for their help!

    Hi Levi,
    Pleaase check the following :
    1. Other than storedprocedure are you adding any tables to your report ? If so, check the links between your stored procedure.(Through Database Expert)
    2.Write the following formula to find out whether the database fields contains values or not.
    if isnull() or = " " Then
    "This Field is Empty"
    Else
    Drag and dwop this formula in your report to get the field values.
    Thanks,
    Sastry

  • Report Document not show on Crystal Report Viewer in C#

    My program is modified from VB.NET. Now I struck with Crystal Report that Crystal Report Viewer didn't show Report Document.
    Printing code is composed of two forms. One assign parameters and objects need. Other is Crystal Report Viewer form, CrystalReportForm. Last one run report by parameter from the first.
    When run this code that it didn't found any error but the problem is no report show on Crystal Report Viewer on second form. It just blank Crystal Report Viewer. There arm't any message response.
    Here is my code.
    // report caller form.
    private void Print()
       CrystalReportForm rptForm = new CrystalReportForm();
       string[] strtbl;
      strtbl = new string[1];
       string[] strqry;
      strqry = new string[1];
       // prepare var
       string myqry;
       string myrpt;
       // Pass The Table That you used in the crystal Report
      strtbl[0] = "r_receipts";
       // Pass the Query
      myqry = "SELECT * FROM r_receipts";
      myrpt = "rptReceipts.rpt";
      strqry[0] = myqry;
       //Pass For Mdi True
      rptForm.MdiParent = this.ParentForm;
      rptForm.ViewReport(myrpt, strtbl, strqry, "");
       //Parameter Value It is Optional
      rptForm.Show();
    // Crytal Report Viewer form.
    public void ViewReport(string ReportName , string[] TableName, string[] QueryString , string Parameter = "")
       //Me.MdiParent = mainpage;
       if (TableName.Length  != QueryString.Length  )
       MessageBox.Show("Passed Variable Are Not Correct", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
       return;
       CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
       CrystalDecisions.Windows.Forms.CrystalReportViewer crv  = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
      crv.ActiveViewIndex = 0;
      crv.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      crv.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None;
      crv.Dock = System.Windows.Forms.DockStyle.Fill;
      crv.Location = new System.Drawing.Point(0, 0);
      crv.Name = "CrystalReportViewer";
       MySqlDataAdapter at =new MySqlDataAdapter();
       DataSet ds = new DataSet();
       for (int i = 0; i < TableName.Length; i++)
      at = GetDataAdeptor(QueryString[i]);
      at.Fill(ds, TableName[i]);
       string rptPath  = "";
      rptPath = Application.StartupPath + "\\" + ReportName;
      rpt.Load(rptPath);
      rpt.SetDataSource(ds);
       if (Parameter != "")
      rpt.SetParameterValue(0, Parameter);
      crv.ReportSource = rpt;
      crv.Refresh();
       //CrystalReportViewer.DataBind();
       //Me.Panel1.Controls.Add(CrystalReportViewer);
       Panel panel1 = new Panel();
      panel1.Controls.Add(crv);

    Hi Bhushan,
    It's not yet fixed. My dataset (ds) can't bine to DataGridView as
    DataGridView1.DataSource = ds
    But it could do like this
    DataGridView1.DataSource = ds.Tables[0];
    When I bine to Crystal Report Viewer setdatasource
    CrystalReportViewer1.setdatasource = ds.Tables[0];
    It still not work, anyway you suggest let me in the right way. I very confuse the thing I fix to bine to DataGridView
    Thank,
    Chaiwat

Maybe you are looking for

  • How do I add a speed dial to my iphone with a pause in it to dial an extension?

    I can make an icon for a speed dial, but it will not allow me to use a comma as a pause to dial an extion to the phone number.  Example: phone number being dialed is 507-555-555 (pause) extension: 55555  http://5075554444,12345.tel.qlnk.net is what I

  • How to count intials in a table

    I have a table (4 columns) used as a roster for fundraising. The table rows (1st Col) are dates eg; 4-Mar, 11-Mar etc. Columns 2-4 contain a members initials that are rostered for that date. (See below) What i would like is to be able to have a separ

  • Managed server not starting

    hi am trying to start my managed server in my WebLogic Server Version: 10.3.6.0 ,am on window 7 64 bit i did this startmy_managed_server startManagedWebLogic my_managed_server admin-url am geting this error starting weblogic with Java version: java v

  • PBG4 17" Aluminum.  Need some opinions on upgrades!

    Hello, Been lurking and reading up on posts here. I have an old G4 running 10.6.5 (still working okay-SMART status says it's fine) The hard drive has about 120gb total and 12gb left and is getting kinda full. I am considering moving all of my picture

  • SBOP PC 7.5 NW installation error

    Hi All, I am instralling SBOP PC 7.5 NW and have hit an error.  Can anyone offer any assistance please? Hardware: Wintel x64 Windows 2008 Server. Error in phase: XPRA_EXECUTION SAPK-750AGINCPMBPC Errors occurred during post-handling AFTER_IMP_NROB fo