Problem in uploading inforecords through "RM06IBI0"

Hi experts,
I am facing the problem when i amuploading the purchase info record data through the program RM06IBI0 for some records only(randomly).
This program is unable to upload the condition records data in the screen SAPMV13A-0201.It is giving the error filed konp-kmein(1) does not exist in the screen SAPMM06I 0102.
Can any body suggest me what is the cause?  as an urgent basis.
Thanks and regards,
Vamsi.

Function to Open job
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = y_k_jobname
      IMPORTING
        jobcount         = y_v_jobcount
      EXCEPTIONS
        cant_create_job  = 01
        invalid_job_data = 02
        jobname_missing  = 03.
    IF sy-subrc NE 0.
      MESSAGE text-016 TYPE y_k_s.
      LEAVE LIST-PROCESSING.
    ENDIF.
Insert program RM06IBI0
    SUBMIT rm06ibi0 USING SELECTION-SCREEN '1000'
    WITH SELECTION-TABLE y_v_rspar_tab
    AND RETURN
    VIA JOB y_k_jobname
    NUMBER y_v_jobcount.
Insert program RSBDCSUB
    SUBMIT rsbdcsub USING SELECTION-SCREEN '1000'
    WITH SELECTION-TABLE y_v_rspar_tab1
    AND RETURN
    VIA JOB y_k_jobname
    NUMBER y_v_jobcount.
    MOVE: y_k_parm4 TO y_v_rspar_line2-selname,
             y_k_p     TO y_v_rspar_line2-kind,
             y_k_i     TO y_v_rspar_line2-sign ,
             y_k_eq    TO y_v_rspar_line2-option,
             y_p_grp     TO y_v_rspar_line2-low.
    APPEND y_v_rspar_line2 TO y_v_rspar_tab2.
    CLEAR y_v_rspar_line2.
    MOVE:    y_k_parm7 TO y_v_rspar_line2-selname,
             y_k_p     TO y_v_rspar_line2-kind,
             y_k_i     TO y_v_rspar_line2-sign ,
             y_k_eq    TO y_v_rspar_line2-option,
             y_p_bfil  TO y_v_rspar_line2-low.
    APPEND y_v_rspar_line2 TO y_v_rspar_tab2.
    CLEAR y_v_rspar_line2.
    MOVE:    y_k_parm11 TO y_v_rspar_line2-selname,
             y_k_p     TO y_v_rspar_line2-kind,
             y_k_i     TO y_v_rspar_line2-sign ,
             y_k_eq    TO y_v_rspar_line2-option,
             y_v_fill  TO y_v_rspar_line2-low.
    APPEND y_v_rspar_line2 TO y_v_rspar_tab2.
    MOVE:    y_k_parm12 TO y_v_rspar_line2-selname,
             y_k_p     TO y_v_rspar_line2-kind,
             y_k_i     TO y_v_rspar_line2-sign ,
             y_k_eq    TO y_v_rspar_line2-option,
             y_v_count1 TO y_v_rspar_line2-low.
    APPEND y_v_rspar_line2 TO y_v_rspar_tab2.
    IF sy-batch = 'X'.
Insert program RM06IBI0
      SUBMIT ypuuprr0200 USING SELECTION-SCREEN '1000'
      WITH SELECTION-TABLE y_v_rspar_tab2
      AND RETURN
      VIA JOB y_k_jobname
      NUMBER y_v_jobcount.
    ENDIF.
    IF sy-subrc EQ y_k_zero.
      MOVE: sy-datum TO  y_t_starttime-sdlstrtdt,
            sy-uzeit TO y_t_starttime-sdlstrttm,
            y_k_x TO y_v_starttim.
Close job
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = y_v_jobcount
          jobname              = y_k_jobname
          strtimmed            = y_v_starttim
          targetsystem         = y_v_host
        EXCEPTIONS
          cant_start_immediate = 01
          invalid_startdate    = 02
          jobname_missing      = 03
          job_close_failed     = 04
          job_nosteps          = 05
          job_notex            = 06
          lock_failed          = 07
          OTHERS               = 99.
    ENDIF.                                      "if sy-subrc eq 0
*if job not created properly delete the job
    IF sy-subrc NE y_k_zero.
      CALL FUNCTION 'BP_JOB_DELETE'
        EXPORTING
          jobcount                 = y_v_jobcount
          jobname                  = y_k_jobname
        EXCEPTIONS
          cant_delete_event_entry  = 1
          cant_delete_job          = 2
          cant_delete_joblog       = 3
          cant_delete_steps        = 4
          cant_delete_time_entry   = 5
          cant_derelease_successor = 6
          cant_enq_predecessor     = 7
          cant_enq_successor       = 8
          cant_enq_tbtco_entry     = 9
          cant_update_predecessor  = 10
          cant_update_successor    = 11
          commit_failed            = 12
          jobcount_missing         = 13
          jobname_missing          = 14
          job_does_not_exist       = 15
          job_is_already_running   = 16
          no_delete_authority      = 17
          OTHERS                   = 18.
    ENDIF.                                   "IF sy-subrc NE 0.
*Check for Foreground execution
    IF sy-batch NE y_k_x.
      DO.
        IF sy-index EQ '10' OR y_v_fill1 > y_v_fill.
          EXIT.
        ELSE.
          WAIT UP TO 3 SECONDS.
        ENDIF.
*Fetch data from APQI
        SELECT qid groupid qstate
        INTO CORRESPONDING FIELDS OF TABLE y_i_apqi1
        FROM  apqi
        WHERE groupid EQ y_p_grp
             AND   datatyp  EQ 'BDC'
             AND   progid EQ 'RM06IBI0'
             AND   creator EQ sy-uname
             AND   credate EQ sy-datum.
        DESCRIBE TABLE  y_i_apqi1 LINES y_v_fill1.
      ENDDO.
*Check new entry in table
      IF y_v_fill1 > y_v_fill.
        READ TABLE y_i_apqi1 INDEX y_v_fill1 INTO y_wa_apqi1.
        IF sy-subrc EQ 0.
          APPEND y_wa_apqi1 TO y_i_apqi2.
        ENDIF.
      ENDIF.
*check if table is empty
      IF  y_i_apqi2 IS INITIAL.
        MESSAGE text-035 TYPE y_k_s.
        LEAVE LIST-PROCESSING.
      ELSE.
        READ TABLE y_i_apqi2 INDEX 1 INTO y_wa_apqi1.
      ENDIF.
*check if Session is finished
      DO.
        IF sy-index EQ '10' OR y_wa_apqi1-qstate EQ 'F' OR
                               y_wa_apqi1-qstate EQ 'E'.
          EXIT.
        ELSE.
          WAIT UP TO 3 SECONDS.
        ENDIF.
*Read table y_i_apqi1 into y_wa_apqi1 index 1.
        SELECT qid groupid qstate
        INTO CORRESPONDING FIELDS OF TABLE y_i_apqi2
        FROM apqi
        WHERE qid EQ y_wa_apqi1-qid AND
        ( qstate EQ 'F' OR  qstate EQ 'E').
        IF sy-subrc EQ 0.
          EXIT.
        ENDIF.
      ENDDO.
*read table with status finished
      READ TABLE y_i_apqi2 INDEX 1 INTO y_wa_apqi1.
      IF y_wa_apqi1-qstate NE 'F' AND y_wa_apqi1-qstate NE 'E'.
        MESSAGE text-036 TYPE y_k_s.
        LEAVE LIST-PROCESSING.
      ELSE.
*Use function to read session log
        CALL FUNCTION 'YTI_BATCH_INPUT_SESSION_LOGS'
          EXPORTING
         NAME               = y_p_grp
           client             = sy-mandt
           date_from          = sy-datum
           date_to            = sy-datum
           qid                = y_wa_apqi1-qid
           status             =  y_k_r
          TABLES
            apqltab            = y_i_apqi2
            bdclm              = y_i_bdclm
         EXCEPTIONS
           invalid_data       = 1
           OTHERS             = 2
        IF sy-subrc <> 0.
          MESSAGE s305(00) WITH text-001 text-009 text-010.
        ENDIF.
Thanks and regards,
Vamsi.

Similar Messages

  • Problem uploading data through RM06IBI0

    Hi Experts,
       We are uploading purchase info records data( ME12) through direct input program RM06IBI0. For some records, we are getting errors.
    This program is creating a sesson in SM35, In that sesson errors are:
      Cursor field KONP-KSCHL(1) does not exist in the screen
      Field KONP-KSCHL(1) does not exist in the screen SAPMM06I 0102
      Field KONP-KBETR(1) does not exist in the screen SAPMM06I 0102
    1) How to Debug the sesson in SM35. and
    2) These errors are coming some(randomly) records. We are unable expect this error will come for this record only.
    Thanks in advance,
    Sandya.

    i think in ur flat file u have two values which are related to KSCHL(1), if i am rite
    then u should maintain two different fields in the Maintain source fields.
    for eg:--
    kschl1 kschl2 and for kbetr(1)---> kbetr1 ok
    now mapp this source fields to ur target fields with respectively..
    u should change ur flat file values also
    respective to their values maintain it as HORIZONTALLY.
    just ping if u have any doudts,
    Thanks

  • Problem while uploading data through F-43

    Hello Experts ,
    I am facing a problem while data uploading through F-43.
    Suppose I have many vendors with having several debit and credit items for each.So in t code same screen will appear for same vendor several times where we have to enter debit / credit items.
    Please suggest how to solve this issue through LSMW/BDC program.
    Thanks in adv.
    A Miter.

    Hi..
    Use BDC Recording MEthod ...
    Develop BDC program, Before Recording the Transaction sit with Functional Consulatnt for REcord The f-43.
    After that  that  u can do ur coding  and built ur own logic.
    Prabu

  • Problem in uploading Bom through Bapi

    Hi
    i am uploading Bom data useing CSAP_MAT_BOM_CREATE bapi.
    the header data through bapi is going fine but
    i am not able to upload 2 line item...
    i  think i need to pass OBJECT_ID  & IDENTIFIER though CSDEP_DAT ,CSDEP_DESC,CSDEP_SORC Structure.
    can any body tell me from where i can get OBJECT_ID  & IDENTIFIER  ..as there no such fields in my file.
    Regards
    ABG.

    Just a little word about "Bapi" : this FM is not a BAPI (it's a special kind of API, only BAPI* FMs are/can be BAPIs). CSAP_MAT_BOM_CREATE is just an API (SAP says you can use this FM).
    Did you read the 100 threads about this FM, here are some of the threads for example:
    1) did you read the example in the function module documentation? YOUR QUESTION IS ANSWERED IN THAT DOC
    2) why don't you use BAPI_MATERIAL_BOM_GROUP_CREATE?
    3) read other threads

  • Problem in uploading file through API

    I want to upload files in to mycontent folder through our
    application.After each steps followed, i get the status message ok
    from the server, but file is not uploaded. Is there any idea about
    this? Please help.

    what do you mean exactly with 'the file is not uploaded'?
    you checked in the content directory and the file isn't
    there?
    if so, could you please post your server side upload
    code?

  • Long text problem while uploading Inspection plan through BDC.

    Hi,
    I am facing some problem while uploading the inspection plan. There are few MICs for which we are having long text, while uploading the inspection plan through BDC - some other long text is getting copied into the MIC's long text. After checking I came to know that in function module, read_text - some text which is stored in ABAP memory is getting copied into the inspection plan.
    I am working in SAP release 4.7. I have checked with SAP notes: 97419, but it is also not satisfying.
    Waiting for quick solution.
    Thanks in advance.
    Fahié

    Hi a®s,
    Thanks a lot for your kind reply.
    My requirement is I want to maintain long text for few MICs (which are not having long texts at MIC level) in inspection plan (QP01).
    When I am trying to manually assign the MIC's to inspection plan (QP01), long text is copied whereas I am not clicking the long text icon in (QP01). Long text is not maintained in MIC level, still some long text is copied to this MIC. This was also happening while uploading the inspection plan thro' BDC.
    I believe what you have mentioned about function module SAVE_TEXT cannot be used here since long text is already copied before we pass the long text. Also if we pass some long text, still apart from the long text what we have passed there is some other long text copied (extra long text).
    Waiting for quick solution.
    Thanks in advance.
    Fahié

  • I have problems with uploading images to my printing company have the images have been manipulated through CS6 i have saved images as jpeg but the printer company tell me they are not j peg, they will not upload images save from a camera are fine

    I have problems with uploading images to my internet printing company when  the images have been manipulated through CS6 and  i have saved images as jpeg  the printer company tell me they are not j peg,
    but images saved from my phone or camera images that have not been manipulated upload fine, What am i doing wrong?

    Save/Export them as JPG. Photoshop defaults to PSD, so make sure you select JPG and not just rename the file to .jpg.
    There are two ways to save them as JPG: Regular Save as option or Save for Web & Devices
    Take your pick.

  • How to avoid the split problem when uploading the data from csv file

    Dear Friends,
                  I have to upload data from the .csv file to my custom table , i have found a problem when uploading the data .
    i am using the code as below , please suggest me what i have to do in this regard
          SPLIT wa_raw_csv  AT ',' INTO
                    wa_empdata_csv-status
                     wa_empdata_csv-userid
                     wa_empdata_csv-username
                     wa_empdata_csv-Title
                     wa_empdata_csv-department.
    APPEND wa_empdata_csv TO  itab.
    in the flat file i can see for one of the record for the field Title  as
    Director, Finance - NAR............there by through my code the  wa_empdata_csv-Title is getting splited data as "Director, and  Department field is getting Finance - NAR" , i can see that even though  " Director, Finance - NAR"  is one word it is getting split .
    .......which is the problem iam facing.Please could any body let me know how in this case i should handle in my code that this word
    "Director,Finance - NAR"   wil not be split into two words.
    Thanks & Records
    Madhuri

    Hi Madhuri,
    Best way to avoid such problem is to use TAB delimited file instead of comma separated data. Generally TAB does not appear in data.
    If you are generating the file, use tab instead of comma.
    If you cannot modify the format of file and data length in file is fixed character, you will need to define the structure and then move data in fixed length structure.
    Regards,
    Mohaiyuddin

  • Scheduling Problem for uploading Data from Flat file to SAP

    Hi guys,
    I am facing a weared problem in uploading some leave records in z table. The code is working fine if we run it through se38 after selecting the file from a shared location from production server which has all the access rights.
    This folder lies in the \usr folder of SAP Production.
    I have kept all the Flat files in the shared path "
    Tis-mum-iz-s1\migration\SAP-INT\leave\" ...
    To give u exact directory structure..
    Tis-mum-iz-s1 is the Server Name
    usr is the SAP System folder used for uploads and downloads
    usr |
    ...-> Migration |
                      -> SAP-INT |
                                 -> leave -> (Flat Files)
    Migration folder is shared with all rights.
    Obviously, we cannot give shared drive as the variant in the scheduler.
    So i use the system path i.e. \usr\sap\tmp\migration\sap-int\leave\ as the variant.
    All my other download programs are working fine with this path as a variant...
    But my this particular upload program does not work with this path....
    I am giving u my code...
    TATA INTERACTIVE SYSTEMS (A Division of TATA INDUSTRIES LIMITED)
    REPORT      :  ZMIGRATE_ZLEAVE
    DESCRIPTION :  To Upload the Leave data. (ZLEAVE)
    CREATED BY  :  Abhishek Bachhawat
    CREATED ON  :  01.09.2005
    CONSULTANT  :  ANAND
    REPORT  ZMIGRATE_ZLEAVE.
    TABLES: ZLEAVE.
    data: begin of wtab,
              MANDT(3),
              ZLVID(8),
              PERNR(8),
              ZSTDT(8),
              ZENDT(8),
              ZDAYS(4),
              AEDAT(8),
              ERDAT(8),
          end of wtab,
          itab like WTAB occurs 0 WITH HEADER LINE.
    data: temp like zleave occurs 0 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK file
                   WITH FRAME TITLE text-005.
    parameters: file like rlgrap-filename Obligatory.
    Concatenate File SY-DATUM '_Leave.txt' into File.
    SELECTION-SCREEN END OF BLOCK file.
    at SELECTION-SCREEN ON VALUE-REQUEST FOR file .
      CALL FUNCTION 'WS_FILENAME_GET'
        IMPORTING
          FILENAME = file.
      IF SY-SUBRC <> 0.
      ENDIF.
    start-of-selection.
      if file ne space.
        CALL FUNCTION 'WS_UPLOAD'
          EXPORTING
            FILENAME = FILE
            FILETYPE = 'DAT'
          TABLES
            DATA_TAB = ITAB.
      else.
        message e000(zps) with 'Specify a file'.
      endif.
      SORT ITAB BY ZLVID.
      LOOP AT ITAB.
        REFRESH TEMP.
        CLEAR TEMP.
        TEMP-MANDT = sy-mandt.
        TEMP-ERDAT = SY-DATUM.
        TEMP-ZLVID = ITAB-ZLVID.
        TEMP-PERNR = ITAB-PERNR.
        TEMP-ZSTDT = ITAB-ZSTDT.
        TEMP-ZENDT = ITAB-ZENDT.
        TEMP-ZDAYS = ITAB-ZDAYS.
        TEMP-AEDAT = ITAB-AEDAT.
        TEMP-ERDAT = ITAB-ERDAT.
        APPEND TEMP.
        SELECT SINGLE *
               FROM   ZLEAVE
               WHERE  ZLVID = TEMP-ZLVID
               AND    PERNR = TEMP-PERNR.
        IF SY-SUBRC = 0.
          UPDATE ZLEAVE SET ZSTDT = TEMP-ZSTDT
                            ZENDT = TEMP-ZENDT
                            ZDAYS = TEMP-ZDAYS
                            AEDAT = TEMP-AEDAT
                            ERDAT = TEMP-ERDAT
                 WHERE ZLVID = TEMP-ZLVID
                 AND   PERNR = TEMP-PERNR.
        ELSE.
          INSERT ZLEAVE FROM TABLE TEMP.
          COMMIT WORK.
        ENDIF.
      ENDLOOP.

    Hi,
    open dataset file for input in text mode.
    check sy-subrc = 0.
    while sy-subrc = 0.
      read dataset file into wa.
      if sy-subrc = 0.
      append wa to itab.
      else.
        exit.
      endif.
    endwhile.
    close dataset file.
    regards
    Siggi
    PS: check also the F1-help for open, read and close statements!

  • Errors upload Apps through Application Loader

    Trying to upload App through Applicatio loader had have never received these errors til 2 days ago. Same error on two different app uploads. I'm running the latest application loader version 2.9 and Mac 10.7.5. Using iMac 24" with 4 gb of ram
    First errors i received are
    The second error I get every other time I try to re upload is
    I have reset my router, restarted my computer and checked for any updates. I'm out of options. I also have developer recreate the pkg file without spaces in the name as I heard that might be an issue.
    Below is error report
    [2013-10-08 19:54:54 CDT] <main>  INFO: Transporter is skipping bundle update check: Already checked recently.
    [2013-10-08 19:54:54 CDT] <main>  INFO: MD5 checksum calculation in the transporter will be skipped.
    [2013-10-08 19:54:54 CDT] <main>  INFO: Logging level set to eXtreme
    [2013-10-08 19:54:54 CDT] <main>  INFO: Logging configured successfully.
    [2013-10-08 19:54:54 CDT] <main> DEBUG: Attempting refresh of configuration data from https://contentdelivery.itunes.apple.com/transporter/Defaults.properties
    [2013-10-08 19:54:54 CDT] <main> DEBUG: Configuration refresh successful.
    [2013-10-08 19:54:54 CDT] <main> DEBUG: Saving configuration to local path: /Users/marie/.itmstransporter/Defaults.properties
    [2013-10-08 19:54:54 CDT] <main>  INFO: iTMSTransporter : iTunes Store Transporter [1.7.9]
    [2013-10-08 19:54:54 CDT] <main>  INFO: OS identifier: Mac OS X 10.7.5 (x86_64); jvm=24.0-b26; jre=1.7.0-internal-root_2013_05_13_10_55-b00
    [2013-10-08 19:54:54 CDT] <main>  INFO: Memory: [JVM] 61M free, 80M total, 910M max [System] (Physical) 1506M free, 4096M total (Swap) 64M free, 64M total
    [2013-10-08 19:54:54 CDT] <main>  INFO: Client: Application Loader 2.9 (439)
    [2013-10-08 19:54:54 CDT] <main>  INFO: Upload mode selected.
    [2013-10-08 19:54:54 CDT] <main> DBG-X: Memory: [JVM] 61M free, 80M total, 910M max [System] (Physical) 1506M free, 4096M total (Swap) 64M free, 64M total
    [2013-10-08 19:54:54 CDT] <main> DBG-X: Using operation named: authenticateForTransportDiscovery
    [2013-10-08 19:54:54 CDT] <main> DBG-X: Apple's web service operation input parameters:
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Application = iTMSTransporter
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter BaseVersion = 1.7.8.2
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Client = Application Loader
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter ClientVersion = 2.9 (439)
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter OSIdentifier = Mac OS X 10.7.5 (x86_64); jvm=24.0-b26; jre=1.7.0-internal-root_2013_05_13_10_55-b00
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Password = **hidden value**
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter TransporterArguments = -m upload -u [email protected] -p **hidden value** -f /var/folders/f3/1vcrgzbd5zj3z22w273qbxl40000gn/T/642092166.itmsp -checksumValidation false -indicator true -v eXtreme -Dtransporter.client=Application Loader -Dtransporter.client.version=2.9 (439)
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Username = [email protected]
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Version = 1.7.9
    [2013-10-08 19:54:54 CDT] <main>  INFO: id = 20131008195454-220
    [2013-10-08 19:54:54 CDT] <main> DBG-X: Apple's web service operation return value:
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter TransportHosts.Aspera = [vgr105.apple.com:33001, vgr106.apple.com:33001]
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter PreferredTransports = [Aspera, Signiant, DAV]
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter TransportHosts.Signiant = [sgr205.apple.com:44001, sgr206.apple.com:44001]
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter TransportHosts.DAV = [itmsdav.apple.com:443]
    [2013-10-08 19:54:54 CDT] <main>  INFO: Examining the package at: /var/folders/f3/1vcrgzbd5zj3z22w273qbxl40000gn/T/642092166.itmsp
    [2013-10-08 19:54:54 CDT] <main>  INFO: Ensuring that package has well formed metadata file...
    [2013-10-08 19:54:54 CDT] <main> DEBUG: Getting case-sensitive metadata xml filename...
    [2013-10-08 19:54:54 CDT] <main>  INFO: Gathering the list of valid files from the package ...
    [2013-10-08 19:54:54 CDT] <main> DEBUG:   505app.zip will be verified by Apple's web service to determine if it is a valid file.
    [2013-10-08 19:54:54 CDT] <main> DEBUG:   metadata.xml will be verified by Apple's web service to determine if it is a valid file.
    [2013-10-08 19:54:54 CDT] <main>  INFO: Finished gathering the list of valid files from the package.
    [2013-10-08 19:54:54 CDT] <main> DEBUG:   Case-sensitive metadata filename is: metadata.xml
    [2013-10-08 19:54:54 CDT] <main>  INFO: Performing authentication of package 642092166.itmsp ...
    [2013-10-08 19:54:54 CDT] <main> DBG-X: Memory: [JVM] 40M free, 80M total, 910M max [System] (Physical) 1505M free, 4096M total (Swap) 64M free, 64M total
    [2013-10-08 19:54:54 CDT] <main> DBG-X: Deflated 453 bytes to 360
    [2013-10-08 19:54:54 CDT] <main> DBG-X: Using operation named: validateMetadata
    [2013-10-08 19:54:54 CDT] <main> DBG-X: Apple's web service operation input parameters:
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Application = iTMSTransporter
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter BaseVersion = 1.7.8.2
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Client = Application Loader
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter ClientVersion = 2.9 (439)
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Files = [505app.zip, metadata.xml]
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Metadata = <?xml version="1.0" encoding="UTF-8"?>
    <package version="software4.7" xmlns="http://apple.com/itunes/importer">
        <software_assets apple_id="642092166">
            <asset type="bundle">
                <data_file>
                    <file_name>505app.zip</file_name>
                    <checksum type="md5">31719646019410fc27c1e5679a4f06f9</checksum>
                    <size>8247180</size>
                </data_file>
            </asset>
        </software_assets>
    </package>
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter MetadataChecksum = 4503857f07b1792721121d8f0fb85e29
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter MetadataCompressed = (suppressed)
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter OSIdentifier = Mac OS X 10.7.5 (x86_64); jvm=24.0-b26; jre=1.7.0-internal-root_2013_05_13_10_55-b00
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter PackageName = 642092166.itmsp
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter PackageSize = 8247633
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Password = **hidden value**
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter TransporterArguments = -m upload -u [email protected] -p **hidden value** -f /var/folders/f3/1vcrgzbd5zj3z22w273qbxl40000gn/T/642092166.itmsp -checksumValidation false -indicator true -v eXtreme -Dtransporter.client=Application Loader -Dtransporter.client.version=2.9 (439)
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Username = [email protected]
    [2013-10-08 19:54:54 CDT] <main> DBG-X:   parameter Version = 1.7.9
    [2013-10-08 19:54:54 CDT] <main>  INFO: id = 20131008195454-122
    [2013-10-08 19:54:55 CDT] <main> DBG-X: Apple's web service operation return value:
    [2013-10-08 19:54:55 CDT] <main> DBG-X:   parameter CPUToken = b90a8eb2-83ba-41dd-9be5-3e96b7e95c89/1381280095727
    [2013-10-08 19:54:55 CDT] <main> DBG-X:   parameter FileSizes = {505app.zip=8247180}
    [2013-10-08 19:54:55 CDT] <main> DBG-X:   parameter AssetsToDescribe = [{UTI=com.apple.ipa, Role=source, ShouldDescribeAsset=true, Filename=505app.zip}]
    [2013-10-08 19:54:55 CDT] <main> DBG-X:   parameter Checksums = {505app.zip=31719646019410fc27c1e5679a4f06f9}
    [2013-10-08 19:54:55 CDT] <main> DBG-X:   parameter Success = true
    [2013-10-08 19:54:55 CDT] <main> DBG-X:   parameter MinimumFileSizeThresholdForCheckum = 104857600
    [2013-10-08 19:54:55 CDT] <main> DBG-X:   parameter FilesToUpload = [metadata.xml, 505app.zip]
    [2013-10-08 19:54:55 CDT] <main> DBG-X:   parameter ProviderNameForToken = MrsNetworkLLC
    [2013-10-08 19:54:55 CDT] <main>  INFO: The list of files requested for upload by Apple is: [metadata.xml, 505app.zip].  These are the files that will be uploaded.
    [2013-10-08 19:54:55 CDT] <main> DEBUG: Using token file path /Users/marie/.itmstransporter/UploadTokens/Marie-home-iMac.local_MrsNetworkLLC_ 642092166.itmsp.token
    [2013-10-08 19:54:55 CDT] <main> DEBUG: Attempting exclusive file lock on token file
    [2013-10-08 19:54:55 CDT] <main> DEBUG: Token exists, examining
    [2013-10-08 19:54:56 CDT] <main> DEBUG: Token pid: 83498, found process = false; my pid: 1439
    [2013-10-08 19:54:56 CDT] <main> DEBUG: Reusing existing token: 1dc581dd-1400-4140-9dca-03cd839141fd/1381116618620
    [2013-10-08 19:54:56 CDT] <main> DEBUG: Set token: 1dc581dd-1400-4140-9dca-03cd839141fd/1381116618620
    [2013-10-08 19:54:56 CDT] <main>  INFO: Starting media analysis of assets
    [2013-10-08 19:54:56 CDT] <main> DEBUG: Handling asset: filename=505app.zip,uti=com.apple.ipa,role=source,describe=true
    [2013-10-08 19:54:56 CDT] <main> DEBUG: Using container type tool name and version: iOS App Describer:1.22
    [2013-10-08 19:54:56 CDT] <main> DEBUG: Using path: /var/folders/f3/1vcrgzbd5zj3z22w273qbxl40000gn/T/642092166.itmsp/505app.zip
    [2013-10-08 19:54:59 CDT] <main> DEBUG: Asset successfully described: com.apple.jingle.leghorn.software.AbstractSoftwareDescriber$1@41acbb99
    [2013-10-08 19:54:59 CDT] <main>  INFO: Asset media analysis has completed
    [2013-10-08 19:54:59 CDT] <main> DBG-X: Memory: [JVM] 49M free, 101M total, 910M max [System] (Physical) 1451M free, 4096M total (Swap) 64M free, 64M total
    [2013-10-08 19:54:59 CDT] <main> DBG-X: Deflated 453 bytes to 360
    [2013-10-08 19:55:00 CDT] <main> DBG-X: Deflated 322932 bytes to 22831
    [2013-10-08 19:55:00 CDT] <main> DBG-X: Using operation named: validateAssets
    [2013-10-08 19:55:00 CDT] <main> DBG-X: Apple's web service operation input parameters:
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter Application = iTMSTransporter
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter BaseVersion = 1.7.8.2
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter CPUToken = 1dc581dd-1400-4140-9dca-03cd839141fd/1381116618620
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter Client = Application Loader
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter ClientVersion = 2.9 (439)
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter Files = [505app.zip, metadata.xml]
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter MetadataChecksum = 4503857f07b1792721121d8f0fb85e29
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter MetadataCompressed = (suppressed)
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter OSIdentifier = Mac OS X 10.7.5 (x86_64); jvm=24.0-b26; jre=1.7.0-internal-root_2013_05_13_10_55-b00
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter PackageName = 642092166.itmsp
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter PackageSize = 8247633
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter Password = **hidden value**
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter Transport = Aspera
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter TransporterArguments = -m upload -u [email protected] -p **hidden value** -f /var/folders/f3/1vcrgzbd5zj3z22w273qbxl40000gn/T/642092166.itmsp -checksumValidation false -indicator true -v eXtreme -Dtransporter.client=Application Loader -Dtransporter.client.version=2.9 (439)
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter Username = [email protected]
    [2013-10-08 19:55:00 CDT] <main> DBG-X:   parameter Version = 1.7.9
    [2013-10-08 19:55:00 CDT] <main>  INFO: id = 20131008195500-804
    [2013-10-08 19:55:01 CDT] <main> DBG-X: Apple's web service operation return value:
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter ErrorMessage = ERROR ITMS-9000: "Unsupported Architectures. Your executable contains unsupported architectures '[12-11]'." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage
    (1102)
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter CPUToken = 1dc581dd-1400-4140-9dca-03cd839141fd/1381116618620
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter FileSizes = {505app.zip=8247180}
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter AssetsToDescribe = [{UTI=com.apple.ipa, Role=source, ShouldDescribeAsset=true, Filename=505app.zip}]
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter Checksums = {505app.zip=31719646019410fc27c1e5679a4f06f9}
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter ErrorCode = 1102
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter Success = false
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter Errors = [ERROR ITMS-9000: "Unsupported Architectures. Your executable contains unsupported architectures '[12-11]'." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)]
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter MinimumFileSizeThresholdForCheckum = 104857600
    [2013-10-08 19:55:01 CDT] <main> DBG-X:   parameter FilesToUpload = [metadata.xml, 505app.zip]
    [2013-10-08 19:55:01 CDT] <main> ERROR: Apple's web service operation was not successful
    [2013-10-08 19:55:01 CDT] <main> ERROR: Unable to authenticate the package: 642092166.itmsp
    [2013-10-08 19:55:01 CDT] <main> ERROR: ERROR ITMS-9000: "Unsupported Architectures. Your executable contains unsupported architectures '[12-11]'." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
    [2013-10-08 19:55:01 CDT] <main> DBG-X: The error code is: 1102
    [2013-10-08 19:55:01 CDT] <main>  INFO: Done performing authentication.
    [2013-10-08 19:55:02 CDT] <main> DBG-X: Returning 1
    Package Summary:
    1 package(s) were not uploaded because they had problems:
              /var/folders/f3/1vcrgzbd5zj3z22w273qbxl40000gn/T/642092166.itmsp - Error Messages:
                        Apple's web service operation was not successful
                        Unable to authenticate the package: 642092166.itmsp
                        ERROR ITMS-9000: "Unsupported Architectures. Your executable contains unsupported architectures '[12-11]'." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)

    if you mac os is not 10.8.5 and you ard using Application Loader 2.9,you should update your system,I know apple doc say:10.7 is ok,but i update my system to 10.8.5 from 10.8.4, every thing is ok, i dont konw the reason,maybe some error exist at application loader,so you can have a try,good luck.

  • Bw 7.0 uploading data through r3

    hi all ,
                  can anybody plz send me any document or any snap short for uploading data through r3 at this time i make the connection between r3 and bw system
    and create source system plz tell me the procedure for this
    thanks.

    dear Ankit,
    please refer to the following link of best practices:
    http://help.sap.com/bp_biv270/html/BW/I08_EN_DE.htm
    on this page, click on the BI connectivity link in the building blocks. This doc will give u a detailed step by step approach for your problem.
    hope it helps...

  • Adobe Send - Problem with uploading files. When is this going to get fixed?

    When is the Adobe Send problem with uploading files going to get fixed. Similar to others - I have tried and tried to make Adobe Send work and get an error. I have tried to upload the file and it looks like it uploads and then - it is nowhere to be found.
    I then go to Adobe Send Now and it works fine.

    The problem is the same as described in other similar threads.
    I have a 57 MB PowerPoint file I am trying to send using Adobe Send. I go through the normal steps to identify the file and select recipients and then send the file. After the file completes the upload - an error saying there was a problem comes up and the file is not uploaded.
    I have tried to upload the file to the site with similar results - error and the file doesn't go.
    I can go to the old SendNow site and it works flawlessly.
    If I need to get screenshots - let me know. There are several other threads describing this same problem. It isn't something new or not heard of before.
    Sent from my iPod

  • Encounter Problem when upload Data for T-Code CJ92

    Dear All,
    I want to upload Standard WBS element through transaction code CJ92.  I am encountering a problem when I want to upload more than 13 Standard WBS for a project using recording (SHDB). 
    I have also tried to upload data through BAPI u201CBAPI_BUS2054_CREATE_MULTIu201D but this BAPI didnu2019t work for standard WBS.
    Please provide me a solution to upload Standard WBS (CJ92).

    Thanks Shyam,
    But this BAPI "BAPI_PROJECT_MAINTAIN" works only for operative WBS and I want to upload Standard WBS.  The T-Code to create Standard WBS is CJ92. The screen upload can't be possible due to screen limitations.
    Please provide me any solution to upload Standard WBS.
    regards,
    Saif

  • Problem in Uploading a File by Applet

    Hi Members,
    * I have faced problem while uploading a file from client to server by ftp protocol using APPLET(No JSP) only
    * I am getting exception while running....
    * My source code is as follows,
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.net.URLConnection;
    public class UploadAndDownload extends Applet implements ActionListener {
         Button upload;
         Button browse;
         TextField filename;
         File source = null;
         Label name;
         StringBuffer sb;
         BufferedInputStream bis = null;
         BufferedOutputStream bos = null;
         public void init() {
              setLayout(new FlowLayout());
              upload = new Button("Upload");
              browse = new Button("Browse");
              name = new Label("Filename");
              filename = new TextField("", 45);
              add(name);
              add(filename);
              add(upload);
              add(browse);
              upload.addActionListener(this);
              browse.addActionListener(this);
         public void actionPerformed(ActionEvent evt) {
              // Code for browsing a file
              String input_file_name = "";
              if (evt.getSource() == browse)
                   Frame parent = new Frame();
                   FileDialog fd = new FileDialog(parent, "Select a file", FileDialog.LOAD);
                   fd.setVisible(true);
                   input_file_name = fd.getFile();
                   filename.setText(input_file_name);
                   // Gets the file from the file dialog and assign it to the source
                   source = new File(input_file_name);
                   repaint();
              // Code for Uploading a file to the server
              if (evt.getSource() == upload) {
                   // Appending the server pathname in string buffer
                   sb = new StringBuffer("ftp://");
                   sb.append("2847");
                   sb.append(':');
                   sb.append("Websphere25");
                   sb.append("@");
                   sb.append("172.16.1.111");
                   sb.append('/');
                   sb.append(input_file_name);
                   sb.append(";type=i");
                   try {
                        URL url = new URL(sb.toString());
                        URLConnection urlc = url.openConnection();
                        bos = new BufferedOutputStream(urlc.getOutputStream());
                        bis = new BufferedInputStream(new FileInputStream(source));
                        int i;
                        // Read from the inputstream and write it to the outputstream
                        while ((i = bis.read()) != -1) {
                             bos.write(i);
                   } catch (MalformedURLException e) {
                        e.printStackTrace();
                   } catch (IOException e) {
                        e.printStackTrace();
                   } finally {
                        if (bis != null)
                             try {
                                  bis.close();
                             } catch (IOException ioe) {
                                  ioe.printStackTrace();
                        if (bos != null)
                             try {
                                  bos.close();
                             } catch (IOException ioe) {
                                  ioe.printStackTrace();
    MY EXCEPTION IS,
    Exception in thread "AWT-EventQueue-2" java.security.AccessControlException: access denied (java.net.SocketPermission 172.16.1.111:80 connect,resolve)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.ftp.FtpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.ftp.FtpURLConnection.getOutputStream(Unknown Source)
         at UploadAndDownload.actionPerformed(UploadAndDownload.java:68)
         at java.awt.Button.processActionEvent(Unknown Source)
         at java.awt.Button.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)* Please let me know what problem in my code....
    * Thanks in advance....

    * Thanks for your reply....
    * I have signed my policy file by giving AllPermission and mentioned in java.security file in bin folder....
    * My question is , by giving AllPermission , can we access and do all permissions like ( SecurityPermission, AWTPermission, SocketPermission, NetPermission, FilePermission, SecurityPermission etc )...
    * My policy file is looks like follow,
    /* AUTOMATICALLY GENERATED ON Tue Apr 16 17:20:59 EDT 2002*/
    /* DO NOT EDIT */
    grant {
      permission java.security.AllPermission;
    };* If i signed the policy like above, and when i run the applet file in InternetExplorer now , it thorws the following exception on my console,
    java.net.ProtocolException: cannot write to a URLConnection if doOutput=false - call setDoOutput(true)
         at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(Unknown Source)
         at sun.net.www.protocol.ftp.FtpURLConnection.getOutputStream(Unknown Source)
         at UploadAndDownload.actionPerformed(UploadAndDownload.java:68)
         at java.awt.Button.processActionEvent(Unknown Source)
         at java.awt.Button.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)* Please let me know , how to solve this and give me your suggestion on the above process...
    * Thanks in advance...
    Regards,
    JavaImran

  • Problem with uploading a file in Clustered Environment

    Hi,
    I have a problem with uploading a file in a clustered environment. I have an iview component which facilitates an upload action of an xml config file. The problem is that the upload of the modified XML file is reflected only in the central instance of the cluster and not in the dialog instances. The dialog instances hold the old config file.
    Is there any solution to upload the file to all the nodes in the cluster.
    Thanks
    Kiran

    Hi,
    This is a known problem with clustered environment. Remember that your portal component runs on just on dialog instance and it doesn't automatically have access to the other nodes.  However, there are some ways to get around this
    1. Use KM to store files. KM is a common repository for all application servers and therefore you needn't worry more
    2. Use an external batch oriented product (suresync/robocopy) to synch folders on the different DIs. You basically use your existing portal component, but there is a batch job which makes sure the upload folder is identical on all DIs (however, there is a slight delay depending on how often you run the batch job)
    3. Store the files on a shared disk directly from the portal component.
    Cheers
    Dagfinn

Maybe you are looking for

  • Low memory in SCE 8000

    We are constantly getting alarms regarding low memory We are monitring the following OID memAvailReal 1.3.6.1.4.1.2021.4.6.0 memTotalReal 1.3.6.1.4.1.2021.4.5.0 We have the total (memTotalReal) from which we substract the available free memory (memAv

  • Table to display change logs for transaction VK13 with certain condition.

    Hi , Please let me know if there is any table from which we can get the change log details of condition records with transaction VK13 This is required to get information on old value and new updated value for the condition. Thanks Ravi Naik

  • Why the two objects are not add by java

    like below Integer i1=new Integer(5); Integer i2=new Integer(5); System.out.println(i1+i2); if i run this program out put is 10 but Object o1=new Object(); Object o2=new Object(); System.out.println(o1+o2); gives compilation error. plz help me to sol

  • Example code for JavaEE 6 Tutorial Vol. II

    Hi, I installed the "Java EE 6 Tutorial" component for GlassFish v3. Now I can open the examples from the Tutorial Volume I (e. g. "timersession"), but I can't find the "simplemessage" example from Volume II, which is supposed to be located in "tut-i

  • Iphoto for mac fail to download

    my iPhoto fail to download in my macbook air