Fixing this Join Query?

Please help me correct this syntax on a question from a practice book.  I am using the Adventureworks 2012 Database .
Find the Territory Group, CountryRegionCode, Count of SalesHeaders in 2001, and the Count of SalesDetails in 2001
SELECT C.[Group], C.CountryRegionCode,  COUNT(A.SalesOrderID), COUNT(B.SalesOrderID)
FROM [Sales].[SalesOrderHeader]           A
INNER JOIN
[Sales].[SalesOrderDetail]    B
ON A.SalesOrderID=B.SalesOrderID
INNER JOIN
[Sales].[SalesTerritory]   C
ON C.[TerritoryID]=A.TerritoryID
WHERE DATEPART(YY,A.OrderDate) IN (2001)
GROUP BY
C.[Group], C.CountryRegionCode

Hi,
There is no error and query works perfectly fine but there is not output coming because there is no data for 2001 qualify the criteria.
I checked this for 2007 and got the result as below.
Please let me know if your question was something different.
Thanks,
Nimit

Similar Messages

  • Is this Join Query Syntax Correct???

    Is this syntax correct for this query question?  Would "used Vista cards" reflect the OrderDate Column in the where clause.  The table is from Adventureworks2012.
    How many Sales Orders (Headers) used Vista credit cards in October 2002 
    SELECT C.CardType, COUNT(*)
    FROM Sales.SalesOrderHeader S 
    JOIN Sales.CreditCard
      C
    ON S.CreditCardID=c.CreditCardID
    WHERE C.CardType = 'Vista'
    AND S.OrderDate  between '10/1/2002' and '10/31/2002'
    GROUP BY c.CardType
      

    That is correct, but be careful when writing queries where a datetime column is compared to a period of time.  In this case it looks like the time portions of OrderDate are all set to the beginning of day (00:00:00.000) so your query works as long as
    that assumption is correct.  The better way is to use an upper boundary of the next day (which means you cannot use between).  E.g., 
    select ... where S.OrderDate >= '20021001' and S.OrderDate < '20021101' 
    group by ...
    order by ...;
    If you search for the forum for "Tibor" you should be able to find a link to his website where he goes into much more detail about the tricky usage of the datetime datatype. 

  • The some words in perfectly formatted messages I email are merging or joining together likethis or evenlikethis when they are recieved. How do I fix this?

    When I send emails that are perfectly formatted they are being somewhat truncated when they are received by whomever I'm sending them to. Words will be joined together throughout the email in combinations of two or three.
    I know this is happening because when someone responds to my email, I see the email that I have sent them (in their response email) and it is messed up as described above. I recently asked one of my recipients if this was something that was common with my emails and I was told yes.
    Here is an example, cut and pasted from an email sent via Thunderbird: "A number of years ago we were speaking with Stephanie MacDonaldat CIT about our film/video production services. Our Account Exec assigned to your account left a number of months later and we subsequently lost contact.
    I just visited your web site and noticed thatyou are using video to help define your services and corporate culture. We'd love to be considered if you are planning any more productions.
    One genre of web video thatyou may be interested in is 'Recruiting'.
    Companies that wish to attract young, bright talent, arereaching out with fun and engaging videos distributed online and through social marketing. I noticed that you have a Careers page, but no video. Is this something that you could be interestedinat some point?
    We recently produced one of these videos for an IT company located in Torontoand I'd be delighted to send you alink if you like..."
    The version of Thunderbird I am using is 17.0 and I am running the program on a MacBook Pro with OS X 10.7.5 installed.
    Fixing this issue is critical as my emails look very unprofessional and leave a negative impression with my contacts. Please tell me what I can do to fix this.
    Best regards,
    Derek Shipman

    are you pasting text from another source into Thunderbird?
    Does it appear correctly in your send folder?

  • How can I perform this kind of range join query using DPL?

    How can I perform this kind of range join query using DPL?
    SELECT * from t where 1<=t.a<=2 and 3<=t.b<=5
    In this pdf : http://www.oracle.com/technology/products/berkeley-db/pdf/performing%20queries%20in%20oracle%20berkeley%20db%20java%20edition.pdf,
    It shows how to perform "Two equality-conditions query on a single primary database" just like SELECT * FROM tab WHERE col1 = A AND col2 = B using entity join class, but it does not give a solution about the range join query.

    I'm sorry, I think I've misled you. I suggested that you perform two queries and then take the intersection of the results. You could do this, but the solution to your query is much simpler. I'll correct my previous message.
    Your query is very simple to implement. You should perform the first part of query to get a cursor on the index for 'a' for the "1<=t.a<=2" part. Then simply iterate over that cursor, and process the entities where the "3<=t.b<=5" expression is true. You don't need a second index (on 'b') or another cursor.
    This is called "filtering" because you're iterating through entities that you obtain from one index, and selecting some entities for processing and discarding others. The white paper you mentioned has an example of filtering in combination with the use of an index.
    An alternative is to reverse the procedure above: use the index for 'b' to get a cursor for the "3<=t.b<=5" part of the query, then iterate and filter the results based on the "1<=t.a<=2" expression.
    If you're concerned about efficiency, you can choose the index (i.e., choose which of these two alternatives to implement) based on which part of the query you believe will return the smallest number of results. The less entities read, the faster the query.
    Contrary to what I said earlier, taking the intersection of two queries that are ANDed doesn't make sense -- filtering is the better solution. However, taking the union of two queries does make sense, when the queries are ORed. Sorry for the confusion.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How can i join this two query?

    I have two table table employee and CSEReduxResponses
    In table employee i have
    CREATE TABLE [dbo].[employee](
    [emp_id] [int] IDENTITY(1,1) NOT NULL,
    [emp_namefirst] [varchar](255) NOT NULL,
    [emp_namemiddle] [varchar](50) NULL,
    [emp_namelast] [varchar](255) NOT NULL
    on responds i have 
    CREATE TABLE [dbo].[CSEReduxResponses](
    [response_id] [int] IDENTITY(1,1) NOT NULL,
    [employee] [int] NOT NULL,
    [employeedept] [int] NOT NULL,
    [star] [tinyint] NOT NULL,
    [status] [int] NOT NULL,
    [approvedby] [int] NULL,
    [approveddate] [datetime] NULL,
    [execoffice_status] [int] NULL,
    Im trying to get the employee with the MAX execpffice_status( this is either a 1 or 0).
    i have this query that i made for it
    select top(1) with ties employee, SUM(execoffice_status) as 'total'
    from   CSEReduxResponses
    group by employee
    order by 'total' desc
    my query for employee table is 
       select emp_namefirst as first , emp_namelast as [last]
    from phonelist.dbo.employee where emp_namefirst is not null
    How can i get this 2 query together so i can output the employee (first and last )name
    with the max exeoffice_status?
    i use :
    Microsoft SQL Server Management Studio 10.0.2531.0
    ps: sorry if i put this is the wrong forum, this is my first time here and first post.

    Are you looking for the below?
    CREATE TABLE [dbo].[employee](
    [emp_id] [int] IDENTITY(1,1) NOT NULL,
    [emp_namefirst] [varchar](255) NOT NULL,
    [emp_namemiddle] [varchar](50) NULL,
    [emp_namelast] [varchar](255) NOT NULL
    Insert into Employee Values('abc','bcd','cdf')
    Insert into Employee Values('xyz','yxw','xwv')
    CREATE TABLE [dbo].[CSEReduxResponses](
    [response_id] [int] IDENTITY(1,1) NOT NULL,
    [employee] [int] NOT NULL,
    [employeedept] [int] NOT NULL,
    [star] [tinyint] NOT NULL,
    [status] [int] NOT NULL,
    [approvedby] [int] NULL,
    [approveddate] [datetime] NULL,
    [execoffice_status] [int] NULL,
    Insert into [CSEReduxResponses]( employee,employeedept,star,status,approvedby,approveddate,execoffice_status)
    Values(1,100,1,1,1,GETDATE(),0),
    (1,100,1,1,1,GETDATE(),1),
    (2,100,1,1,1,GETDATE(),0)
    ;With cte as( Select *,SUM([execoffice_status]) over(partition by Employee) sumstatus From [CSEReduxResponses] )
    Select Distinct A.*,B.sumstatus
    From Employee A
    Inner Join cte B On A.emp_id = B.employee
    --OR
    ;With cte as( Select employee ,SUM([execoffice_status]) sumstatus From [CSEReduxResponses] group by Employee)
    Select Distinct A.*,(Select sumstatus From cte B where A.emp_id = B.employee)
    From Employee A
    Drop table Employee,[CSEReduxResponses]

  • After getting 4G with AT&T I am unable to join my network and get the error message: Unable to  join the network "Jude". How do I fix this? Thank you

    After getting 4G with AT&T I am unable to join my network and get the error message: Unable to  join the network "Jude". How do I fix this? Thank yo

    Try power-cycling your wireless router (unplg for 30 seconds, plug back in).  Here's a longer list of troubleshooting steps: http://support.apple.com/kb/TS1398.

  • TS3999 I have a macbook Pro which had Mobileme. I have joined ICloud, but my Calendar does not sync. How do I fix this? I do not see an ICloud Icon on my laptop and the software is updated.

    I have a macbook Pro which had Mobileme. I have joined ICloud, but my Calendar does not sync. How do I fix this? I do not see an ICloud Icon on my laptop and the software is updated.

    This is the situation with Snow Leopard and existing iCloud accounts:
    You will be able to access email and calendars on the iCloud website at http://icloud.com provided your browser is reasonably up-to-date.
    You will not be able to sync contacts or bookmarks from a pre-Lion Mac.
    You will be able to enter the server settings for email manually in the Mail application and access your email.
    You will not be able to sync your calendars directly.
    Some people have been able to set up calendar syncing by using the method detailed here - this is an unsupported hack and may not be reliable, and may stop working at some future point.
    Address Book won't sync: this page has a convoluted hack to make it sync which has been reported as working (and as not working by others). I've not tried it.
    There are a couple of alternative syncing services you might like to consider, though they're not particularly cheap:
    Soho Organizer can sync Calendars and Contacts with iCloud on Leopard, Snow Leopard and Lion. A single user licence (multiple machines allowed) is $99.99.
    Fruux syncs Calendars, Tasks and Contacts beetween a wide variety of devices (not using the iCloud server) including Snow Leopard and above, Windows Outlook and Thunderbird, Linux Thunderbird, and iOS and Android devices - see their compatibility chart (click the blue 'i' for a caveat about Snow Leopard). It's free for one user, two shares, two devices; above that pricing starts at €4 per month.
    (I have no connection with these firms and have not tried Soho Organizer, though both have had good reports and I've found Fruux to work well.)

  • The option Join CD Tracks under Advanced tab is now greyed out and unavailalbe from downloading audio CDs. How can I fix this?

    the option Join CD Tracks under Advanced tab is now greyed out and unavailalbe from downloading audio CDs. How can I fix this?

    This post is closed. No replies needed

  • Inner join query syntax

    I have this query, however... I need the 'category' variable
    to be 'LIKE' but the way I have it set up it doent work. Anyone
    have an idea of how I might fix this.
    <CFQUERY name="getworkshops" datasource="source">
    SELECT m.category, m.proj_key, m.project, r.proj_key, r.url,
    r.category, r.end_date, r.title, e.event_date, e.event_date_end,
    e.category, e.proj_key
    FROM (main m INNER JOIN resource r ON m.category LIKE
    r.category)INNER JOIN event_cal e ON m.category LIKE e.category
    WHERE m.category like '%workshop%' AND m.proj_key=r.proj_key
    AND m.proj_key = e.proj_key
    ORDER BY m.proj_key
    </CFQUERY>

    You could move your join statements to your where clause:
    SELECT m.category, m.proj_key, m.project, r.proj_key, r.url,
    r.category, r.end_date, r.title, e.event_date, e.event_date_end,
    e.category, e.proj_key
    FROM main m, resource r, event_cal e
    WHERE m.category LIKE '%'+r.category+'%'
    AND m.category LIKE '%" + e.category + '%'
    AND m.category like '%workshop%' AND m.proj_key=r.proj_key
    AND m.proj_key = e.proj_key
    ORDER BY m.proj_key
    I had to guess on how you wanted to match m.category against
    resource and event_cal, but you get the idea.

  • Left Join query help

    select * from ort
    bid mid
    18083 7
    select * from st
    tid bid mid act
    318 18083 5 20091
    318 18083 6 20091
    321 18083 7 NULL
    318 18083 16 23970
    my out put should be
    318 18083 6 20091
    (basic idea is
    In order to do this I wrote the following query. But I am getting the following error ora-01799. How do i fix this?
    select ort.bid,st.tid from ort
    left join st
    on ort.BiD = st.bid
    and st.mid in
    (select max(MID)
    from St
    where BID = ort.BID and TID is not null and MID <= ort.MID
    and ACT is not null
    )

    May be this will clear up what I am trying to acheive a little better. I truly appreciate all your help. I have enclosed column headings and data items within double quotes and data is enclosd in double-quotes and separated by comma.
    SQL> desc ort
    "Name" "Null?" "Type"
    "BID" "NUMBER"
    "MID" "NUMBER"
    SQL> desc st
    "Name" "Null?" "Type"
    "TID" "NUMBER"
    "BID" "NUMBER"
    "MID" "NUMBER"
    "ACT" "NUMBER"
    "LTP" "NUMBER(10)"
    SQL> select * from ort
    2 ;
    "BID" "MID"
    "18083", "7"
    "18083", "6"
    "18083", "16"
    "18083", "277"
    "18083", "117"
    SQL> select * from st;
    "TID" "BID" "MID" "ACT" "LTP"
    "NULL", "18083", "117", "NULL", "246"
    "NULL", "18083", "277", "NULL", "246"
    "246", "18083", "272", "54998", "246"
    "318", "18083", "6", "20091" "NULL"
    "321", "18083", "7", "NULL", "NULL"
    "318", "18083", "16", "23970", "NULL"
    6 rows selected.
    SQL> SELECT ort.bid, st.tid, st.mid, st.act
    2 FROM ort
    3 LEFT OUTER JOIN
    4 st
    5 ON ort.bid = st.bid
    6 AND st.mid IN (SELECT mid
    7 FROM myortview);
    "BID" "TID" "MID" "ACT"
    "18083", "246", "272", "54998"
    "18083", "246", "272", "54998"
    "18083", "246", "272", "54998"
    "18083", "246", "272", "54998"
    "18083", "246", "272", "54998"
    SQL> -- expected result is
    bid tpid ort.mid st. mid
    "18083", "246", "277", "272"
    "18083", "246", "117", "116"
    "18083", "318", "16", "16"
    "18083", "318", "6", "6"
    "18083", "318", "7", "6"

  • My movies and music videos won't show up on screen, I can hear the sound but not see the video how do I fix this?

    My movies and music videos won't show up on my computer screen, I can hear the sound but not see the video how do I fix this? I'm not sure what to do as far as turning my purchased movie into DVD goes either. I just want to put the movie onto a DVD disc but my itunes won't even show that I have a blank disc in the drive, I'm not sure what is wrong or how to fix this, any help at all would be much appreciated.

    Hi @anthony7722 ,
    Thank you for your query, I will do my best to help!
    I grasp that you uninstalled the Intel graphic driver and the catalyst control.  You reinstalled the Intel driver and now you can view and hear videos on the Internet but you are unable to set the resolution as high as previously.
    When I checked the specifications for your notebook I see that you have switchable graphics.
    Here are two links that I believe will help.
    Overview of Switchable Graphics or Dual GPUs
    Switchable Graphics on Notebooks Configured with Intel and ATI GPUs
    Here is a link to HP Pavilion dv7-6150eb Entertainment Notebook PC Drivers
    Please try this process.
    1. Download the chipset driver, and both graphic drivers and save them  but do not install them yet
    2, Delete the chipset driver and install the updated one.
    3. restart your notebook
    4.Delete the Intel driver and install the updated one
    5. restart your notebook
    6. Delete the AMD driver and install the updated driver. 
    You should now have a Catalyst Control Center.
    This should now allow you to use the higher graphic card which should support the higher resolution.
    I hope this helped.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Deciphering column names in a join query using jdbc

    hi all....
    I am making a database adapter for a generic report generater. This adapter would be forming queries involing various tables. There are two ways of doing it . I fire an sql on parent table to get the keys and then go to child table for each one of them or i form a join query to get desired result.
    i want to go with the later approach where my query would be forming a join. The problem comes when table involved in this join has columns with the same name. for eg if a column "NOTE" is there in table A as well as table B on which i have a join. Resultset returns me with two "NOTE" columns and i cannot recognize which one belongs to which table.
    all API calls including getString("Note") seems to be referring to the first occurence of "Note" column.
    Also getTableName() and getSchemaName() APIs on resultsetMetadata doesnt return in anything in case of joins.
    Any pointers would be most appreciated.
    cheers
    vivek

    thanks for suggesting this solution ... though i had thought of the same onece .... unfortunately i cannot implement something like this coz out of the result set i have to instantiate an object hierarchy depending on the schema ....
    this also puts me in a doubt whether i can use join in my case.
    for eg ... .
    lets say we have a customer talbe and and address table which has one to many relationship .... one contact can have multiple addresses.
    Assuming a contanct "Joe Bloggs" having 3 addresses ...a query like following
    select contact.firstname contactfirstname , address.streetname addressstreetname from contact , address where contact.contactid = address.contactid
    this would return me 3 rows and i can also recognize various columns with their aliases ..
    but i would lose an important fact that i have to create one java object for contact class and 3 instances for addresses which i have to return finally.
    this means that i would like to return an object hierarchy with one contact object and 3 address object underneath it linked with contactid.
    Any other suggestions after reading the complete requirement are most welcome ...sorry for not puting the entire thing at first.
    i guess the only soln left is to visit contact and address table separately. :(

  • How to fix this error in db

    Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]A constant expression was encountered in the ORDER BY list, position 1.       Hi i dont what is this error and how to fix this type of error :  here is the code : order by loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title order by Due_Priority_tbl.name, loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title order by Status, loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title order by Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no order by Due_Priority_tbl.name, Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no order by Status, Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no

    i had like this in the query
    <cfif orderbys is "1">order by loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title</cfif>
    <cfif orderbys is "2">order by Due_Priority_tbl.name, loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title</cfif>
    <cfif orderbys is "3">order by Status, loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title</cfif>
    <cfif orderbys is "4">order by Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no</cfif>
    <cfif orderbys is "5">order by Due_Priority_tbl.name, Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no</cfif>
    <cfif orderbys is "6">order by Status, Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no</cfif>

  • After upgrading my iPhone4 to the latest IO it no longer connects to wifi, how do you fix this?

    After upgrading my iPhone4 to the latest IO it no longer connects to wifi, how do you fix this?

    knifepainter wrote:
    What I know is that the phone worked perfectly fine until I upgraded the software. I've tried resetting the network settings to no avail. I've shut the phone off, put it in a ziplock baggie and then into the freezer for 15 minutes. This made the wifi work temporarily but then it goes back to being grayed out. The wifi does not work at other wifi sites away from my home as well. Seems like an apple issue to me and would appreciate someone coming up with a fix, apparently I'm not the only one having this problem. Thanks for replying to my query, any ideas?
    It's likely a hardware issue.  The iOS will not directly cause this issue.
    Use this article first:
    iOS: Wi-Fi settings grayed out or dim - http://support.apple.com/en-us/TS1559
    If that fails to resolve it, then try setting it up as new and testing again.
    How to erase your iOS device and then set it up as a new device or restore it from backups - http://support.apple.com/en-us/HT4137
    If the issue remains even after set up as new, it's a hardware problem, not a software problem.  You'll need to contact Apple for you hardware service options.  If within warranty it should be free.  If not, expect to pay $149 USD + tax if it's an iPhone 4, $199 USD + tax if it's an iPhone 4S.

  • Windows 8.1 apps downloaded during developer preview install in Chinese on RTM (MS requsted I post this here for script to fix this)

    Hello
    Ever since updating to the RTM version of Windows 8.1 on every PC I have updated and signed into using my Microsoft account whenever I try to install any 8.1 app I installed onto the developer preview version it will always install in Chinese which makes
    using the app impossible for me.
    This happens on all PCs I have updated/used including:
    Surface RT (Windows 8.1 RT)
    Surface 2 (Windows 8.1 RT)
    Dell OptiPlex 990 (Windows 8.1 Pro)
    Dell OptiPlex 790 (Windows 8.1 Pro)
    Sony Tap 20" (Windows 8.1 Pro)
    The language settings of the Microsoft store and all the computers are all set to UK English and as soon as I do a fresh install of the UK version of Windows 8.1 and sign into my Microsoft account then certain apps will always install in Chinese (when in
    the store it says you already own this app and can install it on this PC - when I do it is in Chinese. When the app has not been installed before or was not installed when I had the developer preview then it will install in English).
    This has been driving me mad for months and I previously posted this question back in October in the Office 2013 forums as I first noticed the issue with the OneNote app but it was never resolved:
    http://social.technet.microsoft.com/Forums/office/en-US/448670ae-4494-4a55-8cee-d9f1c9873db7/onenote-windows-81-app-changed-to-chinese-and-cannot-work-out-how-to-change-to-english?forum=officeitpro#448670ae-4494-4a55-8cee-d9f1c9873db7
    I then posted it a few days ago here:
    http://answers.microsoft.com/en-us/windows/forum/windows8_1-windows_store/windows-81-apps-downloaded-during-developer/5dcd0df7-edfe-420e-8737-6a48922969e1
    I have now been asked by a Microsoft Support engineer to post the question here as they said a script can be provided which I can use to fix this.
    I think I just need to clear the fact that I have previously installed these apps as maybe some bug in the developer preview set them to Chinese and it seems to remember this setting. I cannot understand any Chinese so this makes these apps unusable.
    The only other option I can think of is to create a new Microsoft account but I would rather not have to do this.
    Some of the apps affected include the OneNote app and the HP scanner app. I have uninstalled most others and found alternatives.
    Thanks
    Robin
    Robin Wilson

    Hello jrv
    I managed to run the script but cannot really see how it is any different to uninstalling the apps in the normal way except for the fact that you can uninstall multiple apps at once.
    This exact same problem happens on a surface 1, a surface 2 and multiple machines running either Pro or Enterprise. It is not one machine but every machine running 8.1.
    I have not upgraded from the Developer Preview version on any of my machines and always do a fresh install but what I am saying is that I did use the same Microsoft account during that time and it seems to have some record of the apps I installed at that
    time and thinks I want them installed now in Chinese.
    The only thing in common on the 7 machines I have tried (including the 2 surfaces) is that I have joined them to my Microsoft account and the problem seems to be with the Microsoft account and not with all the machines.
    To replicate this I can go to any Windows 8.1 machine and join it to my Microsoft account and this will put certain apps from the store into Chinese and I can find no way to stop this. I am pretty confident that the issue is with the Microsoft account or
    a setting that is synchronising from there.
    The workaround is to sign into a different Microsoft account and this installs them correctly on the same machine.
    I would appreciate any help with clearing out my history of installed apps without having to create a new Microsoft account.
    Thanks
    Robin
    Robin Wilson

Maybe you are looking for

  • I turn my iMac on and it starts ok but after a minute the monitor goes black

    I turn my iMac on and it starts ok but after a minute the monitor goes black, sometimes it comes back on sometimes it stays off, this has only happened since Apple replaced the hard drive.

  • Payment for GR without PO

    Hi experts, We are procuring some material without PO. GR without PO  done with Mvt type 501 and also entered Vendor Code in it. But how to make payment to  this vendor with reference to GR (which is done with Mvt type 501)? Regards, Jay

  • CC Swiper with new iPhone OS?

    Does anyone have any kind of idea when we'll see a credit card swiper come to market for the iPhone? I know that previously a swiper was not possible, but my understanding is that with the iPhone OS 3.0 that it's possible to have things like credit c

  • Importing from finalcut pro

    My projects are normally 1 hour or more. When I import into DVD pro I use quicktime and it seems to take at least 4 hours or more. Have attempted to try compressor but I am not that clear on that software. Am I missing something or is there a better

  • Alternative Options for Email Merge?

    I need a way to do personalized (merged) e-mails. Usually, I have fewer than 500 recipients, but the e-mails need to include some merged data like the recipient's name and physical address (so just sticking 500 e-mail addresses in the BCC field Mail.