CS_BOM_EXPL_MAT_V2  subassembly materials

Hello,
  After executing this FM , MATCAT is returning subassembly parent material,  if the same subassembly material is available in another material , then it is not displaying in the MATCAT structure. 
  In the STB structure have a list of materials. In this how to fiter the subassembly materials only , is there any field to list only the subasembly materials.
Regards,
kevin.

As you mention the need is to list all subassemblies within the multi-level bom which is exploded, for this MATCAT data is sufficient.
If you want to know how many times each of the entries within MATCAT appears in STB, am sure you can do a simple compare of occurances between the 2 parameters of the FM.
Please note, no matter how many times a given BOM explodes at different levels it will be the same, so just wonder why you want to have each one listed separately.

Similar Messages

  • Running MPS also runs MRP type PD materials

    Hello experts,
    In ECC 6.0, we have certain critical FINI materials to run with MPS ( ie type M0) while there are other FINI materials ( non critical) to run on MRP ( ie type PD).
    The issue we are finding is that ECC running MPS even for other MRP driven FINI materials in Tcode : MD40 ( with the Process MRP materials field checked). What we actually need is that MPS run for only those FINI materials that have MPS (ie type M0) & it's direct subassemblies of those materials which are MRP type PD.
    We do not want the MPS run to drive MRP for other FINI materials that have MRP type PD.
    I have checked SAP notes and they had similar issue & hence have a resolution note for earlier versions of SAP ( 3.0 to 4.6 versions). So this issue seems to be occouring again in ECC.
    Has anyone else come across this issue in ECC 6.0? If yes how it was resolved.
    Appreciate your feedback.
    Thanks,
    Ram

    Hi Ram,
    Just to understand the query better, can you let me know why you dont want the MPS run to drive the MRP run for other finished parts which are marked for MRP run? Is it that these parts are not to be planned?
    Regards,
    Vivek
    Added
    Also which SAP notes did you refer to?
    Edited by: Vivek on Mar 18, 2009 11:26 AM

  • Production Order for variant subassemblies

    Hi all,
    I have a scenerio were there is header material called A. It has sub-assemblies C,D,E. Each subassemblies have lot of variations. So the User does not want to create individual Material Master for these variations.
    But the user wants to book the hours spend for these sub-assemblies individually for these variations.How to address this scenerio is SAP.
    With Regards,
    Afzal

    Hi Afzal,
    You have to go for variant configuration for the materials C, D, and E. 
    If the scenario demands for MTS then you have to define a new materail type
    like "STOCKABLE CONFIGURABLE MATERIAL"
    Regards
    Krishna

  • How to use CS_BOM_EXPL_MAT_V2  to include bom under Phantom

    Hi every1,
    How can I get documentation for this function module CS_BOM_EXPL_MAT_V2 
    We want to explode BOM on single level ,including Material which is coming under Phantom assembly too.
    eg. I have one material 1xxxxx.
    after exploding single level bom suppose I'll get these material
    1xxxx1
    1xxxx2
    1xxxx3 and if 1xxxx3 is Phantaom assembly and under this item again I may have 1xxxx1 as bom item.
    that means for my parent material 1xxxxx, I want 1xxxx1 should come 2 times !
    Is there any simpliest way to get or for this item again I need to use this FM again ?
    Pl. do help me.
    Thanks in Advance.

    Hi,
    THE FM 'CS_BOM_EXPLOSION_MAT' mentioned above holds true if u dont hv any alternatives for the BOM.
    eg: If ur component in turn has BOM with 3 alternatives namely 01,02,03
    then ideally FM should pick all the items uder these 3 components but this FM picks by default the 1st
    alternative & ignores the rest.
    So there are changes dat the list which u hv gpt is not 100%.          
      Through Tcode CS12 u can see the level wise components for a BOM.
    U can gather the component details with this Tcode if u hv very few BOMs to explore.
    But if the count is higher u hv to select acoding way for it....
    Attaching a part of code to explore multilevel BOM.....hope dis ll help u......
    1 ST LEVEL
      SELECT MATNR  WERKS  STLNR  IDNRK  STLAL
            FROM ZMAT_PLANT
           INTO TABLE IT_BOM
           FOR ALL ENTRIES IN IT_INPUT    **maintain materials to be explored in IT_INPUT
           WHERE WERKS = IT_INPUT-WERKS AND
                 MATNR = IT_INPUT-MATNR.
      CONCATENATE DOWNLOAD
                  '1_FILE'
                  '.TXT'
                  INTO DOWNLOAD1.
      LOOP AT IT_BOM ASSIGNING <FS_BOM>.
        MOVE <FS_BOM>-MATNR TO IT_CHECK_MAT-MATNR.
        MOVE <FS_BOM>-WERKS TO IT_CHECK_MAT-WERKS.
        APPEND IT_CHECK_MAT.
        COUNT = COUNT + 1.
      ENDLOOP.
      SORT IT_CHECK_MAT BY MATNR WERKS.
      DELETE ADJACENT DUPLICATES FROM IT_CHECK_MAT COMPARING MATNR WERKS.
    2 ND LEVEL
      IF NOT IT_BOM[] IS INITIAL.
        SELECT *
             FROM ZCOMPONENTS
             INTO TABLE IT_STPO
                   FOR ALL ENTRIES IN IT_BOM
                   WHERE MATNR = IT_BOM-IDNRK AND
                         WERKS = IT_BOM-WERKS.
      ENDIF.
      SORT IT_STPO BY MATNR WERKS.
      CONCATENATE DOWNLOAD
                  '2_FILE'
                  '.TXT'
                  INTO DOWNLOAD1.
      LOOP AT IT_STPO ASSIGNING <FS_STPO>.
       MOVE <FS_STPO>-MATNR TO IT_CHECK_MAT-MATNR.
        MOVE <FS_STPO>-WERKS TO IT_CHECK_MAT-WERKS.
        APPEND IT_CHECK_MAT.
        COUNT = COUNT + 1.
      ENDLOOP.
      UNASSIGN <FS_STPO>.
      SORT IT_CHECK_MAT BY MATNR WERKS.
      DELETE ADJACENT DUPLICATES FROM IT_CHECK_MAT COMPARING MATNR WERKS.
      SORT IT_STPO BY IDNRK WERKS.
      LOOP AT IT_STPO.
        READ TABLE IT_CHECK_MAT WITH KEY MATNR = IT_STPO-IDNRK
                                         WERKS = IT_STPO-WERKS
                                              BINARY SEARCH.
        IF SY-SUBRC <> 0.
          MOVE IT_STPO-IDNRK TO IT_STPO1-MATNR.
          MOVE IT_STPO-WERKS TO IT_STPO1-WERKS.
          APPEND IT_STPO1.
        ENDIF.
        COUNT = COUNT + 1.
      ENDLOOP.
    REGARDS ,
    AJIT.
    Edited by: AJIT THAKUR on Apr 16, 2009 10:51 AM
    Edited by: AJIT THAKUR on Apr 16, 2009 10:54 AM

  • Routing fm for assign ing the materials to work center

    Hi all ,
    I have exploded all the sub components of the BOM of a given material number and plant .
    Now i have all the details , now i would like to assign these materials to workcenters available for a finished product in ROUTING process .
    Is there any FM to assign the corresponding components to corresponding work centers in the routing process , so that we have to get the finished product in optimized way .....
    Please let me know you view....
    if there is no FM , let me know you suggestions ...
    Regards
    Raj

    this is one the fm's , c_x is X
    CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
    EXPORTING
        CAPID                       = 'PP01'
        CUOLS                       = 'X'
        DATUV                       = sy-datum
        KNFBA                       = c_x
        KSBVO                       = c_x
        MBWLS                       = c_x
        mehrs                       = 'X'
        mktls                       = 'X'
      MKTLS                       = 'X'
        MDMPS                       = c_x
        MTNRV                       = p_matnr
        WERKS                       = p_werks
    IMPORTING
    TOPMAT                       = l_topmat
      DSTST                       =
      TABLES
        STB                         =  it_stb
      MATCAT                      =
    EXCEPTIONS
       ALT_NOT_FOUND               = 1
       CALL_INVALID                = 2
       MATERIAL_NOT_FOUND          = 3
       MISSING_AUTHORIZATION       = 4
       NO_BOM_FOUND                = 5
       NO_PLANT_DATA               = 6
       NO_SUITABLE_BOM_FOUND       = 7
       CONVERSION_ERROR            = 8   OTHERS                      = 9.
    regards
    Raj

  • How to determine Component materials for PO line item Materials.

    Hello friends,
    I woluld like to know the table name for getting the component Materials of a Purchase Order line item material.
    There is a table called RESB, which is containing the component materials for the PO line item materials. But this table is populating only after creating (saving) the PO.
    But, i have to do some validations on component materials, before saving the PO. For that i would like to know the table, from which the component materials will pick.
    Or
    Please provide some user exit names, which will contain Component materials, during the PO creation.
    Thanks in Advance.

    hi
    header BOM table - STKO ( u need to fetch BOM# from here)
    Item table - STPO ( pass the BOM # here and retreive all the item details)
    try using FM
    CS_BOM_EXPL_MAT_V2
    regards
    kunal

  • Using CS_BOM_EXPL_MAT_V2 how to find last children of material in the bom.

    Hi,
    I want to find last children of a material.I am using FM CS_BOM_EXPL_MAT_V2. Although STPOX internal table as STUFE for level but we can't get all the last child of material directly.
    For example material A as child A1 and A2 this sub divided into A1- A11, A12 and A2 - A21 , A22 and again A21 -A211,A212 and A22 - A221,A222
    so the last children are A11,A12,A211,A212,A221,A222. So if we use max of STUFE it will omit A11 and A12.Do i need to program a custom logic to get last child using Stufe and WEGXX or is there any other method available to get Last Children of the Material or is there any other Function module to get the Last child of the material.
    Thanks in Advance.

    You will have to write your own custom logic after calling the function module.  In my case, it is easy, because the lowest level materials will always be raw materials(material type ZROH) as opposed to a semi-finished material(material type HALB).  Your's may be different.
    REgards,
    Rich Heilman

  • BOM Exlposion for Assembly Materials

    Dear Friends,
       I want function module to be explode the BOM for Materials which are Having checked by Assebmly(Field is STLKZ) .I am able to explode the BOM which are Having Phatum Indicator using CS_BOM_EXPL_MAT_V2 which is having DUMPS(Phantun Indicator) .I need to find out the Assembly Indicator .
    Pls Help me How to Find out Assemble Indicator for Materials.

    You can pass the component material  to the table MAST. If any value exists against the component number than this material has Assembly indicator active.
    Another option is when using the FM CS_BOM_EXPL_MAT_V2 . Check if table STB(Structure-Stpox) with field XTLTY(BOM Category) is equal to  type 'M'.The passing condition will give Assembly indicator.
    Regards,
    Anurag

  • Getting all raw materials under one Finished Goods

    Hi,
    I have one problem with getting all the Raw materials. I used this FM (CS_BOM_EXPL_MAT_V2) but i couldn't get all the raw material under the finished Goods..
    It shows Semi Finished also..I need all the components under the Finished Goods.
    Please Guide me What I have to do.
    Regards,
    Dhanush.S.T

    Hi Guru,
          This is very urgent, Could any one can help me..
    Regards,
    Dhanush.S.T

  • Use CS_BOM_EXPL_MAT_V2

    Since to make a report in form of tree to list the materials with its materials semielborados until arriving at all the components of this material. I am using BAPI “CS_BOM_EXPL_MAT_V2” and not since I can do?

    Check these links
    Help reqd in CS_BOM_EXPL_MAT_V2
    Thanks
    mahesh

  • Regarding CS_BOM_EXPL_MAT_V2 and table returned STB

    Hi Gurus ,
    I am facing one diffulty.
    I am calling following FM
          CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
               EXPORTING
                    capid                 = ' '
                    datuv                 = pa_datga
                    mdmps                 = lv_dummy
                    mehrs                 = lv_mehr
                    mtnrv                 = ls_mast-matnr
                    stlal                 = ls_mast-stlal
                    stlan                 = ls_mast-stlan
                    svwvo                 = gc_x
                    werks                 = pa_werks
                    vrsvo                 = gc_x
               IMPORTING
                    topmat                = ls_bom_header
               TABLES
                    stb                   = lt_pos
               EXCEPTIONS
                    alt_not_found         = 1
                    call_invalid          = 2
                    material_not_found    = 3
                    missing_authorization = 4
                    no_bom_found          = 5
                    no_plant_data         = 6
                    no_suitable_bom_found = 7
                    conversion_error      = 8
                    OTHERS                = 9.
    I am doing multilevel & dummy Bom explosion .
    One internal table is returned  " stb                   = lt_pos"
    But i am not able to relate which is assmbly & its sub components .
    Also Dummy Bom assembly & components from the table returned .
    May be stufe field is making some sence as level , But still couldnt find the realtion between all IDNRK .
    Please help me to solve this puzzle .

    hi flavio,
    this report is used for total raw material estimation for the fiascal year for particular material.
    my exact requirement is on the selection screen i have  material,year,target qty.
    when user pressess  execute i need to display all the raw materials (to lower bom level) required for the material
    proportional to the target qty.
    for this i have used functiuon module CS_BOM_EXPL_MAT_V2 and able to retrieve the lower bom
    level raw materials and their quantities  into ltab and root material and its subcomponents into mtab
    in this raw materials used for sub comp[onents and for the root material may overlap  but the recipe for the raw materials
    depends on the bom of base quantity of root material,
    here my problem is how to differentiate the raw materials belongs to root material and its subcomponents ,( to perform
    calculations against the target quantity) which we r getting in ltab of fm after bom explosion.
    anybody pls suggest me .

  • Multi-level BOM explosion using CS_BOM_EXPL_MAT_V2

    Hi All,
    I would like to know, if anyone has used the function module 'CS_BOM_EXPL_MAT_V2' to prepare a report to read multi-level BOM just like CS12. If anyone has, can you please let me know how we can read the individual materials in the BOM from this FM.
    Hope my question is clear, await inputs.
    Vivek

    Hi vivek,
    We use this code to restrict the BOM line item for particular movements. C if that can help u out.
    CALL FUNCTION 'CS_BOM_EXPL_KND_V1'
        EXPORTING
          capid                       = ''
          datuv                       = sy-datum
          emeng                       = 1
         mehrs                       = 'X'
          mtnrv                       = i_mseg-matnr
          stlal                       = '1'
          stlan                       = '1'
          stpst                       = 0
          svwvo                       = 'X'
          werks                       = i_mseg-werks
          vbeln                       = aufk-kdauf
          vbpos                       = aufk-kdpos
            VERID                       = ' '
          vrsvo                       = 'X'
          IMPORTING
            TOPMAT                      =
            DSTST                       =
         TABLES
           stb                         = ZStb
            MATCAT                      =
        EXCEPTIONS
          alt_not_found               = 1
          call_invalid                = 2
          material_not_found          = 3
          missing_authorization       = 4
          no_bom_found                = 5
          no_plant_data               = 6
          no_suitable_bom_found       = 7
          conversion_error            = 8
          OTHERS                      = 9
      IF sy-subrc <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      SORT zstb BY mtart.
      LOOP AT zstb.
        IF zstb-mtart = 'Material type ' OR zstb-mtart = 'Material type ' .
        ELSE.
          DELETE zstb .
        ENDIF.
      ENDLOOP.
      CLEAR: v_menge, v_matnr, v_bwart, vv_menge, vvv_menge, zstb.
      LOOP AT zstb.
        SELECT menge matnr bwart
        INTO   (v_menge,v_matnr,v_bwart)
        FROM   aufm
        WHERE  aufnr = i_mseg-aufnr
        AND    werks = i_mseg-werks
        AND    matnr = zstb-idnrk
        AND    ( bwart = '261' OR bwart = '262' ).
              and    meins = 'FT2'.
         LOOP AT zstb.
          SELECT SINGLE matnr INTO vv_matnr FROM mara  WHERE  matnr = v_matnr
                                       AND mtart = zstb-mtart.
          IF sy-subrc = 0.
            CASE v_bwart.
              WHEN '261' .
                vv_menge = vv_menge + v_menge.
              WHEN '262' .
                vvv_menge = vvv_menge + v_menge.
            ENDCASE.
          ENDIF.
             ENDLOOP.
        ENDSELECT.
        CLEAR vf_menge.
        vf_menge = vv_menge - vvv_menge.
        CLEAR vv_menge.
        CLEAR vvv_menge.
    Regards,
    Vishal

  • CS_BOM_EXPL_MAT_V2  - parameter input? to match CS12

    The material number, model and unit are provided to the transaction CS12, and a list of components is displayed. 
    I would like to produce this same list of components for a report.
    After performing some research it seemed like the function CS_BOM_EXPL_MAT_V2  is supposed to return multi-level components of a BOM ( I think)
    I have been testing using this function in SAP (transaction SE37).
    Using the parameters:
    CAPID = entered appropriate code
    DATUV = sysdate
    MTNRV = matnr - top level matnr
    MEHRS = 'X' <= multi level parameter
    WERKS = <= entered appropriate plant
    MKTLS = 'X' <= default
    Stpst = 0 <= default
    Svwvo ='X' <= default
    Vrsvo = 'X' <= default
    One row is returned from the function- the top level component.  In the export parameters TOPMAT
    But the STB and MATCAT tables contain 0 entries.
    This leaves me with several questions-
    This may be a parameter driven BOM I am, attempting to display- (not sure), does this function work with this type of BOM?
    Is this function supposed to return the multiple levels or do I need to keep calling it over and over?
    Have the the correct parameters been used?  What do I need to specify to obtain a multi-level BOM.
    Thanks in advance for any assistance

    Hi,
    Refer to the below link & your query should be answered.
    https://wiki.sdn.sap.com/wiki/display/Snippets/ProgramonExplodingBillOf+Materials
    Regards,
    Vivek

  • CS_BOM_EXPL_MAT_V2  Same Plant

    Hi i'm using the FM 'CS_BOM_EXPL_MAT_V2' to extract de BOM of a material, but it returns me materials that are not in the same plant (werks),
    CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
          EXPORTING
            capid                 = v_appli
            datuv                 = v_date
            mehrs                 = 'X'
            mtnrv                 = ti_mast-matnr
            rndkz                 = ' '
            stkkz                 = ' '
            stlan                 = v_usage
            stlal                 = v_stlal
            werks                 = ti_mast-werks
            nlink                 = 'X'
          IMPORTING
            topmat                = w_topmat
          TABLES
            stb                   = itab_bom
          EXCEPTIONS
            alt_not_found         = 01
            call_invalid          = 02
            material_not_found    = 03
            missing_authorization = 04
            no_bom_found          = 05
            no_plant_data         = 06.

    Try using this FM.
    Shreekant.
        CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
          EXPORTING
            FTREL                 = ' '
            ALTVO                 = ' '
            AUFSW                 = ' '
            AUSKZ                 = ' '
            BAGRP                 = ' '
            BEIKZ                 = ' '
            BESSL                 = ' '
            BGIXO                 = ' '
            BREMS                 = ' '
            CAPID                 = P_CAPID
            DATUV                 = V_DATUV
            EMENG                 = ' '
            ERSKZ                 = ' '
            ERSSL                 = ' '
            MBWLS                 = ' '
            MTNRV                 = W_MARC_MKAL-MATNR
            MDMPS                 = ' '
            MEHRS                 = ' '
            MMORY                 = ' '
            POSTP                 = ' '
            SANKO                 = ' '
            SANFR                 = ' '
            SANKA                 = ' '
            SANIN                 = ' '
            SANVS                 = ' '
            RNDKZ                 = ' '
            RVREL                 = ' '
            SCHGT                 = ' '
            STKKZ                 = ' '
            STLAL                 = '01'
            STLAN                 = '1'
            WERKS                 = P_WERKS-LOW
          IMPORTING
            TOPMAT                = XTOPMAT
            DSTST                 = XFELD
          TABLES
            STB                   = XSTPOX
            MATCAT                = XMATCAT
          EXCEPTIONS
            ALT_NOT_FOUND         = 1
            CALL_INVALID          = 2
            MATERIAL_NOT_FOUND    = 3
            MISSING_AUTHORIZATION = 4
            NO_BOM_FOUND          = 5
            NO_PLANT_DATA         = 6
            NO_SUITABLE_BOM_FOUND = 7
            OTHERS                = 8.

  • CS_BOM_EXPL_MAT_V2 is too slow!

    We are using FM CS_BOM_EXPL_MAT_V2 in a report program that needs a fully exploded material BOM for many materials.  Users have long complained that it runs too slow.  We have identified this FM as the bottleneck.  Is there an alternative material BOM explosion FM or some trick to make it run faster?
    Here is the calling code:
      CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
           EXPORTING
    *         FTREL                 = ' '
    *         ALTVO                 = ' '
    *         AUFSW                 = ' '
    *         AUMGB                 = ' '
    *         aumng                 = 0
    *         AUSKZ                 = ' '
    *         AMIND                 = ' '
    *         BAGRP                 = ' '
    *         BEIKZ                 = ' '
    *         BESSL                 = ' '
    *         BGIXO                 = ' '
    *         BREMS                 = ' '
               capid                 = pm_capid
    *        cospr                 = ' '
    *         cuobj                 = 000000000000000
    *        cuols                 = ' '
               datuv                 = pm_datuv
    *        delnl                 = ' '
    *        ehndl                 = ' '
    *         emeng                 = 0
    *        erskz                 = ' '
    *        erssl                 = ' '
    *        fbstp                 = ' '  "Keine Auflsg. bei F
    *        ksbvo                 = ' '
    *        mbwls                 = ' '
               mktls                 = 'X'  "Kurztext lesen
    *        mdmps                 = ' '
               mehrs                 = 'X'  "Mehrstufige Auflösung
    *        mkmat                 = ' '
    *        mmaps                 = ' '
    *        splww                 = ' '
    *        mmory                 = ' '
                mtnrv                 = t_selections-matnr
                postp                 = 'L'
    *         RNDKZ                 = ' '
    *         RVREL                 = ' '
    *         SANFR                 = ' '
    *         SANIN                 = ' '
    *         SANKA                 = ' '
    *         SANKO                 = ' '
    *         SANVS                 = ' '
    *         SCHGT                 = ' '
    *         STKKZ                 = ' '
                stlal                 = pm_stlal
                stlan                 = pm_stlan
                werks                 = p_werks
    *        mdnot                 = ' '
    *        panot                 = ' '
    *        verid                 = ' '
          IMPORTING
               topmat                = selpool   "Info zum Top-Material
    *        dstst                 =
           TABLES
                stb                   =  stb       "Enthält Positionsdaten
                matcat                =  matcat    "Enthält Baugruppendaten
           EXCEPTIONS
                alt_not_found         = 1
                call_invalid          = 2
                material_not_found    = 3
                missing_authorization = 4
                no_bom_found          = 5
                no_plant_data         = 6
                no_suitable_bom_found = 7
                conversion_error      = 8
                OTHERS                = 9.
    Edited by: Larry Browning on Jul 14, 2011 11:08 AM

    Hi Rob and Larry,
    I am also using FM CS_BOM_EXPL_MAT_V2 in a report program. The requirement is exactly similar to Larry's. We fully explode material BOM for many materials. Users feel that it is running very slow. This is the FM that is taking the maximum time  in the program run.
    I am looking for some performance tuning technique or any other option that may help remove this issue. Is there any alternative to this FM...
    Below is my code:
            CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
             EXPORTING
               capid                       = 'PP01'
               datuv                       = sy-datum
               mehrs                       = 'X'
               mtnrv                       = ls_mast-matnr
               stlal                       = ls_mast-stlal
               stlan                       = ls_mast-stlan
               werks                       = ls_mast-werks
             IMPORTING
               topmat                      = ls_topmat
    *          DSTST                       =
             TABLES
               stb                         = lt_stb
    *          MATCAT                      =
             EXCEPTIONS
               alt_not_found               = 1
               call_invalid                = 2
               material_not_found          = 3
               missing_authorization       = 4
               no_bom_found                = 5
               no_plant_data               = 6
               no_suitable_bom_found       = 7
               conversion_error            = 8
               OTHERS                      = 9.
    Thanks
    Rakesh

Maybe you are looking for

  • Export for web

    Hi, I wonder if Lightroom overs a "export for web"? I saw that the jpg's with 50% are still larger than the once exported via PS-for web. I wonder if there is any trick or.... thanks R

  • How to do a backup with time machine?

    Hi Communitieee, I dont know how to make a backup with time machine. Can anybody help me? And i have another question.. whats wrong with library? when i start my mac the message is popping up but i dont know what it means.. Thanks KR

  • WKT and Three Dimensional Coordinates?

    It seems that the WKT support in Oracle Spatial doesn't support 3 dimensional points. Is that true? If so, why not? Looking at the OGC spec, it appears that it only has allowances for 2 dimensions. But other DBs, like SQLPlus, have extended the spec

  • Ss d boot drive for Mac pro

    which graphics adapter for MacPro 1.1 running cs6

  • Latest Excise Reports

    Dear Experts Can anybody please tell me from where i can get the latest Excise reports (like RG REGISTER 23A & 23C ) returns etc warm regards anand