MRP is not generating purchase requisitions consistently for MRP type VB

Issue: When executing consumption based MRP in ECC 6.0 using the following parameters; purchase requisitions are not created for all material with stocks below max stock levels. In other words  requisitions are  created incase of some materials and requisitions are not created for others.  
u2022     MRP type VB ( manual reorder point) with reorder point qty
u2022     Lot size HB with Max stock level
u2022     Procurement type F (external procurement).
Additional info: Some of these materials are batch managed and results are inconsistence whether it is batch managed or not.
Regards
Sai

I checked that and planning file entry is created.
Example 1: MRP is not working. 
MRP type = VB
Lot size =HB
Procurement type= F
Material # = 1200045
Reorder point =30
Max stock level = 300
Available qty = 139
No PRs are existing before MRP.
MRP is expected to create PR  for qty 161 (300-139= 161)
Example 2 : MRP is working. 
MRP type = VB
Lot size =HB
Procurement type= F
Material # = 1200052
Reorder point =100
Max stock level = 1000
Available qty = 87
MRP created PR qty of 913 and results are as expected.
MRP is expected to create PR  for qty 161 (1000-87= 913
NOTE: I am directly creating Purchase requisitions by selecting creation Purchase Requisitions Indicator =1  during MD01/MD02 trxs . Not creating any planned orders.

Similar Messages

  • Can not generate one xsd file  for message type in xi

    Dear Experts.
    I am not able to generate  one XSD file from  message type from XI 3.0, When i select message type and go to XSD tab  then click on export xsd to file, it is generating two xsd files MainSchema.xsd,  Schema1.xsd  into one zip file, but i need only one xsd file to import it into MDM.
    Could you please help
    Thanks and Regards.
    Sravya.
    The following are the two files. MainSchema.xsd,  Schema1.xsd .

    Hi Harsha,
    Thanks lot for the immediate response. Appreciate it.
    Now I am able to generate the one xsd with your inputs , but i am not able to load it into mdm with out any changes in the generated XSD from Message Type. the below is only the original root tag, where modification required.
    Original  Element : MDM_CUST_MASTER_FILE_REQUEST_MT
    ==============
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:abc.com:MDM_Customer_Master_ECC" targetNamespace="urn:abc.com:MDM_Customer_Master_ECC">
    <xsd:element name="MDM_CUST_MASTER_FILE_REQUEST_MT" type="MDM_CUST_MASTER_FILE_REQUEST_DT" />
    etc.
    Case :.When i modify the above element as below  with out xmlns, targetNamespace
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="MDM_CUST_MASTER_FILE_REQUEST_MT" type="MDM_CUST_MASTER_FILE_REQUEST_DT" />
    I can import xsd into mdm with the above modification.
    The generated XML out put File from mdm is having message type tag like below
    ?xml version="1.0" encoding="UTF-8"?>
    <MDM_CUST_MASTER_FILE_REQUEST_MT> 
    <CUSTOMER> </customer> ...
    note: no namespace for message type
    Result:
    1.When i send this xml file into XI it is failing in message mapping  because it doesn't have namespace attached to it and failing in message mapping.
    Finally i need your help to generate the xsd or data file like below to avoid mapping problem in xi.
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MDM_CUST_MASTER_FILE_REQUEST_MT xmlns:ns0=urn:abc.com:MDM_Customer_Master_ECC>
    Appreciate your help.
    Thanks and Regards.
    Sravya.

  • BPEL - not generating correct SOAP packet for complex types

    Hi,
    Below is a snippet from wsdl, correct SOAP request and reply packet (generated using a SOAP test tool) and finally BPEL generated SOAP request and error response (captured using TCP packet monitor)
    The problem is with element 'XActivationPackageArray', which is getting enclosed
    by itself again from Oracle BPEL PM.
    ------------------------W S D L S T A R T----------------------------------------------------
    <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" .......>
         <types>
              <schema>
                   <complexType name="XActivationPackageArray">
                        <sequence>
                             <element name="XActivationPackage" type="tns2:XActivationPackage" maxOccurs="unbounded"/>
                        </sequence>
                   </complexType>
                   <element name="XActivationPackageArray" type="tns2:XActivationPackageArray"/>
                   <complexType name="XActivationPackage">
                        <sequence>
                             <element name="activationPackage" nillable="true" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="XActivationResponse">
                        <sequence>
                             <element name="unitId" nillable="true" type="xsd:string"/>
                             <element name="serviceId" nillable="true" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <element name="XActivationResponse" type="tns2:XActivationResponse"/>
              </schema>
         </types>
         <message name="activateServiceRequest">
              <part name="userId" type="xsd:string"/>
              <part name="companyCd" type="xsd:string"/>
              <part name="customerCd" type="xsd:string"/>
              <part name="stockAccountId" type="xsd:string"/>
              <part name="orderNumber" type="xsd:string"/>
              <part name="serviceType" type="xsd:string"/>
              <part name="location" type="xsd:string"/>
              <part name="unitId" type="xsd:string"/>
              <part name="serviceIdPool" type="xsd:string"/>
              <part name="serviceId" type="xsd:string"/>
              <part name="XActivationPackageArray" element="tns2:XActivationPackageArray"/>
         </message>
         <message name="activateServiceResponse">
              <part name="XActivationResponse" element="tns2:XActivationResponse"/>
         </message>
    </definitions>
    ------------------------W S D L E N D----------------------------------------------------
    ------------------------Correct SOAP packet ----------------------------------------------------
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:sf2pwrapper.ws.sf2.p1.com">
    <soapenv:Body>
    <urn:activateService>
    <userId>XYZ</userId>
    <companyCd>999</companyCd>
    <customerCd>ABCDE</customerCd>
    <stockAccountId>FGHIJ</stockAccountId>
    <orderNumber>888999</orderNumber>
    <serviceType>AA</serviceType>
    <location>A</location>
    <unitId/>
    <serviceIdPool>XXX</serviceIdPool>
    <serviceId/>
    <XActivationPackageArray>
                   <XActivationPackage>
                        <activationPackage>MMGG</activationPackage>
                   </XActivationPackage>
    </XActivationPackageArray>
    </urn:activateService>
    </soapenv:Body>
    </soapenv:Envelope>
    ------------------------Correct reply ----------------------------------------------------
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <activateServiceResponse xmlns="urn:sf2pwrapper.ws.sf2.p1.com">
    <ns1:XActivationResponse xmlns:ns1="urn:model.sf2pwrapper.ws.sf2.p1.com">
    <unitId xmlns="">0642342</unitId>
    <serviceId xmlns="">83753710</serviceId>
    </ns1:XActivationResponse>
    </activateServiceResponse>
    </soapenv:Body>
    </soapenv:Envelope>
    ------------------------BPEL generated SOAP packet--------------------------------------------------
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <ns1:activateService soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:sf2pwrapper.ws.sf2.p1.com">
    <userId xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string">XYZ</userId>
    <companyCd xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string">999</companyCd>
    <customerCd xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string">ABCDE</customerCd>
    <stockAccountId xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string">FGHIJ</stockAccountId>
    <orderNumber xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string">888999</orderNumber>
    <serviceType xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string">AA</serviceType>
    <location xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string">A</location>
    <unitId xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string"></unitId>
    <serviceIdPool xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string">XXX</serviceIdPool>
    <serviceId xmlns:def="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:string"></serviceId>
    <XActivationPackageArray>
    <XActivationPackageArray xmlns="urn:model.sf2pwrapper.ws.sf2.p1.com">
    <XActivationPackage xmlns="">
    <activationPackage>MMGG</activationPackage>
    </XActivationPackage>
    </XActivationPackageArray>
    </XActivationPackageArray>
    </ns1:activateService>
    </soapenv:Body>
    </soapenv:Envelope>
    ------------------------BPEL error--------------------------------------------------
    <?xml version="1.0" encoding="utf-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <soapenv:Fault>
    <faultcode>soapenv:Server.userException</faultcode>
    <faultstring>org.xml.sax.SAXException: Invalid element in com.p1.sf2.ws.sf2pwrapper.model.XActivationPackage - XActivationPackage</faultstring>
    <detail>
    <ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">c7g7mrs</ns1:hostname>
    </detail>
    </soapenv:Fault>
    </soapenv:Body>
    </soapenv:Envelope>

    t

  • Mismatched data for "Created By" in generated Purchase Requisitions

    Hi,
    Just wanted to ask question to all gurus that, I see some mismatched data for ‘created by’ for system generated Purchase requisitions. As if I do MRP run using MD40(MPS scheduling run) then system is showing PR created by 'MRP controller' but if I run MRP using MD41(single item multi level), then system is showing the user ids name(the person on whose id MRP run is executed) is showing in the PR.
    As both the MRP runs being executed in the same user id, then there should not be such kind of diffrent data. Due to this mismathced data we are gettting some difficulties in the reporting. 
    Thanks in advance.
    Regards
    Amit

    Hi!
    It's solved. The mistake was on the connection of the tables:
    BUT000 - BUT020 - ADRC
    Thanks and regards,
    Mon

  • Problem in MRP generated purchase requisition.

    Hi Friends,
    We have run MRP via MD02 transaction for one material.
    MRP generated purchase requisition created.
    In that MRP generated purchase requisition, under item level in the status tab we are getting below field values is like below.
    Processing status : No edited
    Block ID: Blocked by requester.
    Due to above values we are not able to convert this MRP PR to PO.
    Could you please let us know is there any master setting is cause of this?
    Thanks in advance.
    Regards
    Jegen Mohan

    Hi Friends,
    After debugging MRP programme, we came to know that there is BADI implemented to block the MRP PR's intially and then z programme called for adding secondary materials/services to that MRP PR's.
    After addition of secondary materials/services to MRP PR's,  Status will be unblock automatically then save the PR.
    This is my client specific scenario.
    Thanks & Regards
    Mohan.

  • MRP is not generating any schedule line in my vendor's scheduling agreement

    Hello all,
    My question is: why the MRP is not generating any new line in my vendor's scheduling agreement?
    This is the scenario:
    I have created a vendor's scheduling agreement with transaction ME31L
    I have created a customer's scheduling agreement with transaction VA31 and those characteristics:
    - Forecast scheduling lines
    - JIT scheduling lines
    - MRP to DS type assigned to type C: Requirements according to forecast delivery/Deliveries according to JIT
    I have run MRP with transaction MD01
    MRP is generating some purchasing requistions, not purchase orders because we have set up a release strategy which requires 2 approvals, but those purchasing requests are not generating any new line in the vendor's scheduling agreement.
    Any idea why it could be? Please do not hesitate to ask for further explanations. Thank you

    Hi,
    Check if stock is available for the material in that plant.
    Also check the requirement date for the material and compare it with the planning horizon for that plant.
    Check your material master MRP view.
    Create source list(for material and plant in question) with MRP indicator 2.
    Thanks and Regards,
    Maheshwari

  • MRP : does not create purchase req.

    Hi,
    I have a batch job for RMMRP000  but the program are not always getting picked up material ABC. This material was
    sitting below it's Re-order point and should have had a Purchase
    Requisition created for it via RMMRP000. However no PR was created.
    I then selected this material via MD03 and manually run the transaction
    against this material and a PR was created.
    My worry is that there are other materials within the plant that
    have fallen below their Re-order point and have not been picked up by MRP, so we could be sitting without critical spares for the plant.
    What should I do?
    Processing key: NETCH
    Create Purch. Req :1
    Scheduling lines : 3
    Create MRP List : 1
    Planning Mode: 1
    Scheduling: 1
    Planning date: Current date

    Hello Ellen gatchalian,
    In reorder point planning, procurement is triggered when the sum of plant stock and firmed receipts falls below the reorder point
    For Eg if you enter reorder point as 10. During planning run, system checks only whether stock has fallen below this reorder point or not i.e. whether there are less than 10 pieces in stock. If that is the case, system triggers procurement to the amount of lot size (fixed lot size of 500 for example).
    Also check is there any safety stock maintained?? If that is the case, against your requirement, system will first consider safety stock and then requirement and Check the procurement type in MRP view of material master?
    Please try and come back
    Regards
    R.Brahmankar

  • Can i see purchase requisition delated in MRP?

    Hi All,
    as i know when demand changes , MRP deletes old unconfirmed Purchase requisition & creates a new one. so in this scenario can we see those deleted PR?
    Any help will be highly appreciated. thanks
    reards,
    Anubhab

    Hi Madhu,
    thanks for your reply. i have come across a very strange scenario where PO is created w.r.t the PR & this PR is not there in the data base. as i know system should consider this PR as firmed & it should not be deleted.
    now lets assume that some one has manually archieved this PR (though it should not have happened as it is only 3 month old PR), but i cant see this in archieve list (SARI )also.
    so can you think of any possiblility why this PR is not there in the data base? thanks
    regards,
    anubhab

  • Min-Max Planning Generating Purchase Requisitions

    We have been using min-max planning for a while and scheduling the min-max planning report (planning level: organization) to run every evening to generate a purchase requisition. Of late we have some items that are showing a reorder quantity but not generating a purchase requisition. We have verified the set up of those items against items that are generating a requisition and can't see a difference. What are the possible causes of items not generating a requisition when using min-max planning?
    Thank you!

    Make sure Item Settup has the "List price" Given.
    Source is set to " Supplier"
    When you are running the Min-Max Report, it should have the Parameter "ReStock" to "Yes".
    Since the records has to come from the Inventory to the Purchasing Module there is possibility that Records might be there in Interface tables. Run the "requisition Import" program and see if it address your issue.
    Thanks and regards,
    Phani

  • Several purchase requisition same day MRP

    Hello,
    I hace materials with lot size EX Lot-for-lot order quantity. The problem is when I have 2 planned issuses the same day, When I run MRP, SAP add quantities and create only a purchase requisition. I need sap create one PR for a planned iissue, with the same quantity.
    Thanks in advance.

    Hi,
    While executing MRP run it gets triggered  when the available stock falls below reorder point. It is basically reorder point which determines the purchase requisition creation while MRP is created.
    The reorder point is set considering  the past consumption material. If you want to trigger separate purchase requisition after each good issue you need to schedule MRP run after every good issue.
    This will generate separate purchase requisition after every good issue.
    Br,
    Tushar Patankar

  • Batch job not creating purchase requisitions

    I have a batch job that runs every day at 5 pm.  The point of this job is to run the MRP and create purchase requisitions for materials that have more demand than current supply.
    Programs ran within the jobu2026
    RWPOB001
    RVV50R10C
    RMMRP000
    My problem...
    Purchase Requisitions are not being created for random materials after the batch job has been ran.  When the MRP is run by itself (MD01), ALL materials will have purchase requisitions created for them without fail.  There is no order to it, and no one has kept track of any material numbers that have not had purchase requisitions created, so I cannot check the configuration.
    How I would like to investigateu2026
    1 u2013 Obtain a list of ALL purchase requisitions created in the timeframe AFTER the batch job has been ran
    2 u2013 Export this list into Excel
    3 u2013 Run the MRP manually to create purchase requisitions for ALL materials
    4 u2013 Obtain new list of ALL purchase requisitions created in the timeframe AFTER the MRP was manually ran
    5 u2013 Export this list into Excel
    6 u2013 Compare both lists; remove duplicates, display materials and requisitions that were created AFTER the batch job missed them.
    How would I go about getting a full list of purchase requisitions that have been created within the time frame the batch job has been ran, then export them into excel?  I understand that ME5A is the standard transaction for displaying lists of purchase requisitions, but how would I go about pulling all purchase reqs CREATED within a certain time period?
    Please, include specific SAP transactions and details in your answers.
    Also, if anyone has any good advice regarding how to get to the bottom of this specific issue, Iu2019m open to suggestions.  All good suggestions will be rewarded promptly.

    Cameron Lawrence Dunbar wrote:
    >
    > You mention that RMMRP000 should be ran before requirements planning.  Is it possible that our positioning of the program at the end of the job is causing these issues?  Or is it most likely the varient/parameters of one of these programs?
    >
    > Also, how can I display a list of purchase requisitions CREATED over a certain period of time?
    No, I did not say that RMMRP000 should be ran before requirements planning. I said it is the requirments planning. So you just run it twice if you execute it with MD01 again after this job.
    Running it twice should not end in different results if it is run with the same paramters (selection variants)
    As you are saying you get different results, I think you are running it actually with different entries in the selection screen.
    So you need to compare both selection screens. MD01 is obvious as you see it directly.
    Compare it with the selection variant of the batch job, that you can display  via the menu after you displayed the job in SM35
    ME5A transaction can give you a list of requisitions. alternative you can just use SE16 at table EBAN.
    Edited by: Jürgen L. on Apr 25, 2011 9:08 PM

  • Not approved Purchasing Requisition

    Hallo all,
    how can i prevent that not Approved Purchase Requisition are not able to create Purchase Order?
    To reproduce:
    create Purchasing Requisition (do not approve it)
    create via Autocreate RFQ (with special RFQ Type Bid RFQ)
    create via Tools/Copy Document the Bid Quotation (Action: RFQ Header and Lines)
    create via Tools/Copy Ducument the PO
    In this case you can create PO without of approving of Requisition. But this should not happen.
    If there any of EBS-Setups (e.g. Systemprofileoptions) to prevent it???
    Best Regards
    Sergej
    Edited by: 867673 on 31.08.2011 07:18

    Hallo Sandeep Gandhi,
    thanks for Your reply. It is not about whether what someone should or should not, but that this possibility at all should not exist. That the not approved Requisition can convert into RFQ (or rather in Quote and after that into PO) in my case is not desired and should be prevent of system. For example, you want buy as emploee car in your company, you generate Request (not approved Requisition) and then you convert it to RFQ. It could be possible, that in big company, the buyer make real RFQ or get real Quotations. And my Ask is how can i prevent it? You mind "You can consider writing a step in the PO approval workflow that checks if the PO Distribution is tied to a Req Distribution." If I tied or rather reference the Requisition Distribution with PO-Distribution would it be prevent the generation of PO without of approval of this Requisition (not with autocreate but also with Tool/copy Document type)? And then, can you discribe how can i writing a step in the PO approval workflow?
    Thanks in advance
    Best Regards,
    Sergej
    Edited by: 867673 on 02.09.2011 00:46
    Edited by: 867673 on 02.09.2011 00:48

  • Purchase Requisition commitment for WBS

    Hi! PS Gurus!
    There is one issue in my support project. While closing one WBS, the system gives an error that u201CThere is still Purchase Requisition commitment for WBSu2026.u201D
    But when I checked ME5J, some cost exists at PR. Later on I came to know that Purchase requisition is missing from the system, it has been deleted from the system. The solution I find out from SAP note. Some report we need to upload from basis people, again later on  I came to know that the data is not uploadable, the main thing abaper found out that there is no program exists for that particular report.
    Plz tell me wht do I do to recover my PR.
    The report ZKAOIDEO edits commitments for which there is no P.O or P.R (for this reason, you cannot use ME23N or ME53N to display a P.O or P.R for these commitments.
    Plz give me ur suggestion. Need ur help.
    Regards,
    ANSAR.

    As per abopve query,
    In Production server the PR is Missing, that means it is deleted, it can be seen only in cji5, we see that commitment of Rsu2026. exists against PR no...., itself doesnot exist in system.
    Plz let me know how it is possible that PR is non-existent (T-code-ME53N) inspite of commitment against it & how to reverse/clear the commitment in such case to close the WBS.
    Report RKANBU01 is there in the system, but ZKAOIDE0 & ZKAOIDE2 doesnot exist in the system, then how to run RKACOR04 in the system.
    plz need some help.

  • Error-"There is still a purchase requisition commitment for ORD #########."

    Hello All,
    I am trying to set deletion flag an internal order using transaction KO02 and am receiving an error "There is still a purchase requisition commitment for ORD #########."
    1> What does this mean.
    2> How can I solve this problem
    Moosa

    Hello Moosa,
    When you want to close an order, the system checks for dependanting data
    to alert you that there are open items that have not been received, etc.
    You need to close the purchase orders and requisitions so that the  order is no longer "expecting" postings from these dependant objects.
    Please consider running the following reports which have been known to correct inconsistencies in commitments:
    Report RKANBU01 resets commitments on orders and ranges of orders.
    (See note 100409) (Note 125266)
    Reports ZKAOIDE0 & ZKAOIDE1 removes commitments which refer to purchase orders and purchase requistions which do not exist.
    (See ANote 100409)
    Report RKACOR04 corrects mistakes between total and line items in
    database tables. (See Note 113423)
    I would recommend implementing these programs in a test system first.
    You may also want to consider Notes 152571 & 157369 if you are receiving error messages KO447 and/or KO448 when attempting to delete/close the order.
    Best Regards,
    Gladys xing

  • SNP Heuristics generates purchase requisition

    Hi Experts,
    I have a requriement to generates purchase requisitions start date at Monday; Im trying to use period factor but still I gets the reqs still falls in different days and also the planning calendar under the lot-size. Is there any other ways that I can apply this requirement?
    My lot-size is weekly bucket and 1 day transportation duration and 1 day GR.
    Thanks
    Regards,
    Lhon

    Thanks again for your reply; yes some of the days that didnt fall has holidays for that current week thats why it didnt schedule at the desired date but some of the Preqs generated were fall on other days even without any holidays in the calendar. Except for the calendars of the transport and handling what are the other factors thatc an affect this specified period factor settings? Other than this setting would you consider any other scenario to apply this requirement?

Maybe you are looking for

  • Move web gallery from photoshop to Dreamweaver

    Any suggestions on moving 2 separate web galleries created in Photoshop to Dreamweaver created website. I want to put them both on the same page.

  • Version of DB amd BPM

    can you use an Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi on a 10g AS (10.1.2) with BPM 10.1.2.0.2 ? we have installed the same but cannot see the default domain in console .. on trying to create a new domain get error

  • Dont you know when the ipod touch 5g of 16gb its going to come out on sale on mexico?

    here in Mexico the ipod 5g low cost hasnt come out on sale and i´d like to know when it will be on sale on apple store

  • How about a mac version?

    i used to use cool edit pro (before i switched to mac), but all of my studio friends use protools, nuendo, and logic. given adobe's considerable reputation amongst graphic artists on the mac platform, i'd think that you could really get some market s

  • HP D530 USDT BIOS upgrade not available at the moment.

    I tried downloading latest Bios version for a d530 usdt posted on this site(http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&prodTypeId=12... keep getting not available. This version was posted awhile back, I was