SAP B1 purchase document entry

Hi All,
Please advice me regarding purchase document entry in my client place which entails the following scenario. My client's A/P invoice is having Total material value + C.S.T = Net amount payable. In total material value Excise duty(10% + 2% +1%) is included. Here the excise duty is not calculated on Total material value, rather it is being calculated on an Assessable value and also a separate Excise invoice is given for the same. How to handle this in SAP B1?
Regards,
Rupa Sarkar

Hi Rupa........
You problem is with how to define tax code right?
SAP Has given tax combination for BEDCessHSCess+VAT by default
You need to define only BEDCessHSCess+CST
So you want how to create above tax code am I Right?
Go to Administration > Setup> Financials> Tax> Tax Formula
Now Give tax code and tax name.
Select CST as tax type
Now copy this and paste it to your right side
BaseAmt=Total+BED_TaxAmt+Cess_TaxAmt+HSCess_TaxAmt
TaxAmt=BaseAmt*Rate
Then once this is defined. Go to Administration > Setup> Financials> Tax> Tax Type Combination
And give code and decsription.
Below at first row drop down and select BED and in next respective column press Tab and select BED formula.
Same thing in the next line drop down and select Cess and in next respective column press Tab and select Cess formula.
and again in next line drop down and select HSCess and in next respective column press Tab and select HScess formula.
and again in next line drop down and select CST and in next respective column press Tab and select This recently define formula in tax formula window.
Now go to again Administration > Setup> Financials> Tax> Tax Code
Define code and its description and select this recently define tax type combination.
The combination will appear at row level below and press tab at next column and select relevant rate applicable for your tax combination.
Hope this helps you........
Regards,
Rahul

Similar Messages

  • Dear Guru kindly clear my confusion  In Print Output of a Purchasing Document In SAP.

    Dear  Guru,
    I am creating a RFQ AND want a printout for it from the standard  SAP.
    1= I given document no ,purchasing group and in message data given application as EA , Message Type as NEU Processing status 1.but found message
    as no purchasing document found.
    2=Checked NACE the standard output types
    The program ,form routine are above and in partner function the standard partner function is  there.
    3=If i want a new smart forn  then  should i use the same program same form routine , same form  or make a  copy of it and attach a smart form
    to the standard or any other process is there?

    Hi
    See these notes as a checklist
    SAP Note 457497 - FAQ: Message processing in purchasing
    SAP Note 61871 - Output of messages and release strategy
    Check if the message exists in table NAST
    I hope this helps you
    Regards
    Eduardo

  • Release Procedure for Service Entry Sheet Wr to the Purchasing document

    Hi,
    I have configured the Service entry sheet release procedure on the basis of Purchase order document type by creating Characteristic With table -field (CESSR - BSART) and also class is maintained where the defined characteristic has been assigned.Release group is assigned to the class and all necessary customizing activities carried over. I assigned release group n Strategy thru Cl20n and also checked in Cl30n for the document type where system is exactly proposing only one value for the document type. But when i create Service entry sheet thru ML81N after saving the document i checked for release strategy through Goto-> Service entry sheet -> Release Strategy which is grey mode.
    I tried thru ML85 System says that no suitable purchasing document is available for release.
    thank u
    Nagarjuna
    Edited by: yalamanchi nagarjuna on May 31, 2009 1:33 PM

    the same configuration is not working in DEV environment but working fine in Quality and PRD

  • Solution for printing of Purchasing Documents in SAP with version managemen

    Hi experts,
    We found that the standard solution does not meet the following requirements for purchasing document
    1)     The print for the latest version of the document does not contain items unaffected by change. It  requires printing of whole document with all items, but with version number and highlighted changes.
    2)     The standard solution cannot highlight some of the changes which are not captured by version management like text changes, target value and Contact (Purchasing Group) in header, text changes at item level, etc.
    3)     The standard solution can be used to reprint the whole PO without version management but that cannot highlight the changes specific to the version for which it is printed.
    If any solution which can meet the requirements specified above, please let us know <removed by moderator>.
    Thanks in advance.
    Edited by: Thomas Zloch on Mar 30, 2011 9:39 AM

    Ok.
    I have already done with SPRO configuration.
    MM->Purchasing->Version management->
    It has implemented ECC 6.0. The version management has been activated for Purchasing documents. The standard printing solution for printing of these documents (PO, Outline Agreements and RFQ) print these documents with changes made in the latest version. Any item which is not changed in the latest version does not get printed.

  • How to add Purchase Order entry using B1WS?

    Hi,
    I have implemented B1WS in DI server, I am trying to add purchase order entry, but after adding it via B1WS, I am not able to find entry in SAP;
    My code using B1WS:
    public void SAPPurchaseOrder(string _SID)
                _PIService = new PurchaseInvoicesService();
                Document doc = new Document();
                doc.Address ="ab";
                doc.AgentCode = "ab";
                doc.BaseAmountSCSpecified = false;
                doc.CardCode = "VEND7";
                doc.CardName = "Baker & Taylor";
                doc.DocDate = DateTime.Now.Date;
                doc.CreationDate = DateTime.Now.Date;
                doc.DocType = DocumentDocType.dDocument_Items;
                doc.DocumentStatus = DocumentDocumentStatus.bost_Open;
                doc.BaseAmount = 100000;
                doc.DocCurrency = "USD";
                MsgHeader msgHeader = new MsgHeader();
                msgHeader.SessionID = _SID;
                msgHeader.ServiceName = MsgHeaderServiceName.PurchaseInvoicesService;
                msgHeader.ServiceNameSpecified = true;
                _PIService.MsgHeaderValue = msgHeader;
                _PIService.Add(doc);
    Also, I found error while I have use "ADD FUNCTION" as;
    can not empty list of tables, doc1, doc3 and doc10
    Please suggest me a proper entry flow or code to implement.
    Thank you.
    Piyush
    (Rob IT team - Parabox Media Group)

    Hello,
    Just like DI API, you need add doc lines to purcahse order, here is a sample to add a purchase order.
    Public Function Add() As DocumentParams
                Dim myPOParams As DocumentParams = Nothing
                Try               
                    ' Create Input parameters
                    Dim poDoc As Document = New Document
                    poDoc.DocDueDate = Date.Now
                    poDoc.CardCode = "V10000"
                    Dim docLine1 As DocumentDocumentLine = New DocumentDocumentLine
                    docLine1.ItemCode = "A00001"
                    docLine1.Quantity = 1
                    docLine1.TaxCode = "NY"
                    poDoc.DocumentLines = Array.CreateInstance(docLine1.GetType(), 2)
                    poDoc.DocumentLines.SetValue(docLine1, 0)
                    Dim docLine2 As DocumentDocumentLine = New DocumentDocumentLine
                    docLine2.ItemCode = "A00002"
                    docLine2.Quantity = 1
                    docLine2.TaxCode = "NY"
                    poDoc.DocumentLines.SetValue(docLine2, 1)
                    ' Create Service
                    myPOService = New PurchaseOrdersService
                    ' Create Header
                    Dim msgHeader As MsgHeader = New MsgHeader()
                    msgHeader.SessionID = GlbData.sessionID
                    msgHeader.ServiceName = MsgHeaderServiceName.PurchaseOrdersService
                    msgHeader.ServiceNameSpecified = True
                    myPOService.MsgHeaderValue = msgHeader
                    ' Call command with output return
                    myPOParams = myPOService.Add(poDoc)
                    MsgBox("Purhcase Order added: " + myPOParams.DocEntry.ToString(), MsgBoxStyle.DefaultButton2)
                Catch ex As System.Exception
                    MsgBox(ex.Message, MsgBoxStyle.DefaultButton2)
                End Try
                Return myPOParams
            End Function
    Kind Regards
    -Yatsea

  • Classic & EC -  PO & other purchasing documents number range

    Hi SRM Gurus,
    Can any one please explain me more precisely about number ranges in SRM & MM.
    For classical scenario, we will define number ranges for PO & other purchasing documents in SRM as internal number ranges and in MM as external number ranges.
    But in Classical scenario we will create POs (or other Purchasing Documents) in backend system. Suppose If it is to be replicated to SRM as per business need, then how system works. Because we defined in SRM PO number range as internal number range and in backend system as external number range.
    Again in Extended Classical scenario, for MRP materials PR or Reservation will be created in backend system with internal number range. But in Plan-Driven scenario they will be replicate to SRM. In this case how we have to choose number ranges.
    I am confused. I'll appreciate if any one explains me with step by step or with examples for Classic and Extended classical scenarios
    Points will rewarded
    Thanks,

    Hi,
    Please find my responses in bold below:
    For classical scenario, we will define number ranges for PO & other purchasing documents in SRM as internal number ranges and in MM as external number ranges.
    Sundeep: In Classic Scenario, you do not define number ranges for PO internally in SPRO. You would only define number ranges for shopping carts, Confirmation and Invoices if required. Please see description of classic and extended classic scenario below.
    External number ranges are defined for PR's and PO's in ECC in a classic scenario environment. (No Internal number range is defined in SRM for these documents in classic scenario and a shopping cart is a PR in SRM)
    So, basically in classic scenario, you create only a Shopping cart (Internal Number Range) and all follow on documents such as PR, PO etc are created as external number ranges in ECC, which are a result of a shopping cart from SRM having an internal number range locally.
    But in Classical scenario we will create POs (or other Purchasing Documents) in backend system. Suppose If it is to be replicated to SRM as per business need, then how system works. Because we defined in SRM PO number range as internal number range and in backend system as external number range.
    Sundeep: This scenario is not possible. In classic scenario you cannot replicate the PO back to the SRM system. Such a scenario is usually accomodated by an Extended Classic Scenario.
    Again in Extended Classical scenario, for MRP materials PR or Reservation will be created in backend system with internal number range. But in Plan-Driven scenario they will be replicate to SRM. In this case how we have to choose number ranges.
    Sundeep: In a Plan driven procurement the PR is created in SRM as a shopping cart with internal number range. (PR = Shopping cart in SRM). No reservations are created locally in SRM from a PDP. Reservation are only possible in a Classic scenario from SRM -> R/3.
    · The classic scenario
    The shopping cart is created and approved in SAP Enterprise Buyer. The remainder of the procurement process takes place in the backend ERP system(s) and all other follow-on documents, such the purchase order, goods receipt/service entry sheet and invoice, are located there. With SAP Supplier Self-Services, you have partial supplier involvement for the operational procurement business scenarios when buying materials. There is no support for services.
    · The extended classic scenario
    The shopping cart is created in SAP Enterprise Buyer. The purchase order and follow-on documents are also created there and then replicated to the backend system. The purchase order in SAP Enterprise Buyer is the leading purchase order and cannot be changed in the backend system. Goods receipts and invoices can be pre-entered in SAP Enterprise Buyer or entered directly in the backend system. With SAP Supplier Self-Services, you have partial supplier involvement for all your operational procurement scenarios. In these scenarios, you have supplier involvement for the purchase order and the purchase order response.
    Hope this info helps !!
    Pls assign points for usefull answers !!
    Sundeep
    Message was edited by:
            Sundeep Ravande

  • Archiving of Purchasing Documents

    Hi Flocks,
    I am trying to Archiving of Purchasing Documents but i am getting the following error. please suggest << removed >>.
    "Delivery completed" indicator set
    No provision for IR
    Thanks in Advance you all,
    Saleem.
    Edited by: Saleem Shaik on Apr 1, 2010 9:35 PM
    Edited by: Rob Burbank on Apr 1, 2010 3:51 PM

    In general only closed business cases are archived.
    I have not seen a system yet, that was that clean, that one could archive any single purchase order in a given date range.
    I would never re-use old number ranges for two reasons:
    - even you have archived all documents, you cannot really be sure that SAP deleted all single entries from any table.
    - When you archive the documents with the reused number some day in future, then you will have 2 times the same number in the archive

  • Purchasing document field derived blank in FBL3N

    Hi SAP Guru
    Need your help.......
    I posted one accounting document with referance to purchasing document. In entry level purchasing document field is mention but while executing the report T code - FBL3N, purchasing document field appearing blank.
    Awaiting your reply.
    Regards
    Anjan

    Have a look with SE16 in the table BSEG if there is a PO in.
    The field PO is normal filled in from the posting from the PO. When you fill this in manual there is no link to your PO!!. You should use the transaction miro

  • Release Procedure for every Purchasing documents

    Hi,
    for a procument of material eg:- Material007
    Can I set Release Procedure for Purchase rquisition
    then after releasing Purchase rquisition i need to create a RFQ
    which is also subject to Release Procedure ,After releasing RFQ I should able to enter into a Contract,which also subject to Release Procedure ,After releasing Contract  i need to create a Purchase Order which is also subject to Release Procedure,After releasing Purchase Order only I should be able to Receive the goods.
    Is it possible to do this way ?Can any one help me?
    Thanks

    Why you want to put so many locks??????
    well if case your required use below steps for all document typew in IMG.
    suggestion to download the BBP from below link also
    http://help.sap.com/bestpractices/BBLibrary/bblibrary_start.htm
    3.4.24     Releasing Procedure for Purchase Documents
    Use
    This setting is incorporated to just give demonstration of how SAP Release procedure works.  The aim of this procedure is to replace manual written authorization procedures using signatures by an electronic one, while maintaining the dual Ctrl principle.  The person responsible processes the purchasing document in the system, thereby marking it with an "electronic signature" which can give the document legal force.
    3.4.24.1     Creation of Characteristics
    Procedure
    1.     Access the activity using one of the following navigation options:
    IMG Menu     Materials Management  Purchasing  Purchase Order  Release Procedure for Purchase Orders  Edit Characteristic
    Transaction Code     CT04
    2.     On the Characteristic screen, make the following entries.
    3.     In put POVAL in filed Characteristic and choose Create (White paper) icon or Ctrl + F3 to begin creation of characteristic.
    Field name     Description     User action and values     Note
    Select Addnl Data tab                
    Table Name     Table Name     CEKKO     
    Field Name     Field Name     GNETW     
    Choose Enter to continue, system will give an information message saying Format Data taken from ABAP dictionary, Choose Enter again to continue.
    Select Basic Data tab               
    Description     Description     Total net order value     
    Status     Status     Released      
    Data Type     Data type     Currency format     Selected by system
    Number of characters     Number of characters     15     
    Decimal places     Decimal places     2     
    Currency     Currency     INR     
    Interval vals allowed     Interval values allowed     Check this tick box     
    Multiple Values     Multiple values allowed     Select this radio button      
    4.     Choose Enter to complete the entries
    5.     Choose Save icon or Ctrl + S to save the characteristic.
    3.4.24.2     Creation of Class
    Procedure
    1.     Access the activity using one of the following navigation options:
    IMG Menu     Materials Management  Purchasing  Purchase Order  Release Procedure for Purchase Orders  Edit Class
    Transaction Code     CL02
    2.     On the Class screen, make the following entries:
    Field name     Description     User action and values     Note
    Class     Class     PORELPROC     
    Class Type     Class Type     032     
    Choose Create icon or white paper icon to create new class.
    Description     Description     Purchase Order Release Procedure     
    Status     Status     Released     
    Choose Char. Tab to input characteristic name.
    Characteristic     Characteristic     POVAL     Created in above step
    3.     Choose Enter to complete the entries
    4.     Choose Save icon or Ctrl + S to save the characteristic.
    Result
    Class type 032: Class PORELPROC created.
    3.4.24.3     Configuration of Release Procedure
    Procedure
    1.     Access the activity using one of the following navigation options:
    IMG Menu     Materials Management  Purchasing  Purchase Order  Release Procedure for Purchase Orders  Define Release Procedure for Purchase Orders
    Transaction Code     SPRO
    2.     On executing the transaction system will give a popup screen choose Release Groups, system will display Change View u201CRelease Groups: External Purchasing Documentu201D: Overview.
    3.     Choose New Entries icon and make the following entries:
    Field name     Description     User action and values     Note
    Rel. Group     Release Group     02     
    Class     Class Name      PORELPROC     Created in above step
    Description     Description     PO Release Procedure     
    4.     Choose Enter to complete the entries
    5.     Choose Save icon or Ctrl + S to save the entries.
    6.     Choose yellow arrow to go back to popup screen.
    7.     Choose Release Codes to select.
    8.     Choose New Entries icon and make the following entries:
    Field name     Description     User action and values     Note
    Grp     Release group     02     Created in above step
    Code     Release Code     01     
    Workflow     Workflow     Leave it blank     
    Description     Description     Purchase Officer     
    Grp     Release group     02     Created in above step
    Code     Release Code     02     
    Workflow     Workflow     Leave it blank     
    Description     Description     Materials Manager     
    9.     Choose Enter to complete the entries
    10.     Choose Save icon or Ctrl + S to save the entries.
    11.     Choose yellow arrow to go back to popup screen.
    12.     Choose Release indicator to select.
    13.     Choose New Entries icon and make the following entries:
    Field name     Description     User action and values     Note
    Release ind.     Release Indicator     1     
    Released     Released     Leave it blank     
    Chgable     Changeability     4     
    Value change %     Change of value     10%     
    Description     Description     Purchase Order Blocked     
    Go to 2nd line and input the following values:
    Release ind.     Release Indicator     2     
    Released     Released     Select Check box     
    Changeable     Changeability     6     
    Description     Description     Purchase Order Released     
    14.     Choose Enter to complete the entries
    15.     Choose Save icon or Ctrl + S to save the entries.
    16.     Choose yellow arrow to go back to popup screen.
    17.     Choose Release Strategies to select.
    18.     Choose New Entries icon and make the following entries:
    19.     System will give new screen New Entries: Details of Added Entries
    Field name     Description     User action and values     Note
    Release Group     Release group     02     
    Rel. Stategy     Release Strategy     S1     
              Capital Items Release     
    Release Code     Release Code 1     01     
    Release Code     Release Code 2     02     
    20.     Choose Enter to complete the entries.
    21.     Choose Release prerequisites icon and select check box 02 at the bottom and choose Enter.
    22.     Choose Release statuses icon, system will give a popup screen system will default 1, 1 and 2 entries one by one as a default.  Choose Continue.
    23.     Choose Classification icon, here you can see Total net order value is displayed, please input >= 1.00 INR value in the white placed and choose Enter.
    24.     Choose Next Screen icon or choose F8 to continue.
    25.     If you want to simulate the release procedure you can choose Release Simulation icon.
    26.     Choose Enter to complete the entries.
    27.     To save the settings choose Save icon or Ctrl + S.
    Result
    Release procedure is saved.
    3.4.24.4     Assignment of Values to Release Procedure 
    As a default all the purchase documents >= Rs. 1000000.00 is suggested in the following step of release procedure, if you want to have different one you need to change the value in the following step.  If you do not want release procedure you may change the value to Zero.
    Procedure
    1.     Access the activity using one of the following navigation options:
    IMG Menu     Cross-Application Components  Classification System  Assignments  Assign Object to Classes
    Transaction Code     CL20N
    2.     On the Class screen, make the following entries:
    Field name     Description          User action and values     Note
    Class Type     Class Type          032     
    Choose Enter to Assign values.
    Release group     Release Group          02     
    Rel. Strategy     Release strategy          S1     
    Choose Enter.
    System will give Class name in Assignments, Double choose Class Name.
    System will display Characteristic name Total net order value. Assign the value >= 1000000.00 INR  against filed Value.
    3.     Choose Enter to complete the entries
    4.     Choose Save icon or Ctrl + S to save the characteristic.

  • Effects of Purchasing Documents Archeiving

    Dear Experts,
    Can anybody please explain the effects of Purchasing documents Archiving on system?
    How purchase order will be numbered internally while creation after purchasing document archiving?
    Can the same number range for the purchasing documents assigned?
    If yes please explain the procedure to reset the Purchasing documents number range ?
    Thanks in Advance

    In general only closed business cases are archived.
    I have not seen a system yet, that was that clean, that one could archive any single purchase order in a given date range.
    I would never re-use old number ranges for two reasons:
    - even you have archived all documents, you cannot really be sure that SAP deleted all single entries from any table.
    - When you archive the documents with the reused number some day in future, then you will have 2 times the same number in the archive

  • Report for MRP controller and relevant purchasing document

    HI
    My requirement :We have MRP controller for different diciplines(mech, electrical, Instrumentation.......ect).
    I want to search for a report Where it display me the Purchasing document(PO) number by respective decipline.
    I tried all the report in MRP controller such as MC.E, MC.D, COOIS.........ect
    Thanks in advance
    Mujeeb

    Hi Mangalraj
    Thanks for your answer, but my question is not yet answered.
    As you told i did follow accordingly.
    When i enter the T.code: ME5A ( i can not find the scope of list ALV but did find the entried as below)
    A     3-line + n special
    B     2-line + n special
    B1     2-line + 2 MRP list
    B2     2-line + 2 stock/rq.
    B3     2-line + 2 purch.dt.
    C     1-line
    C1     1-line + stock/rqts.
    D     
    F     Collective release
    G     3-line loop
    H     2-line loop
    I     1-line loop
    If i select "C" from the list i'm getting 1 line display but as you told i did press the CTRL+F8 but unable to get the cost) it does not work at all like dat.
    I'm using the system version 4.6C. Can you please suggest something on the report.
    Thanks & regards,
    Mujeeb

  • No value in Purchasing Document field in FBL1N Transaction

    Hi All,
    While executing a report RFITEMAP (Transaction FBL1N), Purchasing Document field is blank while I can see the corresponding Purchasing Document in BSEG table. I have a requirement to show the same in the output. Do we have some settings or ABAP code changes to achieve it?
    Any kind of input would be helpful to me.
    Rgds,
    Khanshi

    Hi,
       Please read note 152335
    You can achieve it via OSS note 112312, but you need to program the BTE as per your business requirements, as stated in the note there is no standard functionality for this.
    You may refer to the following wiki page, it has an example, but in the example, another field was used, maybe it can be useful for you.
    http://wiki.sdn.sap.com/wiki/x/fg3cCw
    regards
    Waman

  • Length of amount field in New GL at the document entry

    Hi,
    1) At present I am working on ECC 6, EhP 4 with New GL Activated & Old GL "Not deactivated" (i.e deactivate update of Classic General Ledger GLT0 not done).
    2) The total table (FAGLFLEXT) & Line item table (FAGLFLEXA) field in new GL has amount field length as 23 digit.
    3) When I am trying to enter any FI Document in SAP, using transaction code F-02 or FB60 etc, the length of amount field is coming as 13 digit. I am not able to enter higher value
    Question:-
    a) Is the above issue due to "non-deactivation" of "Old GL"? As per my understanding, it is not, but wanted your opinion.
    b) Is there any configuration which needs to be done to increase the length of the amount field at transaction level?
    Thanking you in advance
    Santosh Agarwal

    a) Is the above issue due to "non-deactivation" of "Old GL"? As per my understanding, it is not, but wanted your opinion.
    No, it is not.
    b) Is there any configuration which needs to be done to increase the length of the amount field at transaction level?
    No, there isn't.  The field length that is appearing during document entry is really dictated by the data type of fields such as DMBTR, WRBTR in table BSEG; which is CURR (13,2).  Although the GL view (FAGLFLEX* tables) have longer length, the limitation in entry view (BSEG, etc.) stays as 13,2.

  • PR Mandatory in creation of Purchasing Document

    Hi All,
    I need your help in order to create purchasing document is mandatory with PR reference . I have done in config "Define Function Authorizations for Buyers" for all Purchasing Document such as PO, Contract and RFQ then assign them in SU01 for parameter EFB, however, only PO works others do not affect. Is there any parameters besides EFB shold be set in parameter? Thanks.
    Best regards,
    Mahnansa

    Hi,
    GOTO Authorization Buyer... tcode OMET(Function Authorization)
    then New entry
    give any name say 11 & PO from PR only
    then at the top in General parameters,in that fiels selection choose----->
    NBF
    then in possible reference objects----> Choose Ref to PR
    save
    then
    T code SU3, or system-> user profile-> Own data
    click parameter
    in parameter ID, give EFb, then
    In parameter value give 11,just wat u save in OMET,
    save.
    Now me21n
    try to create manually, it will throw error, as not possible to create PO
    without reference doc (PR).
    Regards
    KK

  • Unable to change gl account in purchasing document rows of item type(8.8 ve

    Hi all,
    In previous sap b1 version ,in purchase document rows of item type -- system allows to change the gl account in rows.
    But in current 8.8 it is missing ,can any one know how to activate this or is there any logical reason to lock this.
    Regards,
    Naresh K

    Hi Chandra,
    In some older version this was possible. This was changed as this is the stock account to avoid usage of incorrect account and valuation report issues.
    If you want a specific stock account for the item change you can define that on the item master data. Set it to Item Level and then change the GL account.
    Hope it helps,
    Jesper

Maybe you are looking for

  • Not supported hardware to boot from disk

    Hi everybody I have a problem by installing windows vista ultimate on my mac pro. All four disk bays contain the same harddrive (Samsung HD501LJ). Bay 1+2 are configured in a RAID0 array,. Bay3 is a native disk for windows and bay4 is used for the ne

  • Mac mini (mid 2011) to Samsung led tv via hdmi connection problem.

    Samsung led tv - UE32D5000 Mac mini (mid 2011) On regular monitor (connected by hdmi to dvi cable) setup teamviewer Try to: 1. Connect different hdmi cables - dose not work (on apple tv - both cables work) 2. Connect hdmi cable to different hdmi port

  • How can I stop all of my old emails from downloading to my new iphone?

    When I upgraded to iphone 4S a few years ago, hundreds and hundreds of old emails suddenly downloaded to my iphone, and I couldn't stop it. I can't remember how I resolved the problem then -- but it is happening again with my new iphone 6. My badge i

  • Help with "reader"

    I need to have a "reader" be able to read my pages in order.  What do I need to do to make my site read in the correct order and skip unnecessary text such as "visited link"?

  • MCE DVD±R DL upgrade for Powerbook

    I have seen a DVD±R DL drive upgrade for the powerbook on MCE's website for $150. I would like to know if anyone has this upgrade, and if it is any good, as I am looking into getting it!