Need Purchase information details in A/R Invoice

Dear Sir,
              My Process is
(All item are by Batch management) (Some extra UDF are manually updated in the Batch Number window.)
At GRN batch is selected UDF (Numeric field) are updated manually.
A.P. is booked.
Delivery challan is created selecting the batch number.
A/R Invoice is created. (Items may be coming from multiple Item from differnet A/P Documents.)
In The PLD we extract all information from A/R. Along with this we need to retreive the purchase information of these Item along with the information in the UDF to a second repetative area.
When we try this it shows all the batch for all the item in the A/R and the connecting A/P which is wrong
We are using OIBT table in the Second Repetative AREA.
We need only the purchase information of the Sales item and specifically the batch only
Tried it cystal report with same results
Please advice
Edited by: M.ASLAM MODAK on Oct 1, 2010 11:44 AM

Hi Aslam.....
If you put the GRN No. and its relevant details in short into your batch details then
you would get its link while dispatch.....
Regards,
Rahul

Similar Messages

  • Need Component Overview details of Purchasing order

    Hi,
    I have a subcontract purchase order.
    Need to get the details of the component overview of all the material data for that purchase order. (you can view that in ME23>item>component overview)
    How to get it and from which table?
    rgds

    From Ekko and EKPO i get the sub contract purchase order details (item catergory = 3 or document type = NB13 and document category = L)
    but i need to get the details of its item component overview.
    Rich Heilman,
    Can u tell me how to get the component records from RSDB and RESB for a purchase order line item.
    Thanks

  • I Need interactive report to list the purchase orders details for a vendor

    I Need interactive report to list the purchase orders details for a vendor that has    interactive drill down options to give the detail of vendor from vendor master.

    Hi
    see this sample report
    this is Customer wise sales orders
    just make similar report just using LFA1, EKKO and EKPO tables instead of KNA1,VBAK,VBAP
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Regards
    Anji

  • How to report Invoice details and also the related Purchase order details

    Hello,
    Any suggestions on How to Report both Invoice details and the related Purchase Order details.
    Ex:
    INvoice Line items Amounts /Qty
    PO Line Items Amounts /Qty
    Thanks in advance
    Jagadish

    Hello,
    Any suggestions on How to Report both Invoice details and the related Purchase Order details.
    Ex:
    INvoice Line items Amounts /Qty
    PO Line Items Amounts /Qty
    Thanks in advance
    Jagadish

  • AP Invoices' Purchase Order Details

    Hi All,
    Are there any SAP standard reports that can show AP invoices' Purchase Order details such as whether there's a GR being done or not?
    Thanks,
    CW

    Hi,
    Try ME2L, ME2M, ME2N. Change the "scope of list" for different format.
    Cheers !

  • Help with purchase order detail

    Hello Experts,
    I am currently trying to get information on a purchase order, but not having any luck.  I need to find the PO Number, and PO Approval Date.  I cannot find either of these.  I have tried using BBP_PD_PO_GETDETAIL, but have no luck with this.  here is what I have:
    move w_result-sc_guid TO lv_guid.
            CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
             EXPORTING
               I_GUID                           = lv_guid
               I_OBJECT_ID                      = w_zwkflw_rep-object_id
               I_WITH_ITEMDATA                  = 'X'
               I_READ_FROM_ARCHIVE              = 'X'
             IMPORTING
               E_HEADER                         = ls_e_header
             TABLES
               E_ITEM                           = lt_e_item
    All I have available is shopping cart number.  Can anyone assist please?  Thank you.

    hi,
    try below steps to retrieve purchase order details from a shopping cart.
    get the purchase order GUID in ET_HEADER_REL parameter of BBP_PD_SC_GETDETAIL fm using the shopping cart number or GUID.
    then to get the purchase order details, use BBP_PD_PO_GETDETAIL importing I_GUID = purchase order GUID from ET_HEADER_REL.
    regards.

  • For getting purchase order details what are the inputs and outputs

    I need to display purchase order details in EP portal by using integration EP, XI and R/3.
    I dont know what are the Inputs and what are the Outputs.
    Reward points for helpers.
    Cheers,
    Preethika

    Hi Preethika,
    for displaying PO use BAPI : BAPI_PO_GETDETAIL
    Its input is PO number
    Its output are tables PO_HEADER_TEXTS - for PO header data
    PO_ITEMS - for PO line items
    Thanks,
    Rajeev Gupta

  • How to get the Purchased item details in R12

    Hello everyone, am using Oracle Application R12,
    I need the following details for the all purchased item,
    how to get the item_id,item_name,vendor_name,ordered_quantity,rec eived_quantity,
    returned_quantity.
    Thank you.
    Regards,
    Gurujothi.

    Hi Gurujothi,
    pl.try the following SQL. it will give you complete details of purchasing.
    SELECT A.SEGMENT1 PO_NO, B.LINE_NUM, C.SHIPMENT_NUM,
    C.QUANTITY,C.QUANTITY_ACCEPTED,C.QUANTITY_BILLED,C.QUANTITY_CANCELLED,C.QUANTITY_RECEIVED,C.QUANTITY_REJECTED,D.QUANTITY QUANTITY_RETURNED,
    B.ITEM_ID,E.DESCRIPTION,F.VENDOR_NAME
    FROM PO_HEADERS_ALL A , PO_LINES_ALL B , PO_LINE_LOCATIONS_ALL C , RCV_TRANSACTIONS D, MTL_SYSTEM_ITEMS_B E , PO_VENDORS F
    WHERE A.ORG_ID = &OU_NAME
    AND A.PO_HEADER_ID = &PO_HEADER_ID
    AND B.PO_HEADER_ID = A.PO_HEADER_ID
    AND C.PO_LINE_ID = B.PO_LINE_ID
    AND D.PO_LINE_LOCATION_ID (+) = C.LINE_LOCATION_ID
    AND D.TRANSACTION_TYPE (+) ='RETURN TO VENDOR'
    AND E.INVENTORY_ITEM_ID = B.ITEM_ID
    AND E.ORGANIZATION_ID = C.SHIP_TO_ORGANIZATION_ID
    AND F.VENDOR_ID=A.VENDOR_ID
    regards
    sanjay

  • Need more Information about setupvscanrfc

    <b>Hello,</b>
    we need more Information from SAP about the <b>setupvscanrfc_78-10003831.exe</b>.
    Do you have more Information about this Installation (Documation?)?
    The Customer use a SAP Enterprise Portal (Sun OS) without a SAP Gateway.
    So we installed the SAP Gateway on Windows 2003 with AntiVir VSA.
    The memoryscan is running, but file their are bigger as 100 kb must be copy to the AntiVir VSA on Windows 2003 Server and this copycommand is not running.
    Logfile:
    ERROR file opened at 20070125 170340 W. Europe Stan, SAP-REL 700,0,79 RFC-VER 3 859699 MT-SL
    T:4328 Error in program 'vscan_rfc': ======> CPIC-CALL: 'SAP_CMNOREGTP'
    LOCATION CPIC (TCP/IP) on local host
    ERROR partner '10.35.43.32:3300' not reached
    TIME Thu Jan 25 17:03:40 2007
    RELEASE 700
    COMPONENT NI (network interface)
    VERSION 38
    RC -10
    MODULE nixxi.cpp
    LINE 2764
    DETAIL NiPConnect2
    SYSTEM CALL connect
    ERRNO 10061
    ERRNO TEXT WSAECONNREFUSED: Connection refused
    COUNTER 1
    ERROR file opened at 20070125 170341 W. Europe Stan, SAP-REL 700,0,79 RFC-VER 3 859699 MT-SL
    T:5016 Error in program 'vscan_rfc': ======> CPIC-CALL: 'SAP_CMNOREGTP'
    LOCATION CPIC (TCP/IP) on local host
    ERROR partner '10.35.43.32:3300' not reached
    TIME Thu Jan 25 17:03:41 2007
    RELEASE 700
    COMPONENT NI (network interface)
    VERSION 38
    RC -10
    MODULE nixxi.cpp
    LINE 2764
    DETAIL NiPConnect2
    SYSTEM CALL connect
    ERRNO 10061
    ERRNO TEXT WSAECONNREFUSED: Connection refused
    COUNTER 1
    ERROR file opened at 20070125 175912 W. Europe Stan, SAP-REL 700,0,79 RFC-VER 3 859699 MT-SL
    T:5548 Error in program 'VSCAN_FE0BOS192': <* RfcIsValidHandle [1] : returns 18:RFC_INVALID_HANDLE
    com.sap.security.core.server.vsi.api.exception.VSIServiceException: The virus scan server VSCAN_FE0BOS192 is not running on localhost!
    Thanks for your help.
    Greetings,
    Steve Neubert
    Avira GmbH

    Thanks for your Posting.
    No thats not the Problem.
    The Customer use a SAP Portal on Sun OS without a SAP Gateway.
    Enterprise Portal Server --> VSCAN Destination  to --> over TCP /IP --> another Server (Windows 2003) with AntiVir VSA und vscan_rfc + SAP Gateway
    Now the Customer use the installation from SAP  "setupvscanrfc_78-10003831.exe"
    Content for this Installation is: SAP Gateway + vscan_rfc
    The Problem is that the VSI Interface shows a errormessage by scanning file bigger as 100kb:
    If Files bigger as 100 kb the Destination must copy the File to the Virus Scan Apdater, but thats not working.
    com.sap.security.core.server.vsi.api.exception.VSIServiceException: The virus scan server VSCAN_FE0BOS192 is not running on localhost!
    VSCAN_FE0BOS192 is the Destination on Portal-Site...
    Need this Installation also a SAP Gateway on the Portal Site or whats the Problem?
    Thanks for your Feedback.
    greetings,
    Steve Neubert

  • Need net price itme in sapscript form invoice

    Hello expers,
    i need the net price item for the invoice form ?!
    I search the table, but i can´t find it.
    In the table KOMP, there is no net value.
    Can anybody help me ?
    /Simon

    Hi,
    You may be using FM   CALL FUNCTION 'LB_BIL_INV_OUTP_READ_PRTDATA' for getting the Billing Data.
    this FM imports ES_BIL_INVOICE(Billing Item: Price Data information).
    (table type LB_T_BIL_IT_PRICE, structure LBBIL_IT_PRICE)
    in the structure LBBIL_IT_PRICE we have NETWR(Net Value in Document Currency).
    once you get this value
    make a select on VBRK and get KNUMV for the billing number then make a select on KONV, WHERE KNUMV = KNUMV(you got this value from the above select). here you can play around with the price values you want.
    Thanks,
    Sree.

  • Need my conformation details send to my email address please

    I order a all in one officejet pro 8610 printer but i order it over the phone and the representitive who made the ordr put in the wrong email address and I Need my conformation details send to my email address but the thing is once I've made the purchased and the order is ship I cannot fix my email from there so I need to know what I can  do to change my email address and for them to send my conformation details to me. please help thanks

    Call AppleCare & ask to talk to "Account Security". Contact numbers here:
    http://support.apple.com/kb/HT5699?viewlocale=en_US

  • Archiving Old Purchase Information

    Is it possible to Archive old Purchase Information? I have been using ZENworks Asset Manager for several years now and have old purchase information for products that are no longer in the environment.
    When I run a Compliance Report for a product that has several generations of purchase information I would like to be able to exclude it so that it does NOT show purchase information for products that no longer have any Installation Information. Setting the criteria on the left does not allow me to get detailed enough for what I want. My only other option has been creating Custom Reports.
    I don't want to delete the old Purchase Information, it has been useful on more than one occassion. What are some of my options that I have not thought about?

    DaryRo,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Need User Manual Details in Manual BRS

    Hi Experts
    I done Manual BRS customization for my client in development. That one I imported in quality. Now i need user manual details for providing training to my client (end user). I need standard T code for using BRS. As of now I know T code:FF67 AND i searched in google i got some t code related Manual BRS- FEBA / FEBA_BANK_STATEMENT for further reprocessing.
    But i cant able to understant this two t code, Is there any other t code is there  like reprocessing, reporting etc.,
    Please give me list of t code and how it will work explain me.
    Thanks & Regards
    Mani.S

    HI
    Apart from all the above information, i found one thing missing was deletion of bank statement process if any wrong statement is uploaded by mistake.
    1 First see that any postings have happened or not, if yes that thru FBRA you need to reverse that .
    2. Go to SE38 and run RFEBKA96 to delete the bank statement choose application 0001and select the checkbox on bank statement which you need to erase.
    Hope this helps
    Regards
    Minesh

  • I updated my iPhone and it said error we need your iPhone details in some portal iPhone 4S

    I updated my iPhone and it said error we need your iPhone details in some portal
    iPhone 4S

    Morning Akmal345,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iPhone not appearing in iTunes
    http://www.apple.com/support/iphone/assistant/itunes/
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    Best of luck,
    Mario

  • Need Comprehensive Information on Building Interactive Forms in IDCS6

    Need Comprehensive Information on Building Interactive Forms in IDCS6
    Where could I get the most comprehensive training for building interactive forms in IDCS6?
    I need a tutorial that covers all bases from start to finish, and rules that cannot be broken. I thought I learned enough today to write one, but it appears there are holes in my methods as I found out tonight.

    Actually Claudia's course on Lynda.com is about creating forms with Acrobat X Pro, and she completed it before InDesign CS6 was available.
    Anne-Marie Concepcion discussed creating forms in her New Features in InDesign CS6 video on Lynda.com.
    But Sandee Cohen wrote a dynamite article in the current issue of InDesign Magazine about creating forms in InDesign CS6 which is very thorough.  The magazine is not available for free.
    www.indesignmag.com/purchase.php
    The coupon code FRIEND saves $20 off a 1-year subscription.

Maybe you are looking for

  • The 0co_om_opa_6 ip in the process chains takes long time to run

    Hi experts, The 0co_om_opa_6 ip in the process chains takes long time to run around 5 hours in production I have checked the note 382329, -> where the indexes 1 and 4 are active -> index 4 was not "Index does not exist in database system ORACLE"- i h

  • Canon 5D Mark II, Photoshop CS3 and Lightroom 2.4

    All, I know that this has to have been answered elsewhere, but I have not found what I'm looking for. I have purchased a new Canon 5D Mark II camera which will arrive Wednesday.  As far as software on my Mac Pro, I have Adobe Creative Suite 3 Design

  • Tiff transparency disappears when imported into InDesign C6

    I have a problem With my tiffs - they lose the transparency when I import them into InDesign. The original tiff can be imported without problems. To ajust the size of all of the original photos, I used the Image Processor in Photoshop. This seemed to

  • Another 7900GT artifact thread

    I bought the NX7900GT-VT2D256E-HD last August and was extremely pleased with it.  In the last month, however, I've started to have severe artifacts with textures stretching from horizon to horizon. I checked temperatures and the GPU was running at 70

  • Not recognizing my

    Does anyone know how to get windows portable device into the device manager so the computer can detect my mp3? After it froze, I hooked it back up to the laptop, then to the desktop and neither one will detect it. I called the creative support and th