Views in bdc

i want to record in bdc defrent fields from defrent trnsactions, how is it posible?

Do multiple recordings (one for each transaction) and then create them as programs.
Go into each program and copy the code to a new program and you will have a BDC for all transactions. (Of course you will have to make some minor modifications to the new program)
BR
Niklas

Similar Messages

  • Select Accounting View in BDC Program

    Hi Experts,
      I am working on a BDC program in which I have to change the Accounting view data for Materials(MM02).
    Each material has diferent number of views. So How can I select only the Accounting View when changing Material data through BDC.
    Thanks
    Kumar

    Hi ashok ,
    ideally you should use BAPI_Material_savedata to change the material master.
    as far as your problem goes you can use the following method to select appropraite view in MM02.
    SET PARAMETER ID 'MXX' FIELD c_v.
    c_v is a char 1 constant and can have values
    User department                Maintenance statu(Value of c_v)
    Work scheduling                A
    Accounting                        B
    Classification                     C
    MRP                                 D
    Purchasing                        E
    Production resources/tools     F
    Costing                             G
    Basic data                        K
    Storage                            L
    Forecasting                      P
    Quality management         Q
    Warehouse management   S
    Sales                               V
    Plant stocks                      X
    Storage location stocks     Z
    Regards,
    N.
    Edited by: navjot sharma on May 26, 2008 2:02 PM

  • Create Material Master Views in mass-change

    Dear All,
    We have to add a additional view to the material master of some products.
    Is this possible to do as a mass change (ex. MM17) or have we to do it with transaction SCAT/ MASS?
    Do you know an other solution?
    Thank you.
    Best regards,
    Thomas

    Hi,
    Use
    LSMW using standard SAP provided RMDATIND program- check with ABAPer - You can extend all views or you can pick and choose selected views.
    or
    BDC scripts - If u have only 1/2 views extended use this.
    Mass change doesn't help.
    Hope this helps

  • BDC - MM02 _long text  for material PO upload

    Hi experts,
    I want to upload Long text for material PO in MM02 (Purchase  order text view)
    throuh BDC upload.  I have successfully done recording for this transaction. But in the recording it show no  table field for that particular long text.
    Pls help me to do this issue.
    Thanks.

    Hi
    See the sample program for this and modify as per your requirement.
    REPORT zmm_longtext
           NO STANDARD PAGE HEADING
           LINE-SIZE 255.
    Internal Table for Upload of Long Texts Data
    DATA: BEGIN OF itab1 OCCURS 0,
            matnr    LIKE mara-matnr,    " Material
            text1    LIKE tline-tdline,  " Long Text
          END OF itab1.
    Internal Table for Upload of Long Texts Data
    DATA: BEGIN OF itab OCCURS 0,
            matnr LIKE mara-matnr,    " Material
            text  LIKE tline-tdline,  " Long Text
          END OF itab.
    To create Long Text lines for CREATE_TEXT function module
    DATA:BEGIN OF dt_lines OCCURS 0.
            INCLUDE STRUCTURE tline.   " Long Text
    DATA:END OF dt_lines.
    Variable declarations for CREATE_TEXT function module
    DATA : dl_name TYPE thead-tdname,   " Object Name
           dl_lan TYPE thead-tdspras,   " Language
           gv_matnr TYPE matnr.
    Constants
    CONSTANTS:
    Object ID for Long Text of Material Basic Data 1
      c_best     TYPE thead-tdid VALUE 'GRUN',
      c_material TYPE thead-tdobject VALUE 'MATERIAL'. " Object
    Parameters
    PARAMETERS p_file LIKE rlgrap-filename.
    At selection-screen on Value Request for file Name
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Get the F4 Values for the File
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
        IMPORTING
          file_name     = p_file.
    Start Of Selection
    START-OF-SELECTION.
    *To Upload Flat file
      CALL FUNCTION 'UPLOAD'
        EXPORTING
          filename                = p_file
          filetype                = 'DAT'
        TABLES
          data_tab                = itab1
        EXCEPTIONS
          conversion_error        = 1
          invalid_table_width     = 2
          invalid_type            = 3
          no_batch                = 4
          unknown_error           = 5
          gui_refuse_filetransfer = 6
          OTHERS                  = 7.
      SORT itab1 BY matnr.
      LOOP AT itab1.
        CLEAR gv_matnr.
        SELECT SINGLE matnr INTO gv_matnr
           FROM mara WHERE bismt = itab1-matnr.
            IF itab1-text1 NE ' '.
          itab-matnr = gv_matnr.
          itab-text  = itab1-text1.
          APPEND itab.
        ENDIF.
        CLEAR itab.
      ENDLOOP.
      DELETE itab WHERE matnr EQ ' '.
    Upload the Texts
      SORT itab BY matnr.
      LOOP AT itab.
        dt_lines-tdformat = 'ST'.
        dt_lines-tdline = itab-text.
        APPEND dt_lines.
        dl_lan = sy-langu.
        dl_name = itab-matnr.
    Call the Function Module to Create Text
        CALL FUNCTION 'CREATE_TEXT'
          EXPORTING
            fid         = c_best
            flanguage   = dl_lan
            fname       = dl_name
            fobject     = c_material
            save_direct = 'X'
            fformat     = '*'
          TABLES
            flines      = dt_lines
          EXCEPTIONS
            no_init     = 1
            no_save     = 2
            OTHERS      = 3.
        IF sy-subrc <> 0.
          WRITE:/ 'Long Text Creation failed for Material'(001),
                 itab-matnr.
        ELSE.
          WRITE:/ 'Long Text Created Successfully for Material'(002),
                 itab-matnr.
        ENDIF.
        AT END OF matnr.
          REFRESH dt_lines.
        ENDAT.
      ENDLOOP.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • BDC-MM02

    Hi Experts,
    Im wirting a BDC for MM02. There is a problem that the number of views maintained in Materials Master are not same. So in recording, the view marked for selection does not correspond to the view when opening MM02 for some material.
    Please suggest how to tackle this when there is invariable number of views in material master, i want to make changes to views using BDC.
    For example - i want to update Basic Data1 and MRP1 view in MM02. For some material there can be three views between above two views and for some material there might be six views between the two. im not able to determine the position of view to mark for selection at run time. Also the screen name and number is same for these views. This the BDC is not running properly..
    Please suggest??
    abap-raj

    ya, that is true,
    U need to keep track of what you are having for example as u said sales view u would know that you have sales related data then u trigger the OK_CODE of sales tab..as of OK_CODE try to determine what all are possible and required....Well, hope that helps...any how I wish you would find a better way tgh...which ofcourse I would like to know...too
    santhosh

  • Delete material master view

    Hi All...
    The work scheduling view was created due to the BDC program. This view is not required. Can anyone suggest how to delete this particular view keeping the rest as-it-is.
    FYI.. the maintainence status of the screen is A.
    Thanks in advance...
    SriB

    hi
    i think u want to delete the views from bdc program
    check this link and take help of abaper
    http://help-abap.blogspot.com/2008/09/mm02-bdc-select-specific-material.html
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d62292b3-0301-0010-df98-aaac31cd4a41
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d62292b3-0301-0010-df98-aaac31cd4a41
    regards
    kunal

  • Deleted BDC sessions

    Howdy!
    I wanna be able to view deleted BDC sessions is there a way to do this?
    Or are they gone forever when I can't no longer seem em from SM35???????
    Also is there any good documentation on how the underlying table relations in SAP work and how to approach programming and a really good guide for beginners?
    Thanks y'all

    Hi Steve
    Sorry but I think you've lost deleted BDC sessions.
    I couldn't figure out what you mean by underlying table relations in SAP but there are some ways to gather information about ABAP programming. It is obvious that hands-on working is a must. Here are some ways that I can recommend:
    1. "ABAP Objects — The Official Reference"
    A comprehensive guide to all ABAP language elements
    by Horst Keller & Joachim Jacobitz
    --> You can find more info from http://www.sap-press.com/H958.html
    --> The miniWAS demo system is a good opportunity for hands-on experience
    --> The older version "ABAP Objects: Introduction to Programming SAP Applications"
    by Horst Keller, Sascha Kruger may also be OK
    2. "Sams Teach Yourself ABAP/4 in 21 Days" by Ken Greenwood
    --> This may be found from http://www.amazon.com and has a simpler aspect then the book above
    3. SAP Educations offered by SAP Education Partners
    --> There are various classes. There are some supplementary documents and of course hands-on experience
    3. SAP online help: http://help.sap.com
    4. There are various sites on the internet about ABAP programming, just make a search and look around.
    Regards...
    *--Serdar

  • Help for creating classification view in mm01

    hi guys can anybody help on creating classification views in mm01 using bdc recording i need a step by step procedure . since when i tryed in mm01 there are filds like class name i dont know where all these data's to find one more thing is i was asked to create classification view using bdc recording ...please help me with some programs if u have

    Hi,
    You need to use the BAPI 'BAPI_OBJCL_CREATE' to create characteristics for a material.
    The characteristics are need to be passed in the table ALLOCVALUESCHAR.
    If you do not know the values for a particular characteristics then you canmake use of FM
    BAPI_CLASS_GET_CHARACTERISTICS and BAPI_CHARACT_GETDETAIL to get the values.
    Regards,
    Ankur Parab

  • General ABAP doughts

    Hi,
    I have some dought .....i am sending those doughts.
    Please send the appropriate answers.
    1. How to create a back ground job in particular date/time in session method??
    2. How to pass the values in report?
    3. How to upload files in app server files and database files??
    4. After finishing the code in Bdc(Before executing the program) what we can do?
    5. How to handle table control in bdc??
    6.How to handle views in bdc??
    7.using alvs in reporting,if there r three screens,if u click one screen u have to
         go another screens?what u can do?
    8. In reporting,there r two screens,if u give the input second screen is nvisible??
         How is it possible??
     9. diff b/w at-pf status and set-pf status??
    Thanks in advance.
    Kumar A.

    Hi,
       Have a look at these good links-
    http://www.sapbrain.com/TUTORIALS/FUNCTIONAL/HR_tutorial.html
    http://www.sapdevelopment.co.uk/hr/hrhome.htm
    http://planetsap.com/index.htm
    http://www.atomhr.com/library_full.htm
    http://www.sap-basis-abap.com/saphr.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/60/d8d8c7576311d189270000e8322f96/frameset.htm
    http://www.sapfriends.com/sapstuff.html
    http://www.atomhr.com/know_preview/Reading_Payroll_Results_with_ABAP.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1030179,00.html?track=NL-142&ad=500911#Payroll
    http://www.sap-press.com/product.cfm?account=&product=H967
    http://www.sapdevelopment.co.uk/hr/payres_abap.htm
    http://www.sapdevelopment.co.uk/hr/payres_tcode.htm
    http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPA/PAPA.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPD/PAPD.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PYINT/PYINT_BASICS.pdf
    http://www.atomhr.com/training/Technical_Topics_in_HR.htm
    http://www.planetsap.com/hr_abap_main_page.htm
    you can see some Standard Program examples in this one..
    http://www.sapdevelopment.co.uk/programs/programshr.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1030179,00.html?Offer=SAlgwn12604#Certification
    These are the FAQ's that might helps you
    http://www.sap-img.com/human/hr-faq.htm
    http://www.sapgenie.com/faq/hr.htm
    <b>Download the ABAP e-book for HR in the below link under the section 'Free ABAP eBook Download'</b>
    http://www.sap-img.com
    <b>Also have a look at the following links-</b>
    http://www.sapgenie.com/sapfunc/index.htm
    http://www.sap-img.com/abap/sample-hr-reports-allocate-petrol-allowance.htm
    http://www.sap-img.com/hr021.htm
    http://www.sap-img.com/human/hr-faq.htm
    http://www.sap-img.com/human/finding-the-list-of-hr-module-tables.htm
    Mark useful answers.
    Regards,
    Tanuja.

  • Hi experts plz answer these questions(interview questions)

    1.How to create a back ground job in particular date/time in session method??
    2.How to pass the values in report?
    3.How to upload files in app server files and database files??
    4.After finishing the code in Bdc(Before executing the program) what we can do?
    5.How to handle table control in bdc??
    6.How to handle views in bdc??
    7.using alvs in reporting,if there r three screens,if u click one screen u
    have to go another screens?what u can do?
    8.in reporting,there r two screens,if u give the input second screen is
    invisible? How is it possible??

    1.How to create a back ground job in particular date/time in session method?
    <b>use program RSBDCSUB this is standard program run a session or else you can 1.) Call the transaction SM36
    Enter a Job Name / You may set a job class other
    than 'C' (See online Help on that field).
    2.) Push the STEP Button
    3.) Push the ABAP Program button
    Enter der programm name an the variant name
    save that window
    4.) Push "BACK"
    5.) Push "Start Condition"
    6.) Push Date/Time
    Enter Date + Time for the first start
    Mark "Periodic Job" !!
    7.) Push "Period Values"
    Set the period you want the job to be started
    Save everything</b>
    2.How to pass the values in report?
    <b>use ABAP memory like EXPORT and IMPORT also possible to create varient for selction screen.</b>
    3.How to upload files in app server files and database files??
    <b>Use transction CG3Z to upload file from presentation server to appliction server. If u want to load data in to database tables then u should move data in internet table and then update the database UPDATE table.</b>
    4.After finishing the code in Bdc(Before executing the program) what we can do?
    <b>Check ur file path is or not.</b>
    5.How to handle table control in bdc??
    <b>Use INDEX for this</b>
    6.How to handle views in bdc??'
    <b>U need to pass the value for MSICHTAUSW-KZSEL(NN)' to select the views</b>
    7.using alvs in reporting,if there r three screens,if u click one screen u
    have to go another screens?what u can do?
    Use User_command event.
    8.in reporting,there r two screens,if u give the input second screen is
    invisible? How is it possible??
    Use At selection-screen output Event..
    Ex.
                     S E L E C T I O N   S C R E E N S                   *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-t01.
    SELECT-OPTIONS: s_opbel FOR dfkkko-opbel,
                    s_blart FOR dfkkko-blart OBLIGATORY DEFAULT 'DB',
                    s_bukrs FOR dfkkop-bukrs OBLIGATORY,
                    s_gpart FOR dfkkop-gpart,
                    s_vtref FOR dfkkop-vtref,
                    s_asco  FOR dfkkop-zzasco,
                    s_busen FOR dfkkop-zzbusent,
                    s_divi  FOR dfkkop-zzdivision,
                    s_bldat FOR dfkkko-bldat,
                    s_faedn FOR dfkkop-faedn,
                    s_waers FOR dfkkko-waers.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-t02.
    PARAMETER: rb_sum RADIOBUTTON GROUP rtyp USER-COMMAND disp,
               rb_det RADIOBUTTON GROUP rtyp .
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-t03.
    PARAMETER: rb_lis RADIOBUTTON GROUP dtyp MODIF ID typ,
               rb_alv RADIOBUTTON GROUP dtyp MODIF ID typ.
    SELECTION-SCREEN END OF BLOCK b3.
    SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-t04.
    PARAMETER: cb_asco AS CHECKBOX  DEFAULT 'X' MODIF ID sel,
               cb_divi AS CHECKBOX MODIF ID sel,
               cb_buen AS CHECKBOX MODIF ID sel,
               cb_prod AS CHECKBOX MODIF ID sel.
    SELECTION-SCREEN END OF BLOCK b4.
                    Initialization                                       *
    INITIALIZATION.
      IF rb_sum = ' '.
        rb_sum = 'X'.
        rb_det = ''.
      ENDIF.
                    A T  S E L E C T I O N - S C R E E N                 *
    AT SELECTION-SCREEN OUTPUT.
    If Summary report radio button has been selected then ALV Display
    radio button should be disabled.
      LOOP AT SCREEN.
        IF screen-group1 = 'TYP'.
          IF rb_sum = 'X'.
            rb_alv = ''.
            IF screen-name = 'RB_ALV'.
              screen-active = '0'.
              MODIFY SCREEN.
            ENDIF.
          ENDIF.
        ENDIF.
    If Detail report has been selected the all the check box in the
    selection-screen block b4 should be invisible.
        IF screen-group1 = 'SEL'.
          IF rb_det = 'X'.
            screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      ENDLOOP.
    Reward me if its helpful..
    Regards
    Ravi

  • Problem in BDC with ( MM01-Dynamic views )

    HI
    I am working with BDC on material Mater(mm01).
    Now while Creating Material,there is option of selecting different views based on MaterialType.
    But while recording a BDC i can record it for a particular Material Type.and can select view associated to that particular Material Type.
    Is there any solution to create a bdc progarm which can accept a new material based on
    any material type and having views on user's choice that are given by user in Input file.
    FOr that i think i need to create dynamic views and screen elements for input associated to those views.
    After scanning some sites and forums for this particular problem,i got some help on this:-----
    <b>SELECTION_VIEWS_FIND</b> should be very useful in this case.
    There are three FModules totally involved:
    a) <b>T130M_SINGLE_READ</b>
    Pass TCODE = MM01, and get T130M values
    b) <b>BILDSEQUENZ_IDENTIFY</b>
    Pass KZRFB = 'X',TCODE_REF=T130M-TRREF and get
    BILDSEQUENZ values
    c) <b>SELECTION_VIEWS_FIND</b>
    Pass BILDSEQUENZ and T130M-PSTAT
    Now, this function module holds the values of all the views and the next screen numbers
    But i am unable to interpret the solution..Can somebody Elaborate on this.or provide me some other solution for this.
    Thanks in Advance
    Help Will be appreciated.

    Yes, I agree with Christian.  You are gonna want to use the BAPI or the underlying function module.  It works good and isn't really that complex.  Here is sample program.  Here the function module is being used to change data,  it can also be used to create,  you will have to change the Tcode from MM02 to MM01.
    report zrich_0001.
    data: i_mara type table of mara_ueb with header line.
    data: i_marc type table of marc_ueb with header line.
    data: i_marcx type table of marc with header line.
    parameters: p_matnr type mara-matnr,
                p_plifz type marc-plifz.
    start-of-selection.
    * Get all plants for that material
      select * into corresponding fields of table i_marcx
            from marc where matnr = p_matnr.
    * Now maintain data for each plant
      loop at i_marcx.
    * Reset I_Mara to new material number
        clear i_mara. refresh i_mara.
        select * into corresponding fields of table i_mara
              from mara where matnr = p_matnr.
        read table i_mara index 1.
        i_mara-tcode = 'MM02'.
        i_mara-tranc = '0000000001'.
        modify i_mara index 1.
    * Get Plant Data
        clear i_marc. refresh i_marc.
        select * into corresponding fields of table i_marc
              from marc where matnr = i_marcx-matnr
                          and werks = i_marcx-werks.
        read table i_marc index 1.
        i_marc-plifz  = p_plifz.        " Plan Del time
        i_marc-tranc = '0000000001'.
        modify i_marc index 1.
    * Maintain material
        perform MATERIAL_MAINTAIN_DARK'.
      endloop.
    *  MATERIAL_MAINTAIN_DARK
    form MATERIAL_MAINTAIN_DARK.
    * Variable for "Maintain_Material_Dark" Function Module
      data: numerror like tbist-numerror.
      data: last_matnr type mara-matnr.
      data: i_delfields type table of mfieldres with header line.
      data: i_errors    type table of merrdat   with header line.
      call function 'MATERIAL_MAINTAIN_DARK'
             exporting
                  sperrmodus                = ' '
                  kz_prf                    = 'W'
                  max_errors                = ' '
                  p_kz_no_warn              = 'X'
                  kz_verw                   = 'X'
                  kz_aend                   = 'X'
                  kz_dispo                  = 'X'
                  kz_test                   = ' '
                  flag_muss_pruefen         = ' '
                  call_mode                 = 'ACT'
             importing
                  number_errors_transaction = numerror
                  matnr_last     = last_matnr
             tables
                 amara_ueb      = i_mara    "Basic Data
    *             amakt_ueb      = i_makt    "Descriptions
                 amarc_ueb      = i_marc    "Plant
    *             amard_ueb      = i_mard    "Storage Location
    *            AMFHM_UEB      = I_MFHM    "Production Tools
    *             amarm_ueb      = i_marm    "Units of Measure
    *            AMEA1_UEB      = I_MEA1    "Internal Mangagement -  EANs
    *             ambew_ueb      = i_mbew    "Accounting/Costing
    *             asteu_ueb      = i_steu    "Tax Data
    *             astmm_ueb      = i_steumm  "Tax Data
    *            AMLGN_UEB      = I_MLGN    "Warehouse Data
    *            AMLGT_UEB      = I_MLGT    "Storage Type Data
    *            AMPGD_UEB      = I_MPGD    "Change Documents
    *            AMPOP_UEB      = I_MPOP    "Forcast Parameters
    *            AMVEG_UEB      = I_MVEG    "Total Consumption Data
    *            AMVEU_UEB      = I_MVEU    "Unplanned Consumption Data
    *             amvke_ueb      = i_mvke    "Sales Data
    *             altx1_ueb      = i_ltx1    "Sales Text
    *            AMPRW_UEB      = I_MPRW    "Forcast Values
                 amfieldres     = i_delfields
                 amerrdat       = i_errors
             exceptions
                  kstatus_empty             = 01
                  tkstatus_empty            = 02
                  t130m_error               = 03
                  internal_error            = 04
                  update_error              = 05
                  too_many_errors           = 06.
      if sy-subrc <> 0.
        rollback work.
        call function 'DEQUEUE_ALL'.
      else.
        commit work and wait.
        call function 'DEQUEUE_ALL'.
      endif.
      clear: i_mara, i_marc.
      refresh: i_mara, i_marc.
    endform.
    Regards,
    Rich Heilman

  • How to find the position of view in MM02 transaction for coding BDC?

    Hi Guys,
    Is there any FM or BAPI Available to find the position of the view in MM02 transaction. I tried FM SELECTION_VIEWS_FIND. But getting inconsistent results
    i.e Some materials it is giving correct positions but for others i am getting wrong position. So my BDC is getting failed.
    Thanks in advance.
    Vinod.

    Hi,
    data : i_t133a like t133a occurs 0 with header line,
          ch(1),
           viewno(2) type n.
    clear viewno.
      select * from t133a into corresponding fields of table i_t133a
                    where bilds = '21' and guifu like 'SP%'  .
      loop at i_t133a .
        ch = i_t133a-pstat.
        if mara-vpsta na ch .
          delete i_t133a     .
          continue .
        endif .
      endloop.
      sort i_t133a by guifu ascending .
      loop at i_t133a .
        viewno = viewno + 1 .
        if i_t133a-guifu = 'SP01'.  "FOR BASIC DATA1                CHANGES              ACCORDINGLY REFER TABLE T133A TO FIND VTHE VALUE
          exit .
        endif .
      endloop .
    reward if usefull

  • How can we handle view position in bdc

    can any body tell me how to handle view position in bdc

    Hi
    It seems u want to handle views from dictionary.....thats why u have posted a question in this forum. Just post the question in the appropriate forum for BDC...
    and by the way, there are a lot of cases which need to be handled in BDC....so, please be more clear on your question.....
    Reward points if useful
    Regards

  • Bdc for MM01 with classification view

    Hi all,
    I need to create materials using mm01 with classification view. since there is no bapi supporting this view, i am ding by bdc.
    The problem is in classification view once i give the class type and name a screen pops with caption
    characteristic value assignment, but theere are no charateristics displayed - wat values do i have to enter here >
    once i leave this screen the characteristics show up one after the other and i can load the details. but then while tryin to save error comes staing incnsisitent value assigned. wat do i ener in the intermediate screen t avoid this error.
    thanks

    hi when you are creating a classification view with characteristics.. you need to do all at once... you cannot modify..
    all you can do is delete the whole view and create with all the changed again.. I  dont memorize the BAPI .. but you have BAPIdelete.. BAPIadd..

  • Problem in BDC FOR uploading more than 1 insep. typ in QM view for MM01

    Hi,
    I had made a BDC in which i am trying to upload the data for the QM view which is being extended in it but the problem is when the program reaches the to QM view it is only able to upload only 1 inspection Type which is working fine but when there is more than 1 it gives error that its QM View has already maintained.  Please provide me guiddlines how to solve this problem .
    Here's is the link to the code which i am trying to modify:-
    http://docs.google.com/Edit?id=dngp529_2fxwgmrgg
    Edited by: ricx .s on Apr 16, 2009 2:30 PM

    hi,
    But is it not possible that while creating the insepction type for the first it should simultaneously take the value of 2nd inspection type .
    see,ina bdc of qp01 or ca01 we can insert the values at the screen but why can't we do d same in the bdc of mm01,
    I had made a bdc for tcode MM02 in which i am able to upload  the data but in that there is a problem that some of the materials have the Quality managmnt View at position no. 11 or 13 of the screen.
    here's is d link for the code of the program :-
    http://docs.google.com/Doc?id=dngp529_3wcgnjdf3
    plzz provide me guidelines how to solve it    .
    Edited by: ricx .s on Apr 17, 2009 9:26 AM
    Edited by: ricx .s on Apr 17, 2009 10:56 AM

Maybe you are looking for

  • IMovie quit unexpectedly while importing videos. What is the solution?

    I searched through the Discussions and found that there were a lot of frustration among the users who had the same problem of iMovie quitting unexpectedly. However I did not find a solution in the discussion threads. For my case, it happened when iMo

  • Doubts and problems with CVS Cedega

    Well, first, I want to make a question: - If I use wine for playing Warcraft III, for example, I must use the -opengl option, and the image quality is reduced. If I use CVS Cedega (I guess it has DirectX compatibility), Can I have a more quality and

  • Photoshop CS6 and OS Mavericks Issue

    I can't get photoshop cs6 to behave properly now that I've upgraded to OS Mavericks.  For that matter - I can't get InDesign or Illustrator CS6 to behave properly either. When I use the File Open, File Save, and File Save As commands I immediately ge

  • Bulk Actions - Update not working

    Hi - If I try to run an update through Bulk Actions the resource fields are not getting updated i.e. command,user,accounts[Blah].lastname CreateOrUpdate,AAC259,Bloggs This doesn't update the resource, and it doesn't appear in the updates section of t

  • Does 7200 Rpm HDD's work on the new MacBook?

    Hi, I was wondering does 7200 rpm harddrives work on the new MB? Such like this one: HDD Scorpio/320GB 2.5" SATA 7200rpm 16MB