Flat file deployment error

Hi All,
I have registered a Flaf file location and am trying to execute a mapping which writes a flaf file onto the specified location. The job however fails on execution with the error "Invalid Path for target file, check if connector is deployed correctly".
The deployment process of the mapping and the registering of the location was completed succesfully prior to the execution. In the mapping, the function UTL_FILE.FOPEN has the connector name instead of the corresponding Unix path.
Can somebody please throw some light into the issue?

Hi
Have you configured the mapping for the target flat file?
http://download-uk.oracle.com/docs/html/B12146_01/configetl.htm#i1115091
Karesz

Similar Messages

  • Not able to display flat file's error line in output

    The below Source Code is BDC for XD01 (update Customer Master Record) in CALL TRANSACTION method. This program is written in call transaction method cause as per user’s requirement, user wants error log to be printed as soon as the BDC process finished in the background mode.
    When you execute this below program it will show a selection screen from where you can select your flat file from system.
    After executing this code show output like below as soon as it finished processing the FLAT file.
    1. Customer Update Summary
    2. Successful record with customer number and name.
    3. Error Records with 'record number' and 'reason for error'
    (For testing you just have to copy-paste-save-active  the source code)
    And I have encountered an issue over here in 3rd section-“Record Number” of “Error Records”.
    The “Record Number” is for display the line number of that flat file line which in which error has occurred.
    The “Record Number”  Entries showing only ‘0’ instead of showing line number of error entry .
    I have used Function Module FORMAT_MESSAGE to capture the errors. But not able to display line number of that flat file which is containing error.
    So please suggest me what changes I should make in below source code to get proper output.
    Flat file for your R&D
    1000     1000     10     10     0001     Company     Chobey & Group1N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     1     A     10     1
    1000     1000     10     10     0001     Company     Chobey & Group2N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     1     A     10     1
    1000     1000     10     10     0001     Company     Chobey & Group3N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     .     A     10     1
    1000     1000     10     10     0001     Company     Chobey & Group4N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     1     A     ..     1
    1000     1000     10     10     0001     Company     Chobey & Group5N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     1     A     10     1
    And Source Code
    *& Report  Z_TEST_SAI                                                  *
    REPORT  Z_TEST_SAI no standard page heading line-size 255.
    TYPES: BEGIN OF t_cust,
            bukrs like rf02d-bukrs,
            vkorg like rf02d-vkorg,
            vtweg like rf02d-vtweg,
            spart like rf02d-spart,
            ktokd like rf02d-ktokd,
            anred like kna1-anred,
            name1 like kna1-name1,
            sortl like kna1-sortl,
            name2 like kna1-name2,
            name3 like kna1-name3,
            name4 like kna1-name4,
            stras like kna1-stras,
            pfach like kna1-pfach,
            ort01 like kna1-ort01,
            pstlz like kna1-pstlz,
            ort02 like kna1-ort02,
            pfort like kna1-pfort,
            pstl2 like kna1-pstl2,
            land1 like kna1-land1,
            regio like kna1-regio,
            telx1 like kna1-telx1,
            telf1 like kna1-telf1,
            telfx like kna1-telfx,
            telf2 like kna1-telf2,
            teltx like kna1-teltx,
            stceg like kna1-stceg,
            cityc like kna1-cityc,
            lzone like kna1-lzone,
            niels like kna1-niels,
            kukla like kna1-kukla,
            akont like knb1-akont,
            fdgrv like knb1-fdgrv,
            vzskz like knb1-vzskz,
            zterm like knb1-zterm,
            vkbur like knvv-vkbur,
            versg like knvv-versg,
            vsbed like knvv-vsbed,
            ktgrd like knvv-ktgrd,
            taxkd like knvi-taxkd,
    END OF t_cust.
    TYPES: BEGIN OF t_sucrec,
              cnum TYPE kna1-kunnr,                          "Customer Number
              cnam TYPE kna1-name1,                          "Customer Name
    END OF t_sucrec.
    TYPES: BEGIN OF t_errrec,
    *        lineno TYPE i,                                  "Line Number
             lineno TYPE string,
           message TYPE string,                              "Error Message
    END OF t_errrec.
    DATA: v_file TYPE string,                                "Variable for storing flat file
    it_cust TYPE STANDARD TABLE OF t_cust,                   "Internal table of Customer
    wa_cust LIKE LINE OF it_cust,                            "Workarea of Internal table it_cust
    it_sucrec TYPE STANDARD TABLE OF t_sucrec,               "Internal table of Success records
    wa_sucrec LIKE LINE OF it_sucrec,                        "Workarea of Internal table it_sucrec
    it_errrec TYPE STANDARD TABLE OF t_errrec,
    wa_errrec LIKE LINE OF it_errrec,
    it_bdctab LIKE bdcdata OCCURS 0 WITH HEADER LINE,        "Internal table structure of BDCDATA
    it_messagetab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE, "Tracing Error Messages
    v_date LIKE sy-datum,                                    "Controlling of session date
    v_index LIKE sy-index,                                   "Index Number
    v_totrec TYPE i,                                         "Total Records
    v_errrec TYPE i,                                         "Error Records
    v_sucrec TYPE i,                                         "Success Records
    v_sesschk TYPE c.                                        "Session maintenance
    *& SELECTION-SCREEN
    SELECTION-SCREEN: BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001 NO INTERVALS.
    PARAMETERS: p_file    TYPE rlgrap-filename.              "rlgrap-filename is a predefined structure
    SELECTION-SCREEN: END OF BLOCK blk1.
    SELECTION-SCREEN: BEGIN OF BLOCK blk2 WITH FRAME TITLE text-002 NO INTERVALS.
    PARAMETERS: p_mode    LIKE ctu_params-dismode DEFAULT 'N',
                p_update  LIKE ctu_params-updmode DEFAULT 'A'.
    SELECTION-SCREEN END OF BLOCK blk2.
    *& INITIALIZATION
    INITIALIZATION.
    v_date = sy-datum - 1.
    *& AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    FIELD_NAME = ' '
    IMPORTING
    file_name = p_file.
    *& START-OF-SELECTION
    START-OF-SELECTION.
    v_file = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = v_file
    filetype = 'ASC'
    has_field_separator = 'X'
    TABLES
    data_tab = it_cust
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    IF sy-subrc = 0.
    *MESSAGE ID sy-msgid
    *TYPE sy-msgty
    *NUMBER sy-msgno
    *WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *& END-OF-SELECTION
    END-OF-SELECTION.
    v_index = sy-index.
    LOOP AT it_cust INTO wa_cust.
      perform bdc_dynpro      using 'SAPMF02D' '0100'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RF02D-KTOKD'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '/00'.
        perform bdc_field       using 'RF02D-BUKRS'
                                      wa_cust-bukrs.
        perform bdc_field       using 'RF02D-VKORG'
                                      wa_cust-vkorg.
        perform bdc_field       using 'RF02D-VTWEG'
                                      wa_cust-vtweg.
        perform bdc_field       using 'RF02D-SPART'
                                      wa_cust-spart.
        perform bdc_field       using 'RF02D-KTOKD'
                                      wa_cust-ktokd.
        perform bdc_dynpro      using 'SAPMF02D' '0110'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNA1-TELTX'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNA1-ANRED'
                                      wa_cust-anred.
        perform bdc_field       using 'KNA1-NAME1'
                                      wa_cust-name1.
        perform bdc_field       using 'KNA1-SORTL'
                                      wa_cust-sortl.
        perform bdc_field       using 'KNA1-NAME2'
                                      wa_cust-name2.
        perform bdc_field       using 'KNA1-NAME3'
                                      wa_cust-name3.
        perform bdc_field       using 'KNA1-NAME4'
                                      wa_cust-name4.
        perform bdc_field       using 'KNA1-STRAS'
                                      wa_cust-stras.
        perform bdc_field       using 'KNA1-PFACH'
                                      wa_cust-pfach.
        perform bdc_field       using 'KNA1-ORT01'
                                      wa_cust-ort01.
        perform bdc_field       using 'KNA1-PSTLZ'
                                      wa_cust-pstlz.
        perform bdc_field       using 'KNA1-ORT02'
                                      wa_cust-ort02.
        perform bdc_field       using 'KNA1-PFORT'
                                      wa_cust-pfort.
        perform bdc_field       using 'KNA1-PSTL2'
                                      wa_cust-pstl2.
        perform bdc_field       using 'KNA1-LAND1'
                                      wa_cust-land1.
        perform bdc_field       using 'KNA1-REGIO'
                                      wa_cust-regio.
        perform bdc_field       using 'KNA1-SPRAS'
                                      'EN'.
        perform bdc_field       using 'KNA1-TELX1'
                                      wa_cust-telx1.
        perform bdc_field       using 'KNA1-TELF1'
                                      wa_cust-telf1.
        perform bdc_field       using 'KNA1-TELFX'
                                      wa_cust-telfx.
        perform bdc_field       using 'KNA1-TELF2'
                                      wa_cust-telf2.
        perform bdc_field       using 'KNA1-TELTX'
                                      wa_cust-teltx.
        perform bdc_dynpro      using 'SAPMF02D' '0120'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNA1-CITYC'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNA1-STCEG'
                                      wa_cust-stceg.
        perform bdc_field       using 'KNA1-CITYC'
                                      wa_cust-cityc.
        perform bdc_field       using 'KNA1-LZONE'
                                      wa_cust-lzone.
        perform bdc_dynpro      using 'SAPMF02D' '0125'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNA1-KUKLA'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNA1-NIELS'
                                      wa_cust-niels.
        perform bdc_field       using 'KNA1-KUKLA'
                                      wa_cust-kukla.
        perform bdc_dynpro      using 'SAPMF02D' '0130'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNBK-BANKS(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0340'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RF02D-KUNNR'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0360'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVK-NAMEV(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0210'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNB1-VZSKZ'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNB1-AKONT'
                                      wa_cust-akont.
        perform bdc_field       using 'KNB1-FDGRV'
                                      wa_cust-fdgrv.
        perform bdc_field       using 'KNB1-VZSKZ'
                                      wa_cust-vzskz.
        perform bdc_dynpro      using 'SAPMF02D' '0215'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNB1-ZTERM'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNB1-ZTERM'
                                      wa_cust-zterm.
        perform bdc_dynpro      using 'SAPMF02D' '0220'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNB5-MAHNA'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0230'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNB1-VRSNR'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0610'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RF02D-KUNNR'.
        perform bdc_dynpro      using 'SAPMF02D' '0310'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVV-VERSG'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNVV-AWAHR'
                                      '100'.
        perform bdc_field       using 'KNVV-VKBUR'
                                      wa_cust-vkbur.
        perform bdc_field       using 'KNVV-WAERS'
                                      'INR'.
        perform bdc_field       using 'KNVV-KALKS'
                                      '1'.
        perform bdc_field       using 'KNVV-VERSG'
                                      wa_cust-versg.
        perform bdc_dynpro      using 'SAPMF02D' '0315'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVV-VSBED'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNVV-LPRIO'
        perform bdc_field       using 'KNVV-KZAZU'
                                      'X'.
        perform bdc_field       using 'KNVV-VSBED'
                                      wa_cust-vsbed.
        perform bdc_field       using 'KNVV-ANTLF'
                                      '9'.
        perform bdc_dynpro      using 'SAPMF02D' '0320'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVV-KTGRD'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNVV-BOKRE'
                                      'X'.
        perform bdc_field       using 'KNVV-KTGRD'
                                      wa_cust-ktgrd.
        perform bdc_dynpro      using 'SAPMF02D' '1350'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVI-TAXKD(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNVI-TAXKD(01)'
                                      wa_cust-taxkd.
        perform bdc_dynpro      using 'SAPMF02D' '0324'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVP-PARVW(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=UPDA'.
    CALL TRANSACTION 'XD01' USING it_bdctab
    MODE p_mode
    UPDATE p_update
    MESSAGES INTO it_messagetab.
    IF sy-subrc = 0.
    *& reading success records to corresponding internal table
    READ TABLE it_messagetab WITH KEY msgtyp = 'S'.
    IF sy-subrc = 0.
    wa_sucrec-cnum = it_messagetab-msgv1.
    wa_sucrec-cnam = wa_cust-name1.
    APPEND wa_sucrec TO it_sucrec.
    CLEAR wa_sucrec.
    ENDIF.
    ELSE.
    *& reading error records to corresponding internal table
    READ TABLE it_messagetab WITH KEY msgtyp = 'E'.
    IF sy-subrc = 0.
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
    id = sy-msgid
    no = it_messagetab-msgnr
    v1 = it_messagetab-msgv1
    v2 = it_messagetab-msgv2
    v3 = it_messagetab-msgv3
    v4 = it_messagetab-msgv4
    IMPORTING
    msg = wa_errrec-message.
    wa_errrec-lineno = v_index.
    *******wa_errrec-lineno  = v_index.
    *******wa_errrec-message = it_messagetab-msgv1.
    APPEND wa_errrec TO it_errrec.
    CLEAR wa_errrec.
    ENDIF.
    ENDIF.
    CLEAR : it_bdctab, it_messagetab.
    REFRESH: it_bdctab, it_messagetab.
    ENDLOOP.
    DESCRIBE TABLE it_cust LINES v_totrec.
    DESCRIBE TABLE it_errrec LINES v_errrec.
    DESCRIBE TABLE it_sucrec LINES v_sucrec.
    PERFORM disp_data.
    SKIP 2.
    IF v_sucrec > 0.
    PERFORM disp_success_data.
    ENDIF.
    SKIP 2.
    IF v_errrec > 0.
    PERFORM disp_error_data.
    ENDIF.
    *& Form bdc_dynpro
    *#  text
    *#  -->P_0104 text
    *#  -->P_0105 text
    FORM bdc_dynpro USING program
    dynpro.
    CLEAR it_bdctab.
    it_bdctab-program = program.
    it_bdctab-dynpro = dynpro.
    it_bdctab-dynbegin = 'X'.
    APPEND it_bdctab.
    ENDFORM. " bdc_dynpro
    *& Form bdc_field
    *#  text
    *#  -->P_0109 text
    *#  -->P_IT_cust_LIFNR text
    FORM bdc_field USING fnam
    fval.
    CLEAR it_bdctab.
    it_bdctab-fnam = fnam.
    it_bdctab-fval = fval.
    APPEND it_bdctab.
    ENDFORM. " bdc_field
    *& Form disp_data
    *#  text
    *#  --> p1 text
    *#  <-- p2 text
    FORM disp_data .
    ULINE (45).
    WRITE : / sy-vline,
    12 'FAMD CUSTOMER UPDATE SUMMARY'(004) COLOR 1,
    45 sy-vline.
    ULINE /(45).
    WRITE : / sy-vline,
    'Total Records Processed'(007),
    28 '=',
    30 v_totrec,
    45 sy-vline,
    / sy-vline,
    'Error Records'(005),
    28 '=',
    30 v_errrec,
    45 sy-vline,
    / sy-vline,
    'Successful Records'(006),
    28 '=',
    30 v_sucrec,
    45 sy-vline.
    ULINE /(45).
    ENDFORM. " disp_data
    *& Form disp_success_data
    *#  text
    *#  --> p1 text
    *#  <-- p2 text
    FORM disp_success_data .
    ULINE (45).
    WRITE : / sy-vline,
    14 'Successful Records'(012) COLOR 1,
    45 sy-vline.
    ULINE /(45).
    WRITE : / sy-vline ,
    'Customer Number'(010) COLOR 2,
    17 sy-vline,
    25 'Customer Name'(011) COLOR 2,
    45 sy-vline.
    ULINE /(45).
    LOOP AT it_sucrec INTO wa_sucrec.
    WRITE: / sy-vline ,
    wa_sucrec-cnum,
    17 sy-vline,
    19 wa_sucrec-cnam,
    45 sy-vline.
    ENDLOOP.
    ULINE /(45).
    ENDFORM. " disp_success_data
    *& Form disp_error_data
    *#  text
    *#  --> p1 text
    *#  <-- p2 text
    FORM disp_error_data .
    ULINE (85).
    WRITE : / sy-vline,
    35 'Error Records'(013) COLOR 1,
    85 sy-vline.
    ULINE /(85).
    WRITE : / sy-vline,
    'Record Number'(008) COLOR 2,
    sy-vline,
    37 'Reason for error'(009) COLOR 2,
    85 sy-vline.
    ULINE /(85).
    LOOP AT it_errrec INTO wa_errrec.
    WRITE : / sy-vline,
    wa_errrec-lineno,
    17 sy-vline,
    wa_errrec-message,
    85 sy-vline.
    ENDLOOP.
    ULINE /(85).
    ENDFORM. " disp_error_data

    Worked out n found the solution

  • Flat file destination error

    hi
    i am adding new field to my existing package which is char(10).
    getting this error:
    [Flat File Destination [139]] Error: Data conversion failed. The data conversion for column "MEMBER_ID" returned status value 4 and status text "Text was truncated or one or more characters had no match in the target code page.".
    i right click flat file destination->i only see external and input column over there,
    there is no output column.
    in flat file connection mamanger ->outputcolumn->its char(10)
    what needs to be change here?

    Hi coool_sweet,
    According to your description, you are trying to add a new source column to a flat file in an existing package.
    Based on the error message, the issue should be caused by text was truncated when load new column to column "Column1" in Flat File Destination. Because the length of new column data should be more than 10 (with some junk values) in the Source,
    while you are trying to convert the column to 10 as the character length.
    To fix this issue, we can increase the length of column "Column1" in Flat File Connection Manager. Alternatively, if you still want to convert the new column to a column with length 10, we can right-click the Source component to select “Show Advanced
    Editor”, then go to tab 'input and output properties' to expand the output column corresponds to the column "Column1", change TrancationRowDiposition property to RD_IgnoreFailure.
    Besides, the issue can also be caused by using some special characters in the new column. We can check the Unicode checkbox on the right hand side of Locale property in Flat File Connection Manager to fix this issue. For more details, please see the following
    thread:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/d3605656-4a13-47b6-b96e-45379e2b2a9f/export-to-flat-file-with-unicode-chinese-characters?forum=sqlintegrationservices
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Beginner - Flat file upload error Help Please

    Hi Everyone,
    I am trying to upload a flat file [.csv] for the first time.
    I created Info objects  Material Id, Material Name , Price as keyfigure.
    Material Id holds Material Name and Price as attributes and is With Text and With Master Data.
    For the Keyfigure, Price, I have selected Amount and defined as USD.
    In the flat file, i have Material id, Material Name, Price, Description for Text, its something like this
    Mid         M-Name   Price      DESCRIPTION
    10001     A              99.99     AA
    When I create an Application Component and thereafter create a data source for master data attributes for Material
    and select the flat file and upload it, then the data types for Keyfigure PRICE changes to FLTP Length 16, its no longer as DEC and i get some werid data for Price field, something like
    "99.990000000001E+02" instead of 99.99.   Why am I having this problem and how could this be resolved ?
    I thought i would start off with my best foot forward but it didnt work. Any kind of help would be highly appreciated. Thanks guys..Byee

    hi,
    these are the BI.7 steps
    BW 7.0
    Uploading of master data
    Log on to your SAP
    Transaction code RSA1u2014LEAD YOU TO MODELLING
    1. Creation of Info Objects
    u2022 In left panel select info object
    u2022 Create info area
    u2022 Create info object catalog ( characteristics & Key figures ) by right clicking the created info area
    u2022 Create new characteristics and key figures under respective catalogs according to the project requirement
    u2022 Create required info objects and Activate.
    2. Creation of Data Source
    u2022 In the left panel select data sources
    u2022 Create application component(AC)
    u2022 Right click AC and create datasource
    u2022 Specify data source name, source system, and data type ( master data attributes, text, hierarchies)
    u2022 In general tab give short, medium, and long description.
    u2022 In extraction tab specify file path, header rows to be ignored, data format(csv) and data separator( , )
    u2022 In proposal tab load example data and verify it.
    u2022 In field tab you can you can give the technical name of info objects in the template and you not have to map during the transformation the server will automatically map accordingly. If you are not mapping in this field tab you have to manually map during the transformation in Info providers.
    u2022 Activate data source and read preview data under preview tab.
    u2022 Create info package by right clicking data source and in schedule tab click star to load data to PSA.( make sure to close the flat file during loading )
    3. Creation of data targets
    u2022 In left panel select info provider
    u2022 Select created info area and right click to select Insert Characteristics as info provider
    u2022 Select required info object ( Ex : Employee ID)
    u2022 Under that info object select attributes
    u2022 Right click on attributes and select create transformation.
    u2022 In source of transformation , select object type( data source) and specify its name and source system Note: Source system will be a temporary folder or package into which data is getting stored
    u2022 Activate created transformation
    u2022 Create Data transfer process (DTP) by right clicking the master data attributes
    u2022 In extraction tab specify extraction mode ( full)
    u2022 In update tab specify error handling ( request green)
    u2022 Activate DTP and in execute tab click execute button to load data in data targets.
    4. Monitor
    Right Click data targets and select manage and in contents tab select contents to view the loaded data. Alternatively monitor icon can be used.
    BW 7.0
    Uploading of Transaction data
    Log on to your SAP
    Transaction code RSA1u2014LEAD YOU TO MODELLING
    5. Creation of Info Objects
    u2022 In left panel select info object
    u2022 Create info area
    u2022 Create info object catalog ( characteristics & Key figures ) by right clicking the created info area
    u2022 Create new characteristics and key figures under respective catalogs according to the project requirement
    u2022 Create required info objects and Activate.
    6. Creation of Data Source
    u2022 In the left panel select data sources
    u2022 Create application component(AC)
    u2022 Right click AC and create datasource
    u2022 Specify data source name, source system, and data type ( Transaction data )
    u2022 In general tab give short, medium, and long description.
    u2022 In extraction tab specify file path, header rows to be ignored, data format(csv) and data separator( , )
    u2022 In proposal tab load example data and verify it.
    u2022 In field tab you can you can give the technical name of info objects in the template and you not have to map during the transformation the server will automatically map accordingly. If you are not mapping in this field tab you have to manually map during the transformation in Info providers.
    u2022 Activate data source and read preview data under preview tab.
    u2022 Create info package by right clicking data source and in schedule tab click star to load data to PSA.( make sure to close the flat file during loading )
    7. Creation of data targets
    u2022 In left panel select info provider
    u2022 Select created info area and right click to create ODS( Data store object ) or Cube.
    u2022 Specify name fro the ODS or cube and click create
    u2022 From the template window select the required characteristics and key figures and drag and drop it into the DATA FIELD and KEY FIELDS
    u2022 Click Activate.
    u2022 Right click on ODS or Cube and select create transformation.
    u2022 In source of transformation , select object type( data source) and specify its name and source system Note: Source system will be a temporary folder or package into which data is getting stored
    u2022 Activate created transformation
    u2022 Create Data transfer process (DTP) by right clicking the master data attributes
    u2022 In extraction tab specify extraction mode ( full)
    u2022 In update tab specify error handling ( request green)
    u2022 Activate DTP and in execute tab click execute button to load data in data targets.
    8. Monitor
    Right Click data targets and select manage and in contents tab select contents to view the loaded data. There are two tables in ODS new table and active table to load data from new table to active table you have to activate after selecting the loaded data . Alternatively monitor icon can be used
    if it is helpful assign points
    cheers
    sivaRaju

  • BPS  Flat File Upload Error Messages

    Hi,
    I am using the BPS flat file upload and am getting error messages. These error messages are coming from the user exit in the characteristics relationships. Unfortunately the message does not indicate which line on the upload file the error is for. In the user exit it does not pass the line no of  the flat file that is being processed.
    Does anyone have any ideas how the message could be enhanced to indicate the line in error or if there is another exit I could perform the validation in?
    regards
    Paul Cairncross

    Hi Sai,
    The issue is not the particular message. The message is in fact my message in the user exit in the characteristic relationships. The issue is when using the flat file upload the message does not indicate which line in the file the message apply's to. Looking at the userexit no line number is passed. This is not a problem in the web as the specific line is highlighted when the user is keying in the data.
    Regards,
    Paul Cairncross

  • Flat File Upload Error

    Hi All,
    I am using BW version 3.5 SP 16.
    I am trying to load a flat file in to BW. I am loading it to an info object char with direct update. Everything is in capital letters char length and evrything is matched. But I am getting an error.
    In monitor it says
    Message no. RSM2704
    Diagnosis
    Data records in the PSA were marked for data package 1. Here there were                                                   8 errors. The systemwrote information or warnings for the remaining data records.
    and in ST22 it says:
    TYPELOAD_NEW_VERSION
    data type "/BIC/CCABZMATL_ATTR" was found in newer version than required.
    What does the error means?? Our BW System is new and there is noting in it. Are there any settings in SPRO that I am missing??
    Any help is appreciated.
    Regards

    Hi Ninad,
    Your transfer structure is not in the last version. That's why you need to delete a source system assignment to infosource. During this operation the PSA structure (which is responsible for a correct data transfer from the source system to BW) will be deleted.
    If you use a flat file datasource, then if you try to assign the source system again, the system will use the same, old transfer structure, because it keeps information about even deleted things during a session.
    That's why you need to log out the system.
    After the new log in, assigning the flat file datasource and activating the transfer rules will create the proper structure.
    Creating a new infoobject as data target, without deleting the source system first (as you did) won't work.
    Hope it's clear now.
    Best regards,
    Eugene

  • Flat file upload error message

    Hi Friends
    I have designed an infocube and when i try to load data after selecting the option of flat file upload, i get the following error message," You have no authorization for basic types(activity 03)". Please clarify what it means.
    regards
    kris

    hi Kris,
    it may due to lack of authorization, please run transaction su53 and capture the info to your basis team to add you the needeed authorization.
    hope this helps.

  • OAS 10G WAR file deployment error (Errors in named queries)

    Hi again,
    I setup a 10G 10.1.3.1 Application Server and tried deploying my WAR file. In tomcat the WAR file deployment works fine. however in OAS I get this error and currently I'm clueless as to what causes the error.
    [Oct 24, 2007 6:03:37 PM] Operation failed with error: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: org.hibernate.HibernateException: Errors in named queries: Book_List_By_RegisterDate ... (other named queries)
    My ApplicationContext.xml file contains this
    <bean id="entityManagerFactory"
    class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="persistenceUnitManager" ref="persistenceUnitManager" />
    <property name="persistenceUnitName" value="BookStudy" />
    <property name="dataSource" ref="dataSource" />
    <property name="jpaVendorAdapter">
    <bean
    class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
    <property name="database" value="ORACLE" />
    <property name="showSql" value="true" />
    </bean>
    </property>
    </bean>
    And a sample named query in the hbm.xml file is this
    <query name="Book_List_By_RegisterDate">
              from BookData
              where to_char(regdate, 'MM/dd/yyyy') = to_char(:regdate, 'MM/dd/yyyy')
              order by Author.author_name desc, bookname desc
    </query>
    Thanks,

    Uncomment, or add, the following line in your application's orion-web.xml file:
    <web-app-class-loader search-local-classes-first="true" include-war-manifest-class-path="true" />
    See njr28's comments @ http://forum.hibernate.org/viewtopic.php?t=951324&highlight=oc4j

  • Flat File scenario-error

    Hi All,
    I am trying a Flat File 2 File Scenario ...
    my input file is..
    <?xml version="1.0" encoding="UTF-8" ?>
    <ns0:MTYP_name xmlns:ns0="File_File">Mustafa</ns0:MTYP_name>
    I am just doing simple mapping of single field, but I am getting the following error..
    <SAP:Code area="INTERNAL">HTTP_RESP_STATUS_CODE_NOT_OK</SAP:Code>
    <SAP:P1>500</SAP:P1>
    <SAP:P2>internal server error: com.sap.aii.messaging.mo.MalformedMessageException: Cannot find Main Header in XMBMessage - check the message version</SAP:P2>
    <SAP:P3 />
    <SAP:P4 />
    <SAP:AdditionalText><html> <head> <title>Transport Service Error</title> </head> <body> <h1>HTTP/1.0 500</h1> <h3>internal server error: com.sap.aii.messaging.mo.MalformedMessageException: Cannot find Main Header in XMBMessage - check the message version</h3> </body> </html></SAP:AdditionalText>
    <SAP:ApplicationFaultMessage namespace="" />
    <SAP:Stack>HTTP response contains status code 500 with the description internal server error: com.sap.aii.messaging.mo.MalformedMessageException: Cannot find Main Header in XMBMessage - check the message version XML tag Envelope missing in SOAP message header (SAP XI Extension)</SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    What is the cause of this error and also how do I change the trace logging levels?
    regards,
    Mustafa

    Hi Raj,
    Iam sending the Inbound payload
      <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_DB2_S_FF xmlns:ns="http://gsll.com/DB2">
    - <RSETSTRUCT>
      <S1>A</S1>
      <S2>A</S2>
      <S3>A</S3>
      </RSETSTRUCT>
    - <RSETSTRUCT>
      <S1>B</S1>
      <S2>B</S2>
      <S3>B</S3>
      </RSETSTRUCT>
      </ns:MT_DB2_S_FF>
    regads,
    Jeevan

  • Flat file loading error

    Hi,
    I have load master data through flat file . Now i am trying to create transaction data source but getting a error.
    Data Consist of Custid, Qty,Sales Revenue
    Qty consist 0Unit and Sales Revenue consist 0Currency
    When i enter Qty..the format is internal
    When i enter Sales Revenue..the format is external
    even after changing sales revenue format to internal..i am getting the below error.
    When i click on Preview i got this:   Error 'Unit 100 is not created in language EN...' at conversion exit CONVERSION_EXIT_CUNIT_INPUT (field UNIT record 1, value 100)
    why i am getting this
    Thanks
    nikhil
    Edited by: nikhil29 on Jan 19, 2012 10:20 PM
    Edited by: nikhil29 on Jan 19, 2012 10:27 PM

    Hi Nikhil,
    The simple solution to this is,
    Go to SE37 and use FM CONVERSION_EXIT_CUNIT_OUTPUT here give the input as whatever value you are currently passing to 0unit field through excel file. Execute the FM and check the output, if you get the successful output then copy the 0unit code shown in the output and replace it with unit field value written in the flat file (mostly it will be 2 digit code e.g. for unit BAG the code will be BG).
    Here you will have to pass the valid unit value which will be converted to correct internal format. You can try different units by above method and you will have to use any of those units for which you are getting successful output.
    Regards,
    Durgesh.

  • While uploading the flat file getting Error when assigning SID

    Hi ,
    while uploading flat file i getting thid error .
    Error when assigning SID: Action VAL_SID_CONVERT table 0FISCPER and No SID found for value '0 ' of characteristic 0CURRENCY

    Hi Bijender,
    This is related due to missing values in your currency tables.
    If  you are maintaining the currency tables from R/3 - Replicate the Currency Rates(Source sytem- Transfer Exchange Rates).
    & check if the missing value is available in the TCURR table.
    Thanks,
    ChandraDeepak

  • GTC Flat file reconciliation error

    I'm trying to bring users in to OIM using a flat file recon.
    Here is my error...
    <Feb 13, 2013 10:54:50 PM EST> <Error> <org.quartz.impl.jdbcjobstore.JobStoreCMT> <BEA-000000> <MisfireHandler: Error handling misfires: Unexpected runtime exception: null
    org.quartz.JobPersistenceException: Unexpected runtime exception: null [See nested exception: java.lang.NullPointerException]
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.doRecoverMisfires(JobStoreSupport.java:3042)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.manage(JobStoreSupport.java:3789)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.run(JobStoreSupport.java:3809)
    Caused By: java.lang.NullPointerException
         at org.quartz.SimpleTrigger.computeNumTimesFiredBetween(SimpleTrigger.java:800)
         at org.quartz.SimpleTrigger.updateAfterMisfire(SimpleTrigger.java:514)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.doUpdateOfMisfiredTrigger(JobStoreSupport.java:944)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.recoverMisfiredJobs(JobStoreSupport.java:898)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.doRecoverMisfires(JobStoreSupport.java:3029)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.manage(JobStoreSupport.java:3789)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.run(JobStoreSupport.java:3809)
    >
    <Feb 13, 2013 10:54:52 PM EST> <Error> <oracle.iam.platform.utils> <BEA-000000> <Failed to apply DMSMethodInterceptor on oracle.iam.reconciliation.impl.ActionEngine>
    <Feb 13, 2013 10:54:52 PM EST> <Warning> <XELLERATE.GC.PROVIDER.RECONCILIATIONTRANSPORT> <BEA-000000> <FILE SUCCESSFULLY ARCHIVED : /home/oracle/Desktop/GTCinput/identities.txt~>
    Any help is greatly appreciated!

    Still not exactly sure what's going on..
    After running the reconciliation, I get this error:
    <Feb 15, 2013 10:25:13 AM EST> <Error> <oracle.iam.platform.utils> <BEA-000000> <Failed to apply DMSMethodInterceptor on oracle.iam.reconciliation.impl.ActionEngine>
    <Feb 15, 2013 10:25:13 AM EST> <Warning> <XELLERATE.GC.PROVIDER.RECONCILIATIONTRANSPORT> <BEA-000000> <FILE SUCCESSFULLY ARCHIVED : /home/oracle/Desktop/GTCinput/identities.txt>
    The OIM diagnostic log shows:
    [2013-02-15T10:25:11.813-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Job Listener, Job to be executed Description null FullName DEFAULT.HR FLAT FILE TRUSTED RECON_GTC Name HR FLAT FILE TRUSTED RECON_GTC
    [2013-02-15T10:25:11.842-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Method details Method details: executeJob
    [2013-02-15T10:25:11.842-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.vo] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Method details executeJob HR FLAT FILE TRUSTED RECON_GTC
    [2013-02-15T10:25:13.073-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] User 4 is granted access to operation IGNORE_EVENT
    [2013-02-15T10:25:13.077-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: ignoreEvent Input Data : {employeeNumber=000011, organization=Xellerate Users, fullName=Test User11, userType=End-User, employeeType=Full-Time Employee, login=tuser11, firstName=Test, lastName=User11, [email protected]} dateFormat : yyyy/MM/dd HH:mm:ss z
    [2013-02-15T10:25:13.173-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: SELECT OBJ_KEY FROM OBJ WHERE OBJ_NAME = ?
    [2013-02-15T10:25:13.174-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: Params = [HR FLAT FILE TRUSTED RECON_GTC]
    [2013-02-15T10:25:13.188-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: SELECT OBJ_KEY FROM OBJ WHERE OBJ_NAME = ?
    [2013-02-15T10:25:13.188-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: Params = [HR FLAT FILE TRUSTED RECON_GTC]
    [2013-02-15T10:25:13.200-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Last Name and value is User11
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Email and value is [email protected]
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Full Name and value is Test User11
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Role and value is Full-Time Employee
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Employee Number and value is 000011
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Xellerate Type and value is End-User
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is act_key and value is Xellerate Users
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is organization and value is Xellerate Users
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is First Name and value is Test
    [2013-02-15T10:25:13.201-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is User Login and value is tuser11
    [2013-02-15T10:25:13.204-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.platform.entitymgr.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Initializing data provider for entity type - Organization of type OIMOrgDataProvider
    [2013-02-15T10:25:13.235-05:00] [oim_server1] [ERROR] [] [oracle.iam.platform.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Failed to apply DMSMethodInterceptor on oracle.iam.reconciliation.impl.ActionEngine
    [2013-02-15T10:25:13.250-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: select USR_KEY from usr where USR_LAST_NAME=? and USR_EMAIL=? and USR_FULL_NAME=? and USR_EMP_TYPE=? and USR_EMP_NO=? and USR_TYPE=? and ACT_KEY=? and USR_FIRST_NAME=? and USR_LOGIN=? and USR.USR_STATUS != 'Deleted' AND ((UPPER(USR.USR_LOGIN)=UPPER(?)))
    [2013-02-15T10:25:13.250-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: Params = [User11, [email protected], Test User11, Full-Time Employee, 000011, End-User, 1, Test, TUSER11, TUSER11]
    [2013-02-15T10:25:13.277-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] User 4 is granted access to operation CREATE_EVENT
    [2013-02-15T10:25:13.281-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: createEvent Input Data : {employeeNumber=000011, organization=Xellerate Users, fullName=Test User11, userType=End-User, employeeType=Full-Time Employee, login=tuser11, firstName=Test, lastName=User11, [email protected]}[[
    eventAttribs : serialVersionUID:1357809523267688155 dateFormat:yyyy/MM/dd HH:mm:ss z changeType:CHANGELOG eventFinished:false actionDate:null
    [2013-02-15T10:25:13.281-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Last Name and value is User11
    [2013-02-15T10:25:13.281-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Email and value is [email protected]
    [2013-02-15T10:25:13.281-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Full Name and value is Test User11
    [2013-02-15T10:25:13.281-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Role and value is Full-Time Employee
    [2013-02-15T10:25:13.282-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Employee Number and value is 000011
    [2013-02-15T10:25:13.282-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Xellerate Type and value is End-User
    [2013-02-15T10:25:13.282-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is act_key and value is Xellerate Users
    [2013-02-15T10:25:13.282-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is organization and value is Xellerate Users
    [2013-02-15T10:25:13.282-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is First Name and value is Test
    [2013-02-15T10:25:13.282-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is User Login and value is tuser11
    [2013-02-15T10:25:13.356-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.platform.entitymgr.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Initializing data provider for entity type - RA_HRFLATFILETRUST817ED7CA of type RDBMSDataProvider
    [2013-02-15T10:25:13.519-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Reconciliation event 41 completed successfully
    [2013-02-15T10:25:13.538-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] User 4 is granted access to operation IGNORE_EVENT
    [2013-02-15T10:25:13.538-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: ignoreEvent Input Data : {employeeNumber=000012, organization=Xellerate Users, fullName=Test User12, userType=End-User, employeeType=Full-Time Employee, login=tuser12, firstName=Test, lastName=User12, [email protected]} dateFormat : yyyy/MM/dd HH:mm:ss z
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Last Name and value is User12
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Email and value is [email protected]
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Full Name and value is Test User12
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Role and value is Full-Time Employee
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Employee Number and value is 000012
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Xellerate Type and value is End-User
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is act_key and value is Xellerate Users
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is organization and value is Xellerate Users
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is First Name and value is Test
    [2013-02-15T10:25:13.539-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is User Login and value is tuser12
    [2013-02-15T10:25:13.541-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: select USR_KEY from usr where USR_LAST_NAME=? and USR_EMAIL=? and USR_FULL_NAME=? and USR_EMP_TYPE=? and USR_EMP_NO=? and USR_TYPE=? and ACT_KEY=? and USR_FIRST_NAME=? and USR_LOGIN=? and USR.USR_STATUS != 'Deleted' AND ((UPPER(USR.USR_LOGIN)=UPPER(?)))
    [2013-02-15T10:25:13.541-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: Params = [User12, [email protected], Test User12, Full-Time Employee, 000012, End-User, 1, Test, TUSER12, TUSER12]
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] User 4 is granted access to operation CREATE_EVENT
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Generic Information: createEvent Input Data : {employeeNumber=000012, organization=Xellerate Users, fullName=Test User12, userType=End-User, employeeType=Full-Time Employee, login=tuser12, firstName=Test, lastName=User12, [email protected]}[[
    eventAttribs : serialVersionUID:1357809523267688155 dateFormat:yyyy/MM/dd HH:mm:ss z changeType:CHANGELOG eventFinished:false actionDate:null
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Last Name and value is User12
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Email and value is [email protected]
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Full Name and value is Test User12
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Role and value is Full-Time Employee
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Employee Number and value is 000012
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is Xellerate Type and value is End-User
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is act_key and value is Xellerate Users
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is organization and value is Xellerate Users
    [2013-02-15T10:25:13.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is First Name and value is Test
    [2013-02-15T10:25:13.553-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Oim attribute name is User Login and value is tuser12
    [2013-02-15T10:25:13.579-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Reconciliation event 42 completed successfully
    [2013-02-15T10:25:13.655-05:00] [oim_server1] [WARNING] [] [XELLERATE.GC.PROVIDER.RECONCILIATIONTRANSPORT] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] FILE SUCCESSFULLY ARCHIVED : /home/oracle/Desktop/GTCinput/identities.txt
    [2013-02-15T10:25:13.778-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Job Listener, Job was executed QuartzJobListener.jobWasExecuted Description null FullName DEFAULT.HR FLAT FILE TRUSTED RECON_GTC Name HR FLAT FILE TRUSTED RECON_GTC
    [2013-02-15T10:25:13.888-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,1:22706] [APP: oim#11.1.2.0.0] Submit task for BATCH [41]
    [2013-02-15T10:25:14.117-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.impl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,0] [APP: oim#11.1.2.0.0] Executing BATCH task with ID 41
    [2013-02-15T10:25:14.140-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.reconciliation.dao] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: oiminternal] [ecid: cf7494eb567c96ef:276af958:13cde709b6d:-8000-0000000000000003,0] [APP: oim#11.1.2.0.0] Generic Information: OIM_SP_ReconBlkUsrMLSWrapper[[
    intUserKey_in = 4
    intBatchKey_in = 41
    strTargetTableName_in = RA_HRFLATFILETRUST817ED7CA
    strRequiredAttributesList_in =
    strValidateAttributesList_in = RA_EMAIL,RA_EMPLOYEETYPE,RA_USERTYPE,RA_ACT_KEY,RA_LOGIN
    strOIMVldtAttributeColList_in = USR_EMAIL,USR_EMP_TYPE,USR_TYPE,ACT_KEY,USR_LOGIN
    strMatchingRule_in = ((UPPER(USR.usr_login)=UPPER(RA_HRFLATFILETRUST817ED7CA.RA_LOGIN)))
    strNoMatchFoundRule_in = Create User
    strUserMatchedRule_in = Establish Link
    strUsersMatchedRule_in = None
    intEventAssignUsrGrpKey_in = 0
    strmappedAttributesList_in = RA_LASTNAME,RA_EMAIL,RA_FULLNAME,RA_EMPLOYEETYPE,RA_EMPLOYEENUMBER,RA_USERTYPE,RA_ACT_KEY,RA_FIRSTNAME,RA_LOGIN
    stroimAttributeTableColList_in = USR_LAST_NAME,USR_EMAIL,USR_FULL_NAME,USR_EMP_TYPE,USR_EMP_NO,USR_TYPE,ACT_KEY,USR_FIRST_NAME,USR_LOGIN
    strReconciliationType_in = User
    strReconMLSTableName_in = RAMLS_HRFLATFIL817ED7CA
    strReconMLSColNames_in = RA_FULLNAME
    strOimMLSColNames_in = USR_FULL_NAME
    strDefaultLocale_in = en
    strAllLocates_in = en
    intReturnCode_out = null
    strErrMsg_out = null
    Maybe I'm just not seeing the problem? None of the two users in this reconciliation are created.

  • Flat file load Error 1

    Hi ,
    Iam trying to load flat file to infoobject. when i tried to load it , iam getting an error ( see below), iam not getting this error when i loaded in dev and Quality. only getting error in Production. the file contain only 2 records.
    is there any access required rights required in production ?
    Error 1 when loading external data
    Message no. RSAR234
    Diagnosis
    Error number 1 occurred when loading external data:
    1. Error when reading the file (access rights, file name, ...)
    2. File size or number of records does not correspond to the data in the control file
    3. Error when generating the IDoc
    4. File contains invalid data (errors with an arithmetic operation or data conversion)
    Procedure
    Check whether you have the required access rights and whether the data in the control file is correct (file names, record length, number of records, ...). Correct the data in the control file if necessary and check the data file for invalid data (values of the wrong type, values in the wrong format for conversion exit,...). Check whether the file has headers that have not been specified.

    Hi
    Check your Authorization for Loading the Flat File/ Access the work Station from AL11 ..
    Check your Transformation Rule Details for the Conversions / Data Types are mapped correctly.
    If Infopackage loads data from a flat file on your workstation, then you cannot execute the Infopackage in a Process Chain you need to put your flat file on the Application Server(AL11) and change your Infopackage to load from there instead of the workstation
    The file should be closed while scheduling
    The file path mentioned in the external data tabpage of the infopackage should be correct
    Records in the file should be in uppercase you can use lowercase for a particular characteristic.provided the lowercase checkbox in the general tabpage of the maintenance screen of the infoobject is checked.
    Calendar day should be of the format yyyymmdd in the file
    Hope it helps

  • Flat file load error

    Hi.
    I am getting the following error when loading .csv file from "Client Workstation" but the same file is loading fine from "Application server".
    Value '10/1/206 ' of characteristic 0DATE is not a number with 000008 spaces
    I look for your suggestions to solve and understand this.
    Thanks
    Kumar

    Hi Dinesh,
    I solved the problem by using SDATE in transfer rules as per the SAP note 161506. I am giving the note below for others who might land with similar problem.
    Thanks
    Kumar
    SAP Note Number: 161506
    Summary
    Symptom
    You want to transfer data from a source system into BW from a file (flat file) that also includes date entries (for example, for the 0CALDAY InfoObject). However, when you load the data, the data disappears.
    Other terms
    Time characteristic, transfer structure, transfer rules, InfoPackage Scheduler, InfoSource
    Reason and Prerequisites
    In the flatfile of the source system, a date exists which is not stored in the internal format YYYYMMDD but in the external (user-specific) format. In the transfer structure maintenance, no routine is specified for the conversion exit for the corresponding date field. An incorrect data type and an incorrect length can be assigned additionally. The missing conversion exit causes an incorrect processing of the date during the conversion to the internal format of the type DATS and length 8.
    Solution
    In the maintenance of the transfer structure, standard values that expect the date while the data is being stored in the internal format of the YYYYMMDD system are entered for the 0CALDAY InfoObject (calendar day):
      InfoObject Field name Type Length Conversion exit   0CALDAY       CALDAY      CHAR      8
    The problem described above is corrected with the conversion of the date fields into the internal format in the flatfile.
    If you want to maintain the external format of the date in the source file, implement the following changes in the transfer structure maintenance for the 0CALDAY field:
      InfoObject Field name Type Length Conversion exit   0CALDAY       CALDAY      CHAR    10   SDATE
    Note that the type must always be CHAR (not DATS). The predefined field length is changed from 8 to 10, and additionally the conversion routine SDATE is entered.
    IMPORTANT: The external format for the date in the flat file must match the standard settings of the user in the system (System -> User profiles -> Own data -> Fixed values) such as DD.MM.YYYY MM/DD/YYYY and so on.
    Each time you make a change in the maintenance of the transfer structure, you must
    a) save the new entries,
    b) activate the transfer rules again (InfoSource -> maintain transfer rules),
    c) exit and access the Administrator Workbench again (see related notes below) before the next set of data is loaded.
    Header Data
    Release Status:     Released for Customer
    Released on:     03.09.2004  08:27:34
    Priority:     Recommendations/additional info
    Category:     Consulting
    Primary Component:     BW-WHM-DST Data Staging
    Releases
    Release Independant
    Related Notes
    157643 - Format 0CALMONTH, 0CALWEEK and 0FISCPER incorrect
    155706 - Changes to transfer rules are ignored

  • Flat File load error on 0FISPER format

    Hi Experts,
    I need load a flat file in BI 7.0.  The error in on 0FISCPER
    a basic questions..
    a) the right format in flat file is "0072008" or "2008007" ?
    b) in datasource, tab proposal and fields, which is the right format (datatype, lengh) ? the format must be Externa, Internal or Check?
    c) does I need created this year (2008) on other system tables? ex: calendar table, T009, etc..
    Thank you in advance!

    HI,
    a) the right format in flat file is "0072008" or "2008007" ?
    b) in datasource, tab proposal and fields, which is the right format (datatype, lengh) ? the format must be Externa, Internal or Check?
    - You can use in any format, if you are using 0072008 u have to use "External" in your Datasource level. If you are using 2008007, u have to use "Internal"
    c) does I need created this year (2008) on other system tables? ex: calendar table, T009, etc..
    - No need to create year in any table. when you are loading the data, it automatically store in respective table
    Regards
    Rajesh

Maybe you are looking for