Couldn't upload

Hi,
Pls fin the error in this program. I am unable to upload.
Regards,
Karthik
Program ID       : ZRFC_RUSHORDER
Transaction Code : Z*
Description      : RFC For Sales Process using        Transaction Method calling
                   3 Transactions VA01,VL23 & VF06
Change History
    Date   |   Programmer   |   Corr. #   |   Description
           |                |             |
           |                |             |
FUNCTION ZRFC_RUSHORDER .
""Local interface:
*"  EXPORTING
*"     VALUE(SUBRC) LIKE  SYST-SUBRC
*"  TABLES
*"      MESSTAB STRUCTURE  BDCMSGCOLL OPTIONAL
*"      RO_HEADER STRUCTURE  ZSD_HEADER
*"      RO_ITEM STRUCTURE  ZSD_ITEM
       INTERNAL TABLES,STRUCTURES & VARIABLES
*TABLES : ZSO_CREATE_TEXT.
  DATA: CTU      LIKE  APQI-PUTACTIVE,
        MODE     LIKE  APQI-PUTACTIVE,
        UPDATE   LIKE  APQI-PUTACTIVE,
        GROUP    LIKE  APQI-GROUPID,
        USER     LIKE  APQI-USERID,
        KEEP     LIKE  APQI-QERASE,
        HOLDDATE LIKE  APQI-STARTDATE,
        NODATA   LIKE  APQI-PUTACTIVE.
  DATA: T_VBELN LIKE VBFA-VBELN.
data: MESSTAB1  LIKE TABLE OF BDCMSGCOLL  WITH HEADER LINE.
DATA: NODATA_CHARACTER VALUE ' '.
  DATA : SORDER_FINAL LIKE VBAK-VBELN,
         SORDER(15)   TYPE C,
         V_CODE(2)    TYPE C,
         V_PLANT     LIKE EKPO-WERKS,
       YEAR_CONVERSION(1) TYPE C.
  DATA : WA_ZRUSH_ORDER LIKE ZRUSH_ORDER.
  DATA : V_DATE LIKE SY-DATUM,
         V_TIME LIKE SY-UZEIT.
  DATA : SESSION_NAM(30) TYPE C.
  CTU = ' '.
  MODE = 'N'.
  USER = SY-UNAME.
  CONCATENATE SY-UNAME '_' SY-DATUM '_' SY-UZEIT INTO
                                          SESSION_NAM.
  GROUP = 'RUSH_ORDER'.
  KEEP = 'X'.
  UPDATE = 'L'.
  HOLDDATE = ''.
  NODATA = '/'.
  SUBRC = 0.
*CREATING SESSSION
  PERFORM OPEN_GROUP USING GROUP USER KEEP HOLDDATE CTU.
  LOOP AT RO_HEADER.
    MOVE RO_HEADER-SORDER TO SORDER.
    V_PLANT = SORDER+0(4).
    SELECT SINGLE CODE INTO V_CODE FROM ZPLANT_NUMER_IBS WHERE PLANT = V_PLANT.
    IF SORDER+4(4) = '2005'.
      YEAR_CONVERSION = 'E'.
    ELSEIF SORDER+4(4) = '2006'.
      YEAR_CONVERSION = 'F'.
    ELSEIF SORDER+4(4) = '2007'.
      YEAR_CONVERSION = 'G'.
    ELSEIF SORDER+4(4) = '2008'.
      YEAR_CONVERSION = 'H'.
    ELSEIF SORDER+4(4) = '2009'.
      YEAR_CONVERSION = 'J'.
    ELSEIF SORDER+4(4) = '2010'.
      YEAR_CONVERSION = 'K'.
    ELSEIF SORDER+4(4) = '2011'.
      YEAR_CONVERSION = 'L'.
    ELSEIF SORDER+4(4) = '2012'.
      YEAR_CONVERSION = 'M'.
    ELSEIF SORDER+4(4) = '2013'.
      YEAR_CONVERSION = 'N'.
    ELSEIF SORDER+4(4) = '2014'.
      YEAR_CONVERSION = 'P'.
    ELSEIF SORDER+4(4) = '2015'.
      YEAR_CONVERSION = 'Q'.
    ELSEIF SORDER+4(4) = '2016'.
      YEAR_CONVERSION = 'R'.
    ELSEIF SORDER+4(4) = '2017'.
      YEAR_CONVERSION = 'S'.
    ELSEIF SORDER+4(4) = '2018'.
      YEAR_CONVERSION = 'T'.
    ELSEIF SORDER+4(4) = '2019'.
      YEAR_CONVERSION = 'U'.
    ELSEIF SORDER+4(4) = '2020'.
      YEAR_CONVERSION = 'V'.
    ELSEIF SORDER+4(4) = '2021'.
      YEAR_CONVERSION = 'W'.
    ELSEIF SORDER+4(4) = '2022'.
      YEAR_CONVERSION = 'X'.
    ELSEIF SORDER+4(4) = '2023'.
      YEAR_CONVERSION = 'Y'.
    ELSEIF SORDER+4(4) = '2024'.
      YEAR_CONVERSION = 'Z'.
    ELSEIF SORDER+4(4) = '2025'.
      YEAR_CONVERSION = 'A'.
    ELSEIF SORDER+4(4) = '2026'.
      YEAR_CONVERSION = 'B'.
    ELSEIF SORDER+4(4) = '2027'.
      YEAR_CONVERSION = 'C'.
    ENDIF.
    CONCATENATE  YEAR_CONVERSION V_CODE SORDER+8(7) INTO SORDER_FINAL.
    CLEAR YEAR_CONVERSION.
    CLEAR V_CODE.
    CLEAR V_PLANT.
Text Element Creation for Sales order.
    ZSO_CREATE_TEXT-SORDER      = SORDER_FINAL.
    ZSO_CREATE_TEXT-LR_NUMBER   = RO_HEADER-LR_NUMBER.
    ZSO_CREATE_TEXT-TRANSPORTER = RO_HEADER-TRANSPORTER.
    ZSO_CREATE_TEXT-Z003        = RO_HEADER-Z003.
    ZSO_CREATE_TEXT-Z004        = RO_HEADER-Z004.
    INSERT ZSO_CREATE_TEXT.
    PERFORM BDC_DYNPRO      USING 'SAPMV45A' '0101'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                  'VBAK-SPART'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '/00'.
    PERFORM BDC_FIELD       USING 'VBAK-AUART'
                                  'ZKSO'.                   "AUART_001.
    PERFORM BDC_FIELD       USING 'VBAK-VKORG'
                                  RO_HEADER-VKORG.          "VKORG_002.
    PERFORM BDC_FIELD       USING 'VBAK-VTWEG'
                                  RO_HEADER-VTWEG.          "VTWEG_003.
    PERFORM BDC_FIELD       USING 'VBAK-SPART'
                                  RO_HEADER-SPART.          "SPART_004.
Sales Order Date insertion.......
    PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '=KKAU'.
    PERFORM BDC_FIELD       USING 'VBAK-VBELN'
                                  SORDER_FINAL.
    PERFORM BDC_FIELD       USING 'KUAGV-KUNNR'
                                  RO_HEADER-SP.
    PERFORM BDC_FIELD       USING 'KUWEV-KUNNR'
                                  RO_HEADER-SH.
    PERFORM BDC_FIELD       USING 'VBKD-BSTKD'
                                  RO_HEADER-REF_PO.
    PERFORM BDC_FIELD       USING 'VBKD-ZTERM'
                                  RO_HEADER-ZTERM.
    WRITE RO_HEADER-SODATE TO RO_HEADER-SODATE.
    PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4002'.
    perform bdc_field       using 'BDC_OKCODE'
                                '=T\03'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                  'VBAK-AUDAT'.
    PERFORM BDC_FIELD       USING 'VBAK-AUDAT'
                                  RO_HEADER-SODATE.  "Document Date
    PERFORM BDC_FIELD       USING 'VBKD-PRSDT'
                                  RO_HEADER-SODATE.  "Pricing Date
Billing Screen    ***********************
    perform bdc_dynpro      using 'SAPMV45A' '4002'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '/EBACK'.
    perform bdc_field       using 'BDC_CURSOR'
                                'VBKD-FKDAT'.
    PERFORM BDC_FIELD       USING 'VBKD-FKDAT'
                                  RO_HEADER-SODATE.  "Billing date
    PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '=KKO1'.
    PERFORM BDC_FIELD       USING 'KUAGV-KUNNR'
                                  RO_HEADER-SP.             "KUNNR_006.
    PERFORM BDC_FIELD       USING 'KUWEV-KUNNR'
                                  RO_HEADER-SH.             "KUNNR_007.
    PERFORM BDC_FIELD       USING 'VBKD-BSTKD'
                                  RO_HEADER-REF_PO.         "BSTKD_008.
    PERFORM BDC_FIELD       USING 'RV45A-KETDAT'
                                  RO_HEADER-SODATE. "Delivery Date.
    PERFORM BDC_FIELD       USING 'VBKD-ZTERM'
                                  RO_HEADER-ZTERM.          "ZTERM_011.
************************Added for test 25-02******************
    PERFORM BDC_FIELD       USING 'RV45A-KETDAT'        " CNGD FROM 'KEDAT' TO 'KETDAT'.
                                  RO_HEADER-SODATE.     "REQ DELVY DATE.
    PERFORM BDC_FIELD       USING 'VBKD-PRSDT'          "CNGD FROM 'RV45A' TO 'VBKD'.
                                  RO_HEADER-SODATE.     "PRICING DATE.
************************Added for test 25-02******************
*Dont DELETE, For Future Use of Inco terms 1 & 2.
*PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                             'VBKD-INCO2'.
*PERFORM BDC_FIELD       USING 'VBKD-INCO1'
                             RO_HEADER-INCO1.  "INCO1_012.
*PERFORM BDC_FIELD       USING 'VBKD-INCO2'
                             RO_HEADER-INCO2.  "INCO2_013.
Header condition types......................................
    PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5002'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '=V69A_KOAN'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                  'KOMV-KSCHL(05)'.
    IF RO_HEADER-KSCHL1 IS NOT INITIAL.
      PERFORM BDC_DYNPRO      USING  'SAPMV45A' '5002'.
      PERFORM BDC_FIELD       USING  'BDC_OKCODE'
                                     '=V69A_KOAN'.
      PERFORM BDC_FIELD       USING  'BDC_CURSOR'
                                     'KOMV-KSCHL(04)'.
      PERFORM BDC_FIELD       USING  'BDC_CURSOR'
                                     'KOMV-KBETR(02)'.
      PERFORM BDC_FIELD       USING  'KOMV-KSCHL(02)' RO_HEADER-KSCHL1.
      PERFORM BDC_FIELD       USING  'KOMV-KBETR(02)' RO_HEADER-KBETR1.
    ENDIF.
    IF RO_HEADER-KSCHL2 IS NOT INITIAL.
      PERFORM BDC_DYNPRO      USING  'SAPMV45A' '5002'.
      PERFORM BDC_FIELD       USING  'BDC_OKCODE'
                                     '=V69A_KOAN'.
      PERFORM BDC_FIELD       USING  'BDC_CURSOR'
                                     'KOMV-KSCHL(04)'.
      PERFORM BDC_FIELD       USING  'BDC_CURSOR'
                                     'KOMV-KBETR(02)'.
      PERFORM BDC_FIELD       USING  'KOMV-KSCHL(02)' RO_HEADER-KSCHL2.
      PERFORM BDC_FIELD       USING  'KOMV-KBETR(02)' RO_HEADER-KBETR2.
    ENDIF.
    IF RO_HEADER-KSCHL3 IS NOT INITIAL.
      PERFORM BDC_DYNPRO      USING  'SAPMV45A' '5002'.
      PERFORM BDC_FIELD       USING  'BDC_OKCODE'
                                     '=V69A_KOAN'.
      PERFORM BDC_FIELD       USING  'BDC_CURSOR'
                                     'KOMV-KSCHL(04)'.
      PERFORM BDC_FIELD       USING  'BDC_CURSOR'
                                     'KOMV-KBETR(02)'.
      PERFORM BDC_FIELD       USING  'KOMV-KSCHL(02)' RO_HEADER-KSCHL3.
      PERFORM BDC_FIELD       USING  'KOMV-KBETR(02)' RO_HEADER-KBETR3.
    ENDIF.
*change on 11.04.2006 for adding rounding off condition type.
    IF RO_HEADER-KSCHL4 IS NOT INITIAL.
      PERFORM BDC_DYNPRO      USING  'SAPMV45A' '5002'.
      PERFORM BDC_FIELD       USING  'BDC_OKCODE'
                                     '=V69A_KOAN'.
      PERFORM BDC_FIELD       USING  'BDC_CURSOR'
                                     'KOMV-KSCHL(04)'.
      PERFORM BDC_FIELD       USING  'BDC_CURSOR'
                                     'KOMV-KBETR(02)'.
      PERFORM BDC_FIELD       USING  'KOMV-KSCHL(02)' RO_HEADER-KSCHL4.
      PERFORM BDC_FIELD       USING  'KOMV-KBETR(02)' RO_HEADER-KBETR4.
    ENDIF.
    PERFORM BDC_DYNPRO      USING  'SAPMV45A' '5002'.
    PERFORM BDC_FIELD       USING  'BDC_OKCODE'
                                   '/EBACK'.
Dont DELETE, For Future Use  of : Sales Person Data.................
*PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
*PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                               '=HEAD'.
*perform bdc_dynpro      using 'SAPMV45A' '4002'.
*perform bdc_field       using 'BDC_OKCODE'
                             '=T\08'.
*perform bdc_dynpro      using 'SAPMV45A' '4002'.
*perform bdc_field       using 'BDC_OKCODE'
                             '=PAAN'.
*perform bdc_field       using 'BDC_CURSOR'
                             'GVS_TC_DATA-REC-PARTNER(09)'.
*perform bdc_field       using 'GV_FILTER'
                              'PARALL'. "GV_FILTER_024.
*perform bdc_field       using 'GVS_TC_DATA-REC-PARVW(09)'
                              'VE'."REC-PARVW_09_025.
*perform bdc_field       using 'GVS_TC_DATA-REC-PARTNER(09)'
                              '0'. "REC-PARTNER_09_026.
*perform bdc_dynpro      using 'SAPMV45A' '4002'.
*perform bdc_field       using 'BDC_OKCODE'
                             '/EBACK'.
*perform bdc_field       using 'BDC_CURSOR'
                             'GVS_TC_DATA-REC-PARTNER(09)'.
*perform bdc_field       using 'GV_FILTER'
                             'PARALL'. "GV_FILTER_027.
    PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '=POAN'.
    PERFORM BDC_FIELD       USING 'KUAGV-KUNNR'
                                  RO_HEADER-SP.             "KUNNR_006.
    PERFORM BDC_FIELD       USING 'KUWEV-KUNNR'
                                  RO_HEADER-SH.             "KUNNR_007.
    PERFORM BDC_FIELD       USING 'VBKD-BSTKD'
                                  RO_HEADER-REF_PO.         "BSTKD_008.
*FETCHING LINE ITEM DATA.
    LOOP AT RO_ITEM WHERE  SORDER =  RO_HEADER-SORDER.
      PERFORM BDC_DYNPRO   USING   'SAPMV45A'     '4001'.
      PERFORM BDC_FIELD    USING   'BDC_OKCODE'   '=POAN'.
      PERFORM BDC_FIELD    USING    'RV45A-MABNR(02)'  RO_ITEM-MATNR.
      PERFORM BDC_FIELD    USING    'RV45A-KWMENG(02)' RO_ITEM-QTY.
     PERFORM BDC_FIELD    USING    'VBAP-VRKME(02)' RO_ITEM-UOM. " For Future Use
      PERFORM BDC_FIELD    USING    'VBAP-WERKS(02)'  RO_ITEM-PLANT.
      PERFORM BDC_FIELD    USING    'VBAP-LGORT(02)'  RO_ITEM-SLOC.
      PERFORM BDC_FIELD    USING    'VBAP-CHARG(02)'  RO_ITEM-BATCH.
*FREE DELIVERY CHECK CHANGING OF ITEMCATEGORY : TANN.
      IF RO_ITEM-KBETR1 IS INITIAL AND RO_ITEM-KBETR2 IS INITIAL.
        PERFORM BDC_FIELD       USING 'VBAP-PSTYV(02)'
                                      'ZANN'.
      ELSE.
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '/00'.
Condition Types For The Items
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                       '=PKO1'.
        PERFORM BDC_FIELD       USING 'RV45A-VBAP_SELKZ(01)' 'X'.
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '=V69A_KOAN'.
        PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                      'KOMV-KSCHL(02)'.
Condition Type 1...........
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM BDC_FIELD       USING 'KOMV-KSCHL(02)' RO_ITEM-KSCHL1.
        PERFORM BDC_FIELD       USING 'KOMV-KBETR(02)' RO_ITEM-KBETR1.
Condition Type 2...........
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '=V69A_KOAN'.
        PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                      'KOMV-KSCHL(02)'.
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM BDC_FIELD       USING 'KOMV-KSCHL(02)' RO_ITEM-KSCHL2.
        PERFORM BDC_FIELD       USING 'KOMV-KBETR(02)' RO_ITEM-KBETR2.
Condition Type 3.............
        IF RO_ITEM-KSCHL3 IS NOT INITIAL.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=V69A_KOAN'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'KOMV-KSCHL(02)'.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'KOMV-KSCHL(02)' RO_ITEM-KSCHL3.
          PERFORM BDC_FIELD       USING 'KOMV-KBETR(02)' RO_ITEM-KBETR3.
        ENDIF.
Condition Type 4..............
        IF RO_ITEM-KSCHL4 IS NOT INITIAL.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=V69A_KOAN'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'KOMV-KSCHL(02)'.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'KOMV-KSCHL(02)' RO_ITEM-KSCHL4.
          PERFORM BDC_FIELD       USING 'KOMV-KBETR(02)' RO_ITEM-KBETR4.
        ENDIF.
Condition Type 5...............
        IF RO_ITEM-KSCHL5 IS NOT INITIAL.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=V69A_KOAN'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'KOMV-KSCHL(02)'.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'KOMV-KSCHL(02)' RO_ITEM-KSCHL5.
          PERFORM BDC_FIELD       USING 'KOMV-KBETR(02)' RO_ITEM-KBETR5.
        ENDIF.
Condition Type 6...............
        IF RO_ITEM-KSCHL6 IS NOT INITIAL.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=V69A_KOAN'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'KOMV-KSCHL(02)'.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'KOMV-KSCHL(02)' RO_ITEM-KSCHL6.
          PERFORM BDC_FIELD       USING 'KOMV-KBETR(02)' RO_ITEM-KBETR6.
        ENDIF.
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '5003'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '/EBACK'.
      ENDIF.
   ENDLOOP.
Saving The Sales Document
    PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD      USING 'BDC_OKCODE'   '=SICH'.
   PERFORM BDC_TRANSACTION TABLES MESSTAB
   USING                          'VA01'
                                   CTU
                                   MODE
                                   UPDATE.
*CALL TRANSACTION 'VA01' USING BDCDATA1
                             MODE
                             MODE 'A'
                              UPDATE
                             UPDATE 'A'
                             MESSAGES INTO MESSTAB.
  ENDLOOP.
  CALL TRANSACTION 'VA01' USING BDCDATA1
                              MODE 'A'
                              UPDATE 'A'
                              MESSAGES INTO MESSTAB1.
APPEND MESSTAB1.
*SELECT SINGLE VBELN INTO T_VBELN FROM VBFA
       WHERE VBELV = RO_HEADER-SORDER." AND VBTYP_N = 'J'.
   perform bdc_dynpro      using 'SAPMV50A' '4004'.
   perform bdc_field       using 'BDC_CURSOR'                              'LIKP-VBELN'.
   perform bdc_field       using 'BDC_OKCODE'                              '/00'.
   perform bdc_field       using 'LIKP-VBELN'     T_VBELN.                  "'7012000733'.
   perform bdc_dynpro      using 'SAPMV50A' '1000'.
   perform bdc_field       using 'BDC_OKCODE'         '=WABU_T'.   "'=SICH_T'.
**perform bdc_field       using 'LIKP-BLDAT'       RO_HEADER-SODATE.     '27.06.2006'.
   perform bdc_field       using 'BDC_CURSOR'                              'LIKP-WADAT_IST'.
   perform bdc_field       using 'LIKP-WADAT'   RO_HEADER-SODATE.  "       '26.05.2006'.
**perform bdc_field       using 'LIKP-WAUHR'                             '00:00:00'.
   perform bdc_field       using 'LIKP-BTGEW'                              '10'.
   perform bdc_field       using 'LIKP-GEWEI'                              'KG'.
   perform bdc_field       using 'LIKP-WADAT_IST' RO_HEADER-SODATE."      '26.05.2006'.
   PERFORM BDC_TRANSACTION TABLES MESSTAB
   USING                          'VL02N'
                                   CTU
                                   MODE
                                   UPDATE.
  ENDLOOP.
  IF SY-SUBRC <> 0.
    SUBRC = SY-SUBRC.
    EXIT.
*else.
update zrush_order set PROCESSED = 'X'.
        where sorder = SORDER_FINAL and
        sodate       = RO_HEADER-SODATE.
  ENDIF.
PROCESSING OUT BOUND DELIVERY
*PERFORM BDC_DYNPRO   USING   'SAPMSSY0'     '0120'.
*PERFORM BDC_FIELD       USING 'BDC_CURSOR' '06/09'.
*PERFORM BDC_FIELD    USING   'BDC_OKCODE'   '=IMED' .
*PERFORM BDC_DYNPRO   USING   'SAPMSSY0'     '0120'.
*PERFORM BDC_FIELD    USING   'BDC_OKCODE'   '=BACK'.
PROCESSING INVOICE DELIVERY
*PERFORM BDC_DYNPRO   USING   'RV60SBAT'     '1000'.
*PERFORM BDC_FIELD       USING 'BDC_CURSOR' 'IMMEDI'.
**SELECTION SCREEN PARAMETER FOR VF06
*PERFORM BDC_FIELD    USING    'VKOR1' '1000'.
*PERFORM BDC_FIELD    USING    'FKDAB' ' '.
*PERFORM BDC_FIELD    USING    'ALLEA' 'X'.
*PERFORM BDC_FIELD    USING    'ALLEL' 'X'.
*WRITE SY-DATUM TO V_DATE.
*WRITE SY-UZEIT TO V_TIME.
*ADD '03' TO V_TIME+2(02).
*PERFORM BDC_FIELD    USING    'EXDATE' V_DATE. "V_DATE.
*PERFORM BDC_FIELD    USING    'EXTIME' V_TIME. "V_TIME.
*PERFORM BDC_FIELD    USING    'IMMEDI' 'X'.
*PERFORM BDC_FIELD    USING    'NUMBJOBS' ' '.
*PERFORM BDC_FIELD    USING    'MAX_CUST' ' '.
*PERFORM BDC_FIELD    USING    'UTASY' 'X'.
*PERFORM BDC_FIELD    USING   'BDC_OKCODE'   '=ONLI'.
*PERFORM BDC_DYNPRO   USING   'SAPMSSY0'     '0120'.
*PERFORM BDC_FIELD    USING   'BDC_OKCODE'   '=BACK'.
*PERFORM BDC_DYNPRO   USING   'RV60SBAT'     '1000'.
*PERFORM BDC_FIELD    USING   'BDC_OKCODE'   '/E'.
*PERFORM BDC_TRANSACTION TABLES MESSTAB
*USING                          'VF06'
                               CTU
                               MODE
                               UPDATE.
PERFORM CLOSE_GROUP USING     CTU.
wait up to 2 seconds.
submit ZVF06_SCHEDULE and return.
wait up to 2 seconds.
ENDFUNCTION.

y u are unable to Upload?

Similar Messages

  • Couldn't Upload file with size more than 2K

    Hi,
    i am developing an webapplication where in i have to upload a file.we are using hibernate for data storing and retrieval.problem comes when i am uploading a file with size more than 2k bytes.if the file size lesser than 2k it works fine.i found that its a bug with thin jdbc driver version 9.but i am using 10g jdbc driver.still problem exists. i am not suppose to use oci drivers.
    working on
    OS: windows Xp.
    Apps :weblogic8.1
    DB: oracle 9i
    if anyone has solution plz mailme at [email protected]

    I'm not sure where the issue would be. Are you saying that you are using a 9i driver to access a 10g database? If so, download the newer driver and add it to your WEB-INF/lib directory. Remove the existing driver.
    If, on the other hand, you are using a 10g driver for a 9i database, I would not expect problems. However, you could always download the older driver and try it out.
    Or am I missing something?
    - Saish

  • How to upload records  in two different interface tables through WebADI.

    We have created custom integrator with two different interfaces to insert records in AP_INVOICES_INTERFACES and AP_INVOICE_LINES_INTERFACE. Also defined the custom layout in which we mention the header and lines column info to be displayed in the spreadsheet. When I tried to create document to upload the records into the interface tables, could find two different interface for header and lines , when we select the header and upload records into the AP_INVOICES_INTERFACES table it was successfull. But couldn't upload records inserted in Lines interfaces tables. How do we upload records in both the table do we have constraint with Web ADI can insert records to only one interface tables. Any recommendation highly appreciated.

    Raghu,
    Thanks for the reply,
    I have a concern, But if you are connecting a another database you have to create one more subreport and each time am creating connections across databases we have to create subreport and go for the design to show the record. Is it any way to have a common field or union records approach in crystal report 2008.
    For Example :
    Approach 1 :
    Emp name           Emp salary      (Common Header)
    Variable Field1    Variable field2   ( Iterations to be done here for records)
    Variable field 1 contains ---> emptbl(employee name), b.emptbl(employee name) (A database, b database, c database or any .db)
    Variable field2  contains --->  emptbl (salary info between databases)
    Approach 2:
    getting all the records and union all the records 
    Thanks
    Murali Sri

  • Uploading Access split database to Sharepoint Site.

    Hi, I'm having trouble finding instructions on how exactly you would upload a split database to SharePoint. If I split my database locally i can't then move the back end.
    I want to upload my the back end of the Access database to "mysitesname".sharepoint.com I have full admin privileges but the only place I see to upload a file is the "shared documents" area of the site which I presume would only be useful
    for hosting the front end for users to download. Trying to split the database to the site by using it's URL "https://"mysitesname".sharepoint.com/SitePages/Home.aspx" nd variations results in access telling me the site could not be reached.
    I'm sure this is something simple to do and I'm just missing some critical piece of information.

    Thank you for the reply but I'm not using a web database or web app. I should have mentioned I solved the problem yesterday.
    A split database is simpler than I thought, mine is just a standard access database with linked tables. You share your file (front end) around and the back end is just a bunch of SharePoint lists if you are using SharePoint or an access file containing tables
    if using a file server.
    My problem was that I couldn't upload my back end to SharePoint. I ended up making my tables into SharePoint lists and uploading those to my personal SharePoint folder as the team site didn't allow me to upload them.
    https://example1-my.sharepoint.com/personal/email_emailhost_com_au
    This tutorial worked best. http://www.youtube.com/watch?v=3wdjYIby_b0&list=PL27E956A1537FE1C5&index=2

  • PHP 5 Code to Upload and Retrieve an Image (aka BLOB) with Oracle

    I keep being asked about BLOBs. For posterity, here is my example updated
    to use the new PHP 5 OCI8 function names, and using bind variables for the BLOB id.
    -- cj
    <?php
    // Sample form to upload and insert an image into an ORACLE BLOB
    // column using PHP 5's OCI8 API. 
    // Note: Uses the new PHP 5 names for OCI8 functions.
    // Before running this script, execute these statements in SQL*Plus:
    //   drop table btab;
    //   create table btab (blobid number, blobdata blob);
    // This example uploads an image file and inserts it into a BLOB
    // column.  The image is retrieved back from the column and displayed.
    // Make sure there is no whitespace before "<?php" else the wrong HTTP
    // header will be sent and the image won't display properly.
    // Make sure php.ini's value for upload_max_filesize is large enough
    // for the largest lob to be uploaded.
    // Tested with Zend Core for Oracle 1.3 (i.e. PHP 5.0.5) with Oracle 10.2
    // Based on a sample originally found in
    //     http://www.php.net/manual/en/function.ocinewdescriptor.php
    $myblobid = 1;  // should really be a unique id e.g. a sequence number
    define("ORA_CON_UN", "hr");             // username
    define("ORA_CON_PW", "hr");             // password
    define("ORA_CON_DB", "//localhost/XE"); // connection string
    if (!isset($_FILES['lob_upload'])) {
    ?>
    <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST"
       enctype="multipart/form-data">
    Image filename: <input type="file" name="lob_upload">
    <input type="submit" value="Upload">
    </form>
    <?php
    else {
      $conn = oci_connect(ORA_CON_UN, ORA_CON_PW, ORA_CON_DB);
      // Delete any existing BLOB so the query at the bottom
      // displays the new data
      $query = 'DELETE FROM BTAB WHERE BLOBID = :MYBLOBID';
      $stmt = oci_parse ($conn, $query);
      oci_bind_by_name($stmt, ':MYBLOBID', $myblobid);
      $e = oci_execute($stmt, OCI_COMMIT_ON_SUCCESS);
      if (!$e) {
        die;
      oci_free_statement($stmt);
      // Insert the BLOB from PHP's tempory upload area
      $lob = oci_new_descriptor($conn, OCI_D_LOB);
      $stmt = oci_parse($conn, 'INSERT INTO BTAB (BLOBID, BLOBDATA) '
             .'VALUES(:MYBLOBID, EMPTY_BLOB()) RETURNING BLOBDATA INTO :BLOBDATA');
      oci_bind_by_name($stmt, ':MYBLOBID', $myblobid);
      oci_bind_by_name($stmt, ':BLOBDATA', $lob, -1, OCI_B_BLOB);
      oci_execute($stmt, OCI_DEFAULT);
      // The function $lob->savefile(...) reads from the uploaded file.
      // If the data was already in a PHP variable $myv, the
      // $lob->save($myv) function could be used instead.
      if ($lob->savefile($_FILES['lob_upload']['tmp_name'])) {
        oci_commit($conn);
      else {
        echo "Couldn't upload Blob\n";
      $lob->free();
      oci_free_statement($stmt);
      // Now query the uploaded BLOB and display it
      $query = 'SELECT BLOBDATA FROM BTAB WHERE BLOBID = :MYBLOBID';
      $stmt = oci_parse ($conn, $query);
      oci_bind_by_name($stmt, ':MYBLOBID', $myblobid);
      oci_execute($stmt, OCI_DEFAULT);
      $arr = oci_fetch_assoc($stmt);
      $result = $arr['BLOBDATA']->load();
      // If any text (or whitespace!) is printed before this header is sent,
      // the text won't be displayed and the image won't display properly.
      // Comment out this line to see the text and debug such a problem.
      header("Content-type: image/JPEG");
      echo $result;
      oci_free_statement($stmt);
      oci_close($conn); // log off
    ?>

    I am using oracle 10g [10.2.0.1.0] and PHP 4.3.9 with Apache.
    I tried my best to change the old functions names for example(oci_fetch)
    to the new (OCIFetch),i works every where, but i could not find the corresponded functions of (oci_fetch_assoc) that's why i can not see my BLOBS at all!
    Can some help me please, to know where are corresponded functions of oracle 8 to oracle 10g?
    Exactly here is my problem:
    $query = 'SELECT BLOBDATA FROM BTAB WHERE BLOBID = :MYBLOBID';
    $stmt = ociparse ($conn, $query);
    OCIBindByName($stmt, ':MYBLOBID', $myblobid);
    ociexecute($stmt, OCIDEFAULT);
    $arr = oci_fetch_assoc($stmt);
    // OCIFetchAssoc, OCIFetch, OCI_ASSOC ... nothing works-> Fatal error: Call to undefined function:
    $result = $arr['BLOBDATA']->load();
    What should i do?
    Thanky very much.

  • Error Message When Uploading My Site

    Hey,
    I am trying to upload my first iWeb website. However each time I go through the publication process (file>publish), it crashes! And I get an error message saying something like "error encountered when publishing pagename : picturename.png" and then my website is not published. But the craziest thing is that it is not on the pictures that I added that it crashes, it's on pictures that are comprised in the page model (like the stars or background.png)!!!
    Any input on how to FIX this???
    I would be grateful forever!!
    THANKS
    iBook G4   Mac OS X (10.4.4)  

    Four things could be going on, but it's fixable.
    first.. make sure that your screen saver, and energy saver are turned off in your system preferences. iWeb had trouble with this in it's first version, but since the update it's supposed to be fixed, but I'd still do it.
    second, it's been my experience that iweb is affected by bandwidth issues while uploading. If you're using your browser, uploading or downloading anything else... you'll get the error message and that one file couldn't upload. Make sure that when you click on the publish button you walk away from the computer and don't use it. This appears to be a bigger problem for us G4 users than the G5 folks. Also, it's a memory hog, so seriously, when you publish turn everything else off except your computer and iWeb and walk away. Seems to work for me.
    Third... make sure your idisk is NOT loaded onto your desktop. If it starts refreshing and files are getting put there while you're uploading, iWeb will give you the dreaded error message.
    Finally, just keep republishing. iWeb seems to bog down when you publish sometimes. I re-uploaded my entire website last night, including 7 video podcasts and numerous other blogs that have audio and video in them. I had to publish and publish and publish.... it took four tries, but it finally finished. It seems that it gets farther and farther along each time. Anyway... it works.
    Hope this helps.
    Jim
    20" Imac 1ghz (lmpstd), Mini, G4 Dual 1.8(upgraded), G4 400, Powerbook,12", eMac   Mac OS X (10.4.4)  
    20" Imac 1ghz (lmpstd), Mini, G4 Dual 1.8(upgraded), G4 400, Powerbook,12", eMac   Mac OS X (10.4.4)  

  • Upload image in ess via NWBC

    Hi all,
    I am unable to upload photo via Personal Information in ESS. we are using NWBC. What configurations I had to do..?
    Please guide me.
    Regards,
    Namsheed.

    I am able to select the photo from system. but couldn't upload.
    What can be the issue.?

  • Error while uploading page in pages library.

    Hi All,
    When I am trying to upload pages in my Pages library I am getting following error.
    Can anyone please tell me how to resolve this issue ?
    Error:
    Sorry, for some reason this document couldn't upload. Try again later or contact your administrator.
    Thanks,
    Harish Patil

    Hi,
    For a better troubleshooting, I suggest you can do as the followings:
    1. You can create a new page library to test if it works.
    2. I suggest you can check the ULS log for detailed error message, it will be easier to figure out the issue. By default, the ULS log of SharePoint 2013 is located at the path:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    You can use ULS Viewer to see the detailed error message.
    Here are some detailed articles for your reference:
    https://sharepointlogviewer.codeplex.com/
    https://ulsviewer.codeplex.com/
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Can't upload photos to Facebook from Firefox..!

    I'm using the latest Mozilla Firefox on Win 7 64-bit. I've tried every options but still I couldn't upload pics to Facebook through Firefox..! But it's working smoothly without any issues on Opera and other browsers. Any help will be appreciated.

    Hi Clicker,
    Thank you for your questions. Please try the following:
    * Clear cache and cookies of facebook site
    * Try safe mode [[Troubleshoot Firefox issues using Safe Mode]] to make sure it is not an add on.
    * Check you antivirus
    * Make sure flash is up to date and the older versions are removed. Version 14 is the most current and make sure it is enabled.
    * make sure it is the right format: [JPEG, BMP, PNG, GIF or TIFF files.](https://www.facebook.com/help/www/167931376599294)
    Please post back with your results!

  • Blob Upload dosent work.

    First my english is very bad. Iam from germany and the problem i have cant fix in forums in germany.
    so, please help me...
    I have generate a pdf file that i must put in a oracle BLOB field.
    Is Oracle 8
    here is the code :
    <?PHP
    $lob_upload="a.pdf";
    session_start();
    $conn = OCILogon('secret','secret','secret');
    $lob = OCINewDescriptor($conn, OCI_D_LOB);
    $stmt = OCIParse($conn,"insert into \"tblArchiv\" (\"AR_Objekt\")
    values(EMPTY_BLOB()) returning \"AR_Objekt\" into :the_blob");
    OCIBindByName($stmt, ':the_blob', &$lob, -1, OCI_B_BLOB);
    OCIExecute($stmt, OCI_DEFAULT);
    if($lob->savefile($lob_upload)){
    OCICommit($conn);
    echo "Blob successfully uploaded\n";
    }else{
    echo "Couldn't upload Blob\n";
    OCIFreeDesc($lob);
    OCIFreeStatement($stmt);
    OCILogoff($conn);
    ?>
    This code generate a new entry. but the blob field ist empty.
    Please help
    Werner

    Now i have found a sample code on Oracle side :
    <?php
    // Sample form to upload and insert data into an ORACLE CLOB column
    // using PHP's Oracle 8 API.
    // Based on http://www.php.net/manual/en/function.oci-new-descriptor.php
    // modified to work on CLOBs and use register_globals = Off.
    // Before running this script, execute these statements in SQL*Plus:
    // drop table myclobtab;
    // create table myclobtab (c1 number, c2 clob);
    // Tested with PHP 4.3.3 against Oracle 9.2
    if (!isset($_FILES['lob_upload'])) {
    ?>
    <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST" enctype="multipart/form-data">
    Upload file: <input type="file" name="lob_upload">
    <input type="submit" value="Upload">
    </form>
    <?php
    else {
    $myid = 1; // should really be a unique id e.g. a sequence number
    $conn = OCILogon('secret', 'secret', 'secret');
    // Delete any existing CLOB so the query at the bottom
    // displays the new data
    #$query = 'DELETE FROM MYCLOBTAB';
    #$stmt = OCIParse ($conn, $query);
    #OCIExecute($stmt, OCI_COMMIT_ON_SUCCESS);
    #OCIFreeStatement($stmt);
    // Insert the CLOB from PHP's temporary upload area
    $lob = OCINewDescriptor($conn, OCI_D_LOB);
    $stmt = OCIParse($conn, "INSERT INTO \"tblArchiv\" (\"AR_Objekt\") VALUES(EMPTY_BLOB()) RETURNING \"AR_Objekt\" INTO :C2");
    OCIBindByName($stmt, ':C2', $lob, -1, OCI_B_BLOB);
    OCIExecute($stmt, OCI_DEFAULT);
    // The function $lob->savefile(...) reads from the uploaded file.
    // If the data was already in a PHP variable $myv, the
    // $lob->save($myv) function could be used instead.
    if ($lob->savefile($_FILES['lob_upload']['tmp_name'])) {
    OCICommit($conn);
    echo "CLOB successfully uploaded\n";
    else {
    echo "Could not upload CLOB\n";
    $lob->free();
    OCIFreeStatement($stmt);
    OCILogoff($conn);
    ?>
    This code runs good.
    But. The PDF File is on the server right now.
    So i change the code like this :
    <?php
    $myid = 1; // should really be a unique id e.g. a sequence number
    $conn = OCILogon('secret', 'secret', 'secret');
    // Delete any existing CLOB so the query at the bottom
    // displays the new data
    #$query = 'DELETE FROM MYCLOBTAB';
    #$stmt = OCIParse ($conn, $query);
    #OCIExecute($stmt, OCI_COMMIT_ON_SUCCESS);
    #OCIFreeStatement($stmt);
    // Insert the CLOB from PHP's temporary upload area
    $lob = OCINewDescriptor($conn, OCI_D_LOB);
    $stmt = OCIParse($conn, "INSERT INTO \"tblArchiv\" (\"AR_Objekt\") VALUES(EMPTY_BLOB()) RETURNING \"AR_Objekt\" INTO :C2");
    OCIBindByName($stmt, ':C2', $lob, -1, OCI_B_BLOB);
    OCIExecute($stmt, OCI_DEFAULT);
    // The function $lob->savefile(...) reads from the uploaded file.
    // If the data was already in a PHP variable $myv, the
    // $lob->save($myv) function could be used instead.
              $form_data="a.pdf";
              $data = addslashes(fread(fopen($form_data, "r"), filesize($form_data)));
              if ($lob->save($data)) {
    OCICommit($conn);
    echo "CLOB successfully uploaded\n";
    else {
    echo "Could not upload CLOB\n";
    $lob->free();
    OCIFreeStatement($stmt);
    OCILogoff($conn);
    ?>
    This code have the same problem. It inserted an new entry but the blobfield is empty.
    what is the mistake i made ?
    again : my english is very bad sorry.
    thanks
    Werner

  • Safari Update breaks file uploads??

    I was having a hard time getting a picture to upload to gmail preferences, and had to backup to the old version of the gmail application to get it to work. Then I noticed that a local web app that I have couldn't upload files from Safari either (it used to work, and still works with Firefox, etc). So something has changed with Safari 3 (I'm using 3.04, last time I can swear it worked was with Safari 2).
    Maybe I'll be able to get some more details on exactly what it's doing different later. Just wanted to see if anyone else has noticed something funny going on here?

    For what its worth, what's causing the problem with my web app is that the "Content-type" header in the uploaded file is missing. It has a Content-Disposition only. I can't say whether or not that is causing the problem with gmail.

  • Uploading Problem from LR 4 to Flickr

    Having trouble uploading to Flickr in LR 4.  Initially had no trouble with LR 4.0 to Flickr .  Then installed LR 4.1 RC and got an error message that I couldn't upload to Flickr.  I deinstalled LR 4.1 RC and reinstalled LR 4.0 and still can't directly upload from LR 4.0 to Flickr. 
    Getting this message:  Flickr API returned an error message (function upload, message Insufficient permissions. Method requires write privileges; none granted.)
    I still have LR 3 installed and I can upload to Flickr from that app just fine.  The export settings to Flickr are the same for both LR3 and LR4.
    Can you help with this?

    I received the identical message after installing LR4.1RC2, uninstalling it, and reinstalling LR4.0.  I can see nothing wrong with the settings in my LR Publishing Manager, which I use to upload to Flickr.  Essentially I can upload to Flickr none of the image development I performed in LR4.  None of the threads on this subject that I've seen so far have worked for me and would appreciate guidance.   Thanks.

  • Problems uploading big files via FTP and downloading files

    I've been having problems uploading big files like video files (.mov 12MB) via FTP to my website (small files like .html or .doc I can upload but it takes longer than usual). I'm using Fetch 4.0.3. as FTP. Same problems when downloading files via Bit Torrent. I recently moved to Spain, since then I seem to have the problem. But my roommate with a PC doesn't have that problem. Connecting to internet with Ethernet cable also didn't resolve the problem. I also tested it from a Starbucks coffee connecting to Internet from there but still couldn't upload that 12MB file to the FTP. The security settings for firewall are set to "allow all incoming connections". I didn't change any of my settings so I don't know what the problems could be. I have a MacBook Pro, Mac OS X (10.5.7) Any suggestions? Thanks!

    Welcome to Apple Discussions!
    Much of what is available on Bittorrent is not legal, beta, or improperly labelled versions. If you want public domain software, see my FAQ*:
    http://www.macmaps.com/macosxnative.html#NATIVE
    for search engines of legitimate public domain sites.
    http://www.rbrowser.com/ has a light mode that supports binary without SSH security.
    http://rsug.itd.umich.edu/software/fugu/ has ssh secure FTP.
    Both I find are quick and a lot more reliable than Fetch. I know Fetch used to be the staple FTP program, but it grew too big for my use.
    - * Links to my pages may give me compensation.

  • Quicktime X - export for web creates files that can't be uploaded

    I'm trying to post a video to my website that can be viewed via computer or iphone. I used the "save for web" command and checked all three options: iphone, iphone (cellular), computer.   There resulting folder had all three files and a reference ".mov" file which I understand will select the correct file based on the device being used to access the movie. I created an .html file based on the instructions and even used the sample file to make sure everything worked on the local level. The only problem is that when I went to upload the folder to the web, I couldn't upload any of the actual movie files because there were spaces in the file names, for example: the file named "olympics" was automatically saved as "olympics - iPhone (Cellular).3gp" and "olympics - iPhone.m4v," etc. The server would not me to upload files with spaces in the name. When I tried to remove the spaces and ext. puncutation, the files could upload but were no longer seen by the reference mov called "olympics.mov".   Is there a solution to this problem, either in the way the reference movie is created or in the way the files could be uploaded with spaces? Thank you for your help...

    Hi Kim,
    Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Are they sill that way on Safe Mode?
    Is Spotlight trying to index that drive?

  • [URGENT HELP NEEDED] Premiere Pro CS6 failed rendering

    Hello!
    I`ll try to make this quick because I need help asap. I`ve been starting to make YouTube gaming videos 3 weeks ago and my channel is growing up pretty fast. I promised I would make a video everyday but it`s been a full week since I couldn`t upload because I was busy and when I tried to render it failed.
    Anyway here`s how it goes.I`ve recorded with fraps some gameplay footage with the resolution of 1360x706. One of my friends reccommanded me Adobe Premiere Pro for editing so I`m using the trial version of CS6. I create a new project and choose a format of 720 25 (cant really remember the exact name). I then import my recorded files and when I place them in the sequence it tells me the resolution is different and asks me if I want to change the sequence settings according to the files. Usually, I ignore it and when I export the Media I just tick the option: "Scale to Fill" and that usually works just fine, quality HD on YT...
    But this week it has driven me crazy, I really don`t want to explain how much stress and dissapointment this has caused to me because I think I`ll end up raging...I`ll just tell you I`ve been trying for a couple of days more than 7 time to render the project(each time it takes about an hour and a bit more, so let`s just call it 7 hours wasted). The problem actually is that when I check the output file after exporting the media, the file size is ONLY 24 bytes!!! Other times the file size gets to like half of the one that should be or less, but mainly the render even so takes up a normal length of time of processing but in the end the file is only 24 bytes..Thing is I don`t encounter any error whatsoever...
    I really need some urgent help!
    Thanks!

    1st, some FRAPS information
    These are for Premiere Elements, but may help with PPro
    Fraps & Elements http://forums.adobe.com/thread/871095
    -and more Elements http://forums.adobe.com/thread/943772
    -and yet more Elements http://forums.adobe.com/thread/967201
    2nd, it is REALLY better to have your project sequence match your video
    Please NOTE that the PPro CS6 screen may look a bit different (I use CS5)
    For CS5 and later, the easy way to insure that your video and your project match
    See 2nd post for picture of NEW ITEM process http://forums.adobe.com/thread/872666
    -and a FAQ on sequence setting http://forums.adobe.com/message/3804341

Maybe you are looking for

  • Content Deployment Job - Schedule

    I have a moderlately large publishing site collection with 600+ sub sites and 12000+ pages. I have received requests to increase the frequency of content deployment incremental jobs from once a day to once every hour. I have 4 web servers and 4 app s

  • Can't access tables in other Oracle database schemas

    Hi. We got our Oracle database admin to install APEX in our Oracle database. She created a login and schema for my Oracle database user so that I could work with APEX a little. Here's the information on the version of APEX we have installed: Database

  • HP Recovery Manager Back Up Disc Problem

    I backed up my HP Pavillion P-6240F computer files using HP Recovery Manager to create  backup discs. I am using Window 8.1  operating system. When I tried to restore this data, I used the .exe file to start the process. During the 3rd disc the proce

  • Don't get result when I put empty column in addition

    Hi all ! I've got some difficulty to get a total when I put empty column of a table in an addition in my sql query. All the data type are the same. Some one can help me with that please Thanks in advance Eric

  • OMWB Create tablespace...

    I am migrating from Informix to Oracle !0g using OMWB and the following 'Create Tablespace' statements have been generated by the OMWB in the Create.sql script. I wish to migrate to tablespace SYSAUX which already exisits in the Oracle 10g schema. Ca