Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dellguy

  1. dellguy

    DB connection alias in CMC

    Hello all - we are running an older version of Crystal Reports Server v11.5 and I was hoping there is a way to not have to update each report in the repository due to a database connection name change defined in each report (400+ of them) So is there a configuration setting on the server side...
  2. dellguy

    Dynamic parameter populated from command file query issue

    Hello all. CRYSTAL REPORTS 2016 Support Pack 7 Patch 5 v 14.2.7.3248 Just ran into something very strange. I have a dynamic parameter that is populated from the command file query for the report. The parameter is a multi-select list of employees. There are a couple employees that are in...
  3. dellguy

    Creative ways to get a 2nd subreport capability from a subreport.

    Any creative ideas or ways to accomplish something similar to a subreport calling a subreport? I know drilling down to a lower group level works well but my client wants to: #1. start with a consolidated financial income statement #2. drill down an income or expense line to the divisional...
  4. dellguy

    Possible to show multiple text values in crosstab as summarized fields

    I already made a manual crosstab in case no solution was available. I'll give your crosstab workaround a try and let you know. I prefer a crosstab so it handles additional limits going forward. Thanks LB, I can always count on you to reply and offer a solution. Regards, LME
  5. dellguy

    Possible to show multiple text values in crosstab as summarized fields

    Hello all I've been trying to create something like this. It is basically a crosstab of departments & approvers versus the spend limits. I want to show the names of the staff that fall under each dollar value within department. Each summary could be multiple staff names. My current...
  6. dellguy

    Oracle SQL Newbie

    Oracle 11g R1 - which I see doesn't support LISTAGG. I still need help to figure this out please.... [bigsmile]
  7. dellguy

    Oracle SQL Newbie

    still got the same error SELECT Arinvt.Itemno , LISTAGG ( Master_Spec.Code, '; ') WITHIN GROUP (ORDER BY Arinvt.Itemno) Item FROM Iqms.Ord_Detail Ord_Detail LEFT OUTER JOIN Iqms.Arinvt Arinvt ON Ord_Detail.Arinvt_Id = Arinvt.Id LEFT OUTER JOIN Iqms.Orders Orders...
  8. dellguy

    Oracle SQL Newbie

    We use Oracle 11g. This is what happens with LISTAGG. Can you see something wrong?? SELECT "ARINVT"."ITEMNO", LISTAGG( "MASTER_SPEC"."CODE", '; ') WITHIN GROUP (ORDER BY "ARINVT"."ITEMNO") "ITEM" FROM ((("IQMS"."ORD_DETAIL" "ORD_DETAIL" LEFT OUTER JOIN...
  9. dellguy

    Oracle SQL Newbie

    Hello all. I am trying to figure out how to write SQL to group data by common values together after they've been identified and assembled together. Using the following sample data, DATA ORDERS TABLE ID 100 ORDER DETAIL TABLE ID 200 Orders_ ID 100 Part_ID 500 PART...
  10. dellguy

    Subreport directory location

    I do not want to have to manually re-import 100+ reports anytime I make a change to the common subreport.
  11. dellguy

    Subreport directory location

    kray4660 - have you used the "Re-import when opening" feature of a subreport before?
  12. dellguy

    Subreport directory location

    Crystal Reports XI I created a subreport that will be the common header for several reports. This subreport contains Date/Time, a logo and a field from a parameter containing the report name. Then from the main report, I insert the subreport and make it "Re-import when opening". All that...
  13. dellguy

    SQL Expression with SubQuery

    @LB: Tried your code and now I get the same error on "HIST_ARINVT_ELEMENTS"."STD_COST". So I changed it to A."STD_COST" and then it complained about C."ARINVT_ID" (same error). ???
  14. dellguy

    SQL Expression with SubQuery

    This is the actual SQL Expression that is not working. I get a ORA-00904 "ARINVOICE"."INVOICE_DATE": Invalid identifier ( SELECT "HIST_ARINVT_ELEMENTS"."STD_COST" FROM "HIST_ARINVT_ELEMENTS" WHERE "HIST_ARINVT_ELEMENTS"."ID" = ( (SELECT...
  15. dellguy

    SQL Expression with SubQuery

    I'm using CR XI on Oracle 10g. I can not get a SQL Expression to work. Are subqueies (select within a select) allowed in SQL Expressions?

Part and Inventory Search

Back
Top