To create Multilevel BOM---- BAPI (urgent)

Hi all,
i am using BAPI_MATERIAL_BOM_GROUP_CREATE to create a <u><b>MULTI LEVEL</b></u> BOM in sap. but i am not getting any field for <b>LEVEL</b> in this BAPI.so,  can i create a multilevel bom without a level ?
can u plz suggest, how can i use this BAPI to create a <b>multi level</b> bom?
is there any field relating to assembly indicator (stlkz) in this BAPI?i am not getting this field.plz suggest.
any idea will be highly appreaciated.
Regards
pabitra

Hi eswar,
Thanks for ur help. i am getting some error while creting a BOM using that BAPI.
errors are
1) Error/warning when checking the structure of the BOM group with ID =
2)Alternative  does not exist for material assignment to material BAPIBOMFG1
is it mandatory to pass the bom group id to this bapi?
In bomgroup structure , i am not passing anything to BOM_GROUP field.
is it mandatory to pass this data? i am giving my coding below.plz suggest , where i am making mistake. it is urgent.
regards
pabitra
report z_bom_create
       line-size 132
       line-count 65
       no standard page heading.
*-- DATA DECLARATION--
include <icon> .
*---Tables
tables : s076, t100, marc .
*---Types
types : begin of t_upload,      " Upload file data
         col1(18),
         col2(10),
         col3(30),
         col4(12),
         col5(50),
       end of t_upload,
       begin of t_split,
       location like stpu-ebort,
       end of t_split.
data:begin of i_return occurs 10.
include structure bapiret2.
data:end of i_return.
types:begin of t_item."occurs 10.
include structure BAPI1080_ITM_C.
types:end of t_item.
types:begin of t_subitem." occurs 10.
include structure  BAPI1080_SUI_C.
types:end of t_subitem.
types:begin of t_header." occurs 10.
include structure  BAPI1080_MBM_C.
types:end of t_header.
types:begin of t_bomgroup." occurs 10.
include structure  BAPI1080_BGR_C.
types:end of t_bomgroup.
types:begin of t_variant." occurs 10.
include structure  BAPI1080_BOM_C.
types:end of t_variant.
*--- Tables
data: i_upload type standard table of t_upload, " to hold data
      i_upload1 type standard table of t_upload,
      i_split type standard table of t_split,
      i_item type standard table of t_item,
      i_subitem type standard table of t_subitem,
      i_header type standard table of t_header,
      i_bomgroup type standard table of t_bomgroup,
      i_variant type standard table of t_variant.
data: wa_upload  type t_upload, " to hold file data,
      wa_upload1 type t_upload, " to hold plan data,
      wa_split type t_split,
      wa_item type t_item,
      wa_subitem type t_subitem,
      wa_header type t_header,
      wa_bomgroup type t_bomgroup,
      wa_variant type t_variant.
data:v_matnr like mara-matnr,
     v_start like sy-index,
     v_count(3) type c.
*--Constants
data: c_dot type c value '.',
      c_x type c value 'X',
      c_comma type c value ','.
-------Selection Screen Design -
*Selection screen for input of upload file address
selection-screen skip 2.
selection-screen begin of block blk1 with frame.
parameters     : p_file like rlgrap-filename obligatory .
parameters     : p_matnr like mara-matnr obligatory,
                 p_werks like marc-werks obligatory memory id wrk,
                 p_stlan like afko-stlan obligatory default '1' .
selection-screen end of block blk1.
---AT SELECTION SCREEN -
at selection-screen on  value-request for p_file.
*--For popup  to select file.
  perform f_give_help.
at selection-screen on  p_matnr.
  perform f_check_matnr.
-----START OF SELECTION -
*--Data upload using WS_Upload.
perform f_get_data.
perform f_get_bom_data.
perform f_get_bom_data1.
perform f_call_bapi.
*&      Form  f_give_help
      text
-->  p1        text
<--  p2        text
FORM f_give_help.
call function 'WS_FILENAME_GET'
       exporting
            mask             = ',.,..'
            mode             = 'O'
       importing
            filename         = p_file
       exceptions
            inv_winsys       = 1
            no_batch         = 2
            selection_cancel = 3
            selection_error  = 4
            others           = 5.
  if sy-subrc <> 0 and  not sy-msgty is initial.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.
ENDFORM.                    " f_give_help
*&      Form  f_check_matnr
      text
-->  p1        text
<--  p2        text
FORM f_check_matnr.
CALL FUNCTION 'BAPI_MAT_BOM_EXISTENCE_CHECK'
  EXPORTING
    MATERIAL              = p_matnr
    PLANT                 = p_werks
    BOMUSAGE              = '1'
  VALID_FROM_DATE       =
  VALID_TO_DATE         =
  TABLES
    RETURN                = i_return.
ENDFORM.                    " f_check_matnr
*&      Form  f_get_data
      text
-->  p1        text
<--  p2        text
FORM f_get_data.
call function 'WS_UPLOAD'
   exporting
  CODEPAGE                      = ' '
      filename                      = p_file
      filetype                      = 'DAT'
    tables
      data_tab                      = i_upload
   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.
ENDFORM.                    " f_get_data
*&      Form  f_get_bom_data
      text
-->  p1        text
<--  p2        text
FORM f_get_bom_data.
delete i_upload where col1 is initial.
delete i_upload where col1 cs 'ITEM'.
read table i_upload into wa_upload with key col1 = 'FINISHED GOOD:'.
if sy-subrc = 0.
v_matnr = wa_upload-col2.
if v_matnr <> p_matnr.
message e001(zl) with p_matnr.
endif.
else.
message e000(zl).
endif.
ENDFORM.                    " f_get_bom_data
*&      Form  f_get_bom_data1
      text
-->  p1        text
<--  p2        text
FORM f_get_bom_data1.
loop at i_upload into wa_upload where col1 CS 'FINISHED GOOD'.
v_start = sy-tabix + 1.
loop at i_upload into wa_upload1 from v_start .
        if wa_upload1-col1 cs 'FINISHED GOOD'.
          exit.
        else.
perform f_split_upload_data.
     endif.
endloop.
      endloop.
ENDFORM.                    " f_get_bom_data1
*&      Form  f_split_upload_data
      text
-->  p1        text
<--  p2        text
FORM f_split_upload_data.
if not wa_upload1-col5 is initial.
if wa_upload1-col5 cs c_comma.
split wa_upload1-col5 at c_comma into table i_split.
loop at i_split into wa_split.
v_count = v_count + 1.
endloop.
if wa_upload1-col4 <> v_count.
   wa_upload1-col4 = v_count.
endif.
clear wa_upload1-col5.
clear wa_split.
loop at i_split into wa_split.
wa_upload1-col5 = wa_split-location.
append wa_upload1 to i_upload1.
endloop.
else.
append wa_upload1 to i_upload1.
endif.
else.
append wa_upload1 to i_upload1.
endif.
ENDFORM.                    " f_split_upload_data
*&      Form  f_call_bapi
      text
-->  p1        text
<--  p2        text
FORM f_call_bapi.
clear wa_upload1.
wa_header-material = p_matnr.
wa_header-plant = p_werks.
wa_header-bom_usage = p_stlan.
append wa_header to i_header.
wa_bomgroup-bom_usage = p_stlan.
wa_bomgroup-created_in_plant = p_werks.
append wa_bomgroup to i_bomgroup.
wa_variant-alternative_bom = 1.
wa_variant-base_qty = 1.
wa_variant-valid_from_date = sy-datum.
append wa_variant to i_variant.
loop at i_upload1 into wa_upload1.
wa_item-item_no = wa_upload1-col1.
wa_item-item_cat = wa_upload1-col2.
wa_item-component = wa_upload1-col3.
wa_item-comp_qty = wa_upload1-col4.
append wa_item to i_item.
wa_subitem-subitem_qty = '1'.
wa_subitem-installation_point = wa_upload1-col5.
append wa_subitem to i_subitem.
endloop.
CALL FUNCTION 'BAPI_MATERIAL_BOM_GROUP_CREATE'
EXPORTING
  TESTRUN                  = ' '
  ALL_ERROR                = ' '
  TABLES
    BOMGROUP                 = i_bomgroup
    VARIANTS                 = i_variant
   ITEMS                    = i_item
   SUBITEMS                 = i_subitem
    MATERIALRELATIONS        = i_header
  ITEMASSIGNMENTS          =
  SUBITEMASSIGNMENTS       =
  TEXTS                    =
    RETURN                   = i_return.
if  i_return[] is initial.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
*write: /'BOM created:', stpo-stlnr.
else.
*if not i_return[] is initial.
loop at i_return.
    IF i_return-TYPE = 'E'.
   errmsg-type = i_return-type.
   errmsg-line = i_return-message.
   append errmsg.
      ULINE /1(108).
      write:/ icon_led_RED as icon, i_return-MESSAGE.
      ULINE /1(108).
    ENDIF.
    IF i_return-TYPE = 'W'.
   errmsg-type = i_return-type.
   errmsg-line = i_return-message.
   append errmsg.
      ULINE /1(108).
      write:/ icon_led_YELLOW as icon, i_return-MESSAGE.
      ULINE /1(108).
    ENDIF.
  ENDLOOP.
*write: / i_return-id, i_return-number, i_return-message(80).
*endloop.
*write: /'Error'.
endif.
ENDFORM.                    " f_call_bapi

Similar Messages

  • Can the routing create FM CP_BD_DIRECT_INPUT_PLAN   for multilevel BOM

    Dear Friends ,
    Need help for the implementation of function module CP_BD_DIRECT_INPUT_PLAN  .
    The function module works fine when BOM is single level but in case of multi level BOM it does not create the routing documents .
    & gives the following errors
    No entry in field PLMZD-STLKN although entry is required
    When we pass the node number then we still get this error .
    No valid material component found .
    Wanted to make sute that can above FM module can be used for multilevel BOM or we have to use the  BAPI  BAPI_ROUTING_CREATE.
    Thanks ,
    Anurag .

    You must pass the PLMZ_DI-VORKN parameter.
    Edited by: albert liu on Sep 23, 2008 11:50 AM

  • BAPI to Create a BOM .

    Hi All,
    my requirement is i wll be getting the BOM data through a file interface and we need to create BOM using the data in the file.
    we are planning to use BAPI to create BOM.
    Can some one plz tell me is there any BAPI available to create BOM by coping from existing BOM.
    can we use BDC if there is no BAPI available.
    thanks
    Chindam.

    thanks for your response but unfortunately did not solve my issue.
    Yes the above 2 FM can be used to create a BOM but i want to know what are the various fields used to create BOM by copying from the existing BOM (Copy as).
    thanks

  • How to Create Fixed Bom using BAPI

    Hi all,
    Iam using the BAPI "BAPI_BOM_UPLOAD_SAVE" for creation of Fixed BOM of Materials.
    I don't know how that is used,I mean i don't know the inputs,
    Pls can any one Provide me TEST DATA for this Bapi.
    or a sample Program how fixed bom is created.and how can we know thet bom has been created.
    for e.g if we create super bom ,the Bom links are  stored in cs41,so we are able to know super bom has been created but how to check for fixed bom.is that the same for fixed also.
    i have some inputs and with that inputs ,BOM is not being created and the BAPI return table type was E.

    Hi,
      The FM BAPI_BOM_UPLOAD_SAVE is using CSAP_MAT_BOM_CREATE to create the BOM but it does not have any option to specify the alternative to be created.Look for some other FM if you need to create an alternative BOM.Check if the FM BAPI_MATERIAL_BOM_GROUP_CREATE can be used as an alternative
    also  check this FM.
    CS_BI_BOM_CREATE_BATCH_INPUT1 - Create a new BOM or New Alt. BOM.
    CS_BC_BOM_CHANGE_BATCH_INPUT - Maintain the BOM.
    <b>Reward points</b>
    Regards

  • Display multilevel BOM for multiple materials

    Hi,
    I am to trying to display multilevel BOM explosion for multiple BOMs valid to custom date. Then I would like to export this list of all components to Excel.
    Best solution would be if to create QuickView to do this.
    So far I have been able to Join tables MAST - STPO, this shows me only one level of BOM (sort of like CS03 transaction) not a multilevel view (CS12). Is it possible to modify this to display multilevel view?
    Thank you,
    Tomas

    Dear Thomas,
    in order to have a multilevel Bom explosion you must use only fm : CS_BOM_EXPL_MAT_V2 because you won't succeed to have a multiplevel with a simple query.
    I advise you set MEHRS = X for active multilevel logic.
    Let me know if i have been useful for you
    Daniele

  • Implement Bill of Material with Multilevel BOM

    Dear Sir,
    As per my requirement, i want to create an multilevel BOM.
    I explain my requirement in above steps.
    1) Create BOM with Assembly Type because we assembled an parent items with component items.
    2) then on base on BOM we want to create an Production Order.
    So, can you please tell me the exact procedure to implement whole production module as per my requirement.
    Thanks & Regards,
    Nishit Makadia

    Hi,
    As already replied that, not possible to create production order for assembly type BOM. Only possible by production type BOM.
    Test below in test DB and let me know result.
    As per your example, you want manufacture a pen, that requires cap, body, ink.
    So your BOM looks like,
    Pen -  Parent item -- 1 EA
    Cap - Component -1 EA
    Body - Component -1 EA
    Step 1:
    1. Create item master data for above items with selecting as inventory, sales and purchase item ( ticket all three boxes at item master data)
    2. Select serial or batch as per your requirement under manage item by field
    3. Select issue type manual
    Step 2:
    1. Create production BOM by using above parent item and components.
    Step 3.
    1. Choose standard production order in production order window
    2. If you select pen as product , then BOM automatically added to production order.
    3. Issue and receive to complete process
    Like that you can have multiple BOM for same parent item.
    Thanks & Regards,
    Nagarajan

  • Routing for Multilevel BOM

    Hai Techies,
    I have a question here with respect to routing. In case of Multilevel BOM how will the routing should be done.
    For Eg in my top level material if i have few semifinished materials which in turn have BOM for them. Then should we need to have each routing for each semifinished materials and one for the finished good.
    Could you please advice how it should be or how it can be?
    Regards,
    Kris.S

    Hi Gurus,
    My company does not allow Engineer to construct BOM in SAP. MFE Engineers only perform ECO to change BOM in PLM systems. Upon approve and release in PLM, this information will be transfer to SAP as BOM.
    Having pre-defined BOM in SAP and un-editable. we will only able to create routing on existing SAP BOM which is a multilevel. BOM A consisted of BOM B and BOM C which BOM B is a make part (in house manufacturing) and BOM C is a Purchase part. BOM B explored to BOM G and H where BOM G is also a MAKE part and BOM H is a make part. Under BOM G and H are all purchase material.
    A - B - G
            - H
        - C
    So does it need to create routing for A, B, and G only?
    Regards...

  • How to create invoice using bapi  base on delivery number with example

    hi,
    Pl give me one example to create invoice using bapi base on delivery number (PGI).

    Use this code
    * Pass the delivery no to the FM to create the invoice
          wa_vbsk-smart = u2018Fu2019.
            wa_komfk-vbeln = nast-objky. u201CuF0DF-----delivery number
            APPEND wa_komfk TO it_komfk.
            CLEAR wa_komfk.
    *    To fill the message structure
    *        l_wa_error-vbeln_vl = nast-objky. " Delivery No.
    *        l_wa_error-fkart = wa_ztab-bil_doc_type." Billing Doc type
            CALL FUNCTION 'RV_INVOICE_CREATE'
                    EXPORTING
    *                 delivery_date             = 0
                     invoice_date              = v_date  u201C<- date
    *                 invoice_type              = '    '
    *                 pricing_date              = 0
                     vbsk_i                    = wa_vbsk
                     with_posting              = u2018Du2019
    *                 select_date               = 0
                     i_no_vblog                = ' '
                     i_analyze_mode            = ' '
                     id_utasy                  = ' '
                     id_utswl                  = ' '
                     id_utsnl                  = ' '
                     id_no_enqueue             = ' '
                     id_new_cancellation       = ' '
    **             IMPORTING
    *               VBSK_E                    =
    *               OD_BAD_DATA               =
    *               DET_REBATE                =
                    TABLES
                      xkomfk                    = it_komfk
                      xkomv                     = it_komv
                      xthead                    = it_thead
                      xvbfs                     = it_vbfs
                      xvbpa                     = it_vbpa
                      xvbrk                     = it_xvbrk
                      xvbrp                     = it_vbrp
                      xvbss                     = it_vbss
    *               XKOMFKGN                  =
    *               XKOMFKKO                  =

  • Is it possible for creating draft BOM and fix approvals in SAP BI

    Can we create draft BOM and set approval for BOM ? If any changes are made in BOM after approval this can be set as amendment to the original BOM.

    Actually to which of the infocpackage it will give priority. 3.5 or 7.3?
    Also I just want to ask that , as in your first reply you said that the cubes cannot be upgraded .... but why?
    And if I am doing new fresh implementation ...........will there be any prerequisites?

  • Error while creating equipment BOM (IB01)

    hi guys,
    while creating equipment BOM (IB01) i am getting this error, while adding components.
    'Material type NLAG cannot be used with item category (plant 1000)'.
    regards
    chinta

    HI Chinta,
                                   I understood ur problem IB01-give the equipment number which is generated by the system and give plant name in which you have created the equipment and bom usage as 4 (plant maintenance) and press enter.
    Then you will get the components list give the description,quantity and item category as:
               as you gave it as L it is throwing an error give it as N(Non stock item), then you wont get the error.while selecting the item cat. you will get differnet components and you select the appropriate one based on you equipment.Hope you issue is resolved.
    Regards,
    Bharat

  • Error in Creating a BOM / CSAP_MAT_BOM_MAINTAIN

    hi,
    i need to create multiple bom alternatives in my development. i try using CSAP_MAT_BOM_MAINTAIN for this purpose.
    even after i give all the inputs and flags necessary for creating a new bom, i am getting an error stating that bom already exist for....when i go and check MAST table, for the same material, plant and bom usage... no such alternative exist.
    i am unable to proceed further. can anyone help me in this regard? thanks in advance.

    friend... you are right.
    CSAP_MAT_BOM_MAINTAIN is used to create only one alternative bom. but this can be any number from 01 to 99. if any alternative bom exist for the same combination of material, plant and bom usage... then you cannot create any more alternative bom for the above mentioned combination. this is because... this function module checks MAST table before proceeding with creation. while checking MAST, it considers only material, plant and bom usage. alternative bom is left out here. but the real fact is... alternative bom should be also considered for uniqueness of bom while checking MAST. all these issues are only during bom creation, but the same function module works perfect during bom maintenance.
    CSAP_MAT_BOM_CREATE is also used to create only one alternative bom. but this can be only one number - 01 (default). but, you cannot maintain a bom using this function module. you need to use CSAP_MAT_BOM_MAINTAIN for bom maintenance.
    to create any number of alternative bom for a material, plant and bom usage combination... you need to use the function module BAPI_MATERIAL_BOM_GROUP_CREATE. but... you cannot maintain any bom or create object dependencies for line items using this function module.
    summary:
    to create a bom.. use BAPI_MATERIAL_BOM_GROUP_CREATE
    to read a bom.. use CSAP_MAT_BOM_READ
    to maintain a bom.. use CSAP_MAT_BOM_MAINTAIN.
    to create object dependency.. use CSAP_MAT_BOM_OPEN , CSAP_BOM_ITEM_MAINTAIN , CSAP_MAT_BOM_CLOSE.

  • Creating material bom with reference to Sales order bom.

    How to create material bom by coping Sales order bom.?

    Mayur,
    Just go to T code: CS01 use BOm  usage 1 & then select the copy from icon in the menu bar.
    On the popup screen enter material no, plat , bom usage =5 (sales bom).
    System will then allow you to select items from Sales bom. Select the items you need copied to Material BOM. Then save.
    Hope this helps.
    Thanks,
    Ram

  • Logical standby stopped when trying to create partitions on primary(Urgent

    RDBMS Version: 10.2.0.3
    Operating System and Version: Solaris 5.9
    Error Number (if applicable): ORA-1119
    Product (i.e. SQL*Loader, Import, etc.): Data Guard on RAC
    Product Version: 10.2.0.3
    logical standby stopped when trying to create partitions on primary(Urgent)
    Primary is a 2node RAC ON ASM, we implemented partitions on primar.
    Logical standby stopped appling logs.
    Below is the alert.log for logical stdby:
    Current log# 4 seq# 860 mem# 0: +RT06_DATA/rt06/onlinelog/group_4.477.635601281
    Current log# 4 seq# 860 mem# 1: +RECO/rt06/onlinelog/group_4.280.635601287
    Fri Oct 19 10:41:34 2007
    create tablespace INVACC200740 logging datafile '+OT06_DATA' size 10M AUTOEXTEND ON NEXT 5M MAXSIZE 1000M EXTENT MANAGEMENT LOCAL
    Fri Oct 19 10:41:34 2007
    ORA-1119 signalled during: create tablespace INVACC200740 logging datafile '+OT06_DATA' size 10M AUTOEXTEND ON NEXT 5M MAXSIZE 1000M EXTENT MANAGEMENT LOCAL...
    LOGSTDBY status: ORA-01119: error in creating database file '+OT06_DATA'
    ORA-17502: ksfdcre:4 Failed to create file +OT06_DATA
    ORA-15001: diskgroup "OT06_DATA" does not exist or is not mounted
    ORA-15001: diskgroup "OT06_DATA" does not exist or is not mounted
    LOGSTDBY Apply process P004 pid=49 OS id=16403 stopped
    Fri Oct 19 10:41:34 2007
    Errors in file /u01/app/oracle/admin/RT06/bdump/rt06_lsp0_16387.trc:
    ORA-12801: error signaled in parallel query server P004
    ORA-01119: error in creating database file '+OT06_DATA'
    ORA-17502: ksfdcre:4 Failed to create file +OT06_DATA
    ORA-15001: diskgroup "OT06_DATA" does not exist or is not mounted
    ORA-15001: diskgroup "OT06_DATA" does not exist or
    Here is the trace file info:
    /u01/app/oracle/admin/RT06/bdump/rt06_lsp0_16387.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /u01/app/oracle/product/10.2.0
    System name: SunOS
    Node name: iscsv341.newbreed.com
    Release: 5.9
    Version: Generic_118558-28
    Machine: sun4u
    Instance name: RT06
    Redo thread mounted by this instance: 1
    Oracle process number: 16
    Unix process pid: 16387, image: [email protected] (LSP0)
    *** 2007-10-19 10:41:34.804
    *** SERVICE NAME:(SYS$BACKGROUND) 2007-10-19 10:41:34.802
    *** SESSION ID:(1614.205) 2007-10-19 10:41:34.802
    knahcapplymain: encountered error=12801
    *** 2007-10-19 10:41:34.804
    ksedmp: internal or fatal error
    ORA-12801: error signaled in parallel query server P004
    ORA-01119: error in creating database file '+OT06_DATA'
    ORA-17502: ksfdcre:4 Failed to create file +OT06_DATA
    ORA-15001: diskgroup "OT06_DATA" does not exist or is not mounted
    ORA-15001: diskgroup "OT06_DATA" does not exist or
    KNACDMP: *******************************************************
    KNACDMP: Dumping apply coordinator's context at 7fffd9e8
    KNACDMP: Apply Engine # 0
    KNACDMP: Apply Engine name
    KNACDMP: Coordinator's Watermarks ------------------------------
    KNACDMP: Apply High Watermark = 0x0000.0132b0bc
    Sorry our primary database file structure is different from stdby, we used db_file_name_convert in the init.ora, it look like this:
    *.db_file_multiblock_read_count=16
    *.db_file_name_convert='+OT06_DATA/OT06TSG001/','+RT06_DATA/RT06/','+RECO/OT06TSG001','+RECO/RT06'
    *.db_files=2000
    *.db_name='OT06'
    *.db_recovery_file_dest='+RECO'
    Is there any thing wrong in this parameter.
    I tried this parameter before for cloning using rman backup. This din't work.
    What exactly must be done? for db_file_name_convert to work.
    Even in this case i think this is the problem its not converting the location and the logical halts.
    help me out.....
    let me know if you have any questions.
    Thanks Regards
    Raghavendra rao Yella.

    Hi reega,
    Thanks for your reply, our logical stdby has '+RT06_DATA/RT06'
    and primary has '+OT06_DATA/OT06TSG001'
    so we are using db_file_name_convert init parameter but it doesn't work.
    Is there any thing particular steps hiding to use this parameter? as i tried this parameter for rman cloning it din't work, as a workaround i used rman set new name command for clonning.
    Let me know if you have any questions.
    Thanks in advance.

  • How to Create a BOM in an E-Business Suite

    Hi,
    I need help, how to create BOM in an E-Business Suite in a step wise or send me any related links
    Regards
    Srini

    Hello Srini,
    Prerequisite for creating a BOM is that Assembly and Components item should be created in your master organization and associated to your organization.
    Responsibility Bills of materials > Bills > Bills : in the header block, you enter the assembly, in the detail block, you enter components and quantity of components to build the assembly.
    You have to create you BOM levle by level .

  • Need code for sales order create report using bapi's

    need code for sales order create report using bapi's

    Hi,
    Go through below link
    http://www.saptechies.com/bapi_salesorder_createfromdat2/
    <b>Reward points if it helps,</b>
    Satish

Maybe you are looking for