XML DataSource Not Showing When The Rept Is Printed,

My Background: I am new to the VS 2008, but not that new to Crystal, I had experience creating reports against MS SQL, and ODBC data.
Remedies tried:
I have updated VS 2008 to SP3, and updated Crystal with SP and FP to no avail. 
Problem
Initially the report worked great, I created a new crystal report and used a XML file as the database through the wizard.
The report worked and looked as expected.  I was tweaking it, moving and adding fields and toggling the preview and it was still fine.   I then began trying to add a graphic and then when I previewed it some strange results started displaying like Orange lime, and color references, and nothing related to my XML data.  The layout was the same but the data was strange.
I have tried using database expert, and location resetting but the problem persists.  I checked the properties, and previewed the data and fields and the correct data shows up.  I tried recreating the report from scratch and the problem persisted.
I then tried using a different XML file, made a simple and quick report and the same strange data showed on that report.
In exasperation I used my alternate version of Crystal Reports which I use against MS SQL, opened my original RPT file and `Viola, it shows perfectly with the right data.  I turned around and re-opened it through the VS version and it still showed the erroneous data.
I hope my explanation was clear, any help will be appreciated.

I found this page which has your name as the reference
http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=235963563
The page displays the titles:
    My Home >
    Business Intelligence (BusinessObjects) >
    Crystal Reports 2008 - Version and Download information for SPs and FPs
    Tools
Crystal Reports 2008 - Version and Download information for SPs and FPs
    Added by Ludek Uher, edited by Ludek Uher on May 06, 2011
The Updates Listed are:
CR 2008 RTM      12.0.0.549      N/A RTM build
FP2.1      12.2.1.412      https://smpdl.sap-ag.de/~sapidp/012002523100013261032009E/cr2008v1_fp21.exe
FP2.2      12.2.2.453      https://smpdl.sap-ag.de/~sapidp/012002523100015097962009E/cr2008_fp22.exe
FP2.3      12.2.3.467      https://smpdl.sap-ag.de/~sapidp/012002523100015892592009E/cr2008v1_sp2fp23.exe
FP2.4      12.2.4.507      https://smpdl.sap-ag.de/~sapidp/012002523100001024152010E/cr2008_fp24.zip
FP2.5      12.2.5.537      https://smpdl.sap-ag.de/~sapidp/012002523100002975192010E/cr2008fp25.exe
FP2.6      12.2.6.567      https://smpdl.sap-ag.de/~sapidp/012002523100004723372010E/cr2008fp26.exe
FP2.7      12.2.7.598      https://smpdl.sap-ag.de/~sapidp/012002523100005755702010E/cr2008fp27.exe
SP3      12.3.0.601      https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
FP2.8      12.2.8.638      https://smpdl.sap-ag.de/~sapidp/012002523100008170752010E/cr2008fp28.exe
FP3.1      12.3.1.684      https://smpdl.sap-ag.de/~sapidp/012002523100010605962010E/cr2008sp3_fp31.exe
FP3.2      12.3.2.753      https://smpdl.sap-ag.de/~sapidp/012002523100015106822010E/cr2008fp32.exe
FP3.3      12.3.3.812      https://smpdl.sap-ag.de/~sapidp/012002523100016815822010E/cr2008fp33.exe
I guess I assumed the link:
SP3      12.3.0.601      https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
Meant the one for VS 2008.  This is the one I downloaded and installed, but as you have stated I was mistaken.
There is no reference to SP1.
Since I'm new to this forum, for me its like looking for a needle in a haystack. 
Would you be so kind to copy and paste the link as a response to this one.  I would appreciate it much.

Similar Messages

  • TS1410 My iPod shuffle ( 1st or 2nd generation) will not recharge and does not show when the doc is connected to my MacBook Pro. I'm running the latest updated version of iTunes.

    My iPod shuffle ( 1st or 2nd generation) will not recharge and does not show when the doc is connected to my MacBook Pro. I'm running the latest updated version of iTunes.

    Hello Jane Benstock,
    Thank you for using Apple Support Communities
    It sounds like the next best step to take would be to reset the iPod Shuffle.
    Check out this article named Resetting iPod shuffle found here http://support.apple.com/kb/HT1655.
    All the best,
    Sterling

  • Force the xml declaration to show when the xmltype in generated

    Hi.
    I use oracle 9.2i .
    When i generate the XML the xml declaration doesnt show.
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    Only if i do a getclobval(), but that returns a string that has spaces and alot of other stuff that i don't want.
    Is there any way to return the xml declaration when i call a xmltype?
    I know i asked a similar question before, but the answer i got was to use getclobval... but must be another way..
    I hope you can help me, cheers.

    Maybe time to patch??
    SQL>  select * from v$version where rownum = 1
    BANNER                                                         
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    1 row selected.
    SQL>  select xmltype
                 ('<?xml version="1.0" encoding="UTF-8" standalone="no"?>'
                  || xmlforest ('some_value' as "root_element")
                 ) xml
      from dual
    XML                                                                            
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <root_element>some_value</root_element>                                                                  
    1 row selected.

  • The JPanel did not show when the menu is selected

    My program consists a JMenu bar with sub menu items. When the user select on the menu items a panel with the gridbag layout will show with all the labels.but the panel did not show. Can anyone show the problem for me ?
    AdminFrameMain.java
    public class AdminFrameMain
         private DisplayMenuBar menubar;
         private DisplayToolBar toolbar;
         private DisplayStatusBar statusbar;     
         public AdminFrameMain()
              JFrame frame = new JFrame("S-League Administration Management System");
              Toolkit kit = frame.getToolkit();
              Dimension windowsize =kit.getScreenSize();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Container content = frame.getContentPane();
              content.setLayout(new BorderLayout());
              menubar = new DisplayMenuBar(frame,content);
              toolbar = new DisplayToolBar(content);
              statusbar = new DisplayStatusBar(content);
              frame.setSize(800,600);
              frame.setVisible(true);
         public static void main(String [] args){
              AdminFrameMain tm = new AdminFrameMain();
    DisplayMenuBar.java
    public class DisplayMenuBar
         private JMenu addMenu,addTeamMenu;
         private JMenuBar bar = new JMenuBar();
         private JToolBar toolbar = new JToolBar();
         private JMenuItem addTeamItem;
         private JFrame setFrame;
         private Container setContent;
         private AddTeamManagement addTeamMang;
         public DisplayMenuBar(JFrame frame,Container c)
              setFrame = frame;
              setContent = c;
              SetMenuBar();
         public void SetMenuBar()
         setFrame.setJMenuBar(bar);
         addMenu = new JMenu("Add");
         //file menu items list
         //Add sub menu
         addTeamMenu = new JMenu("Team Management");
         addMenu.add(addTeamMenu);
         //Add sub menu items
         addTeamMenu.add(addTeamItem = new JMenuItem("Add Team"));
         addTeamMenu.setMnemonic('T');     
         addTeamItem.setMnemonic('T');
         //team items listener
         //addTeamItem.addActionListener(taskcommand);          
         addTeamItem.addActionListener(new ActionListener()
              public void actionPerformed(ActionEvent e)
                   AddTeamManagement addTeamMang = new AddTeamManagement(setFrame,setContent);
         bar.add(addMenu);
    AddTeamManagement.java
    public class AddTeamManagement
         private JPanel addTeamPanel;
         private JFrame frame;
         private JButton createTeamBt,resetTeamBt;
         private Container addTeamContent;
         private JTextArea teamDescTextArea,teamIndpTextArea;
         private JTextField teamNameField;
         private JLabel teamID,teamDesc,teamInfo,numOfPlayers,teamZone,playersNum;
         private GridBagLayout gridBag;
         private GridBagConstraints constraints;
         public AddTeamManagement(JFrame f,Container c)
              System.out.println("add team mg");
              addTeamPanel = new JPanel();
              frame = f;
              addTeamContent = c;
              gridBag = new GridBagLayout();
              addTeamPanel.setLayout(gridBag);
              addTeamPanel.setBackground(Color.pink);
              constraints = new GridBagConstraints();
              teamID = new JLabel("Team ID:");
              teamDesc = new JLabel("Team Description:");
              teamInfo = new JLabel("Team Info:");
              numOfPlayers = new JLabel("No Of Players:");
              playersNum = new JLabel("15 Maximun");
              teamZone = new JLabel("Team Zone:");
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(teamID,0,0,1,1);
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(teamDesc,1,0,1,1);
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(teamInfo,2,0,1,1);
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(numOfPlayers,3,0,1,1);
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(teamZone,4,0,1,1);
              System.out.println("showing");
              addTeamContent.add(addTeamPanel,BorderLayout.CENTER);
         public void addComponent(Component component,int row,int column,int width,int height)
              System.out.println("adding c");
              constraints.gridx = column;
              constraints.gridy = row;
              constraints.gridwidth = width;
              constraints.gridheight = height;
              gridBag.setConstraints(component,constraints);
              addTeamPanel.add(component);
              addTeamPanel.setVisible(true);
    }

    Hello,
    you are missing only one link, just add following line to your actionPerformed method of DisplayMenuBar class and all problem will be solved
    setContent.validate();
    Actually, Swing component does not updated automatically. when you do any changes to the component layout it will set that component as invalidated component. To update the view you need to call validate() method defined in JComponent class.
    Virus

  • Datatip function not shown when the user hovers over the icon int ADG

    When you have a datatip function in a advanced datagrid the datatip  does not show when the user hovers over the icon. Is there a way round this?

    I have almost same situation. But there are some different. I am using RegisterPointerInputTarget to redirect all touch message to my window. and use InjectTouchInput to simulate each flag, which means, WM_POINTERDOWN,WM_POINTERUPDATE,WM_POINTERUP. If user
    touches monitor, I simulate DOWN, if user swipes their finger, I simulate UPDATE, if user lifts finger, I simulate UP.
    Then the interesting point is, system consider user's finger as primary pointer, and my injected touch as secondary pointer. windows desktop and windows explorer skip all my injected touch. I really hate that.
    However IE and chrome will accept my injected touch, they don't caret about primary pointer.
    In order to fix this problem, I call AccNotifyTouchInteraction before calling InjectTouchInput.
    According to the MSDN, AccNotifyTouchInteraction will notify the destination window before InjectTouchInput. But this idea still fails, which is disappointing.

  • New field will not show in the Datasource

    Hello Experts,
    I enhanced a datasource by adding a new field in the append structure and when I saved and activated and when into RSA5 or RSA6 then double clicked on the datasource my ZZ field does not show at the end. Anyone know why this is?
    Datasource: 2LIS_11_VAITM
    Extract Structure: MC11VA0ITM
    Thanks!

    HI,
    Once you have appended the structure .
    In RSA6 you need to go to the purticular datasource (In change Mode) and need to uncheck the option *HIDE field for the field you have appended   .
    After you Uncheck that field save and exit.
    Hope it is helpful .

  • When I try to include a white and black photo in a iMovie the result is a black totaly black picture which does not show in the movie. Why? Can it be fixed?

    When I try to include a white and black photo in a iMovie the result is a black totaly black picture which does not show in the movie. Why? Can it be fixed?

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Other than that, what version of iPhoto do you have? Assuming 09 or later try
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD
    P.S. Please don't type in block capitals. They are harder to read and on the forum it looks like you're having a tantrum

  • Hundreds of my iPhoto pictures will not be copied and will not show when I double-click on them.  When I do in iPhoto an exclamation surrounded by a triangle appears.  Though I can see the picture in the small tiles below it will not expand.

    Hundreds of my iPhoto pictures will not be copied and will not show when I double-click on them.  When I do in iPhoto an exclamation surrounded by a triangle appears.  Though I can see the picture in the small tiles below it will not expand.  I also cannot attach any of these pics into an e-mail or into any other file.  I have already went through all 3 Repair options and when that did not solve it went through a complete Rebuild.  Any Help?!  Any Suggestions on how to fix this?!  I have spent almost 2 days now going through all of the published help.
    I have backups going back 6 months - I have not had the real need to check every album before - but - all of my backups also have this same problem.

    The triangle with the ! indicates that the connection between the thumbnail and the orginal is missing - this can be caused by many things including database corruption and user action emoving the originals photos on urpose or by accident
    If the database is corrupted then rebuilding is the solution - backup and depress the option and command keys, launch iPhoto and rebuild your database  --  if the iPhoto rebuild does not cure the problem then download iPhoto Library manager and use its rebuild command which creates a totally new library leaving the existing one untouched
    If you have deleted the photos then you need to start over with a new library and import the photos you have not deleted into it
    You can select one of the problem photos and use the reveal original in finder commander (file menu) to see if the original is there - if it is a finder window will open showing it
    LN

  • How can I connect my new iPhone to my iTunes account on my computer? It is not showing in the devices when I connect it.

    I bought a new Iphone and I was unable to update with my iTunes because they wouldn't let me leave the store with out checking the camera and speakers. I had to start the phone. I tried connecting to iTunes when I got home but it's not showing in the devices. Please help me.

    Look at this for possible solutions:  iPhone, iPad, or iPod touch: Device not recognized in iTunes for Mac OS X, http://support.apple.com/kb/TS1591

  • Service monitoring is not showing all the services when i create a service monitor under Management pack templates.

    Hi All,
    I am using SCOM 2007 R2 CU4 in my environment. I want to do a service monitoring on specific agents. When i try creating this service monitor which comes under the Management pack template  when i select the service which i want to monitor it does not
    show all the services in the drop down.
    For example - I have Windows audio service which is present on the machine, But it is not showing in the service list. 
    So from the services stating from "W" i see only 5 in SCOM and in services.msc in the Agent i see more than 5.
    Below is the screen shot.
    Can any one please help.
    Gautam.75801

    Hi Yan Li,
    So based on your above suggestion, If the services are already managed  / monitored by a specific
    management pack those services will not appear here in the Wizard while creating this type of a Management pack object alert right ?
    If that is the case why does not the same reflect here in the operations console in the Services monitor
    TAB ?
    Gautam.75801

  • After importing images from my card using LR 5.4, the GPS data does not show in the metadata panel. However, when I look at the imported images using Bridge, the GPS data is visible. Anybody know why LR is not seeing the GPS data? Camera is Canon 6D.

    After importing images from my card using LR 5.4, the GPS data does not show in the metadata panel. However, when I look at the imported images using Bridge, the GPS data is visible. Anybody know why LR is not seeing the GPS data? Camera is Canon 6D.

    Ok, the issue seem to be solved. The problem was this:
    The many hundred files (raw and xmp per image) have been downloaded by ftp in no specific order. Means - a couple of files in the download queue - both raw and xmps. Most of the time, the small xmp files have been finished loading first and hence the "last change date" of these xmp files was OLDER than the "last change date" of the raw file - Lightroom then seem to ignore the existence of the xmp file and does not read it during import.(a minute is enough to run into the problem)
    By simply using the ftp client in a way that all large raw files get downloaded first followed by the xmp files, we achieved that all "last changed dates" of the xmp files are NEWER than the related raw files. (at least not older)
    And then LR is reading them and all metadata information has been set / read correctly.
    So this is solved.

  • Need to send my back up email a reset security questions email but the option does not show when I click on password and security

    Need to send my back up email a reset security questions email but the option does not show when I click on password and security

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (97456)

  • IIS service not showing when I use the get-exchangeCertificate | fl cmdlet

    Hello All,
    I just installed a 3rd party digital certificate to my Exchange 2010 via powershell then assigned the 4 services IIS, pop, smtp, imap but when I use the get-exchangecertificate | fl cmdlet the IIS service is not showing.The rest of the services were fine. 
    During the process of installing the certificate via powershell, I got a message that says: Do you want to enforce SSL communication on the root web
    site? If not, rerun the cmdlet with the -DoNotRequireSSL parameter. I said No to all and the operation continued. By the way, I also invoke the iisreset /restart right after installing the digital
    certificate. I then proceeded to install my root certificate and intermediate certificates. All were imported successfully via certificate snap-in. When I access the exchange 2010 EMC console, the status for the Exchange Certificate still says pending certificate
    signing request. Not sure if that is related at all to the fact that IIS service is not showing amongst the assigned services listed. Any idea why IIS service is not in the list of assigned services for Exchange certificate?? Can I re-run my powershell and
    repeat my steps, but this time just assigned IIS service alone? Or should I re-run powershell altogether and assign all 4 services again??? Also, what about the pending certificate signing request in the EMC console should I process and complete the request??
    Any advise is appreciated. Let me know please.
    Thanks!
    Lotusmail1
    Franz Garcia

    Hi Lotusmail1,
    Please run the following command to just assign IIS service to this third-party certificate (using certificate 5113ae0233a72fccb75b1d0198628675333d010e as a example), then run Get-ExchangeCertificate to check it again:
    Enable-ExchangeCertificate -Thumbprint 5113ae0233a72fccb75b1d0198628675333d010e -Services IMAP,POP,IIS,SMTP
    Regards,
    Winnie Liang
    TechNet Community Support

  • I cannot unlock my phone. When I hit the number the key is highlighted but the "dot" does not show in the passcode box. Have shut it off and restarted nothing. Held on/off and "square" key to reset but still nothing. Any ideas on how to resolve this issue

    I cannot unlock my phone. When I hit the number the key is highlighted but the "dot" does not show in the passcode box. Have shut it off and restarted nothing. Held on/off and "square" key to reset but still nothing. Any ideas on how to resolve this issue

    Connect to iTunes and try to reset it from there.

  • Help: Records not showing when cube is placed under the Multiporivider

    Hi Experts,
    I have a Cube called Bcube with char Plant,calm year/month, material and Key Figure, Pqty
    When I generate a report on this Cube, everything looks fine and I see plants, year, etc in the report
    There are 2 other cubes:
    MCube also has char Plant,calyear/month, material and Key Figure: Pqty, Sqty, TQty, AQty
    DCube also has same as BCube: with char Plant,calyear/month, material and Key Figure Pqty
    When I place all three cubes under the multiprovider, the values from the BCube does not show up in reports
    e.g. in a simple report such as
    Row       :  Plant
    Columns:  Pqty, Sqty, TQty, AQty
    In the Multiprovider, under the Indentification of Characteristics, I checked the boxes for all three cubes whenever the same charactertic in all cubes showed up for identification: e.g..
    InfoProvider  InfoObject
    Bcube----
    Plant
    MCube-------Plant
    DCube -
    Plant
    and same for. e.g. 0Calyear
    and same for Key Figures, e.g. I checked all 3 boxes  for PQty which exists in each of the cubes
    1. Why is my data for BCube not showing when reporting against the multiprovider?
    2. what does it mean by checking the 3 boxes for Plant? and checking the 3 boxes for 0Calyear.
    Thanks

    Hi,
    regarding your questions:
    1. When I run listcube against the multiprovider, I only went to the output list to select the fields I needed in the output; then entered the particular cube e.g. BCube in the infoprovider field. That was it (NO other selection) and I got the described results I explained earlier. If you have a specific test for me to try, please let me know.
    2. Please find the settings in both characteristics and key figures for all cubes in the MULTIPROVIDER maintenance screen:
    Characteristic Assighment:
    0calyear -- 3 boxes checked for BCube, DCube & MCube
    Plant -- 3 boxes checked for BCube, DCube & MCube
    0Material-- 3 boxes checked for BCube, DCube & MCube
    Key Figure selection
    PQty-- 3 boxes checked for BCube, DCube & MCube
    Sqty --checked for DCube, this key fig is ONLY in DCube
    TQty--checked for DCube, this key fig is ONLY in DCube
    AQty--checked for DCube, this key fig is ONLY in DCube
    I hope this helps you to guide me.
    Or, were you referring to mappings in the transformations?
    Thanks

Maybe you are looking for

  • I deleted a calendar tab. How can I get the data back?

    I accidently deleted the calendar tab of my wife and deleted all her apoointments on her iphone and the iMac. I am in ****. How can I get the calendar data back=?

  • Direct Shipment of Subcontract stock to customer

    Dear Gurus, Does anyone know if there is a way to direct ship material to a customer from a subcontractor where the sub-contract stock does not need to be manually received back into the plant (MIGO 101) and then shipped out to the customer.  I would

  • Bash: chkconfig: command not found

    Hi, I have made a a file dbora and made an entry in the /etc/init.d (The file basically does the Automatic Oracle Startup) I have created a dbora file I have then made the :$chmod 750 /etc/init.d/dbora Then $chconfig -level 345 dbora on Then its thro

  • My Iphone 5 headset sounds bad.

    Hi, I think the headphone mini jack is the problem. When i put my headset on. It sounds like a ruined speakers. More of a grounded speakers. I used the headset to an ipad and it sounds just fine. I had just got the problem after i updated it to ios 7

  • Calculations based on characteristics?

    hai i have doubt that can we do calculations using characteristics? tel me scenarios if we can do? bye srinu