Not sure how to go about grouping this...

Hello all and thanks in advance for any help you can offer. I'm sorry if this is a bit long winded, but I'm at my wits end.
I'm using CRXI with SQLserver2000. I'm comfortable with SQL but new to CR which may be causing my problem.
I've been asked to create a report of accounts closed, by salesperson for the prior 60 days. In addition, I need a count of new accounts brought in by those same salespeople during the same 60 day period. Individually, these two are not the issue.
The third part is to create a count of new account statii by each sales person for the same new sales so the report would look a bit like this:
Name     Accounts Closed Since 6/21/08     New Accounts Since 6/21/08
SJohnson          10                    30
Status:
Open: 16
Closed: 4
Pending:9
Declined:1
JSmith          2                    16
Status:
etc.
etc.
It's the statii that are causing the trouble because they are all contained in the same field in our data. We'll call it: customer.dbo.info.CurrentStatus.
There are 7 possible statii: Open, Closed, Declined, Deactivated, Discarded, Pending and ReOpened.
I can get the sales data out of our sales dbase easily enough, and the statii from our customer data through SQL:
select S.sRep as Rep, C.CurrentStatus as Status, count (*) as Count
from sales.dbo.info A
inner join customer.dbo.info C on S.pkSalesCallID=C.fkSalesCallID
where
S.SalesCallDisposition='Sold'
and
S.dtSold>'6/21/08'
group by S.sRep, C.CurrentStatus
order by S.sRep
For the closed we have customer.dbo.table.customer.dtClosed This table also includes.sRep so finding the rep, the date closed and the count of the closed is no problem.
select C.sRep as Rep, count(*) as Count
from customer.dbo.info C
where c.sStatus='Closed'
and c.dtClosed>'6/21/2008'
What I can't figure out is how in the world to make Crystal Display the data correctly. No matter what configurations, groupings, summaries or counts I try, I keep getting a huge mess when I try to add the various statii in the various sections of the report.
I get Command as a view (I think) that has 3 columns. Rep, Status and Count.
Then Command_1 that has Rep and Count. I don't really need that status here because it's only "Closed"
I would think I'd be able to have my group1 be Rep and drag the Rep column out of the field viewer and that would give me my Rep Name. Then drag out Command_1 Count right beside it to get my Closed count. So far so good. This actually works just fine.
But if I create a group 2 and summarize by count and try to drag out Status into the Group2 Header, I only get the first of the list, usually closed. If I drag it into the detail, I get something like:
Closed      4
Others     2
Others     2
And I have ABSOLUTELY no idea why. There is no "others" status in our system.
Anybody have a clue?
Thanks again for the help!

Hi Mike,
From the sounds of it,  in Crystal Reports:
1. You should create a group on "Sales Person" (Insert|Group)
2. For the totals on statii,  you can place those fields in the Details section and insert a summary (right-click on the field and Insert Summary) or create a Running Total (in the Field Explorer).
3.  For the date range you can either insert a date parameter (in the Field Explorer) and add it to the record selection formula (Report|Selection Formulas|Record...)  or you can hard code the date in the record selection formula.
The above is a quick overview of how I interpret the requirements for your report.
Regards,
Wallie

Similar Messages

  • I need to remove my photos from my ipad to make room for movies not sure how to go about doing this.

    Hi, I need to make room for some movies on my ipad, but i have to many photos how to i take the photos from my ipad but leave them on my iphone and desktop computer? Thank you

    If the photos were synced from your computer then with your iPad connected to and selected on the left-hand side of your computer's iTunes, then on the right-hand side on the Photos tab select an empty folder and sync just that to the iPad and the currently synced photos should be removed from the iPad - that won't affect your iPhone unless you also do the same de-selection when it's connected.
    If the photos were taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites etc then you can copy them off the iPad first (http://support.apple.com/kb/HT4083) and you can then delete them directly on the iPad in the Photos app via the icon of the box with the arrow coming out of it

  • HT204088 I would like to cancel a subscription but not sure how to go about it

    I would like to cancel my subscription off an app  but I'm not sure how to go about it

    There are instructions on this page for managing and stopping auto-renewing subscriptions : http://support.apple.com/kb/HT4098

  • I am having trouble installing photoshop Lightroom.  I have the S/N #... I need it to be confirmed and activated so i can receive an email to activate the system to my computer.  I am not sure how to go about doing so.

    I am having trouble installing photoshop Lightroom.  The program is installed and has some sections blocked off.  I have the S/N #... I need it to be confirmed and activated so i can receive an email to activate the system to my computer.  I am not sure how to go about doing so. 

    If you have a serial number, you simply need to enter it into the proper fields.
    Since you don't say what version of Lightroom, and what sections are "blocked off", let me guess that you have Lightroom CC, and you need to enter the serial number to turn it into Lightroom 6. Here are the instructions: Adobe Photoshop Lightroom Help | Serialize Lightroom CC trial to activate as Lightroom 6
    And if that's not the right assumption, then please give us the details.

  • Not sure how to go about this program....

    i have an assignment for my java class that requires me to create a program to simulate a gunfight between 3 people bob, aaron, and charlie. bob's shooting accuracy is 50% (the probablility of making a kill is 1 out of 2), aaron's accuracy is 30%, and charlie's accuracy is 90%. bob shoots first, then charlie, then aaron. the person shooting shoots at the person with the highest accuracy; so bob would shoot first at charlie, etc. they continue in this fashion until there is only one person left standing and they win that duel. there are to be 10,000 simulated duels to see who would win the most often.. im having a very hard time figuring out what to do with this program.. like how to write the code to make the program figure out who to shoot at based on accuracy. if you have any suggestions, i would greatly appreciate it!! thanks ahead of time. heres wht i have so far:
    public class Duelist
         boolean charlie;
         boolean aaron;
         boolean bob;
         double charlieAccuracy = (90/100);
         double aaronAccuracy = (33/99);
         double bobAccuracy = (50/100);
         int duelCount;
         int numKillsBob;
         int numKillsCharlie;
         int numKillsAaron;
         boolean alive;
         public void ShootAtTarget(Duelist target)
              do
              public void bobShoots()
                   int accuracy = (int)(Math.random()*100;
                   if (accuracy >= .5)
                        charlie == false;
                        numKillsBob++;
                   else
                        return;
              } //end bobShoots
              public void charlieShoots()
                   if (aaron == false)
                        return
                   else
                        int accuracy = (int)(Math.random()*100;
                        if ( (accuracy > 0) && (accuracy <= 90) )
                                  bob == false;
                                  numKillsCharlie++;
                             else
                                  return;
              } //end charlieShoots
              public void aaronShoots()
                   int accuracy = (int)(Math.random()*100;
                   if ( (accuracy > 0) && (accuracy <= 30) )
              }while (duelCount < 10000);
         } //end ShootAtTartget
              int accuracy = (int)(Math.random();

    im having a very
    hard time figuring out what to do with this program..Honestly, in that case you should talk to your teacher.
    like how to write the code to make the program figure
    out who to shoot at based on accuracy. if you have
    any suggestions, i would greatly appreciate it!!
    thanks ahead of time. heres wht i have so far:Again, you should talk to your teacher, and ask him to tell you folks about OO. Charlie et al are all shooters. So a class Shooter with name, health status and accuracy might be appropriate. Shooters shoot at possible targets.
    void shoot(List possibleTargets) {
    - determine target: is alive, has highest accuracy, not self
    - shoot, determine hit
    Store three instances (Charlie, Aaron and the other guy) in an a List, sort it by accuracy (see Comparable), and let each element shoot once, providing the list as an argument (since it's sorted by accuracy already, the check for highest accuracy would be needless), until there's only one person alive left.
    Then create a big loop to run this 10000 times.
    Alternatively to the "isAlive" state, you could simply remove the dead person from the list.

  • Not sure how to go about this...

    I've been lurking around these forums for awhile now, I also read the installation Wiki. I am on Windows XP, and I have all my data backed up and ready to go. The only Linux distros I've used were Ubuntu and Fedora Core series. They were bloated in my opinion, and I want something minimal that you install from the ground up, so that is why I am here. I have Dell Inspiron 6000, and it has an Intel 2915ABG wireless card in it. I really can't plug this into an ethernet cable, so I'm guessing the network install wouldn't work?
    I really just don't know what to do first, I'm afraid to try and fail miserably. I don't really know what modules are or how to find them, or which ones I'll need to put in where prompted. I really do want to learn so I'm not giving up, but if I could get pointed in the right direction it would be much appreciated.

    Yorak, after running Arch for well over a year on another machine, I have just installed Arch 2007-05 onto a brand new machine, and I can confirm what Fubar said...the install CD does a pretty good job of figuring out what you need and loading it. Inexplicably, the only module it seems to have missed in my system is module "floppy", the floppy disk driver!! I had to manually load that myself - afterwards, I added it to the all important /etc/rc.conf modules list and now it auto loads each time. Another key item you should add there is module "fuse" as well. This enables a number of key new file systems written in user space, like sshfs and ntfs-3g (yes, full read write support for NTFS partitions! Long overdue).
    Arch is likely just what you are looking for. When the installer is done, you have a command line linux install that is up on the net and supporting most of your hardware. From there on, you are on your own. Almost nothing else has been loaded. Do take the installer's advice, and at time of installation, ONLY select the BASE package. That way, you get the smallest, lightest initial install, and YOU are in control of what gets added after that.
    Some quick advice. The Wiki is your friend. You can find "recipes" for almost everything you want to do there. Consult the wiki before posting here for help - it is a FASTER path to solution! Folks here are very helpful, so if you do post here, you will get good answers, but hey, if you can get them immediately by reading the wiki entry, so much the better.
    After your baseline install is up and running, you will likely want to add package xorg, which is the X11 stuff, package mesa, which includes lots of X related extras like glxgears, and a good window manager. If you are looking for "light and fast", I would strongly recommend using XFCE4. This is an excellent window manager, and much lighter than KDE or Gnome. For the ultimate in speed, go to IceWM, but be prepared to configure it via config files - there are few GUI tools. However, the combo of IceWM plus Rox Desktop is unbeatable for raw speed. You type "startx" and it just snaps into existance. It is amazing. I have foregone heavier alternatives like KDE and Gnome and used XFCE4+Rox for well over a year now. It is great - fast, full functional, enough bells and whistles to meet your needs, but not a lot of bloat. A perfect combo.
    Good luck!!

  • Is it legal to use other peoples music in a Podcast that is for fee?? Im not sure how to go about this? I have DJ who will mix the music for me, but im not sure that it is legal?? Thanks any guidance would help

    Hi everyone
    I am wanting to create music playlists for free via itunes in the form of a podcast of gym sort of music that can be used by people to listen to whilst working out. Can someone tell me if this is legal to use other peoples music, or songs and change them slightly so they blend into a continuous podcast?? thanks

    To The Fit Guy,
    Absolutely - 100% - NO!!!!!
    You can not take any RIAA / big label music and use it in a podcast.
    A Podcast is a download and downloads are looked at legally as a mechanical copy.
    Just because you purchased a song - it does not give you any rights what so ever to use that in a podcast.
    On top of that - you can not even get licenses for Podcasts to use the music.  As the Soundexchange license used for streaming music does NOT cover downloads. 
    And even if you could get licenses - one of them is working with the Harry Fox agency - they cover mechanical copies - and it is $0.091 per download (copy) for each song.  So if you have a mix of 10 songs in an episode - you would need to pay Harry Fox agency $0.91 per download.
    The only music you can use in a podcast is music considered "Podsafe"
    http://en.wikipedia.org/wiki/Podsafe
    Regards,
    Rob W
    podCast411

  • Everytime I try to download extensions apps etc get message failed to validate license online please advise I am not getting full use of my monthly subscription because I have to admit I am not sure how to rectify problems like this i am not very computer

    Please advise when I try to download free or paid apps I get message failed to validate license online I am not very computer literate and would appreciate advice I can understand (sorry) I have the monthly paid photoshop cc and lightroom package.

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • TS2529 Hi.  The mother board on my computer went and I had to get a new computer.  My itunes files were recovered from my old computer, but I am not sure how to go about syncing my ipod to the new itunes that I just downloaded.

    I am trying to sync my ipod and the new itunes library I just loaded.  My old computer basicall crashed and I had to get a new one.  They were able to recover all the data from my old computer, but there is no music listed in the new itunes library.  How do I get this to work as it did on the old computer?

    Hello cheech07,
    The following article contains directions that can help get you back on track with iTunes. I'd recommend picking up at 'Part 5' of the 'External drive' section.
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Cheers,
    Allen

  • HT4098 I am trying to cancel an auto renewal but it has to be done threw my settings but I'm not sure how I tryed to do this before but it told me to push a button but there was no button can u help please

    I am trying to cancel my subscription but can't seem to do so it says to go threw my settings and do it but there no button to push to cancel it can you help ?

    Did you reread the instructions in the support article that led you to this forum?
    http://support.apple.com/kb/ht4098
    To turn off auto-renewal:
    From your Manage App Subscription page, choose an app subscription. 
    Tap the subscription category for which you want to disable auto-renewal.
    Tap On to toggle the switch to Off.
    You'll receive a confirmation message; tap Turn Off to confirm your choice.

  • Not sure how to back up itunes

    help! in the instructions i keep finding to do this, they all say to select File >library >back up to disc but when i click on file, the library option isnt one of them so im not sure how to go about making the discs? any help is appreciated

    - For iTunes purchases see:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    - If the apps were taken by or saved to the iPod they should be in the backup. Restore from that backup. Otherwise the photos are lost.

  • Not sure how i should go about creating this flash to accomplish what i need.

    First let me start by saying my flash file is currently 740kb
    in .swf form and I'm not done with it. I'm taking this which was
    developed from another developer and trying to customize it to work
    for what i need. The flash was bought from template monster. I'm
    using actionscript 2.0 in the flash.
    Is 740kb big for a flash file that is basically an entire
    website?
    I'm trying to make this flash load as fast as possible while
    implementing the best practices so i can use it for future
    projects. Also i would like advice on using various techniques to
    accomplish some functionality.
    The flash file i'm working on is basically like a brochure
    for a client. It consists of "8" main pages, along with several sub
    pages.
    I have the following questions though.
    1. Currently the navigation is on the left hand side, and has
    a mouse over animation as well as sound effects with rollover and
    being clicked. The mouseover effect just moves the text to the
    right a little and brings it back to the original position..
    However each button in is an individual movie symbol.
    - Should I consolidate the navigation so it's one movie
    symbol instead of 8 movie symbols on one page? Keeping in mind that
    even if i do make it just 1 symbol i might need to add the 8
    navigation movie symbols into that one to maintain the animation.
    - Should the buttons even be movie symbols or is there a
    better way this should be done?
    2. Because of the text for each page, I was using adobes
    built in scrolling component for the dynamic text boxes.
    Considering there is more then 8 dynamic text instances converted
    to graphic symbols.... Is there a more efficient way of doing this,
    or is the above method just fine?
    3. The flash file contains a photo gallery. Currently all the
    images from the gallery are in the same flash file. I was thinking
    it would be more efficient to load the images in the gallery from
    external .swf files. However i'm not sure if that would be the best
    method, and i'm also not sure how to correctly accomplish within
    standards.
    4. I would like to implement a contact form within the flash
    so users can contact me.
    5. I would also like to have a testimonials page where users
    can submit testimonials. However i'm not sure how to create the
    form, but i had an idea on displaying the text in the flash using
    xml so it can be easily updated . Just not sure on the proper and
    more efficient way of doing this.
    6. I would also like an event calendar that displays within
    the flash. Was thinking of having this loaded from an external .swf
    file as well. Would like the calendar to be xml based so I can
    update it myself. Don't need nothing advance, just something that
    says "Busy", "Not Busy", and "Book" which would just take them back
    to the contact form to book me.
    I know many of you don't know who i am, but I would really
    appreciate some assistance. Whether its sample flash files, links
    to tutorials, advice, anything.
    I really want to do all of the above, but also as i'm
    learning i would like to make sure i'm doing the above in the most
    efficient way possible and up to standards while also keeping the
    size low. Would like to do it right the first time, so as i
    continue making flash files in the future I'm not writing sloppy
    actionscript coding, having sloppy timelines, and or having sloppy
    structure in my .fla files.
    Also i know alot of you are very busy people, and i'm not
    asking for you to do the flash for me but any and all help will be
    very greatly appreciated.
    Thank you in advance for you comments, advice, and replies.
    :)

    Wow, you're really looking to get your money's worth here. :)
    I haven't read through your entire list of questions, but
    I'll do what I can to help - others here will probably have
    different ideas, so feel free to pick and choose which (if any - or
    all) you want to integrate.
    1. So far, my experience has been that the people that create
    the templates on TemplateMonster have a pretty good handle on what
    they are doing, and have done what they do for a pretty good
    reason. Unless you are quite good at ActionScript, I probably
    wouldn't make any major changes to the back end. After all, you
    bought the template for a reason. If you want to move the buttons
    around the stage, great - edit them to change the colors, great.
    But to try to create a button array may be more than you want to
    bite into here. That said, it can be done. I've done it. If you
    want a sample of the code, drop me an e-mail and I'll send it to
    you. FYI: I only do AS3.0 at this point. If your template is in AS2
    then one of the other Flash gods would be better suited for code
    samples.
    1a. The buttons are movie clips for a reason - flexibility.
    Leave them as movie clips unless you really like migraines.
    2. I hate having to convert text to symbols, but sometimes it
    is the most efficient (or only) way to do things. If you want to do
    any tweens with the text, it has to be a symbol.
    3. You can load the photos from external SWF's or you can
    load the JPG's directly using XML. If you are using AS3, I know
    that there is tight, simple integration with XML. I'd review a
    couple tutorials on XML from some place like www.tutorialized.com
    to get a feel for it. Also, look up "Working with XML" in the Flash
    Help file (F1). Once you have decided on an approach, come back
    here with specific questions and you will get good answers.
    4. Doable. Search these forums for "Email from Text Box".
    This was covered several times in the last couple of days.
    5. XML is one option. You can even have XML give a photo of
    the person doing the testimonial and load it all into a single
    page. What you can do with this is limited only by your
    imagination. This is a very broad question.
    6. Someone posted a message about a calendar on here today.
    Search for "Calendar" and I'm sure you will get some ideas from
    there. Also (and again) www.tutorialized.com is a great resource
    for general code and ideas.
    You're right, we don't know you. And guess what? That doesn't
    matter. We are equal opportunity abusers here. :) I mean that with
    the kindest grin.
    The things you have asked are very broad in nature and
    therefore are quite difficult to give specific answers. We are
    always happy to help you when you get stuck, and even to spend a
    great deal of time walking you through a specific topic. However,
    what you've asked here would take a six-week course to answer to
    the level you will need. Grab some free code. Try it out. Play with
    it. Break it. The Flash gods will rescue you. But remember, the
    more specific your question, the better answer you will get.
    I hope this helps (at least some).

  • Not sure how to ask this; iPhone 5 carrier unlocked but question about refurb iPhone 5

    Ok, so. Sorry if the tittle is a bit confusing, im not really sure how to even word it myself.
    The short; I had some issues with AT&T at the begining of the year so i left them and had them unlock my iPhone 5 so i could use it with T-Mobile. But now im having this issue with my iPhone 5 were the home buton is a bit unresponsive sometimes. It started as it feeling a bit loose and making a clicking sound when slightly taped. I did go to the Apple store when it first started happening and they said it wasnt a big issue, that some did this, basicaly saying "Its normal dont worry about it." I said ok and went on my way.
    Now, when i had an unresponsive home button on my old iPhone 4 with AT&T all the Apple store did was give me a refurb. Ok, no issues, pop sim out of old iPhone, put in refurb iPhone, everything works fine.
    But, my question is; if they give me a refurb iPhone 5, how would the whole process work seeing as i had my current iPhone 5 unlocked by AT&T vs. buying it unlocked from Apple and im using it on a different network other then what i bought for?
    Sorry if its all a bit confusing, like i said, im not even sure how to word some of this.

    An exchange under warranty can be a new or refurbished iPhone with no way to tell the difference. An exchange under warranty if new or refurbished is called a service unit and is provided in a plain unsealed box with the iPhone only.
    Apple should have on record that your iPhone 5 is officially unlocked since the unlocking was done by Apple with iTunes after Apple was notified by AT&T that unlocking your iPhone was authorized by AT&T.
    Make sure this information is on record by Apple before the iPhone is exchanged if Apple determines the iPhone needs to be exchanged under warranty.

  • I want to store my music files on a NAS (which has an iTunes server built in), but I'm not sure how this will affect my iPhone sync. Will I need a local copy of my music on a computer in order to continue to sync?

    Hi,
    I have an iPhone and I sync playlists to it from iTunes. (I have far in excess of 16GB of music/podcasts.)
    What I want to do is permanently share my music library with all devices in the house, so I'm planning on buying a NAS server that has a built-in iTunes server. (I don't want to just use my computer to share and leave it on 24/7 because that is a phenominal waste of power.) That way all networked computers can just load the library under the 'SHARED' option in the left pane. However, this had me wondering about how I will continue to sync my music to my iPhone? I wondered if I will need to maintain a duplicate of the library on one of my computers, and then have my iPhone sync with that. Otherwise I'm not sure how it'll work.
    Any help/comments/suggestions will be greatly appreciated.
    Tom.

    Incidentally, my first thought was to map a network share from the NAS to my computer, so that my music files appear on the Z: drive, say on my computer. I could then set up iTunes to store music etc in that folder, and to copy all new items to that folder. However, if I do that, all that'll happen is that on my NAS, the library file will become out of date as I add music to the collection but not to the index.

  • Can anyone help me figure out how to sync my ipod with my purchased music?  I have used several computer and at one point synced my ipod with a computer that only had about half of my music.  My other computers are no longer working.  Not sure how to get

    Can anyone help me figure out how to sync my ipod with my purchased music?  I have used several computer and at one point synced my ipod with a computer that only had about half of my music.  My other computers are no longer working.  Not sure how to get my purchased music back onto my ipod?

    Hi kimcinma!
    Your previous purchases are saved on iCloud even if you bought them on another computer. If you can't find them on your current computer, you might need to unhide them. Go to iTunes preferences, and click on Store Preferences. Then click the box for "show iTunes in the Cloud purchases". Then click on OK, and everything you've ever bought from iTunes on that Apple ID will show up in your library. You will need to download them from iCloud first before you can synch them to your iPod Classic. To do this, click on the little cloud with the arrow in it next to your song, and it will download to your computer. When you have the music that you want downloaded, plug in your iPod and synch away. Hope this helps!
    Sandygirl

Maybe you are looking for

  • Unable to Open/Import Multiple Files in Audtion 3 - Old Bug?

    As stupid as it might sound I can't seem to open more then single files from the Files Window in Audition 3.0.1. You can select them (shift+click or right click) but they don't open. However if you drop them from explorer or "open file with" they do

  • How can I do some iterative calculus in Numbers?

    i would like to know if i can do some iterative calculus in numbers, may someone help me?

  • MSI K7N414D-PRO CPU support?

    Does the MSI K7N415D-Pro support the new TBRED 2100+ If it does, then I'm in trouble...because I can't get it to boot.... I'm running bios 3.1 on it. Why is there very little info on this mobo anyway??? ? ?(

  • OT: CSS and Outlook 2007

    We used to send our email newsletters out using CSS, but a lot of the CSS functionality seems broken when rendered in the new Outlook 2007. Primarily, I can't seem to get background images to show up. Can someone confirm this is a problem with Outloo

  • Problems by connecting to a progress database with MII

    Hello Forum! I'm using MII V 12.1.4. I am trying to create a connection to a progress database V9.1E. I have uploaded and deployed the jar-file containing the jdbc driver. After activating the new connection the status of it is on error. In the log v