SPP and MRP Areas

Hi,
today we are doing all our ECC planning (MRP) on MRP Areas. No planning is carried out at plant level.
Is it possible to do the planning in SPP on the MRP Area locations instead of Plant locations.
We are considering where to perform our spare parts planning in the future and we are thinking of either using:
- ECC Flexible Planning
- APO Demand Planning
- SPP
Regards,
Kenneth

Hi,
we can use Total planning(MD01) for a single plant or use scope of planning to control whether total planning is to be carried out for single plant/sevaral plant/ for one MRP Area/sevaral MRP areas/ combination of plant and MRP Areas.
Steps :
1.Group together the plants which are to be planned in spro in --->Define scope of planning.(OM0E)
2. Define the scope of planning as 999 for ex and give description.
2. Now select that and Specify the sequence in which Plants and MRP Areas are to be planned,
3.Goto new entries and enter the plant as 1000/MRP Area as 1000 with counter 1 and plant as 1100 with counter 2 and save.
4.Execute the total planning either as online job or as background job.
5.The planning run has to be always started with paralle processing.
In SPRO in define parallel processing in MRP enter the destination for parallel processing for ex your server name and enter the no .of sessions as 1 and save.
6.Tcode MD01 enter the scope of planning group and selet the parallel processing and enter. Hope the above points taken care and resolve the issue. Thanking you.

Similar Messages

  • Can PIR created at wbs element and MRP area of storage location level

    Hi,
    I tried to create an planned independent requirement at MRP area and WBS element level, but failed. The MRP area is not plant level, but storage location level.
    *When trying to create account assignment category Q for it, then there is an error message saying:*
    **only stock requirements are allowed when planning at MRP area level.**
    Does it mean it is not possible to create planned independent requirement for this case?
    Thanks!

    Select the "Issue storage location" as '2' here:
    spro -> production -> material requirement planning -> mrp groups -> overall maintenance of mrp groups -> overview -> mrp control parameters at material level -> (field) Issue storage location selection
    & make sure:
    1. In the BOM  issue storage location is blank for the components
    2. For the FG products , in mrp area prod.storage loc is maintained
    3. Components are extended to the mrp area.
    Pl. revert with the results

  • Linking SLoc and MRP Areas in Supply Area

    Hi All,
    I recently moved one production line from one plant to an other one. This new line is feeded with Water from a separated tank. I would like to be able to see the requirement of water coming from the new line and stock in this tank separatelely from the "other" Water to be able to know how much water we have to supply to this separated tank.
    Based on, what we are asking for is a new storage location equivalent to the separated tank (for stock and consumption) and a new MRP are (to be able to differentiate between demand).
    this is the situation am going on right now, i think the above subject is what am i thinking the best solution on this situation, can anyone help me guide to work on this. thank you!

    Dear,
    APO-DP  Vs  Flexible Planning in ECC.  Yes  APO advance but ECC is more user friendly.
    The master data is managed in R/3 and transferred to APO using CIF. An issue storage location is maintained in the R/3 production version. This issue storage location is assigned to an MRP area in R/3. This MRP area is contained in the integration model (transaction CFM1). The MRP area is therefore transferred to APO. The APO plan (PPM or PDS) is created in APO in the MRP area. Using this plan, a planned order is created in the MRP area location in APO.
    If you want the R/3 behavior, you must not assign the component to the model in the MRP area location. The system will then automatically switch to the plant location, that is, the system then uses the plant location as the issuing location of the component in MRP area.
    Hope it will solve your problem. Also refer the OSS  Note 628739 - APO 3.x Release restrictions for MRP areas
    Regards,
    R.Brahmankar

  • Update MRP group for a material and MRP area

    Hi,
    My requirement is to mass update the MRP group for certain number of materials depending upon the MRP area.
    Is there any standard BAPI or the LSMW program which would help me in this.
    Regards,
    Shahu

    Hi,
    Hope this program can give you some lead.
    REPORT  ZMRPAREA002                           .
    *Tables.
    tables : mara,                          "General Material Data
             marc,                          "Plant Data for Material
             mvke,
             mdlv.                          "Customizing MRP Area
    Internal Table
    types : begin of bdc_tab,
                 matnr like MARA-matnr,    "Material Number
                 werks like MARC-werks,    "Plant
                 berid like mdlv-berid,    "MRP area
                 dismm like marc-dismm,    "MRP Type
                 minbe(16),                "Reorder Point
                 disgr like marc-disgr,    "MRP Group
                 dispo like marc-dispo,    "MRP Controller
                 disls like marc-disls,    "Lot size (materials planning)
                 bstfe(16),                "Fixed lot size
                 mtart like mara-mtart,    "Material Type
                 bstmi like marc-bstmi,    "Minimum lot size
            end of bdc_tab.
    data : i_bdc_DATA type bdc_tab occurs 0 with header line.
    data : it_bdc_data type MDMA. " occurs 0 with header line.
    data : i_struc type SDIBE_MASSFIELDS. " occurs 0 with header line.
    data : s_dpop type dpop.
    data : var type BAPIRETURN1.
    data : var1(50).
    *Selection-Screeen
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE TEXT-010.
      PARAMETERS  :  P_FNAME LIKE RLGRAp-FILENAME.
    SELECTION-SCREEN END OF BLOCK b1.
    *AT_SELECTION_SCREEN
    Call the function module to display the dialog to select input file
    at selection-screen on value-request for p_fname.
      call function 'WS_FILENAME_GET'
           exporting
                def_filename     = p_fname
                mode             = 'O'
                title            = 'Select the file to Upload'
           importing
                filename         = p_fname
           exceptions
                inv_winsys       = 01
                no_batch         = 02
                selection_cancel = 03
                selection_error  = 04.
      if sy-subrc <> 0.
      endif.
    *Start-Of-Selection
    Start-Of-Selection.
    perform get_data.            "DATA UPLOAD TO INTERNAL TABLE
    *perform open_group.                "open BDC-GROUP
    *Selecting values for a particular material type
    loop at i_bdc_DATA.
      select single mtart from mara
             into i_bdc_DATA-mtart
             where matnr = i_bdc_DATA-matnr.
      modify i_bdc_DATA.
      select single * from mvke
             where matnr = i_bdc_DATA-matnr.
    endloop.
    *Form Get_Data .
    form get_data .
        data : v_fname type string.
        v_fname = p_fname.
      CALL FUNCTION 'WS_UPLOAD'
       EXPORTING
         filename                      = P_FNAME
         filetype                      = 'DAT'
        TABLES
          data_tab                      = i_bdc_DATA
    EXCEPTIONS
       conversion_error              = 1
       file_open_error               = 2
       file_read_error               = 3
       invalid_type                  = 4
       no_batch                      = 5
       unknown_error                 = 6
       invalid_table_width           = 7
       gui_refuse_filetransfer       = 8
       customer_error                = 9
       OTHERS                        = 10
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    loop at i_bdc_data.
          i_struc-xdismm = 'X'.
          i_struc-xminbe = 'X'.
          i_struc-xdisgr = 'X'.
          i_struc-xdispo = 'X'.
          i_struc-xdisls = 'X'.
          i_struc-xbstfe = 'X'.
          i_struc-xbstmi = 'X'.
          it_bdc_data-matnr = i_bdc_data-matnr.
          it_bdc_data-werks = i_bdc_data-werks.
          it_bdc_data-berid = i_bdc_data-berid.
          it_bdc_data-dismm = i_bdc_data-dismm.
          it_bdc_data-minbe = i_bdc_data-minbe.
          it_bdc_data-disgr = i_bdc_data-disgr.
          it_bdc_data-dispo = i_bdc_data-dispo.
          it_bdc_data-disls = i_bdc_data-disls.
          it_bdc_data-bstfe = i_bdc_data-bstfe.
          it_bdc_data-bstmi = i_bdc_data-bstmi.
          call function 'MD_MRP_LEVEL_CREATE_DATA'
            exporting
              i_matnr                 = it_bdc_data-matnr
              i_werk                  = it_bdc_data-werks
              i_mrp_area              = it_bdc_data-berid
              i_selfields             = i_struc
              i_mdma                  = it_bdc_data
              i_dpop                  = s_dpop
            I_QUEUE_FLAG            = 'X'
             I_SAVE_FLAG             = 'X'
            I_EXTERNAL_COMMIT       = ' '
           IMPORTING
             E_ERROR_RETURN          = var.
            var1 = var.
            write :/ var1.
    endloop.
    endform.                    " get_data
    K.Kiran.

  • STO between plant and storage location MRP area

    Dear PP/DS experts,
    For some business requirements, I want to model stock trnasfer order scenario from plant to storage lacation MRP area but the system only make stock trasnfer reservation.
    In my EPR system, I maintainted storage location MRP area material with special procurement 45, then the transportaion lane is created between location 1200(location type 1001) to MRP area 1300(location type 1007).
    My question :
    1) Is it possible to make stock transfer order scenario instead of stock transfer reservation between plant and MRP area ?
    2) If possible, Is there something to do more in master data maintenance except mentioned above in ERP ?
    Thanks in advance for your help.
    Regards,
    Lee, Seung Won

    Hi,
    Yes you can perform intracompany STO (Plant to plant) and STO at Storage location level at the same time,
    We are using same for our client.
    http://www.architectsap.com/blog/sap/how-to-setup-stock-transport-order-between-two-storage-locations/
    Regards,
    Gopala.S

  • MRP Areas and MRP

    Hi I've created MRP areas, and expect to run MRP by MRP area, however, when I click on the drop down list beside the field MRP area in MD01 I do not get a list to select an individual MRP area.  Is this right?
    Thanks

    Hi,
    we can use Total planning(MD01) for a single plant or use scope of planning to control whether total planning is to be carried out for single plant/sevaral plant/ for one MRP Area/sevaral MRP areas/ combination of plant and MRP Areas.
    Steps :
    1.Group together the plants which are to be planned in spro in --->Define scope of planning.(OM0E)
    2. Define the scope of planning as 999 for ex and give description.
    2. Now select that and Specify the sequence in which Plants and MRP Areas are to be planned,
    3.Goto new entries and enter the plant as 1000/MRP Area as 1000 with counter 1 and plant as 1100 with counter 2 and save.
    4.Execute the total planning either as online job or as background job.
    5.The planning run has to be always started with paralle processing.
    In SPRO in define parallel processing in MRP enter the destination for parallel processing for ex your server name and enter the no .of sessions as 1 and save.
    6.Tcode MD01 enter the scope of planning group and selet the parallel processing and enter. Hope the above points taken care and resolve the issue. Thanking you.

  • MD04 - Subreq - Storage location MRP area

    Hi all,
    I have an issue of Subreq in MD04 which is not assigned to the the good MRP area.
    I'm explaining :
    Business process
       -> I work with a subcontractor
            case 1 : either I buy raw material to be processed and delivered it directly to my subcontractor
            case 2 : either I send raw material from my physical stock to my subcontractor
       -> I create subcontracting purchase order with indication as components, the raw material.
       -> In case of the components are already in my subcontractor (case 1), the reservation (Subreq) should not consume my physical stock.
       -> In case of the components are in my physical stock (case 2), the reservation (Subreq) should consume the physical stock.
    Solution choosen
    Then I decided to create a storage location MRP area : "EXTERN" as External.
    I assigned a storage location "EXT" to this MRP area.
    I assigned this MRP area to the material in MRP1 / MRP Area.
    In the purchase order, in the components popup,
      For case 1 :  I assigned "EXT" as Prod.Stor.Loc and Supply area
      For case 2 : nothing special is filled
    Issue
    For the case 1, althought I assigned the storage location "EXT", the Subcontractor Requirement is not attached to the good MRP area.
    WHY?
    Remark : I didn't use the subcontracting MRP area because I would like to have 2 cases : case 1 & case 2.
    Thank you in advance for your help about this problem which make me nervous !

    Hello Catherine
    Your system is working as designed. The following note explains the system design in more detail:
    503497 - Subcontracting and MRP areas
    Take a look on the relevant information provided by this note below:
    Reason and Prerequisites
    The most important point to understand the system behavior is the fact that the withdrawal of the (subcontracting) component is generally carried out during the goods receipt for an SC procurement proposalfrom the subcontractor stock that is managed at plant level from an inventory management point of view and that has no reference to a storage location at all.
    This causes that subcontractor requirements can never enter a storage location MRP area, since you can later not post the withdrawal from this MRP area.
    Thus SC-requirements always enter the SC segment of the plant MRP area or the SC-MRP area.
    The SC MRP area in turn is supplied by stock transfer reservations from the plant MRP area or via third-party order processing through procurement proposals with goods receipt directly to the subcontractor. A supply through the materials planning from a storage location MRP area is not possible.
    For the above reason, SC-requirements do also not carry any storage location, since the storage location does not have any control function at all for SC-requirements:
    You cannot and you should not determine a storage location MRP area (see above), and the subcontractor MRP area is determined via the vendor of the procurement proposal, thus it is independent of the storage location.
    See also Note 376050 on this topic that makes a modification available which prevents the deletion of the storage location in the subcontractor requirements, so that you can use, for example, customer-specific reports to analyze the storage location.
    Please observe that the mentioned modification note 376050 only makes the storage location available on table RESB, so that you can use it on custom report. This modification will not make the storage location to be considered by MRP or on MD04.
    BR
    Caetano

  • MRP AREA

    Hi
    I have  created MRP AREA FOR MATERIAL with procurement type F.
    Also  production storage location and EP storage location is maintained in MRP Area.
    Planning file entry is available for material and mrp area.
    SLoc MRP indicator is 1.
    But this material is getting planned in PLANT MRP area.
    Am I missing any config

    Hi,
    Materials are planned in more that one area, according to where the requirements are. So, in your case, even if you have defined all these definitions, but you have requirements in the plant MRP area, you'll get planning there too.
    Regards,
    Mario

  • MRP Areas in Flexible Planning?

    Hi,
    we are in the process of evaluating different planning tools for our long term planning. And I guess we have two options: APO-DP and Flexible Planning in ECC. We are a non manufacturing (government) organisation and want to try to forecast/plan future demand and requirements. We are getting our demands from maintenance orders and cost center consumption. Reqs are in the form of components on maintenance orders and STO's between storage locations in different MRP areas.
    Is it possible to do flexible planning and taking mrp areas into account. Will it be possible to forecast future demands on Plant and MRP area level. Mind we are not selling anything through sales order, so we are not actively using SD org structure.
    Best regards,
    Kenneth

    Dear,
    APO-DP  Vs  Flexible Planning in ECC.  Yes  APO advance but ECC is more user friendly.
    The master data is managed in R/3 and transferred to APO using CIF. An issue storage location is maintained in the R/3 production version. This issue storage location is assigned to an MRP area in R/3. This MRP area is contained in the integration model (transaction CFM1). The MRP area is therefore transferred to APO. The APO plan (PPM or PDS) is created in APO in the MRP area. Using this plan, a planned order is created in the MRP area location in APO.
    If you want the R/3 behavior, you must not assign the component to the model in the MRP area location. The system will then automatically switch to the plant location, that is, the system then uses the plant location as the issuing location of the component in MRP area.
    Hope it will solve your problem. Also refer the OSS  Note 628739 - APO 3.x Release restrictions for MRP areas
    Regards,
    R.Brahmankar

  • In scope of planning ( md01), How to maintain MRP areas in scope of plg?

    Hello PP members,
    In scope of planning ( md01), How to maintain plant or MRP areas in scope of planning ?
    What is the transaction code for maintaining plants or MRP areas in the scope of planning
    I tried transaction code SAMP, Also went to SE93( Maintain transaction) for any related transaction codes for maintaining plants in scope of planning, it wasn't much help
    Thanks for your time,
    Thanks Again,
    Suren R

    Hi,
      we can use Total planning(MD01) for a single plant or use scope of planning to control whether total planning is to be carried out for single plant/sevaral plant/ for one MRP Area/sevaral MRP areas/ combination of plant and MRP Areas.
    Steps :
    1.Group together the plants which are to be planned in spro in --->Define scope of planning.(OM0E)
    2. Define the scope of planning as 999 for ex and give description. 
    2. Now select that and Specify the sequence in which Plants and  MRP Areas are to be planned,
    3.Goto new entries and enter the plant as 1000/MRP Area as 1000 with counter 1 and plant as 1100 with counter 2 and save.
    4.Execute the total planning either as online job or as background job.
    5.The planning run has to be always started with paralle processing.
      In SPRO in define parallel processing in MRP enter the destination for parallel processing for ex your server name and enter the no .of sessions as 1 and save.
    6.Tcode MD01 enter the scope of planning group and selet the parallel processing and enter.
    7. All the materials to be planned in the plant / mrp area will be planned now.
    Regards,
    nandha

  • MPS and MRP question

    Hi all,
    There are two kinds of planning run (i.e. MPS and MRP). I have few questions on this.
    1 - Do I need to setup two background jobs, one for MPS job, and another follow by MRP job, in the system?
    2 - Can I just run MPS using MD40 (total MPS run) without perform MRP run (i.e. using any of the MD02)?
    3 - Does MPS ONLY plan one level only? in another word, all the second level onward will require another separate MRP run to show all the subsequent level dependent requirement?
    4 - if there is one FG, and it has 2nd level of semi-FG bom compenent, the semi-FG has another level of semi-FG and subseuqently Raw material level. In this kind of scenario with many level, it is good practise and it SHOULD use MPS to first plan for the first level  FG? and later subsquent level use MRP to plan? Am I correct?
    thanks.
    tuffy

    Hi,
    No,
    You can MD40 and then MD02
    Usually Only those materials which affect companies profit will be taken for MPS, hence few materials will be available for A importance, so you run level by level for MPS, rest will run under MD02, it depends on  the business process.
      When running MRP using transaction MD02 and MD41, what the difference should be?
    There is no difference in the processing logic as such. The only difference is that MPS only acts on materials with an MRP type relevant to MPS (e.g. M0, M1, etc...), and MRP acts on materials with an MRP type relevant to MRP (e.g. PD). How the materials are processed is exactly the same.
    This functionality allows you to run MRP for 2 sets of materials separately (and with a different frequency).
    For example, some businesses may do planning for their finished goods once per week, but would want to run MRP for their
    components daily (although this is generally not necessary with SAP).  So, for this example, you would define all finished goods with an MRP type relevant for MPS, and all components with an MRP relevant.
    Basically, MPS is a form of MRP that concentrates planning on parts or products that greatly influence the company profits or those that require critical resources.  Items marked as master schedule items can be finished goods, assemblies or raw materials.  These items are selected for separate MPS run that takes place before the MRP planning run.  MPS run is executed without any BOM explosion.  This is to allow the MRP controller to ensure that the master schedule items are correctly planned before any detailed MRP run take place.
    As you can see, there are not too differences if you review MRP and MPS isolated, but lets think the BIG PICTURE, and can find the difference is just an procedure stuff:
    1: RUN MPS (tcode: MD40). SAP do the planning run multilevel, also considering the  MRP materials.
    2: Do the the necesary MANUAL changes in your MPS materials Planned Orders, remember that the planning run is  "JUST AN ADVICE" and never can replace the human decision. Here, you have your MPS Plan, and also the consumtion Plan (dependant requirements)
    3: Then, with the dependant requirements OK (acording to MPS's Materials Planned Orders), do MRP RUN (tcode: MD01). The MRP run dont change the MPS plan.
    The idea of MPS and MRP is to "separate" materials, in order you can run "masive process" in order. The algorith of mps and mrp are the same. Both work with the PlanTime Fences and Fixation types, rescheduling is the same,  and so on.

  • BOM Explosion for MRP Area

    Dear Expert,
    I have doubt regarding BOM explosion for MRP Area. This doubt is triggered when performing MD01, as result I do not find the dependent requirement in MD04 for my FG. I have maintained the BOM through CS61 and MRP area for all component, I understand that only component level system is taking into account MRP area (storage location). FYI before maintaining all components to MRP area, the BOM explosion was successful exploded. Your advice is appreciated.
    Best regards,
    Mahnansa

    Dear,
    Please check the Explosion control in Customizing, Transaction OMIW.
    Try to explode the BOM in CS11 , CS12 or CS13 if it is working there in curret date then chack the planning file entry in MD21.
    You need to convert the planning file entery at MRP area in OM0F.
    Also note the dependent requirement is not generated in the corresponding MRP area to which the production storage location in the material master has been not assigned for the data of the MRP area.
    Regards,
    R.Brahmankar

  • Subcontracting with MRP areas / Customer consigment

    Dear all,
    I'm currently looking for some information regarding subcontracting processes with MRP areas.
    On the first hand I need a general overview how subcontracting purchase orders would be handled with MRP areas. In addition I'm really interested in the replenishment of the subcontractor stocks. On the other hand some facts about the customizing would be fine.
    My second topic is consigment stocks at the customer. So I need similar information as for the MRP areas but regarding this customer consigment.
    It would be really great if someone has some literature recommendations or official documentations about these issue.
    Many thanks in advance!
    Regards
    Enrico

    Hi Enrico,
    Working with subcontracting and MRP area's gives you the option to plan the requirements for the subcontractor separately and you can then order the components separately. This functionality is used when working with scheduling agreements and direct deliveries to the subcontractor as there this is a requirement.
    A second instance where one would use and MRP area with sucontracting is that when a material is used both by the subcontractor and it's also used directly in the plant production. The requirements for the subcontractor can be separately planned using an MRP area.
    The following links may give you some more information regarding working with subcontracting and MRP area's
    [MRP area|http://help.sap.com/saphelp_470/helpdata/en/c4/106956ae8a11d1a6720000e83235d4/content.htm]
    [Planning for Components to be Provided in Subcontracting|http://help.sap.com/erp2005_ehp_04/helpdata/EN/c4/106956ae8a11d1a6720000e83235d4/frameset.htm]
    Edited by: Peter Pallen on Jun 5, 2011 7:19 PM

  • STO from MRP area to MRP area

    Is it possible to confirgure the system to create stock transfer orders from one MPR area to another MRP area? I know that you can go from plant to MRP area and MRP area to plant.  We would like the material shortages, found in the planning plant/mrp area to pass the STO to to procurement plant/MRP area. We want the STO at the MRP area level and not at the plant level of the procurement plant. 
    Thank you for your responses.

    Hello
    If you want to have stock transfers generated by MRP, you must assign a special procurement type. Also, make sure that, on the special procurement type customizing, you have defined the supplying plant.
    If you want to have the issuing storage location determined by MRP, please read carefully the WIKI below:
    Issuing storage location on stock transfers created by MRP and BAdI MD_EXT_SUP - ERP Manufacturing (PP) - SCN Wiki
    BR
    Caetano

  • If we activate MRP Areas what are the implications on other plants.

    Q:- If we activate MRP Areas what are the implications on other plants.
    My Business is having many plants with different business
    eg :- One Plant (1000)MRP is currently being executed at Project Level MD51
    Second Plant (2000) MRP is currently being executed at Plant Level ,
    Third Plant (3000) is currently being executed at materail levels only (MD02/MD03)
    Issue  :-
    for our new scenario we need to execute MRP  at MRP Area only -- Storage location MRP run
    So we would have to activate MRP @ MRP area level , but doing so
    You convert the existing planning file entries at plant level to planning file entries at MRP area level.
    To convert the planning file entries, you use the report that you trigger in Customizing for MRP in the IMG activity Convert planning file entries for MRP areas.The system creates a new planning file and MRP areas for the existing plants. These MRP areas, however, do not affect how material requirements are planned. The number of the plant MRP area is identical to the plant number and therefore has four digits.
    Preparing for Material Requirements Planning with MRP Areas - Special Planning Processes - SAP Library
    Can any one provide , what are the drawbacks , if activated at MRP Areas are activated , since it is activated at client level ,
    Will it impact my current MRP execution process for other Plants ??( other plants MRP is being executed at Plant MRP /Project MRP / etc,,
    Please Reply /Share your comments urgently
    Regard's
    Tallha

    Hello Tallha
    The only visible impact is that you will have an extra field on MD04 and another MRP transactions.
    If you simply activate MRP areas but don't create MRP areas for the materials, your process will not change and you should be able to continue using MRP as you were using before.
    There is a positive impact on the conversion of the planning file may improve the MRP general performance.
    BR
    Caetano

Maybe you are looking for

  • Can I create a digital id for electronic signatures in adobe reader for ipad?

    Can I create a digital id for electronic signatures in adobe reader for ipad?

  • How to change the loglevel of error log in DS

    Hi, I have a simple question regarding setting the log level of Sun directory server. I have created following ldif file to change the log level to 256 while the default was 0: dn: cn=config changetype: modify replace: nsslapd-errorlog-level nsslapd-

  • Advanced web: mod_fastcgi / suexec

    Hello, MacMini OS X server 10.6x, Apache/2.2.17 (Unix), mod_fastcgi/2.4.2 I'm a novice fastCGI user here and only am begginning to learn about Mac OSX Server. I am O.K. with apache config in a *nix environment. I have set up "PHP-like" fcgi apps on o

  • HT5887 What about airdrop between iOS and Macbook Pro?

    Will the iphone 5s be discoverable for macbook pro anytime soon? Im not able to airdrop anything between my macbook pro and my iphone 5s.

  • Accordion with spry data on IE8

    Hi, I have an accordion with spry data and everything works fine on IE8 and FF, but on IE8 when i click on a accordion tab it doesnt focus on that open panel. It takes me at the very top of where my accordion begins. I notice the same thing happens t