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

Similar Messages

  • How to upload more than 100mb in using com.oreilly.servlet package

    hi all,
    I use com.oreilly.servlet package to upload and i use the following code to upload
    MultipartRequest mr = new MultipartRequest(request,"/tmp/saved",0x10000000);My problem is i can't upload more than 25mb, uploads upto 25mb and shows page cannot displayed err in IE,
    Pls help

    In the webserver there is most likely a configuration option for the maximum size that a request may have. So search through the manual of your particular webserver on how to change that.

  • Not uploading more than 150 rows from Excel file to Internal table.

    Hi All,
    We have a Z program to upload initial stock from excel file to SAP using BAPI. The problem is we have defined row to '65536'. But it is not uploading more than 150 rows at a time. The piece of code is given below.
    DATA : it_excel LIKE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA: xcel TYPE TABLE OF alsmex_tabline WITH HEADER LINE.
    DATA : gd_scol   TYPE i VALUE '1',
           gd_srow   TYPE i VALUE '3',
           gd_ecol   TYPE i VALUE '256',
           gd_erow   TYPE i VALUE '65536'.
    PERFORM upload_excel_file TABLES   gt_out
                                  USING   p_file
                                          gd_scol
                                          gd_srow
                                          gd_ecol
                                          gd_erow.
    FORM upload_excel_file  TABLES   gt_out
                                       "Insert correct name for <...>
                            USING    p_p_file
                                     p_gd_scol
                                     p_gd_srow
                                     p_gd_ecol
                                     p_gd_erow.
      DATA : lt_intern TYPE  kcde_cells OCCURS 0 WITH HEADER LINE.
      DATA : ld_index TYPE i.
      FIELD-SYMBOLS: <fs> TYPE ANY.
      CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'
        EXPORTING
          filename    = p_p_file
          i_begin_col = p_gd_scol
          i_begin_row = p_gd_srow
          i_end_col   = p_gd_ecol
          i_end_row   = p_gd_erow
        TABLES
          intern      = lt_intern[].
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF lt_intern[] IS INITIAL.
        FORMAT COLOR COL_BACKGROUND INTENSIFIED.
        WRITE:/ 'No Data Uploaded'.
        EXIT.
      ELSE.
        SORT lt_intern BY row col.
        LOOP AT lt_intern.
          MOVE lt_intern-col TO ld_index.
          ASSIGN COMPONENT ld_index OF STRUCTURE gt_out TO <fs>.
          MOVE lt_intern-value TO <fs>.
          AT END OF row.
            APPEND gt_out.
            CLEAR gt_out.
          ENDAT.
        ENDLOOP.
      ENDIF.
    ENDFORM.           
    Plz tell me, what is the problem here. I want to upload all the rows at a time.
    Thanks,
    With regards,
    Rosaline.

    Hi Rob, I confirm, you're nitpicking! :-D For information, I've noted a few SAP comments about releasing and released objects, for people who like reading: [SAP Library - Documenting and Releasing a Function Module|http://help.sap.com/saphelp_nw70/helpdata/en/d1/801f50454211d189710000e8322d00/frameset.htm], [Note 109533 - Use of SAP function modules|https://service.sap.com/sap/support/notes/109533], [Note 415983 - Modification/customer developments of SAP function modules|https://service.sap.com/sap/support/notes/415983]; Example of an unreleased BAPI -> [Note 577453 - Using BAPI BAPI_DELIVERYPROCESSING_EXEC|https://service.sap.com/sap/support/notes/577453]
    Sandra

  • Flex file upload more than 100 MB

    Hi,
    Is there possibly any method where I can upload file to the server which are more than 100 MB?
    I've gone through the nice piece of code demonstrated at here : http://www.zehnet.de/2009/02/23/flex-fileupload-component/ , where it shown how we can upload files in chunks to the server following FP10, but it also limits to the FP max limit of 100 MB. I've also gone through the discussion followed at: http://forums.adobe.com/thread/494366 , where a process been discussed where FP first reads a defined amount of bytes from a file, loads them and upload them and then go for the rest of the bytes, following openAsync() method for FileMode.READ, but which is only available in AIR. So, I wonder, if there could possibly any way to upload more than of 100 MB files in chunks to the server in browser mode of the Flash Player.
    Thanks for any coming suggestions.
    Rgds,
    Santanu.K

    Long time no see vet. Your problem sucks. I would go to sun site review there articles on JVM tunning. To solve this problem you will need to change the command line arguments to JVM to increase the heap space.
    java -Xms<initial heap size> -Xmx<maximum heap size>
    Defaults are usually: java -Xms32m -Xmx128m
    -Xm*s* - initial java heap size
    -Xm*x* - maximum java heap size
    -Xm*n* - the size of the heap for the young generation
    This is a good article: http://java.sun.com/developer/technicalArticles/Programming/turbo/
    Also, if this solves your problem please check it off so I can get some points. I've been out of the game for awhile.
    Ike Wiggins
    http://bipublisher.blogspot.com

  • Upload more than 300 record by Standard Batch / Direc input 'Financial documents'

    Dears Experts ,
    i have a problem to upload more than  300 record by lsmw i have created  Standard Batch / Direc input
    with object 0100Financial documents
    program name RFBIBL00
    when upload more than 300 record it will display " no batch input data " and didn't save the document .

    Hi,
    Please let us know what Data Transfer Type you are using. Kindly try to run program RFBIBL00 with "Call Transaction" or  "Direct Input" for Data Transfer Type as suggested in the program documentation.
    Regards,
    Anand Raichura

  • Can't upload more than one photo to facebook

    Hallo, I am new to this, so I apologise if I am doing things wrong.
    I have a Z2 which is fully up to date and oterhwise doing fine, however for the last week or so I have discovered that I can no longer upload more than one picture from my album to facebook  from my phone in a status update.
    I have tried deleting facebook and reinstalling from the playstore, but that has not helped. I have checked and I can still upload more than one from my sony laptop.
    Can anybody help please.
    Fidra

    As Facebook is no longer a system app then this maybe a question to put to the developers as a recent update may have removed such features
    For a successful technology, reality must take precedence over public relations, for Nature cannot be fooled.   Richard P. Feynman

  • Html tag to upload more than one file at a time

    hai sir this is surendra i need html tag to upload more than one file at a time .I am using
    <input type="file" name="">
    tag to upload single file at a time i need tag to upload more than one file at a time .
    Waiting for your result

    You can add more than one input element of type file.
    <input type="file" name="name1">
    <input type="file" name="name2">

  • HT1277 I have OS X 10.9.2 and have downloaded maverick. If I am sending an email message to one person, options for addresses  from my address book show up. However if I want to send it to more than one person, the address options for the others do not sh

    I have OS X 10.9.2. and have downloaded Maverick. If I am sending an email message to one person, options for addresses from my Address Book appear. However if I want to send it to more than one person, the potential addresses for the other persons do not show. Can you please help?

    Install ClamXav and run a scan with that. It should pick up any trojans.   
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • How to upload more than one file in struts?

    thanks first. I want to upload more than one file at once. So I modify the the example of the struts 1.1. I changed :
    protected FormFile theFile;
    to
    protected FormFile [] theFile;
    and add indexed getter and setter method.
    public FormFile getTheFileIndexed(int index){
    return theFile[index];
    public void setTehFileIndexed(FormFile theFile,int index){
    this.theFile[index]=theFile;
    and in the upload.jsp, I changed
    <html:file property="theFile" />
    to
    <html:file property="theFile[0]" />
    and also in the ActionForm
    reset(){
    this.theFile=new FormFile[2];
    But when I run it, it tells me there are no getter indexed method.
    Thanks again for reading.

    Create a FormFile property with getters and setters for each file you want to upload. Eg.
    private FormFile file1;
    private FormFile file2;
    public void setFile1(FormFile file) {
       this.file1 = file;
    public void getFile1() {
      return file1;
    // same for file2And in your jsp use the following :
    <html:file property="file1" />
    <html:file property="file2" />

  • Can we upload more than 1000 records with BPS file upload pf

    We are using file upload functionality in BPS. Can we use this function to upload around 80,000 records at a time.
    We are unable to upload more than 1000 records because throws a time out error. Is there a setting that we can change to resolve this?

    Hi,
    Can you check the following note  about BW system parameters :
    [https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=192658]
    Check the work Process time set for your BW system
    Is your application web based ?
    Pratyush

  • Upload more than one original in a DIR

    Hi all,
    is possible to upload more than one original document at a time into a DIR (for DMS than for Easy DMS) ?
    Thanks a lot,
    Marco.

    hi, Marco
    U can upload more thean one [N -Number] Original Files in to DIR.
    Condition is U have configure in SPRO, TC DC10
    or U can navigate, in SPRO>Cross application>Document management>control data>Define Document type
    set flag 'Use Kpro.
    Supose u did not select this option, the limitation of original application file only 2 u can upload in every DIR.
    Benakaraja
    ??p
    Edited by: benaka rajes on Jul 3, 2009 4:20 PM

  • With the new update of iphoto I can not upload more than 10 photos to Facebook

    with the new update of iphoto I can not upload more than 10 photos to Facebook, I can do

    I have the same problem. Why am I now only limited to 10 photos to share in Facebook thru my Iphoto in ipad? Also, i cannot create an album when sharing photos thru Iphoto in ipad. I used to be able to do this. I don't want to upload all my photos in IOS album.  Was this feature removed from the Iphoto?

  • YOUTUBE says my account IS ABSOLUTELY eligible for uploads longer than 15 minutes but FCPX says i am NOT eligible...

    HELP! YOUTUBE says my account  is eligible for uploads longer than 15 minutes, however, I am trying to upload a file from Final Cut Pro X using the SHARE BUTTON and FCPX says my account is NOT ELIGIBLE for vides over 15 minutes. How can I make sure that Final Cut is updated with this proper info from youtube? PLEASE HELP!!! I HAVE TO GET A VIDEO UP ASAP!

    David and Keith have got this right. Don't depend on FCP to do the account verification and upload. Export your movie and use Compressor, or MPEG STreamclip, or QT Pro to spit out an h.264. Manually upload. Be generous in setting video quality. YT, Vimeo  et al will recompress and the more information your file contains (within reason) the better. Just make sure any interlaced material is de-interlaced (a vote for Compressor) and the process will be smoother if you give them 29.97 frame rates,
    Russ

  • Can we upload more than one document at a time ?

    It will take me forever to upload all my documents into the acrobat cloud , ONE at a time....is there a quicker way to do it? If not,  will there be soon? Because that would really help me and possibly others to get it done faster...

    Hi melanie1621
    Yes You can upload more than one document ...
    Please do the following :
    1. Click on upload files button under Acrobat.com
    2. A pop will open .
    3. Select more than one file by keeping the CTRL button pressed.
    4. Once, you select all the files , Click on Open ...
    It Will Start uploading all your files ...!

  • I am unable to to upload more than one photo at a time. I have tried to hold down the shift key

    I am unable to upload more than one photo.  I have tried to hold down the shift key and highlighting the remaining photos. 

    If you are using the Internet Explorer (IE) browser than you will only be able to upload one file at a time. This is per browser design by Microsoft. If you want to upload multiple files than use another browser such as Firefox or Chrome.
    If you are not using IE and are seeing this issue then please share which OS version and browser version you are using.

Maybe you are looking for