Command Questions Crystal XI R2

I have 2 sql commands that run in under 3 minutes in sql as follows, the problem I am having is when I pull them into Crystal they run and hang forever, I have killed it everytime after an hour, I am linking them together on the d.yearmonthnum, I have tried linking every possible way, can anybody see any glaring reason why this won't work??? Thanks in advance.
SQL 1
SELECT  d.yearmonthnum,
SUM (Case when ph.batchtype IN ('PCR', 'PAR', 'PUR') then -PH.Paid1
when ph.batchtype IN ('PC', 'PA', 'PU') then ph.Paid1
else 0
end) AS Paid,
SUM (Case when ph.batchtype IN ('PCR', 'PAR', 'PUR') then -PH.Fee1
when ph.batchtype IN ('PC', 'PA', 'PU') then ph.Fee1
else 0
end) AS Fees,
SUM (Case when ph.batchtype = 'DAR' then -PH.Paid1
when ph.batchtype = 'DA' then ph.Paid1
else 0
end) AS Adjustments,
ccg.name, ccg.id, c.customer, c.cob
FROM dbo.Master M (NOLOCK)
INNER JOIN dbo.Fact F (NOLOCK)
ON M.Customer = F.Customerid
INNER JOIN dbo.Dim_Date D (NOLOCK)
ON convert(varchar,m.received,101)=convert(varchar,d.fulldate,101)
INNER JOIN dbo.Customcustgroups ccg
ON f.customgroupid = ccg.id
INNER JOIN dbo.PayHistory PH (NOLOCK)
ON M.Number = PH.Number
INNER JOIN dbo.Customer C (NOLOCK)
ON M.Customer = C.Customer
WHERE
d.yearmonthnum between {?Begin Date} and {?End Date}
GROUP BY
d.yearmonthnum,
ccg.name,
ccg.id,
c.customer,
c.cob
SQL 2
SELECT  d.yearmonthnum, SUM(M.Original1) AS PlaceAmt,
Count(M.Number) AS PlaceAccts,
SUM(case when s.statustype <> '1 - Closed' Then m.current1 else 0 end) as activeamt,
SUM(case when s.statustype <> '1 - Closed' then 1 else 0 end) as activeaccts,
SUM(case when S.StatusType = '1 - CLOSED'
AND NOT S.Code IN ('CML', 'CIN', 'CHR', 'CCR', 'AIE','CAN','CMR','CBR','CBK', 'PIE') then m.current1 else 0 end) as closedamt,
SUM(case when S.StatusType = '1 - CLOSED'
AND NOT S.Code IN ('CML', 'CIN', 'CHR', 'CCR', 'AIE','CAN','CMR','CBR','CBK', 'PIE') then 1 else 0 end) as closedacct,
SUM(case when S.Code = 'PIF' then m.current1 else 0 end) as pifamt,
SUM(case when S.Code = 'PIF' then 1 else 0 end) as pifacct,
SUM(case when S.StatusType = '1 - CLOSED'
AND S.Code IN ('CML', 'CIN', 'CHR', 'CCR', 'AIE', 'CAN','CMR','CBR','CBK', 'PIE') then m.current1 else 0 end) as withdrawnamt,
SUM(case when S.StatusType = '1 - CLOSED'
AND S.Code IN ('CML', 'CIN', 'CHR', 'CCR', 'AIE', 'CAN','CMR','CBR','CBK', 'PIE') then 1 else 0 end) as withdrawnacct,
ccg.name, ccg.id, c.customer, c.cob
FROM dbo.Master M (NOLOCK)
INNER JOIN dbo.Fact F (NOLOCK)
ON M.Customer = F.Customerid
INNER JOIN dbo.Dim_Date D (NOLOCK)
ON convert(varchar,m.received,101)=convert(varchar,d.fulldate,101)
INNER JOIN dbo.Customcustgroups ccg
ON f.customgroupid = ccg.id
INNER JOIN dbo.Customer C (NOLOCK)
ON M.Customer = C.Customer
INNER JOIN dbo.Status S (NOLOCK)
ON M.Status = S.Code
WHERE
d.yearmonthnum between {?Begin Date} and {?End Date}
GROUP BY
d.yearmonthnum,
ccg.name,
ccg.id,
c.customer,
c.cob

Part of what happens when you use multiple commands in a report is that Crystal can't link the data on the database server.  So, it pulls ALL of the data from both queries to the machine where the report is being run and then links the data and applies any filters IN MEMORY.  If the unfiltered result of either or both queries is large, this will take a lot of time and if there isn't a lot of memory on the machine, it will also include a lot of disk swapping.  This will dramatically increase the amount of time it takes to run the report.
I agree with what Brian said - either use a stored procedure or update your command so that it joins the data from both queries in a single command.
-Dell

Similar Messages

  • SQL server Database - Command based Crystal reports parameters issue

    Hi,
    We are migrating Oracle to SQL server database and trying to point our crystal reports  to new database.
    In command based reports, the parameters are defined in the where clause like this
       (' All' in {?Country} or loc.country in {?Country} )
    On modifying the report script to ANSI standard, loc.country in {?Country} gets recognized by Crystal but   'All' in {?Country} does not work.
    I am pretty sure that it should be defined in a different way,but not able to figure out.
    Any suggestions?
    Thanks,
    Nithya

    Hi Nithya,
    What is the error message you receive?
    -Abhilash

  • Unix command question on TAB content

    We found the following ABAP statemenet
    DATA: our_unix_path_and_file_name(64) TYPE c,
               v_unixcmd(255) TYPE c,
               result(255) TYPE c OCCURS 100 WITH HEADER LINE.
    CONCATENATE 'ls -al' our_unix_path_and_file_name INTO v_unixcmd SEPARATED BY space.
    CALL 'SYSTEM' ID 'COMMAND' FIELD v_unixcmd
                    ID 'TAB'     FIELD result-*sys*.
    The question is: is result an internal table? if it's an internal table, then why it's defined as type c?  And also what is included in this result after calling this UNIX command? it will list all the file content?
    Thanks and we will give you reward points!

    Hi,
    The result you'll get is a list of files and attributes from a directory and it will be placed in an internal table.
    Regards,
    Nicolas.

  • Switchport commands question

    Hi, I've been asked to configure a switchport to match the one next to it.  easy enough right, except there seem to be some commands required that are not in the config.   Can you help?   Here are the 2 ports:
    SWITCHA#sh run int fa5/10
    Building configuration...
    Current configuration : 290 bytes
    interface FastEthernet5/10
     description Port 106
     switchport access vlan 111
     switchport voice vlan 107
     service-policy output autoqos-voip-policy
     qos trust cos
     no snmp trap link-status
     auto qos voip trust
     tx-queue 3
       bandwidth percent 33
       priority high
       shape percent 33
    end
    SWITCHA#sh run int fa5/11
    Building configuration...
    Current configuration : 290 bytes
    interface FastEthernet5/11
     description Port 107
     switchport access vlan 111
     switchport voice vlan 107
     service-policy output autoqos-voip-policy
     qos trust cos
     no snmp trap link-status
     auto qos voip trust
     tx-queue 3
       bandwidth percent 33
       priority high
       shape percent 33
    end
    SWITCHA#sh int fa5/10 trunk
    Port        Mode         Encapsulation  Status        Native vlan
    Fa5/10      auto         negotiate      other         1
    Port        Vlans allowed on trunk
    Fa5/10      none
    Port        Vlans allowed and active in management domain
    Fa5/10      none
    Port        Vlans in spanning tree forwarding state and not pruned
    Fa5/10      none
    SWITCHA#sh int fa5/11 trunk
    Port        Mode         Encapsulation  Status        Native vlan
    Fa5/11      auto         negotiate      not-trunking  1
    Port        Vlans allowed on trunk
    Fa5/11      107,111
    Port        Vlans allowed and active in management domain
    Fa5/11      107,111
    Port        Vlans in spanning tree forwarding state and not pruned
    Fa5/11      107,111
    DON'T KNOW IF IT MAKES A DIFFERENCE, BUT ONE PORT IS UP AND THE OTHER IS NOT PLUGGED IN YET:
    Fa5/10                         down           down     Port 106
    Fa5/11                         up             up       Port 107

    This does shed a different light on the question. In the original post and in my original response I focused on the configuration that was shown. And that shows interfaces  that appear to be configured as access ports - and the configuration is quite the same. Your follow up post focuses on the fact that negotiation for trunking is enabled on the switch and your question is really about the trunking aspect, which is not explicitly configured.
    My guess at the explanation of the difference is that FA5/11 is up and has negotiated and has learned that two vlans are allowed while FA5/10 is not up, and so has not negotiated and has not yet learned what vlans are permitted on the trunk.
    So my guess at what you need to do to get the ports to match would be that you need to connect FA5/10 similar to the connection of FA5/11.
    HTH
    Rick

  • CSS Show summary command question

    When I issue "show summary" within the owner of SPOT-WT-PROD-EXT (please excuse the names I didn�t pick them)
    I get the below results. my question is why does content web-servers have 3.1 mil + hits when the other two content rules have the same number of hits but far less. Before I issued the show summary command I typed "zero all" to bring the counts to zero. any thoughts?
    Owner                               Content Rules                         State     Services                             Service Hits
    SPOT-WT-PROD-EXT         SPOT-WT-PROD-EXT-A          Master    ACE-SPOT-WT-PROD        2816 
                                            SPOT-WT-PROD-EXT-B           Master    ACE-SPOT-WT-PROD        2816
                                            web-servers                             Master    ACE-SPOT-WT-PROD       3162510

    The show summary gives you info about traffic coming in.
    The CSS is not responsible if it gets more traffic for one rule vs another one.
    You should check upstream ....or it might be the nature of the application....the last rule attracting more users...or generating more connections.
    Gilles

  • Mail command question

    Hi,
    i often use the mail command to send email from terminal.
    Is it possible to change the default "From: " header?
    If i use the mail command from root mails apper to come from System Administrator (root@localhost); i'd like to use a different name.
    I know that when in interactive mode i can simply wrote to mail prompt the header i want (From: whatiwant@whatilike) in this case... but i need to do this via script (not interactive) executed by cron
    Is it possible to do this?
    I actually use this command:
    cat /var/log/secure.log | mail -s "Report on `date '+%m/%d/%y% - %H:%M:%S'`" mymailaddress@hostname
    Thanks in advance

    If you look into the man page of mail command, you will see that it accepts sendmail-options. Then man page of sendmail command shows that "-r sender" is the option to set the "envelope sender address".
    Did you try "mail -r sender" but it didn't satisfy you?
    I guess it also sets the "From:" header, but if you want set the "From:" alone, then you may try:
    <pre>
    echo "Subject: Report on `date '+%m/%d/%y - %H:%M:%S'`
    From: whatyoulike@whatyoulike
    " |
    cat - /var/log/secure.log |
    /usr/sbin/sendmail -i yourmailaddress@hostname</pre>
    PowerMacG4, PowerBookG4, iMac(C2D)   Mac OS X (10.4.9)  

  • Key commands question

    next to some keys it shows a dotted box next to a key as the command - what is the dotted box? does it mean numeric keypad?
    hmmm .... but I have a command that says the key is 'dotted box' / ... but the command works on just the real non externam num keypad key - /
    so wazzup?

    You get that symbol if you assign the key like this:

  • SQL command Question

    Hello all!
    Is my bold condition on sql statement bellow correct?
    select vbeln posnr aubel aupos vgbel vgpos matnr into table it_vbrp
       from vbrp
       for all entries in it_mseg_vbfa
    <b>   where vgbel = it_mseg_vbfa-xblnr(10)</b>
       and   matnr = it_mseg_vbfa-matnr
       and   vgpos < 900000.
    If not, how can I correct it? Creating a temporary table to build the records of XBLNR(10) to compare with VGBEL?
    Detail: the ABAP Editor does not give a error with this command...
    Michel Khouri

    if its giving error or check in deburg mode, if it is not taking the same value what u want, then u can do like this too
    loop at it_mseg_vbfa.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
      EXPORTING
        input         = it_mseg_vbfa-xblnr
    IMPORTING
       OUTPUT        = it_mseg_vbfa-xblnr(10)
    modify it_mseg_vbfa
    endloop.
    Thanks & Regards
    vinsee

  • Browser batch rename command question.

    PS7 - OS 10.4.11 - 1.33 Ghz PowerPC G4
    I was looking at a folder of images using the browser and selected a number of them - some of these images had previously had changes made to them and then saved as JPEGs, some had not been worked at all since downloading from the camera to the HD.
    Wanting to group them by title, I used the batch rename command, by Control-clicking on the selected images, to rename them in the same folder with Mac OS9 compatibility (I couldnt find a Mac OSX compatibility even though that is my system). This was the first time I have used the batch rename command, and assumed it would merely change the file name.
    I then tried to open the files after this process. Those images that had previously been worked and saved as JPEGs are referred to as Document in the Finder, rather than as Adobe Photoshop JPEG. When trying to open them, I got a message:-
    The document Louvre1 could not be opened. ColorSync cannot open files of this sort.
    The only way I have found to view them is to use Open with Safari command.
    Those images that had not been worked are referred to as Unix Executable File in the Finder. I cannot view these at all, not even with the Open with Safari command.
    Any comments, please? What am I missing? I did not expect the process to so radically change the files. I can use Grab to get an image of those files that can be opened in Safari, although presumably they will not be so detailed as the originals.
    And those images that cannot be opened at all, even in Safari:- Can I get them back as PS JPEGs, or in any viewable form?
    Any help gratefully received.
    Thanks,
    Graham

    When you renamed the files, did you remember to include the ".jpg" extension at the end of each file name? If not, add it now.
    And make sure you are running Ps 7.0.1. It's a free and mandatory update (numerous bug fixes).

  • Midnight commander questions. menu file & associations file

    hi! i use tuxcmd all time, but find myself interested in try mc, first because it can be transparent and integrates with my transparent desktop:
    but i read this manual  http://www.chm.tu-dresden.de/edv/mc/mc4.5/manual1.html  and dont know how to make a couple of things in first place...
    1. when i start mc it sorts files in a confusing (for me) way tuxcmd shows me first the "dot" directories, next the "not dot" directories , next the "dot" files and finally the files, all in alphabetic order. how to achieve that sorting in mc?
    2. in tuxcmd i have the options to sort (maintaining the number 1 item sort fashion) by date (newest files first) by name, by extension. how to do this in mc?
    3. in tuxcmd i add to it a lot of file associations to my common use files, like when i right click a media file, i have my programs like open with mplayer, xine, vlc, ffmpeg -i (shows me info about the file), etc. what file or what i need to do to have file associations like that in mc? so i can just double click the file and it opens with his associated program?
    THANKS!!!
    my desktop:
    Arch
    Fluxbox
    gkrellm (cronos skin)
    aterm (command: aterm -tr -bl +sb)
    mc (transparent mc: Copy this line to ~/.mc/ini
    [Colors]
    base_color=normal=white,default:directory=white,default:marked=yellow,default:selected=gray,white:executable=brightgreen,default:link=lightgray,default:stalelink=brightred,default:special=brightblue,default:device=magenta,default:editnormal=white,default)
    Last edited by leo2501 (2008-04-12 13:12:47)

    Well, right now i edited my ~/.mc/menu file so when i press F2 i get a menu with my additions, but the thing is, that i need that depending on the selected file when i press F2, the menu displays the corresponding options depending on the file type, but i barely understand the conditions and subconditions thing
    #### Added by me ####
    #### Video File Menu ####
    + f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ $ & t n
    1 ffmpeg -i (show audio/video info)
    ffmpeg -i %f
    2 vlc
    vlc %f
    3 Encode to h264 hq 96 700
    enc2h264 hq 96 700 %f
    #### Audio File Menu ####
    + f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ $ & t n
    1 mplayer
    mplayer %f
    2 aplay
    aplay %f
    3 ffmpeg -i (show audio/video info)
    ffmpeg -i %f
    4 audacity
    audacity %f
    5 Encode to *.mp3
    enc2mp3 %f
    #### Disk Image File Menu ####
    + f \.iso$ | f \.ccd$ | f \.img$ | f \.nrg$ | f \.mdf$ | f \.cue$ | f \.bin$ | f \.daa$ | f \.b6t$ | f \.b6i$ & t r & ! t t
    1 mountiso
    mountiso %f &
    2 isomaster
    isomaster %f
    3 Convert BIN to ISO
    bin2iso %f
    4 Poweriso convert image to ISO
    all2iso %f
    5 Convert CCD to ISO
    myccd2iso %f
    #### Image File Menu ####
    + f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
    1 feh
    feh %f
    2 gimp
    gimp %f
    3 gqview
    gqview %f
    4 mirage
    mirage %f
    #### PDF File Menu ####
    + f \.pdf$ & t r & ! t t
    1 epdfview
    epdfview %f
    2 xpdf
    xpdf %f
    #### Text File Menu ####
    + f \.txt$ | f \.nfo$ | f \.cfg$ | f \.log$ | f \.srt$ | f \.sub$ | f \.ssa$ & t r & ! t t
    1 leafpad
    leafpad %f
    #### Archive File Menu ####
    + f \.zip$ | f \.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
    1 xarchiver
    xarchiver %f
    2 Extract *.tar.gz
    tar -xzvf %f
    3 Extract *.tar.bz2
    tar -xjvf %f
    4 Extract *.rar Full Path
    unrar x %f
    5 Extract *.rar Current Dir
    unrar e %f
    6 Extract *.zip
    unzip %f
    7 Extract *.7z Full Path
    7z x %f
    8 Extract *.7z Current Dir
    7z e %f
    9 Extract *.ace Full Path
    unace x %f
    a Extract *.ace Current Dir
    unace e %f
    b Extract *.rar in *.rar_dir directory
    unrar2dir %f
    c Extract *.zip in *.zip_dir directory
    unzip2dir %f
    d Pacman Install Package
    sudo pacman -A %f
    e Pacman Upgrade Package
    sudo pacman -U %f
    #### Windows Executable File Menu ####
    + f \.exe$ | f \.bat$ | f \.msi$ & t r & ! t t
    1 wine
    wine %f
    #### Internet File Menu ####
    + f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
    1 kazehakase
    kazehakase %f
    2 swiftfox
    swiftfox %f
    #### Document File Menu ####
    + f \.doc$ | f \.rtf$ | f \.php$ | f \.asp$ & t r & ! t t
    1 abiword
    abiword %f
    2 OpenOffice Writer
    soffice -writer %f
    #### Spread Sheet File Menu ####
    + f \.xls$ | f \.csv$ & t r & ! t t
    1 gnumeric
    gnumeric %f
    #### Presentation File Menu ####
    + f \.ppt$ | f \.pps$ & t r & ! t t
    1 OpenOffice Impress
    soffice -impress %f
    #### Java File Menu ####
    + f \.jar$ & t r & ! t t
    1 Execute
    java -jar %f
    #### Help/Manual File Menu ####
    + f \.chm$ | f \.pps$ & t r & ! t t
    1 xchm
    xchm %f
    Last edited by leo2501 (2008-04-12 13:14:16)

  • Quick Question - Crystal 8 and Windows 7

    Officially I know this is not supported but do we know that this will not work for Windows 7?
    We have some old reports we would like to maintain for mulitple clients, Crystal 8 installs on the PC,
    loads the reports but fails on verify  with cannot load library "" error.
    I will try some other things but if anyone has any comments on this, it would be appreciated.

    It's likely access issues.
    Turn DEP off completely. You can use Process Monitor and filter on crw32.exe and look for Access Denied errors. It may be that missing dependencies are not installed.
    Good luck
    Don

  • MaxDB / SQL studio - command question..

    Hello,
    I have MaxDB7.6 installed in my system(winxP prof) during NW2004s ABAP installation.
    I tried to connect in command line using 'superdba' and 'control', it connects.
    dbmcli - d NSP -u superdba,admin
    dbmcli - d NSP -u control,admin
    At the same time, when I connect to SQL studio using
    'control' user(admin is password), it fails with below error message.
    Invalid authorization specification, -4008 POS(1) Unknown username/password combination return code :SQL ERROR (-4008)
    But, it connects to SQL studio successfully using 'superdba' login id.
    Could any body please throw some light on this..
    thanks,
    partha

    Hi,
    one difference (there are more differences!) between the 'control' and 'superdba' user is that one is a non-sql user (control) and the other a sql user (superdba).
    The control user is the standard name for the DBM user, whereas 'superdba' is the standard name for the SYSDBA user.
    More on this can be found in the documentation:
    http://dev.mysql.com/doc/maxdb/en/default.htm
    -> Basic information
       -> Concepts of the Database System
          -> Glossary
             -> User
    Regards,
    Roland

  • Terminal [ UNIX ] "mouse click" command question

    Can I emulate a left mouse click using a command in terminal? Or any freeware solutions available that would help?
    So what I wanna do is
    +open -a blabla filename+
    and then click on a specific area (like If I can tell the x,y co-ordinates to the command it would emulate the action and my application being on top would make the click)

    Let's say that myApp is the reference to your application and myItem is the item in which you want to click. Then you can do something like this
    osascript -e 'tell application "System Events" to tell myApp to click myItem at {x, y}'
    The 'at' part is optional and of course replace 'x' and 'y' with the numbers representing the x and y coordinates. For more information look at this [thread|http://forums.macosxhints.com/archive/index.php/t-36121.html]

  • Bash command question

    I volunteered to download my school's entire website, as the current host is going into liquidation and they can't get a copy of the database. So I downloaded the whole thing with wget. Now, the problem is that many (several hundred) of the files have names like "featureDetails.asp?featureID=2", which is fine on a JFS partition, but can't be on a FAT partition.
    So, my question is, how do I replace all "?"s, and "="s with "-"?
    PS: I really have no idea where to post this, so picked this board at random

    fwojciec wrote:
    If it's just a matter of renaming the files then you can use something line this:
    for i in *; do j=$(echo "$i" | sed 's/?/-/g;s/=/-/g'); mv "$i" "$j"; done
    This will rename all files in the current directory.
    EDIT:
    or something like this would work as well:
    for i in *; do j=$(echo "$i" | sed 's/[?=]/-/g'); echo "$i" "$j"; done
    These certainly work, and for small jobs they are reasonable, but they are both very inefficient because a new process is forked for every file to be renamed.  Instead consider this:
    for i in *; do mv "$i" "${i//\?/-/}" ; done
    This syntax is documented in the "Parameter Expansion" portion of the bash(1) manpage.

  • Add Command question

    To forum participants,
    I need to take a data file and construct a table.  The data file is written out in one long record format, see example below.
    Property ID Year Batch Base01 Penalty01 Interest01 Base02 Penalty02 Interest02 Base03 Penalty03 Interest03
    1234           2009 abcd  500.00  50.00          25.00     300.00  30.00       15.00         600.00   60.00       30.00
    Property ID     Year     Batch #     Base Tax     Penalty     Interest
    1234     2009     abcd     500.00     50.00     25.00
    1234     2009     abcd     300.00     30.00     15.00
    1234     2009     abcd     600.00     60.00     30.00
    I need to create a table like the one above.  I was hoping that this would be possible through the Add Command feature.  Any help would be greatly appreciated.
    Bdecker

    To forum participants
    OK, I didn't make myself clear.  I don't really want to make a table.  It's my understanding that the Add Command creates a subset of data that can be used in a report, just like a table.  This is what I'm needing.  I will try to provide a more simple example.
    The lines immediatly below is an example of the data file I'm dealing with.
    Customer Name    Order # 1                                         Order # 2                                     Order # 3
                                   Date            Product         Price       Date            Product         Price     Date            Product         Price     
    ABC COMPANY    04/01/11  Bike Helmets    100.00     03/01/11  Bike Seats    200.00     02/01/11  Bike Chains    100.00
    Below is what I hoped I could accomplish with the Add Command.
    Customer Name       Date            Product         Price      
    ABC COMPANY      04/01/11  Bike Helmets    100.00    
    ABC COMPANY      03/01/11  Bike Seats    200.00    
    ABC COMPANY      02/01/11  Bike Chains    100.00
    So I don't need to make a new file, I just need to rearrange the data.
    B Decker

Maybe you are looking for

  • I have tried to download Photoshop Elements 10 three times now and it has crashed every time???

    I have tried to download Photoshop Elements 10 three times now and it has crashed every time.  I checked my settings and the format on my computer is Max OS Extended.  I read that 3 other people were having the same problem.  Did anyone figure out ho

  • I just got the iPhone 5s and I'm trying to restore the data from my backup.

    I just plugged in my iphone to my laptop and my old iCloud account (which I don't use anymore) is the one that backed up my new phone instead of my new one. Now my problem is that I can't get access on my current iCloud account because my old iCloud

  • Cisco AnyConnect Configuration

    Can someone assist me with configuring Cisco AnyConnect VPN? For some reason with the config below, I seem to get connected but then my internet connection randomly drops and reconnects.  Ive tried several different times to get this to work properly

  • Server Exception during PPR

    Hi. I use JDeveloper 11g and JHeadstart. I work with ADF BC Technology. I have custom base java classes. After adding new record in table, I receive this message on one of my pages: "0 For more information, please see the server's error log for an en

  • Repository Filter or Repository Service?

    When I upload a file, how am I able to "force" a filename. If someone sends a file "myfile.txt", i want that the filename be "Date_report.txt" . Date is a new Property metadata that i defined and that is inserted in the upload screen. To do this, i n