SAP Inbox t code sbwp  is not working properly

Hi,
In our SAP server the SAP mail box t code SBWP is not working at a particular time between 11 AM to 12 AM. If we send internal mails between SAP users in t code SBWP we are able to receive all the time but at a particular time of 11 AM to 12 AM we are not able to receive any mail.
If we send any mail at that particular time after 11 AM we are  receiving it only after 12 AM, but this error we are not facing expect that particular time.
I have checked whether any backgroung work process is Active at that time but all the BG work process are free at that time
please help me how to solve this issue.
Thanks
Senthil

hi
check out this sap note
1348288 Delayed delivery of documents in SBWP

Similar Messages

  • Hi ALL i have a BDC code  it is not working properly

    this BDC code is not working properly , when ever the file is transfering BDC is aborting in the case of   invalid material/batch comes into teh picture... so please could you ''Check for invalid material/batch combinations so they are not processed by the BDC in the program and correctly output in an exception report''
    *****************************CODE HERE*****************************
    S E L E C T I O N S C R E E N
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS: p_file LIKE rlgrap-filename,
    p_arch LIKE rlgrap-filename. "RM080107
    SELECTION-SCREEN SKIP.
    PARAMETERS: p_mode LIKE ctu_params-dismode DEFAULT 'N'.
    SELECTION-SCREEN END OF BLOCK b1.
    I N C L U D E S
    INCLUDE zwm_np_stock_recon_top.
    INCLUDE zwm_np_stock_recon_f01.
    I N I T I A L I Z A T I O N
    INITIALIZATION.
    PERFORM get_interface_filename USING c_interface_file p_file.
    PERFORM get_interface_filename USING c_archive_file p_arch."RM080107
    S T A R T O F S E L E C T I O N
    START-OF-SELECTION.
    PERFORM read_file USING p_file.
    PERFORM pre_processing.
    E N D O F S E L E C T I O N
    END-OF-SELECTION.
    PERFORM process_checks.
    IF w_no_change = 'X'.
    WRITE: / text-b03.
    WRITE: / sy-uline(34).
    ELSE.
    PERFORM bdc_mi09.
    PERFORM file_check_report.
    PERFORM bdc_report.
    ENDIF.
    PERFORM post_process_checks.
    *-- Move the processed file to archive directory
    PERFORM move_file.
    ...*************.........first include...................************
    INCLUDE ZWM_NP_STOCK_RECON_TOP *
    Data declaration ----------------------------------------------
    TYPES: st_rawdata(2000) TYPE c.
    TYPES: BEGIN OF st_stck_cnt,
    werks TYPE iseg-werks, "plant
    lgort TYPE iseg-lgort, "storage location
    matnr TYPE iseg-matnr, "material number
    charg TYPE iseg-charg, "batch
    vfdat TYPE mch1-vfdat, "Sell by date
    lwedt TYPE mch1-lwedt, "Manufacture date
    quarn(8) TYPE n, "qaunrantine quantity
    menge(8) TYPE n, "quantity on hand
    message(1), "Message Type (E/W/I)
    msg_txt TYPE t100-text, "Message Text
    zerostck(1), "Zero stock identifier "RM220307
    END OF st_stck_cnt.
    TYPES: BEGIN OF st_batch_errors,
    matnr TYPE iseg-matnr, "material number
    charg TYPE iseg-charg, "batch
    clabs TYPE mchb-clabs, "Stock Balance
    END OF st_batch_errors.
    DATA:
    t_rawdata TYPE TABLE OF st_rawdata,
    w_rawdata TYPE st_rawdata,
    t_stck_cnt TYPE TABLE OF st_stck_cnt,
    d_stck_cnt TYPE TABLE OF st_stck_cnt, "RM191006
    w_stck_cnt TYPE st_stck_cnt,
    t_batch_errors TYPE TABLE OF st_batch_errors,
    w_batch_errors TYPE st_batch_errors,
    t_messtab LIKE bdcmsgcoll OCCURS 0,
    w_messtab LIKE LINE OF t_messtab,
    w_no_change.
    CONSTANTS: c_interface_file(26) TYPE c VALUE 'ZNP_STOCK_RECON',
    c_archive_file(26) TYPE c
    VALUE 'ZNP_STOCK_RECON_ARCHIVE'. "RM080107
    .*************................second include..........************
    ***INCLUDE ZWM_NEXTPHARMA_STOKRECON_F01 .
    *& Form read_file
    reads NextPharma file sent through via webmethods
    -->P_FILENAME
    FORM read_file USING p_filename.
    CLEAR: t_rawdata,
    w_rawdata.
    REFRESH: t_rawdata.
    OPEN DATASET p_filename FOR INPUT IN TEXT MODE.
    IF sy-subrc <> 0.
    MESSAGE e720(01).
    ENDIF.
    DO.
    READ DATASET p_filename INTO w_rawdata.
    IF sy-subrc <> 0.
    EXIT.
    ELSE.
    APPEND w_rawdata TO t_rawdata.
    ENDIF.
    ENDDO.
    CLOSE DATASET p_filename.
    ENDFORM. " read_file
    *& Form pre_processing
    Read file values into internal table
    FORM pre_processing.
    DATA: lw_matnr TYPE iseg-matnr.
    LOOP AT t_rawdata INTO w_rawdata.
    lw_matnr = w_rawdata+21(20). "RM031006
    lw_matnr = w_rawdata+22(18). "RM031006
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
    EXPORTING
    input = lw_matnr
    IMPORTING
    output = lw_matnr
    EXCEPTIONS
    length_error = 1
    OTHERS = 2.
    MOVE: lw_matnr TO w_stck_cnt-matnr.
    w_stck_cnt-werks = w_rawdata+14(4).
    w_stck_cnt-lgort = w_rawdata+18(4).
    w_stck_cnt-charg = w_rawdata+84(25).
    w_stck_cnt-vfdat = w_rawdata+109(8).
    w_stck_cnt-lwedt = w_rawdata+117(8).
    w_stck_cnt-quarn = w_rawdata+141(8).
    w_stck_cnt-menge = w_rawdata+125(8).
    APPEND w_stck_cnt TO t_stck_cnt.
    CLEAR w_stck_cnt.
    ENDLOOP.
    SORT t_stck_cnt BY werks
    lgort
    matnr
    charg.
    DELETE ADJACENT DUPLICATES FROM t_stck_cnt.
    ENDFORM. " pre_processing
    *& Form bdc_mi09
    Run file data via BDC TCODE: MI09
    FORM bdc_mi09.
    DATA: t_bdcdata TYPE TABLE OF bdcdata,
    w_bdcdata TYPE bdcdata,
    lw_datum(10) TYPE c,
    lw_count(2) TYPE n.
    WRITE sy-datum TO lw_datum DD/MM/YYYY.
    Front Screen
    CLEAR w_bdcdata.
    w_bdcdata-program = 'SAPMM07I'.
    w_bdcdata-dynpro = '0700'.
    w_bdcdata-dynbegin = 'X'.
    APPEND w_bdcdata TO t_bdcdata.
    Enter
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'BDC_OKCODE'.
    w_bdcdata-fval = '/00'.
    APPEND w_bdcdata TO t_bdcdata.
    Count Date
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'RM07I-ZLDAT'.
    w_bdcdata-fval = lw_datum.
    APPEND w_bdcdata TO t_bdcdata.
    Document Date
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'RM07I-BLDAT'.
    w_bdcdata-fval = lw_datum.
    APPEND w_bdcdata TO t_bdcdata.
    Plant
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'IKPF-WERKS'.
    w_bdcdata-fval = w_stck_cnt-werks.
    APPEND w_bdcdata TO t_bdcdata.
    Storage Location
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'IKPF-LGORT'.
    w_bdcdata-fval = w_stck_cnt-lgort.
    APPEND w_bdcdata TO t_bdcdata.
    LOOP AT t_stck_cnt INTO w_stck_cnt.
    Do not submit items with Errors against them
    CHECK w_stck_cnt-message NE 'E' AND
    w_stck_cnt-zerostck NE 'X'.
    "RM220307
    lw_count = lw_count + 1.
    Input Screen
    CLEAR w_bdcdata.
    w_bdcdata-program = 'SAPMM07I'.
    w_bdcdata-dynpro = '0731'.
    w_bdcdata-dynbegin = 'X'.
    APPEND w_bdcdata TO t_bdcdata.
    Page Down
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'BDC_OKCODE'.
    w_bdcdata-fval = '=P+'.
    APPEND w_bdcdata TO t_bdcdata.
    Material
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'ISEG-MATNR(01)'.
    w_bdcdata-fval = w_stck_cnt-matnr.
    APPEND w_bdcdata TO t_bdcdata.
    Batch
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'ISEG-CHARG(01)'.
    w_bdcdata-fval = w_stck_cnt-charg.
    APPEND w_bdcdata TO t_bdcdata.
    IF w_stck_cnt-menge NE 0.
    Quantity
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'ISEG-ERFMG(01)'.
    w_bdcdata-fval = w_stck_cnt-menge.
    APPEND w_bdcdata TO t_bdcdata.
    *-- Begin RM220307 - We need to create an item when the quantity is zero
    *-- in file and is non-zero in SAP
    ELSE.
    Zero Stock indicator
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'ISEG-XNULL(01)'.
    w_bdcdata-fval = 'X'.
    APPEND w_bdcdata TO t_bdcdata.
    *-- End RM220307
    ENDIF.
    ENDLOOP.
    CHECK lw_count NE 0.
    After all line items have been input
    Final Screen
    CLEAR w_bdcdata.
    w_bdcdata-program = 'SAPMM07I'.
    w_bdcdata-dynpro = '0731'.
    w_bdcdata-dynbegin = 'X'.
    APPEND w_bdcdata TO t_bdcdata.
    Save Document
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'BDC_OKCODE'.
    w_bdcdata-fval = '=BU'.
    APPEND w_bdcdata TO t_bdcdata.
    CALL TRANSACTION 'MI09' USING t_bdcdata
    MODE p_mode
    MESSAGES INTO t_messtab.
    ENDFORM. " bdc_mi09
    *& Form bdc_report
    Write BDC Messages.
    FORM bdc_report.
    DATA: lw_text TYPE t100-text.
    SKIP.
    WRITE: / text-b01.
    WRITE: / sy-uline(21).
    SKIP.
    Write BDC Messages
    LOOP AT t_messtab INTO w_messtab WHERE msgspra = sy-langu.
    MESSAGE ID w_messtab-msgid TYPE w_messtab-msgtyp
    NUMBER w_messtab-msgnr
    WITH w_messtab-msgv1
    w_messtab-msgv2
    w_messtab-msgv3
    w_messtab-msgv4
    INTO lw_text.
    WRITE: / lw_text.
    ENDLOOP.
    ENDFORM. " bdc_report
    *& Form process_checks
    Perform process check before creating BDC Session
    FORM process_checks.
    DATA: lw_clabs LIKE mchb-clabs,
    lw_menge LIKE mchb-clabs,
    lw_matnr LIKE mara-matnr,
    lw_charg LIKE mch1-charg,
    lw_fail,
    lw_vfdat TYPE mch1-vfdat,
    lv_sell TYPE c, "RM191006
    lv_qty(8) TYPE c. "RM191006
    CLEAR: d_stck_cnt[], d_stck_cnt. "RM191006
    Check if any of the stock figures differ from current stock figures
    LOOP AT t_stck_cnt INTO w_stck_cnt.
    lw_menge = w_stck_cnt-menge.
    SELECT SINGLE clabs INTO lw_clabs
    FROM mchb
    WHERE matnr = w_stck_cnt-matnr
    AND werks = w_stck_cnt-werks
    AND lgort = w_stck_cnt-lgort
    AND charg = w_stck_cnt-charg.
    IF sy-subrc = 0.
    IF lw_clabs NE lw_menge.
    lw_fail = 'X'.
    *-- Begin RM220307 - Do not create PI item if the stock is zero in the
    *-- file and is zero in SAP
    EXIT.
    ELSEIF lw_clabs = 0 AND lw_menge = 0.
    w_stck_cnt-zerostck = 'X'.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    ENDIF.
    *-- End RM220307
    ELSE.
    lw_fail = 'X'.
    ERROR
    ENDIF.
    ENDLOOP.
    If no differences are found set NO CHANGE Flag
    IF lw_fail NE 'X'.
    w_no_change = 'X'.
    EXIT.
    ENDIF.
    Check for Errors in file data
    LOOP AT t_stck_cnt INTO w_stck_cnt.
    CLEAR lv_sell. "RM191006
    SELECT SINGLE matnr INTO lw_matnr
    FROM mara
    WHERE matnr = w_stck_cnt-matnr.
    IF sy-subrc NE 0.
    Invalid Material (E)
    w_stck_cnt-message = 'E'.
    w_stck_cnt-msg_txt = 'Invalid Material'.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    CONTINUE.
    ENDIF.
    SELECT SINGLE charg vfdat
    INTO (lw_charg, lw_vfdat)
    FROM mch1 "KOB01 - changed from MCHA
    WHERE matnr = w_stck_cnt-matnr
    AND charg = w_stck_cnt-charg.
    AND werks = w_stck_cnt-werks.
    IF sy-subrc NE 0.
    Invalid Material Batch (E)
    w_stck_cnt-message = 'E'.
    CONCATENATE 'Invalid Material Batch for plant' w_stck_cnt-werks
    INTO w_stck_cnt-msg_txt SEPARATED BY space.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    CONTINUE.
    ELSE.
    IF w_stck_cnt-vfdat <> lw_vfdat.
    Sell by dates do not match (W)
    w_stck_cnt-message = 'W'.
    w_stck_cnt-msg_txt =
    'Sell by Date does not match Shelf life Expiry Date'.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    lv_sell = 'X'. "RM191006
    CONTINUE. "RM191006
    ENDIF.
    ENDIF.
    IF w_stck_cnt-quarn > 0.
    Quarantine balance not Zero (W)
    w_stck_cnt-message = 'W'.
    *-- Begin RM191006
    *-- We do want all warning messages on the report
    lv_qty = w_stck_cnt-quarn.
    CONDENSE lv_qty NO-GAPS.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
    EXPORTING
    input = lv_qty
    IMPORTING
    output = lv_qty.
    w_stck_cnt-msg_txt = 'Quarantine balance is not zero'.
    CONCATENATE 'Quarantine balance is ' lv_qty '- not zero'
    INTO w_stck_cnt-msg_txt SEPARATED BY space.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    CONTINUE.
    IF lv_sell = 'X'.
    APPEND w_stck_cnt TO d_stck_cnt.
    CLEAR lv_sell.
    ELSE.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    ENDIF.
    *-- End RM191006
    ENDIF.
    ENDLOOP.
    *-- Begin RM191006
    *-- Finally get all the records into dummy table to report
    APPEND LINES OF t_stck_cnt TO d_stck_cnt.
    SORT d_stck_cnt.
    DELETE ADJACENT DUPLICATES FROM d_stck_cnt.
    *-- End RM191006
    ENDFORM. " process_checks
    *& Form file_check_report
    Write warning and Error messages from File checks
    FORM file_check_report.
    WRITE: /2 'Material',
    22 'Batch',
    32 'Sell By',
    45 'Message Text'.
    WRITE: /2 sy-uline(115).
    SKIP.
    LOOP AT t_stck_cnt INTO w_stck_cnt. "RM191006
    LOOP AT d_stck_cnt INTO w_stck_cnt. "RM191006
    CHECK w_stck_cnt-message NE ' '.
    WRITE: /2 w_stck_cnt-matnr,
    22 w_stck_cnt-charg,
    32 w_stck_cnt-vfdat,
    43 w_stck_cnt-message,
    45 w_stck_cnt-msg_txt.
    ENDLOOP.
    ENDFORM. " file_check_report
    *& Form post_process_checks
    Check Material Batches in SAP against NP File
    FORM post_process_checks.
    RANGES: r_matnr FOR mchb-matnr,
    r_lgort FOR mchb-lgort,
    r_werks FOR mchb-werks.
    SORT t_stck_cnt.
    LOOP AT t_stck_cnt INTO w_stck_cnt.
    AT END OF matnr.
    r_lgort-sign = 'I'.
    r_lgort-option = 'EQ'.
    r_lgort-low = w_stck_cnt-lgort.
    APPEND r_lgort.
    r_werks-sign = 'I'.
    r_werks-option = 'EQ'.
    r_werks-low = w_stck_cnt-werks.
    APPEND r_werks.
    r_matnr-sign = 'I'.
    r_matnr-option = 'EQ'.
    r_matnr-low = w_stck_cnt-matnr.
    APPEND r_matnr.
    ENDAT.
    ENDLOOP.
    Select all material batches for NP Materials
    SELECT matnr charg clabs
    INTO TABLE t_batch_errors
    FROM mchb
    WHERE werks IN r_werks
    AND lgort IN r_lgort.
    IF sy-subrc EQ 0.
    Check if the Material Batches are in the NP file
    LOOP AT t_batch_errors INTO w_batch_errors.
    Disregard Batches without positive unrestricted stock
    IF w_batch_errors-clabs LE 0.
    DELETE t_batch_errors.
    CONTINUE.
    ENDIF.
    READ TABLE t_stck_cnt INTO w_stck_cnt
    WITH KEY matnr = w_batch_errors-matnr
    charg = w_batch_errors-charg.
    IF sy-subrc = 0.
    DELETE t_batch_errors.
    ENDIF.
    ENDLOOP.
    ENDIF.
    CHECK NOT t_batch_errors[] IS INITIAL.
    Write Batch chak results to report
    SKIP.
    WRITE: / text-b02.
    WRITE: / sy-uline(74).
    WRITE: /2 'Material',
    22 'Batch'.
    WRITE: /2 sy-uline(32).
    SKIP.
    LOOP AT t_batch_errors INTO w_batch_errors.
    WRITE: /2 w_batch_errors-matnr,
    22 w_batch_errors-charg.
    ENDLOOP.
    ENDFORM. " post_process_checks
    G E T _ I N T E R F A C E _ F I L E N A M E
    FORM get_interface_filename USING filename lw_path.
    DATA: i_file TYPE filename-fileintern,
    out_filename LIKE v_path-pathextern.
    CLEAR: out_filename.
    i_file = filename.
    get the interface filename to be used when creating file
    CALL FUNCTION 'FILE_GET_NAME'
    EXPORTING
    logical_filename = i_file
    IMPORTING
    file_name = out_filename
    EXCEPTIONS
    file_not_found = 1
    OTHERS = 2.
    IF sy-subrc = 0.
    MOVE out_filename TO lw_path.
    IF filename NE c_archive_file. "RM080107
    CONCATENATE lw_path 'NP_StockBalance.dat'
    INTO lw_path.
    *-- Begin RM080107 - Add timestamp to the archived file
    ELSE.
    CONCATENATE lw_path 'NP_StockBalance' sy-datum sy-uzeit '.dat'
    INTO lw_path.
    ENDIF.
    *-- End RM080107
    ELSE.
    ENDIF.
    ENDFORM. "get_interface_filename
    *& Form move_file RM080107
    Move the processed file to archive directory
    FORM move_file.
    *-- At last move the file to archive directory
    OPEN DATASET p_arch FOR OUTPUT IN TEXT MODE.
    IF sy-subrc = 0.
    LOOP AT t_rawdata INTO w_rawdata.
    TRANSFER w_rawdata TO p_arch.
    ENDLOOP.
    ENDIF.
    CLOSE DATASET p_arch.
    DELETE DATASET p_file.
    ENDFORM. " move_file

    Hi,
    S E L E C T I O N S C R E E N
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS: p_file LIKE rlgrap-filename,
    p_arch LIKE rlgrap-filename. "RM080107
    SELECTION-SCREEN SKIP.
    PARAMETERS: p_mode LIKE ctu_params-dismode DEFAULT 'N'.
    SELECTION-SCREEN END OF BLOCK b1.
    I N C L U D E S
    INCLUDE zwm_np_stock_recon_top.
    INCLUDE zwm_np_stock_recon_f01.
    I N I T I A L I Z A T I O N
    INITIALIZATION.
    PERFORM get_interface_filename USING c_interface_file p_file.
    PERFORM get_interface_filename USING c_archive_file p_arch."RM080107
    S T A R T O F S E L E C T I O N
    START-OF-SELECTION.
    PERFORM read_file USING p_file.
    PERFORM pre_processing.
    E N D O F S E L E C T I O N
    END-OF-SELECTION.
    PERFORM process_checks.
    IF w_no_change = 'X'.
    WRITE: / text-b03.
    WRITE: / sy-uline(34).
    ELSE.
    PERFORM bdc_mi09.
    PERFORM file_check_report.
    PERFORM bdc_report.
    ENDIF.
    PERFORM post_process_checks.
    *-- Move the processed file to archive directory
    PERFORM move_file.
    ...*************.........first include...................************
    INCLUDE ZWM_NP_STOCK_RECON_TOP *
    Data declaration ----------------------------------------------
    TYPES: st_rawdata(2000) TYPE c.
    TYPES: BEGIN OF st_stck_cnt,
    werks TYPE iseg-werks, "plant
    lgort TYPE iseg-lgort, "storage location
    matnr TYPE iseg-matnr, "material number
    charg TYPE iseg-charg, "batch
    vfdat TYPE mch1-vfdat, "Sell by date
    lwedt TYPE mch1-lwedt, "Manufacture date
    quarn(8) TYPE n, "qaunrantine quantity
    menge(8) TYPE n, "quantity on hand
    message(1), "Message Type (E/W/I)
    msg_txt TYPE t100-text, "Message Text
    zerostck(1), "Zero stock identifier "RM220307
    END OF st_stck_cnt.
    TYPES: BEGIN OF st_batch_errors,
    matnr TYPE iseg-matnr, "material number
    charg TYPE iseg-charg, "batch
    clabs TYPE mchb-clabs, "Stock Balance
    END OF st_batch_errors.
    DATA:
    t_rawdata TYPE TABLE OF st_rawdata,
    w_rawdata TYPE st_rawdata,
    t_stck_cnt TYPE TABLE OF st_stck_cnt,
    d_stck_cnt TYPE TABLE OF st_stck_cnt, "RM191006
    w_stck_cnt TYPE st_stck_cnt,
    t_batch_errors TYPE TABLE OF st_batch_errors,
    w_batch_errors TYPE st_batch_errors,
    t_messtab LIKE bdcmsgcoll OCCURS 0,
    w_messtab LIKE LINE OF t_messtab,
    w_no_change.
    CONSTANTS: c_interface_file(26) TYPE c VALUE 'ZNP_STOCK_RECON',
    c_archive_file(26) TYPE c
    VALUE 'ZNP_STOCK_RECON_ARCHIVE'. "RM080107
    .*************................second include..........************
    ***INCLUDE ZWM_NEXTPHARMA_STOKRECON_F01 .
    *& Form read_file
    reads NextPharma file sent through via webmethods
    -->P_FILENAME
    FORM read_file USING p_filename.
    CLEAR: t_rawdata,
    w_rawdata.
    REFRESH: t_rawdata.
    OPEN DATASET p_filename FOR INPUT IN TEXT MODE.
    IF sy-subrc <> 0.
    MESSAGE e720(01).
    ENDIF.
    DO.
    READ DATASET p_filename INTO w_rawdata.
    IF sy-subrc <> 0.
    EXIT.
    ELSE.
    APPEND w_rawdata TO t_rawdata.
    ENDIF.
    ENDDO.
    CLOSE DATASET p_filename.
    ENDFORM. " read_file
    *& Form pre_processing
    Read file values into internal table
    FORM pre_processing.
    DATA: lw_matnr TYPE iseg-matnr.
    LOOP AT t_rawdata INTO w_rawdata.
    lw_matnr = w_rawdata+21(20). "RM031006
    lw_matnr = w_rawdata+22(18). "RM031006
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
    EXPORTING
    input = lw_matnr
    IMPORTING
    output = lw_matnr
    EXCEPTIONS
    length_error = 1
    OTHERS = 2.
    MOVE: lw_matnr TO w_stck_cnt-matnr.
    w_stck_cnt-werks = w_rawdata+14(4).
    w_stck_cnt-lgort = w_rawdata+18(4).
    w_stck_cnt-charg = w_rawdata+84(25).
    w_stck_cnt-vfdat = w_rawdata+109(8).
    w_stck_cnt-lwedt = w_rawdata+117(8).
    w_stck_cnt-quarn = w_rawdata+141(8).
    w_stck_cnt-menge = w_rawdata+125(8).
    APPEND w_stck_cnt TO t_stck_cnt.
    CLEAR w_stck_cnt.
    ENDLOOP.
    SORT t_stck_cnt BY werks
    lgort
    matnr
    charg.
    DELETE ADJACENT DUPLICATES FROM t_stck_cnt.
    ENDFORM. " pre_processing
    *& Form bdc_mi09
    Run file data via BDC TCODE: MI09
    FORM bdc_mi09.
    DATA: t_bdcdata TYPE TABLE OF bdcdata,
    w_bdcdata TYPE bdcdata,
    lw_datum(10) TYPE c,
    lw_count(2) TYPE n.
    WRITE sy-datum TO lw_datum DD/MM/YYYY.
    <b>select single MATNR
                       WERKS
                       CHARG
               from MCHA
               into (l_matnr, l_werks, l_charg)
               where matnr = w_stck_cnt-matnr
                  and werks = w_stck_cnt-werks.
                  and charg =  w_stck_cnt-charg.
    if sy-subrc ne 0.
    continue.
    endif.</b>
    Front Screen
    CLEAR w_bdcdata.
    w_bdcdata-program = 'SAPMM07I'.
    w_bdcdata-dynpro = '0700'.
    w_bdcdata-dynbegin = 'X'.
    APPEND w_bdcdata TO t_bdcdata.
    Enter
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'BDC_OKCODE'.
    w_bdcdata-fval = '/00'.
    APPEND w_bdcdata TO t_bdcdata.
    Count Date
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'RM07I-ZLDAT'.
    w_bdcdata-fval = lw_datum.
    APPEND w_bdcdata TO t_bdcdata.
    Document Date
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'RM07I-BLDAT'.
    w_bdcdata-fval = lw_datum.
    APPEND w_bdcdata TO t_bdcdata.
    Plant
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'IKPF-WERKS'.
    w_bdcdata-fval = w_stck_cnt-werks.
    APPEND w_bdcdata TO t_bdcdata.
    Storage Location
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'IKPF-LGORT'.
    w_bdcdata-fval = w_stck_cnt-lgort.
    APPEND w_bdcdata TO t_bdcdata.
    LOOP AT t_stck_cnt INTO w_stck_cnt.
    Do not submit items with Errors against them
    CHECK w_stck_cnt-message NE 'E' AND
    w_stck_cnt-zerostck NE 'X'.
    "RM220307
    lw_count = lw_count + 1.
    Input Screen
    CLEAR w_bdcdata.
    w_bdcdata-program = 'SAPMM07I'.
    w_bdcdata-dynpro = '0731'.
    w_bdcdata-dynbegin = 'X'.
    APPEND w_bdcdata TO t_bdcdata.
    Page Down
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'BDC_OKCODE'.
    w_bdcdata-fval = '=P+'.
    APPEND w_bdcdata TO t_bdcdata.
    Material
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'ISEG-MATNR(01)'.
    w_bdcdata-fval = w_stck_cnt-matnr.
    APPEND w_bdcdata TO t_bdcdata.
    Batch
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'ISEG-CHARG(01)'.
    w_bdcdata-fval = w_stck_cnt-charg.
    APPEND w_bdcdata TO t_bdcdata.
    IF w_stck_cnt-menge NE 0.
    Quantity
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'ISEG-ERFMG(01)'.
    w_bdcdata-fval = w_stck_cnt-menge.
    APPEND w_bdcdata TO t_bdcdata.
    *-- Begin RM220307 - We need to create an item when the quantity is zero
    *-- in file and is non-zero in SAP
    ELSE.
    Zero Stock indicator
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'ISEG-XNULL(01)'.
    w_bdcdata-fval = 'X'.
    APPEND w_bdcdata TO t_bdcdata.
    *-- End RM220307
    ENDIF.
    ENDLOOP.
    CHECK lw_count NE 0.
    After all line items have been input
    Final Screen
    CLEAR w_bdcdata.
    w_bdcdata-program = 'SAPMM07I'.
    w_bdcdata-dynpro = '0731'.
    w_bdcdata-dynbegin = 'X'.
    APPEND w_bdcdata TO t_bdcdata.
    Save Document
    CLEAR w_bdcdata.
    w_bdcdata-fnam = 'BDC_OKCODE'.
    w_bdcdata-fval = '=BU'.
    APPEND w_bdcdata TO t_bdcdata.
    CALL TRANSACTION 'MI09' USING t_bdcdata
    MODE p_mode
    MESSAGES INTO t_messtab.
    ENDFORM. " bdc_mi09
    *& Form bdc_report
    Write BDC Messages.
    FORM bdc_report.
    DATA: lw_text TYPE t100-text.
    SKIP.
    WRITE: / text-b01.
    WRITE: / sy-uline(21).
    SKIP.
    Write BDC Messages
    LOOP AT t_messtab INTO w_messtab WHERE msgspra = sy-langu.
    MESSAGE ID w_messtab-msgid TYPE w_messtab-msgtyp
    NUMBER w_messtab-msgnr
    WITH w_messtab-msgv1
    w_messtab-msgv2
    w_messtab-msgv3
    w_messtab-msgv4
    INTO lw_text.
    WRITE: / lw_text.
    ENDLOOP.
    ENDFORM. " bdc_report
    *& Form process_checks
    Perform process check before creating BDC Session
    FORM process_checks.
    DATA: lw_clabs LIKE mchb-clabs,
    lw_menge LIKE mchb-clabs,
    lw_matnr LIKE mara-matnr,
    lw_charg LIKE mch1-charg,
    lw_fail,
    lw_vfdat TYPE mch1-vfdat,
    lv_sell TYPE c, "RM191006
    lv_qty(8) TYPE c. "RM191006
    CLEAR: d_stck_cnt[], d_stck_cnt. "RM191006
    Check if any of the stock figures differ from current stock figures
    LOOP AT t_stck_cnt INTO w_stck_cnt.
    lw_menge = w_stck_cnt-menge.
    SELECT SINGLE clabs INTO lw_clabs
    FROM mchb
    WHERE matnr = w_stck_cnt-matnr
    AND werks = w_stck_cnt-werks
    AND lgort = w_stck_cnt-lgort
    AND charg = w_stck_cnt-charg.
    IF sy-subrc = 0.
    IF lw_clabs NE lw_menge.
    lw_fail = 'X'.
    *-- Begin RM220307 - Do not create PI item if the stock is zero in the
    *-- file and is zero in SAP
    EXIT.
    ELSEIF lw_clabs = 0 AND lw_menge = 0.
    w_stck_cnt-zerostck = 'X'.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    ENDIF.
    *-- End RM220307
    ELSE.
    lw_fail = 'X'.
    ERROR
    ENDIF.
    ENDLOOP.
    If no differences are found set NO CHANGE Flag
    IF lw_fail NE 'X'.
    w_no_change = 'X'.
    EXIT.
    ENDIF.
    Check for Errors in file data
    LOOP AT t_stck_cnt INTO w_stck_cnt.
    CLEAR lv_sell. "RM191006
    SELECT SINGLE matnr INTO lw_matnr
    FROM mara
    WHERE matnr = w_stck_cnt-matnr.
    IF sy-subrc NE 0.
    Invalid Material (E)
    w_stck_cnt-message = 'E'.
    w_stck_cnt-msg_txt = 'Invalid Material'.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    CONTINUE.
    ENDIF.
    SELECT SINGLE charg vfdat
    INTO (lw_charg, lw_vfdat)
    FROM mch1 "KOB01 - changed from MCHA
    WHERE matnr = w_stck_cnt-matnr
    AND charg = w_stck_cnt-charg.
    AND werks = w_stck_cnt-werks.
    IF sy-subrc NE 0.
    Invalid Material Batch (E)
    w_stck_cnt-message = 'E'.
    CONCATENATE 'Invalid Material Batch for plant' w_stck_cnt-werks
    INTO w_stck_cnt-msg_txt SEPARATED BY space.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    CONTINUE.
    ELSE.
    IF w_stck_cnt-vfdat <> lw_vfdat.
    Sell by dates do not match (W)
    w_stck_cnt-message = 'W'.
    w_stck_cnt-msg_txt =
    'Sell by Date does not match Shelf life Expiry Date'.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    lv_sell = 'X'. "RM191006
    CONTINUE. "RM191006
    ENDIF.
    ENDIF.
    IF w_stck_cnt-quarn > 0.
    Quarantine balance not Zero (W)
    w_stck_cnt-message = 'W'.
    *-- Begin RM191006
    *-- We do want all warning messages on the report
    lv_qty = w_stck_cnt-quarn.
    CONDENSE lv_qty NO-GAPS.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
    EXPORTING
    input = lv_qty
    IMPORTING
    output = lv_qty.
    w_stck_cnt-msg_txt = 'Quarantine balance is not zero'.
    CONCATENATE 'Quarantine balance is ' lv_qty '- not zero'
    INTO w_stck_cnt-msg_txt SEPARATED BY space.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    CONTINUE.
    IF lv_sell = 'X'.
    APPEND w_stck_cnt TO d_stck_cnt.
    CLEAR lv_sell.
    ELSE.
    MODIFY t_stck_cnt FROM w_stck_cnt.
    ENDIF.
    *-- End RM191006
    ENDIF.
    ENDLOOP.
    *-- Begin RM191006
    *-- Finally get all the records into dummy table to report
    APPEND LINES OF t_stck_cnt TO d_stck_cnt.
    SORT d_stck_cnt.
    DELETE ADJACENT DUPLICATES FROM d_stck_cnt.
    *-- End RM191006
    ENDFORM. " process_checks
    *& Form file_check_report
    Write warning and Error messages from File checks
    FORM file_check_report.
    WRITE: /2 'Material',
    22 'Batch',
    32 'Sell By',
    45 'Message Text'.
    WRITE: /2 sy-uline(115).
    SKIP.
    LOOP AT t_stck_cnt INTO w_stck_cnt. "RM191006
    LOOP AT d_stck_cnt INTO w_stck_cnt. "RM191006
    CHECK w_stck_cnt-message NE ' '.
    WRITE: /2 w_stck_cnt-matnr,
    22 w_stck_cnt-charg,
    32 w_stck_cnt-vfdat,
    43 w_stck_cnt-message,
    45 w_stck_cnt-msg_txt.
    ENDLOOP.
    ENDFORM. " file_check_report
    *& Form post_process_checks
    Check Material Batches in SAP against NP File
    FORM post_process_checks.
    RANGES: r_matnr FOR mchb-matnr,
    r_lgort FOR mchb-lgort,
    r_werks FOR mchb-werks.
    SORT t_stck_cnt.
    LOOP AT t_stck_cnt INTO w_stck_cnt.
    AT END OF matnr.
    r_lgort-sign = 'I'.
    r_lgort-option = 'EQ'.
    r_lgort-low = w_stck_cnt-lgort.
    APPEND r_lgort.
    r_werks-sign = 'I'.
    r_werks-option = 'EQ'.
    r_werks-low = w_stck_cnt-werks.
    APPEND r_werks.
    r_matnr-sign = 'I'.
    r_matnr-option = 'EQ'.
    r_matnr-low = w_stck_cnt-matnr.
    APPEND r_matnr.
    ENDAT.
    ENDLOOP.
    Select all material batches for NP Materials
    SELECT matnr charg clabs
    INTO TABLE t_batch_errors
    FROM mchb
    WHERE werks IN r_werks
    AND lgort IN r_lgort.
    IF sy-subrc EQ 0.
    Check if the Material Batches are in the NP file
    LOOP AT t_batch_errors INTO w_batch_errors.
    Disregard Batches without positive unrestricted stock
    IF w_batch_errors-clabs LE 0.
    DELETE t_batch_errors.
    CONTINUE.
    ENDIF.
    READ TABLE t_stck_cnt INTO w_stck_cnt
    WITH KEY matnr = w_batch_errors-matnr
    charg = w_batch_errors-charg.
    IF sy-subrc = 0.
    DELETE t_batch_errors.
    ENDIF.
    ENDLOOP.
    ENDIF.
    CHECK NOT t_batch_errors[] IS INITIAL.
    Write Batch chak results to report
    SKIP.
    WRITE: / text-b02.
    WRITE: / sy-uline(74).
    WRITE: /2 'Material',
    22 'Batch'.
    WRITE: /2 sy-uline(32).
    SKIP.
    LOOP AT t_batch_errors INTO w_batch_errors.
    WRITE: /2 w_batch_errors-matnr,
    22 w_batch_errors-charg.
    ENDLOOP.
    ENDFORM. " post_process_checks
    G E T _ I N T E R F A C E _ F I L E N A M E
    FORM get_interface_filename USING filename lw_path.
    DATA: i_file TYPE filename-fileintern,
    out_filename LIKE v_path-pathextern.
    CLEAR: out_filename.
    i_file = filename.
    get the interface filename to be used when creating file
    CALL FUNCTION 'FILE_GET_NAME'
    EXPORTING
    logical_filename = i_file
    IMPORTING
    file_name = out_filename
    EXCEPTIONS
    file_not_found = 1
    OTHERS = 2.
    IF sy-subrc = 0.
    MOVE out_filename TO lw_path.
    IF filename NE c_archive_file. "RM080107
    CONCATENATE lw_path 'NP_StockBalance.dat'
    INTO lw_path.
    *-- Begin RM080107 - Add timestamp to the archived file
    ELSE.
    CONCATENATE lw_path 'NP_StockBalance' sy-datum sy-uzeit '.dat'
    INTO lw_path.
    ENDIF.
    *-- End RM080107
    ELSE.
    ENDIF.
    ENDFORM. "get_interface_filename
    *& Form move_file RM080107
    Move the processed file to archive directory
    FORM move_file.
    *-- At last move the file to archive directory
    OPEN DATASET p_arch FOR OUTPUT IN TEXT MODE.
    IF sy-subrc = 0.
    LOOP AT t_rawdata INTO w_rawdata.
    TRANSFER w_rawdata TO p_arch.
    ENDLOOP.
    ENDIF.
    CLOSE DATASET p_arch.
    DELETE DATASET p_file.
    ENDFORM. " move_file
    Best regards,
    Prashant

  • Since I have had "inbox" toolbar my computer has not worked properly. Do I have to remove internet explorer with firefox?

    My laptop has slowed tremendously since the Inbox toolbar came up. Can I not use internet explorer since I changed to firefox? I do not want Inbox and cannot remove it. It seems my laptop is getting worse and worse since it popped up! Please help!

    See:
    * http://toolbar.inbox.com/faq.aspx?faqid=2876&faqmod=WST_Install

  • Code insight is not working correctly in Jdev 10.1.3 (preview) and java 1.5

    The code insight does not work for me. I followed the advice of Steve Muench given here:
    http://radio.weblogs.com/0118231/stories/2003/01/17/whyIsntMyCodeInsightWorking.html
    but that did not change the problem. The problem seems to be related to new java 1.5 features. As soon as I start using generics the code insight is lost...
    Any clues what is going on? I s this easy to fix?
    -- example: (NOTE that iI use double (( )) to indicate generics definitions. the forum software would not let me put in the correct syntax!)
    package mypackage;
    import java.util.Set;
    public class tester1
    private Set ((Integer)) intSet = null;
    public tester1()
    intSet. ---- NO CODE INSIGHT POPS UP! (if i change to "private Set intSet = null;" it works)
    public static void main(String[] args)
    new tester1();
    P.S.
    Also, i noticed that the auto-import ist not working for the "Set((Integer))" line!
    Message was edited by:
    user444936

    thanks for the info.
    Hmm - too bad. I may have to switch to eclipse or something then, since my project involves some 1.5 parts and the missing code insights and import features are a real pain for me.
    Cheers,
    Jochen

  • SAP BW Bex 7.3 Queries not working with Enterprise Portal (EP) 7.3 ABAP stack only

    SAP BW Bex 7.3 Queries not working with Enterprise Portal (EP) 7.3 ABAP Stack
    Dear Portal Gurus,
    we want to integrate SAP BW Bex Queries 7.3 into an Enterprise Portal 7.3 EP ABAP Stack only installation.
    1) We have Done SSO between EP And BI System
    2) System Object is Created
    3) When we trying to create Iview of BEX 7.3 report, its executing that report on BI server, we don't have java stack on BI System
    4) We have updated the required table in Bi system for executing the report on EP
    5) RFC is OK, System Object Test is OK, Report is working independently from Business Explorer, but not working from EP
    There no irj services available on BI system, as it is only ABAP stack.
    Can anybody help us in achieving our requirement
    Thanks in advance
    Michael Wecker

    Hi Michael,
    To integrate portal with BI you need to perform BI Portal integration steps.
    Refer to a document link below for guidance purpose.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0a5216a-349c-2a10-9baf-9d4797349f6a?overridelayout=t…
    Ensure that you have performed all these relevant steps.
    Hope this helps.
    Regards,
    Deepak Kori

  • Code completion particular not working

    Hello,
    in my program there are serveral internal classes. Each class has its own include file. Code completion seems not working for internal classes in other include files.
    example:
    lcl_class1 in includec01   (first included)
         class-methods static1_1
         methods method1_1
    lcl_class2 in includec02   (second included)
         class-methods static1_1
         methods method1_1
    problem:
    While development in lcl_class2 there are no code completion for lcl_class1.
    No code completation for lcl_class1=>static1_1
    but if you declarate "data lo_myclass type ref to lcl_class1." code completion is working fine for public member methods and attributes in the same file.
    In Functiongroups all working fine.
    Best Regards
    Markus Bauernschmitt
    Und da hier eh die meisten deutschsprachig sind und mein Englisch grausam ist, nachfolgend die Erklärung nochmal auf deutsch.... ;-)
    In meinen Programmen findet die Codevervollständigung keine interne Klassen aus vorangegangenen include Dateien. Dadurch werden weder die Klassen selbst noch die statischen Methoden angezeigt. Gebe ich eine statische Methode ein und möchte die Hilfe anzeigen (F2) erscheint die Fehlermeldung "Codeinformationen sind nicht verfügbar".
    Dieses Problem tritt nicht auf, falls die Deklaration einer Variablen in der gleichen Include Datei erfolgt.
    Deklaration einer Variablen in der aktuellen Include Datei -> Dokumentation der öffentlichen (nicht statische) Methoden und Attribute funktioniert
    Zugriff auf öffentliche (statische oder nicht statische) Methoden und Attribute von globalen Variablen (deklariert in einer anderen Datei) funktioniert dagegen nicht.
    Es sind nur anscheinend nur Programme betroffen. Bei Funktionsgruppen (getestet am Beispiel "ldemo_cr_car_rental_screen") trat der Fehler nicht auf.

    Hi Dominik,
    thank you for your answer. The internal classes are already simple and lightweight. In my understanding of OO I keep classes private as possible and so I create this specific "one program helper classes" in the smallest reasonable scope.
    However, this is a architektur decission. But the pivotal question is: Why working this kind of code completion in function groups but not in programs.
    Some additional information.
    - Code completion working in "START-OF-SELECTION."
    - In Functiongroup includes (Testcase lcl_class1 show as public type and lcl_class2 show as local public class.
    Best regards
    Markus

  • TS1292 How do I redeem a card with a code that does not work?  The support store takes me in circles?

    Help and support sends you in circles and does not help redeem a card with a code that does not work.

    Well, they have a website, but here is a link to their information about unlocking iPhones.
    http://www.att.com/esupport/article.jsp?sid=KB414532&cv=820#fbid=6d7EKuCF_dr
    You may not qualify for an unlock though.

  • Java Script Code not working properly for visios in sharepoint 2013

    Hi all ,
                 I have few visios and I am using the visio web part to display and to redirect from one visio to other visio I am using the java script code through content editor web part . 
    In share point 2010 it's working fine , I was able to redirect to all the visios and code is working fine .
    In share point 2013 its not the same , Its not working properly . only for the first time the code is working fine . once it goes to next visio the code stops working . 
    For example if i click in visio A it gets redirect to Visio B and its stops working , it wont allow to do any other steps . 
    I have checked with the URL its correct , I am not able to find any error also .
    Indresh

    This will be likely caused by the Minimal Download Strategy not registering the Javascript on the page reload. You can turn off the MDS feature to test this.
    You can either turn off MDS in your site, or register your Javascript functions with MDS to ensure they are called. To do this, you'll need all of your code to be wrapped in a javascript file (Embed this on the page using a <script> tag and
    inside that file in a function, which you then register with MDS as follows (I usually do this in the first line of the javascript file):-
    RegisterModuleInit("/SiteAssets/YourJavaScriptFile.js", NameOfYourFunction);
    Regards
    Paul.
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • IGrid - SAP MII 12.1.8 SP 05 (build 36) - rendering not working properly.

    Hi,
    In the 12.1.8 SP 05, when the iGrid cell values set through the java script, the rendering part is not working.
    For example,
    The data set returned by iCommand has 25 rows.
    Java script sets the values in the iGrid from each row.
    The application was working well with 12.1.8 SP02. The same application is not working properly now.
    the error from the java script show this as java.lang.NullPointerException.
    For the same set of data, this error is occurring sometimes at the third row, sometimes in the middle and sometimes in the end.
    The java console is quite consistent. The same error occurs multiple times.
    I have given the error in the end.
    After the grid loaded, the script tries to set the cell values. some time only a single line has values and some time 4 to 5  lines has values for the same data set. The lines are not shown to the user. When he moves away from that page and comes back all the 25 lines are seen, mostly without values.
    Is anyone working with 12.1.8 SP05 patch? The Xacute Query string output size is 64K in the SP02. In SP04 and SP05 this issue is fixed. This needs to be implemented. But in SP 03, IGrid functionality is refactored.
    The SAP notes number: Note 1566572 - MII 12.1 SP08 Patch03 says,
    Re-factored iGrid to improve datatype handling
    Notes number for SP04:  Note 1581779 - MII 12.1 SP08 Patch04
    Notes number for SP05: Note 1586551 - MII 12.1 SP08 Patch05
    If you have upgraded into the latest version of 12.1, are you facing the similar problem?
    The java Console error:
    Exception in thread "AWT-EventQueue-2" java.lang.NullPointerException
         at com.sap.xmii.applet.grid.renderers.MultiLineRenderer.setValue(MultiLineRenderer.java:60)
         at com.sap.lhcommon.gui.table.TableMultiLineCellRenderer.getTableCellRendererComponent(TableMultiLineCellRenderer.java:129)
         at javax.swing.JTable.prepareRenderer(Unknown Source)
         at com.sap.lhcommon.gui.table.BaseTable.prepareRenderer(BaseTable.java:560)
         at javax.swing.plaf.basic.BasicTableUI.paintCell(Unknown Source)
         at javax.swing.plaf.basic.BasicTableUI.paintCells(Unknown Source)
         at javax.swing.plaf.basic.BasicTableUI.paint(Unknown Source)
         at javax.swing.plaf.ComponentUI.update(Unknown Source)
         at javax.swing.JComponent.paintComponent(Unknown Source)
         at com.sap.xmii.applet.grid.base.types.BaseGrid.paintComponent(BaseGrid.java:947)
         at javax.swing.JComponent.paint(Unknown Source)
         at javax.swing.JComponent.paintChildren(Unknown Source)
         at javax.swing.JComponent.paint(Unknown Source)
         at javax.swing.JViewport.paint(Unknown Source)
         at javax.swing.JComponent.paintChildren(Unknown Source)
         at javax.swing.JComponent.paint(Unknown Source)
         at javax.swing.JComponent.paintToOffscreen(Unknown Source)
         at javax.swing.BufferStrategyPaintManager.paint(Unknown Source)
         at javax.swing.RepaintManager.paint(Unknown Source)
         at javax.swing.JComponent._paintImmediately(Unknown Source)
         at javax.swing.JComponent.paintImmediately(Unknown Source)
         at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
         at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
         at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source)
         at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Thanks and Regards,
    Kishore kumar P S

    Hi Jamie,
    SAP has proposed a solution not to check the word wrap in the Grid.
    The iCommand data call was happening with Creation event of iGrid.
    Now changed to FirstUpdateEvent. This works fine.
    Thanks and Regards,
    Kishore kumar P S
    problem resolved
    Edited by: kishore kumar on Jul 12, 2011 3:33 PM

  • Code completion does not work with table alias

    Hi all,
    When i use SQL developer to create a simple query like below i alias my tables so i can oversee it better.
    select
    * from  PRODUCTS p
    inner join PRODUCT_TYPES pt on PRODUCT_TYPES.PRODUCT_TYPE_ID = p.But when i give the driving table a alias like p and i try to do a join like you see in the code SQL developer will not show the columns from table PRODUCTS.
    What do i wrong or is this a bug?
    Thanks in advance,
    Daniel

    Hi,
    Sue, there are lots of code completion don't work either.
    Some of them are :
    1. The code completion seems not working if we put double-quote ("") to enclosed the object name.
    SELECT t. -- CTRL+Space the code completion won't work here
    FROM   MYSCHEMA."MYTABLE" t   2. The code completion also not working if we state some characters of the column name, although it still works for the uncomplete object name
    i.e the name of the column is : MYFIELD
    SELECT t.MY  -- CTRL+Space, the code completion won't work here
    FROM   MYSCHEMA.MYTABLE t   3. Sometimes, I can see two code completion lists when I use CTRL + Space
    Usually, it happens on the first connection's SQL Worksheet, the second and so forth are fine.
    SELECT t.     -- CTRL+Space, shows two lists which I can choose both of them
    FROM    MyTable t4. Code completion also not working when we try to access object from other schema. tbeech post it on
    Re: Code Assist -- Table Alias
    Are those code completion bugs are also logged?
    Regards,
    Buntoro

  • Bootcamp 3.2: Microsoft Virtual WiFi MiniPort Adapter shows "device is not working properly...Code 31"

    Using Windows 7 Enterprise 64-bit, Microsoft Virtual WiFi Miniport Adapter shows the "device is not working properly because Windows cannot load the drivers required for this device. (Code 31).".The device is the Apple iMac10,1 All-in-one computer. Right clicking browse files (for the device) shows the Bootcamp (C:), DVD (D:); and my external hard drives can be selected.
    Internet and WiFi connections all working ok. Am also running MacDrive 8 to access the Mac drives when in the Windows partition, again without any seeming issues.
    Updating the driver simply generates another Code 31 error.
    Appreciate this seems to be a known problem - is the a solution a novice use might be able to follow or should I simply ignore the error message?
    Driver Date us 21/06/2006 and Driver Version is 6.1.7600.16385.

    Hi  ,
    Thank you for visiting the HP Support Forums and Welcome. It is a great site for information and questions. I have looked into your issue about your HP ENVY 4-1204tx Ultrabook and issues with WiFi adapter is not working properly. Error codes in Device Manager in Windows  8.1 could be fixed by deleting any extra drivers. So I would uninstall all that is listed in the Network drivers in the Device Manager, restart the Notebook. Here is a list of Device Manager options, this might help.
    Here is a link to the HP Support Assistant if you need it. Just download and run the application and it will help with the software and drivers on your system that need updating or reinstalling. Hope this helps. Thanks.

  • ESS is not working properly after upgrade from 4.7 to ECC6.0

    ESS Scenario in 4.7
    4.7 Scenario:
    The IMG configuration u201CWork and Life Eventsu201D is done to map them with the PZM3 service (Home Page) to get them as different folders/links on the home page as given below:
    List of Services used to set up ESS:
    Sl.No     Functionality     Service/EWT/URL Name     Standard/ Customized     Type
    1     Home Page     PZM3                                          Standard                 Service
    2     Inbox                     BWSP                                          Standard                 Service
    3     Calendar                     BWCA                                          Standard                 Service
    4     Whou2019s Who     PZ01                                          Standard                 Service
    5     CPF Display     http://192.168.0.2:7070/omcpf             NA                                  URL
    6     Payslip Display     ZPAYSLIP_USER                          Customized                Service
    7     Section 80C     PZ88                                          Standard                EWT
    8     Section 80                     PZ80                                          Standard                EWT
    9     Form 16                     HRESSIN_F16                          Standard                EWT
    10     Address                     PZ02                                             Standard                EWT
    11     Bank Information     PZ03                                          Standard                Service
    12     Open Appraisals     Not Available                           NA                                 Service
    13     Emergency Address     PZ05                                           Standard                 EWT
    14     Family/Dependents     PZ12                                           Standard                 EWT
    15     Personal Data     PZ13                                               Standard                  EWT
    16     Previous Employers     PZ28                                           Standard                 EWT
    17     Apply Leave     WS20000081                           Standard               Service
    18     Leave Overview     WS01000109                           Standard              Service
    19     Leave Balance     PZ09                                             Standard              Service
    20     Loan Application     ZLOAN                                          Customized              Service
    ECC6.0 Scenario:
    In ECC6.0, flow based services are no more supported by ECC6.0 and Dynpro based services are supported.PZM3 (Home Page) is a flow based service.
    There is no replacement provided for PZM3 service, so the IMG configuration is not possible for u201CWork and Life Eventsu201D.
    OSS ticket raised, but no solution for IMG u201CWork and Lifeu201D events.
    List of Services would be used to set up ESS:
    Sl.No     Functionality     Service/EWT/URL Name     Standard/ Customized    Type
    1     Home Page     PZM3                                       Standard                           service
    1)this service is not available
    2)SAP does not provide any replacement.
    3)PZM3 is not supported in Integrated ITS. No direct solution proposed.
    4)Given reference of few notes.
    5) A dynpro (module pool screen) based IAC needs to be created and links need to be provided on that screen. Generated HTML page is modified  to access the services via URL or by OKCODE.
    Screenshot attached below.
    2           Whou2019s Who                 PZ01                                      Standard                             Service
    1)this service Available
    2)Not Working properly.
    3) The problem may be because of the dependency with SAP Query. Either Query is missing in the new system or not having the proper authorization. Needs to be debugged and finalized.
    7     Section 80C     PZ88      Standard     EWT     Available               
    8     Section 80      PZ80     Standard     EWT     Available               
    9     Form 16                HRESSIN_F16     Standard     EWT     Available               
    10     Address                PZ02     Standard     EWT     Available     Only EWT Available.          Service needs to be created to access the EWT.
    11     Bank Information     PZ03     Standard     Service     Available     EWT Available.           Service needs to be created to access the EWT.
    12     Open Appraisals     Not Available     NA     Service          EWT Available.           Service needs to be created to access the EWT.
    13     Emergency Address     PZ05     Standard     EWT     Available     EWT Available.           Service needs to be created to access the EWT.
    14     Family/Dependents     PZ12     Standard     EWT          EWT Available.           Service needs to be created to access the EWT.
    15     Personal Data     PZ13     Standard     EWT          EWT Available.           Service needs to be created to access the EWT.
    16     Previous Employers     PZ28     Standard     EWT          Service Available          
    17     Apply Leave     WS20000081     Standard     Service     Available, but not working                                                                               No solution is proposed yet.
    18     Leave Overview     WS01000109     Standard     Service     Available, but not working               No solution is proposed yet.
    19     Leave Balance     PZ09     Standard     Service     Available, but not working               No solution is proposed yet.

    Ya ramakrishna,
    Even easier is for you to send us the mail ID of your client. We will do the work, then send them an idoc of message type INVOICE and for you a post card of course.
    Please do the needfull,
    Julius

  • Drilldown not working properly in Hierarchy

    Hi
    I am using hierarchy in my VC model. I refered following document
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/4155b345-0a01-0010-ac9f-b3b2c34e993c
    As per the ccode given in the document, Drill Up function is properly but drildown is not working properly. what could be the reason?
    Thanks & Regards
    Deepdas
    Edited by: Deepdas on Jul 15, 2009 4:41 PM

    Hi
    In the code for drilldown go to the expression ' %3D2' this will enable you to drilldown only to the second level. After '%3D_' enter the level number upto which you want the drill down. Ex - if you want drilldown to the 4th level then enter '%3D4'.
    I think this is only your problem, if not please exxplain what kind of error you are getting.
    Regards
    Sandeep

  • Undo is not working properly (grayed out)

    Undo is not working properly in Indesign CC 9.2. I am using a 17" MBP running OSX 10.9.1.
    Processor: 2.2 GHz Intel Core i7
    Memory: 4GB 1333 MHz DDR3
    I ran into this issue doing a publication layout. I was not doing anything overly complicated. Copying/pasting, placing images, adding text boxes, copying/pasting text boxes. It seems to happen without rhyme or reason.
    I know that is not helpful for troubleshooting so I was able to isolate the problem. Here is how to recreate it.
    Open new doc (standard letter)
    Create text box with random text
    copy the text box (cmd C)
    paste the text box (cmd V)
    move the resulting text box using selection tool (V)
    select NEW text box (selection tool)
    copy the NEW text box (cmd C)
    paste the NEW text box (cmd V)
    move the text box (selection tool).
    Repeat until there are 5 text boxes (at least).
    Undo the various actions after placing and moving the 5 text boxes.
    I cannot undo back to a "new document."
    In some cases I can only undo 2 actions before "undo" becomes grayed out, and in some cases, I can undo up to 9 or 10 actions before it gets grayed out.
    Other programs running:
    Illustrator
    Photoshop
    Text Edit
    MS Word 2011
    Excell 2011
    Messages
    Chrome
    Finder
    Fetch (FTP software)
    I need to have these programs running simultaneously in many cases and have done so successfully in the past. I have a feeling it might be a memory issue, but I have not seen a similar post and I never had the issue with CS5 running with an identical setup. I was able to undo actions up until my previous save in CS5 sometimes 25-30 actions.

    I unplugged the USB items and the problem still persisted so it is not related to any of those.
    I shut down InDesign and tried reopening. InDesign crashed at reopen. I have provided the log below. Hopefully this shows where the problem is occurring.
    Process:         Adobe InDesign CC [3814]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.2.0.69 (9200)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [172]
    Responsible:     Adobe InDesign CC [3814]
    User ID:         ***
    Date/Time:       2014-01-27 11:58:37.300 -0800
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  ********************
    Sleep/Wake UUID: *********************
    Crashed Thread:  8
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    *** error for object 0x6180002737c0: Heap corruption detected, free list canary is damaged
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff8af44622 __open_nocancel + 10
    1   libsystem_c.dylib             0x00007fff8fa09c9b __opendir2$INODE64 + 59
    2   com.apple.CoreFoundation       0x00007fff8d160d4a _CFIterateDirectory + 74
    3   com.apple.CoreFoundation       0x00007fff8d1636b3 _CFBundleCopyInfoDictionaryInDirectoryWithVersion + 627
    4   com.apple.CoreFoundation       0x00007fff8d16331d CFBundleGetInfoDictionary + 141
    5   com.apple.CoreFoundation       0x00007fff8d15fb5b _CFBundleCreate + 827
    6   com.apple.CoreFoundation       0x00007fff8d1a3e89 _CFBundleEnsureBundleExistsForImagePath + 89
    7   com.apple.CoreFoundation       0x00007fff8d24bb93 _CFBundleEnsureAllBundlesUpToDateAlreadyLocked + 67
    8   com.apple.CoreFoundation       0x00007fff8d1a3bf8 CFBundleGetBundleWithIdentifier + 248
    9   com.adobe.InDesign.AWS         0x000000011667d2bc 0x116676000 + 29372
    10  com.adobe.InDesign.AWS         0x000000011667a577 0x116676000 + 17783
    11  com.adobe.InDesign.AWS         0x000000011667a370 0x116676000 + 17264
    12  com.adobe.InDesign.AWS         0x00000001166772a7 0x116676000 + 4775
    13  com.adobe.InDesign.AWS         0x0000000116683fb0 0x116676000 + 57264
    14  com.adobe.InDesign.AWS         0x000000011668472e 0x116676000 + 59182
    15  com.adobe.InDesign.AWSUI       0x0000000116646597 0x116636000 + 66967
    16  com.adobe.InDesign.AWSUI       0x0000000116645f05 0x116636000 + 65285
    17  com.adobe.InDesign.AppFramework 0x000000010d6739bb 0x10d632000 + 268731
    18  ObjectModelLib.dylib           0x0000000104b2fcd3 0x104b10000 + 130259
    19  ObjectModelLib.dylib           0x0000000104b4306c 0x104b10000 + 209004
    20  ObjectModelLib.dylib           0x0000000104b3e3fc ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 7676
    21  com.adobe.InDesign             0x0000000100001c7e main + 94
    22  com.adobe.InDesign             0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8af45662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff9067043d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff90670152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8af44716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff97874c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore 0x00007fff92a51c37 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore 0x00007fff92a2238d MPWaitOnQueue + 192
    4   PMRuntime.dylib               0x0000000101682be1 0x101681000 + 7137
    5   com.apple.CoreServices.CarbonCore 0x00007fff92a2290b PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff8af44e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff97873f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff97876fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8af4534a fstat$INODE64 + 10
    1   IMSLib.dylib                   0x0000000119a3d2dd 0x1199c0000 + 512733
    2   IMSLib.dylib                   0x00000001199f3616 0x1199c0000 + 210454
    3   IMSLib.dylib                   0x00000001199f39ef 0x1199c0000 + 211439
    4   IMSLib.dylib                   0x0000000119a1f3c8 0x1199c0000 + 390088
    5   IMSLib.dylib                   0x00000001199f328d 0x1199c0000 + 209549
    6   IMSLib.dylib                   0x0000000119a2ebdf 0x1199c0000 + 453599
    7   IMSLib.dylib                   0x00000001199f64f0 0x1199c0000 + 222448
    8   IMSLib.dylib                   0x00000001199f894b 0x1199c0000 + 231755
    9   IMSLib.dylib                   0x0000000119a3fc0e 0x1199c0000 + 523278
    10  IMSLib.dylib                   0x0000000119a40a0b 0x1199c0000 + 526859
    11  IMSLib.dylib                   0x00000001199ea34e 0x1199c0000 + 172878
    12  IMSLib.dylib                   0x00000001199ded11 0x1199c0000 + 126225
    13  IMSLib.dylib                   0x00000001199d37ef 0x1199c0000 + 79855
    14  IMSLib.dylib                   0x00000001199e3851 0x1199c0000 + 145489
    15  IMSLib.dylib                   0x00000001199da4f1 0x1199c0000 + 107761
    16  IMSLib.dylib                   0x00000001199cce14 0x1199c0000 + 52756
    17  libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    18  libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    19  libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8af44e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff97873f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff97876fb9 start_wqthread + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8af40a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8af3fd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8d1b0315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8d1af939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8d1af275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff975a1907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff975a170b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff8af44e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff97873f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff97876fb9 start_wqthread + 13
    Thread 8 Crashed:
    0   libsystem_kernel.dylib         0x00007fff8af44866 __pthread_kill + 10
    1   libsystem_pthread.dylib       0x00007fff9787335c pthread_kill + 92
    2   libsystem_c.dylib             0x00007fff8fa39bba abort + 125
    3   libsystem_malloc.dylib         0x00007fff919a5bf9 nanozone_error + 486
    4   libsystem_malloc.dylib         0x00007fff919a5dbb _nano_malloc_check_clear + 445
    5   libsystem_malloc.dylib         0x00007fff919a46c4 nano_malloc + 35
    6   libsystem_malloc.dylib         0x00007fff919a287c malloc_zone_malloc + 71
    7   libsystem_malloc.dylib         0x00007fff919a3290 malloc + 42
    8   libc++abi.dylib               0x00007fff90c5853e operator new(unsigned long) + 30
    9   libstdc++.6.dylib             0x00007fff8f47d0be std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) + 102
    10  libstdc++.6.dylib             0x00007fff8f47d00d std::string::_Rep::_M_clone(std::allocator<char> const&, unsigned long) + 35
    11  libstdc++.6.dylib             0x00007fff8f47dae6 std::string::reserve(unsigned long) + 62
    12  libstdc++.6.dylib             0x00007fff8f47de3b std::string::append(char const*, unsigned long) + 101
    13  IMSLib.dylib                   0x0000000119a414fb 0x1199c0000 + 529659
    14  IMSLib.dylib                   0x0000000119a416a2 0x1199c0000 + 530082
    15  IMSLib.dylib                   0x00000001199ea192 0x1199c0000 + 172434
    16  IMSLib.dylib                   0x00000001199ded11 0x1199c0000 + 126225
    17  IMSLib.dylib                   0x00000001199d37ef 0x1199c0000 + 79855
    18  IMSLib.dylib                   0x00000001199e3851 0x1199c0000 + 145489
    19  IMSLib.dylib                   0x00000001199da4f1 0x1199c0000 + 107761
    20  IMSLib.dylib                   0x00000001199cce14 0x1199c0000 + 52756
    21  libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    22  libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    23  libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8af449aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff8d1fbd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff8af44e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff97873f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff97876fb9 start_wqthread + 13
    Thread 8 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000119dfa000  rcx: 0x0000000119df8958  rdx: 0x0000000000000000
      rdi: 0x0000000000007c13  rsi: 0x0000000000000006  rbp: 0x0000000119df8980  rsp: 0x0000000119df8958
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x0000000104bf7000  r13: 0x00006180002737c0  r14: 0x0000000000000006  r15: 0x0000000000000000
      rip: 0x00007fff8af44866  rfl: 0x0000000000000206  cr2: 0x00000001083c9000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.2.0.69 - 9200) <B7C09BD6-74AF-323E-8D22-D5E1F7965643> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <612870BE-869E-3165-9714-55F900A66BCC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <1039F962-C495-36E4-B868-3DA5C43E3EBF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10013aff7 +DV_WidgetBinLib.dylib (1) <57491245-3B90-3D4B-B4B6-4441EE325E3C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001d5000 -        0x10021aff7 +TextPanelLib.dylib (1) <4B30610F-C637-3910-A413-C40325795CAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100237000 -        0x100398fff +WidgetBinLib.dylib (1) <50EE77D3-591B-306F-9D62-2026938837EE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x10044a000 -        0x100616fff +com.adobe.owl (AdobeOwl version 5.0.24 - 5.0.24) <1C99AA07-E73F-370B-82FA-01C1C4AAF97D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x100659000 -        0x10089dfff +com.adobe.dvacore.framework (7.0.849324 - 7.0.849324.0) <08EB97C1-03E5-3C1B-B154-C886807BC6F1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x100964000 -        0x100df1ff7 +com.adobe.dvaui.framework (7.0.849324 - 7.0.849324.0) <25942AAC-0437-303F-9663-B17113468EBB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x101089000 -        0x101089fff +com.adobe.InDesign.InDesignModel (9.0 - 0) <7DCCCD9E-8ECB-330B-84AF-4F090F82BBBA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x10108e000 -        0x10109cfff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x1010b2000 -        0x1010b8ff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010c7000 -        0x101536ff7 +PublicLib.dylib (1) <1B305F6E-A0D3-39A3-91FE-B878D638B7A7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x101681000 -        0x10168bfff +PMRuntime.dylib (1) <0164EA5E-E56E-332F-901A-5E514833C38F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101694000 -        0x1016abff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x1016ba000 -        0x1019cbff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.31977 - 5.15.00.31977) <42323DBD-3A6D-3C41-A2C1-2B944789D8A9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x101a13000 -        0x101a30fff +com.adobe.BIB (AdobeBIB 1.2.03.31977 - 1.2.03.31977) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a38000 -        0x101b7efff +com.adobe.ACE (AdobeACE 2.20.02.31977 - 2.20.02.31977) <3A212837-B075-34C0-96E9-5A4019C9DFEE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b92000 -        0x102163fff +com.adobe.AGM (AdobeAGM 4.30.29.31977 - 4.30.29.31977) <BFFDBF0E-28EF-3720-93BE-293618541D26> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x102200000 -        0x10223dfff +com.adobe.ARE (AdobeARE 1.5.02.31977 - 1.5.02.31977) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x102245000 -        0x10226bfff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x102273000 -        0x10280cfff +com.adobe.MPS (AdobeMPS 5.8.1.31977 - 5.8.1.31977) <96C4D283-326B-3E50-B555-534492C6AA95> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102889000 -        0x1028a7fff +com.adobe.dvaflashview.framework (7.0.849324 - 7.0.849324.0) <46FFD5B4-2182-3CC3-A258-486E585A5B2D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x1028bf000 -        0x1028c3ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028ca000 -        0x10298cfff +com.adobe.exo.framework (7.0.849324 - 7.0.849324.0) <AF41BB10-6BB7-3645-9F60-AE77E54F04F1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x102a2a000 -        0x102ad8fff +com.adobe.dvaworkspace.framework (7.0.849324 - 7.0.849324.0) <97F274A8-A56B-3F3A-AAA7-66B9FBEFEBF1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b5b000 -        0x1031fafff +com.adobe.PlugPlugOwl (4.2.0.36 - 4.2.0.36) <D6EC53B4-E257-3698-8EA8-24D4E3D98EBD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x1034ef000 -        0x10351bff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x103536000 -        0x103555fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10357a000 -        0x1042bffff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x1042d3000 -        0x104404ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x104458000 -        0x10454eff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x104586000 -        0x1046b4fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10470f000 -        0x1047fffff +com.adobe.amtlib (7.0.0.247 - 7.0.0.247) <48D8FFDB-DFEA-310D-BAE3-DFD8D05B0160> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x104812000 -        0x104814fff +com.adobe.AdobeCrashReporter (7.0 - 7.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x10481a000 -        0x1048d1ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x10493b000 -        0x1049aaff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x1049b5000 -        0x1049c0fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x1049cf000 -        0x1049d3fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x1049d9000 -        0x104a7afff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a9a000 -        0x104afcfff +DataBaseLib.dylib (1) <670C9B64-DD9A-3B32-BDA9-22D6EA26A5EF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104b10000 -        0x104b7dfff +ObjectModelLib.dylib (1) <38EFA738-542E-32EB-A5AA-45380C5CCAAF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b9a000 -        0x104bbefff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x108348000 -        0x108386fff +com.adobe.InDesign.Dictionary Editor Dialog (9.2.0.69 - 0) <EC06E951-7EDF-306A-85E2-B52805F8110C> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x1083a7000 -        0x1083b6ff7 +com.adobe.InDesign.DTTransform (9.2.0.69 - 0) <417A914C-BEA9-3AF6-94BC-158C93DCDC56> /Applications/Adobe InDesign CC/*/DTTransform
           0x10846c000 -        0x108479ff7 +com.adobe.InDesign.Text Color Panel (9.2.0.69 - 0) <B9722BDD-B3B2-3B6B-90EC-D7B52D54C678> /Applications/Adobe InDesign CC/*/Text Color Panel
           0x108482000 -        0x108496ff7 +com.adobe.InDesign.Story Panel (9.2.0.69 - 0) <989D8312-C513-36B9-9A2A-A161EC806905> /Applications/Adobe InDesign CC/*/Story Panel
           0x1084a5000 -        0x1084afff7 +com.adobe.InDesign.Span Columns Panel (9.2.0.69 - 0) <15F063E0-7874-30AE-841C-C10A12CF8B5E> /Applications/Adobe InDesign CC/*/Span Columns Panel
           0x1084b8000 -        0x1084c9ff7 +com.adobe.InDesign.SING (9.2.0.69 - 0) <3CC6846B-D663-31F2-BAB9-03BCAD89606E> /Applications/Adobe InDesign CC/*/SING
           0x1084d3000 -        0x1084ddfff +com.adobe.InDesign.Justification Panel (9.2.0.69 - 0) <4F940073-AAF8-3FDF-87FA-04A8DC87679D> /Applications/Adobe InDesign CC/*/Justification Panel
           0x109caa000 -        0x109cabff7 +com.adobe.InDesign.Metadata Database Filter (9.2.0.69 - 0) <3BE1DF86-81E8-359D-A40E-84EC7A016E16> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
           0x109cb0000 -        0x109ccaff7 +com.adobe.InDesign.IME (9.2.0.69 - 0) <905334C5-8BF8-3958-8216-720BDB4D3A1F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
           0x109cda000 -        0x109cddfff +com.adobe.InDesign.Global Preferences Panel (9.2.0.69 - 0) <3B261D67-E6B5-32E3-AC7E-AFCCDC9B75CB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
           0x109ce3000 -        0x109cedfff +com.adobe.InDesign.Workgroup Client UI (9.2.0.69 - 0) <5025F9EC-7C4C-377B-92F0-EC208F75B671> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
           0x10aa1f000 -        0x10aa23fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10af61000 -        0x10af9ffff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications
           0x10afdc000 -        0x10afeefff +com.adobe.boost_filesystem.framework (7.0.847203 - 7.0.847203.0) <B0F56E9F-BAAB-34C5-93C4-C713203AB0DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
           0x10c6ee000 -        0x10c6f0ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10c6f5000 -        0x10c6f9fff +com.adobe.InDesign.Help (9.2.0.69 - 0) <09CFAB79-828F-39A9-8E6C-634999CF4EC8> /Applications/Adobe InDesign CC/*/Help
           0x10d632000 -        0x10d7f8ff7 +com.adobe.InDesign.AppFramework (9.2.0.69 - 0) <D84FAD4D-B653-3EB4-8FDA-7264A51F7359> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
           0x10e0cf000 -        0x10e255ff7 +com.adobe.InDesign.SettingsInCloud (9.2.0.69 - 0) <EC5B37FA-9195-3243-9D62-C6A5FB8E394A> /Applications/Adobe InDesign CC/*/SettingsInCloud
           0x10e640000 -        0x10e7feff7 +com.adobe.InDesign.Text Walker (9.2.0.69 - 0) <BA84432B-6B10-3684-982F-856AB2248204> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
           0x10e856000 -        0x10e8a7fff +com.adobe.InDesign.Linguistics (9.2.0.69 - 0) <13A4BC6D-4C68-3884-9059-5837B952EC17> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
           0x10e8c1000 -        0x10e927fff +com.adobe.InDesign.Text Panel (9.2.0.69 - 0) <70BA1FF5-A8FD-3D59-976A-5AE782CB79ED> /Applications/Adobe InDesign CC/*/Text Panel
           0x10e94a000 -        0x10e996ff7 +com.adobe.InDesign.Spelling Panel (9.2.0.69 - 0) <B208BBCC-1AAB-354C-9CA6-44C6B5D35946> /Applications/Adobe InDesign CC/*/Spelling Panel
           0x10e9b0000 -        0x10ec14fff +com.adobe.InDesign.Package and Preflight (9.2.0.69 - 0) <6590908A-0A78-32F4-A455-ABBEC9D97B5E> /Applications/Adobe InDesign CC/*/Package and Preflight
           0x10ec5a000 -        0x10ecc7ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 21 - 79.154911) <E8E31BC1-F7BC-3018-8CF8-AC3C7B2DCEA2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10ecd3000 -        0x10eda5fff +com.adobe.InDesign.Text Editor (9.2.0.69 - 0) <C8F82611-461D-3339-A65E-51190B515F9F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
           0x10edd5000 -        0x10efe3fff +com.adobe.InDesign.Layout UI (9.2.0.69 - 0) <5BC0A7D6-7A69-346C-B5A1-4F4AF2AC5F01> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
           0x10f043000 -        0x10f0b3fff +com.adobe.InDesign.Import Export UI (9.2.0.69 - 0) <FFA896AE-BAF9-30EC-A788-25AD02061296> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
           0x10f0da000 -        0x10f1e8fff +com.adobe.InDesign.Hyperlinks (9.2.0.69 - 0) <BF029BB8-6578-303F-A983-9ADEE43AB7A4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
           0x10f213000 -        0x10f2b7fff +com.adobe.InDesign.Master Page (9.2.0.69 - 0) <557BD678-3F9D-3A4F-ABDA-8A1DD7D41AF6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
           0x10f2d1000 -        0x10f2fffff +com.adobe.InDesign.Utilities (9.2.0.69 - 0) <9F7A613A-54DB-3604-B811-FCE0BC56F416> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
           0x10f31a000 -        0x10f417fff +com.adobe.InDesign.Color Management (9.2.0.69 - 0) <33023C59-D4C5-3BF2-8C42-54BD6E50E651> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
           0x10f444000 -        0x10f659ff7 +com.adobe.InDesign.Application UI (9.2.0.69 - 0) <2235307F-D211-397C-BAA7-34028F1C4F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
           0x10f6f0000 -        0x10fa0eff7 +com.adobe.dvaadameve.framework (7.0.849324 - 7.0.849324.0) <FF303DE3-2F53-3AA7-94E7-93B46DB28918> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10fce4000 -        0x10fd33fff +com.adobe.headlights.LogSessionFramework (2.1.2.1785) <160BF2F9-B418-31C5-866F-6FADA1B720ED> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10fd59000 -        0x10fe17fff +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.31983) <7764EE73-651A-3D8A-9B0F-A25DF57D79E1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x10fe3f000 -        0x10feeaff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.31983) <0E9111E5-ECBF-3C1C-82DB-9A945F1A573C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10ff14000 -        0x110064fff +com.adobe.dvascriptui.framework (7.0.849324 - 7.0.849324.0) <EC31CE70-34C1-31E0-A68D-F49D99ADA604> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui
           0x110186000 -        0x110366fff +com.adobe.InDesign.Document Framework (9.2.0.69 - 0) <ABC1E3A8-3AC3-3199-B572-B734998B696E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
           0x1106d2000 -        0x110813fff +com.adobe.InDesign.SangamServicer-Mapper (9.2.0.69 - 0) <F2E5BD34-3091-317F-88A8-0B6090F262E0> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x110837000 -        0x1108a0fff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.31977 - 5.65.0.31977) <81A4C7F3-E791-3AD1-A44B-CF5BB5B6A545> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x1108ee000 -        0x11091aff7 +com.adobe.Reader for DOCX (Reader for DOCX 5.65.0.31977 - 5.65.0.31977) <C21B199B-542B-34CD-8F0E-F38D970D88BD> /Applications/Adobe InDesign CC/*/Reader for DOCX
           0x110925000 -        0x110a23ff7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.30807 - 3.8.0.30807) <DF0EC9F6-D499-39B8-B2F4-CAF4F742D702> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x110a39000 -        0x110b16fff +com.adobe.AXEXSLT (AdobeAXSLE 3.8.0.30807 - 3.8.0.30807) <6299FB87-471B-3EA2-9E02-6DEA293FA533> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
           0x110b2b000 -        0x110b96ff7 +com.adobe.AdobeSangamML (AdobeSangamML 5.65.0.31977 - 5.65.0.31977) <BF6D92E9-AF42-3B9F-BBDD-FBCDE605C4BE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
           0x110bba000 -        0x110c18ff7 +com.adobe.Reader for Excel (Reader for Excel 5.65.0.31977 - 5.65.0.31977) <628DA00F-210B-3856-89F3-66393386E801> /Applications/Adobe InDesign CC/*/Reader for Excel
           0x110c2b000 -        0x110c3ffff +com.adobe.AdobeSFL (AdobeSFL 1.1.0.31977 - 1.1.0.31977) <A1874DA3-6F12-333D-8941-ED3A08A1E265> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
           0x110c47000 -        0x110d3cfff +com.adobe.Reader for Quark (Reader for Quark 5.65.0.31977 - 5.65.0.31977) <7877BBF5-B31A-3CA9-9E8E-3FDFB174F261> /Applications/Adobe InDesign CC/*/Reader for Quark
           0x110d56000 -        0x110db1ff7 +com.adobe.Reader for RTF (Reader for RTF 5.65.0.31977 - 5.65.0.31977) <3ACB0F8E-0B51-3E5C-B924-A31D1D6606F6> /Applications/Adobe InDesign CC/*/Reader for RTF
           0x110dca000 -        0x110e38ff7 +com.adobe.Reader for Word (Reader for Word 5.65.0.31977 - 5.65.0.31977) <27531852-B602-3785-94C0-3B316DBEC69C> /Applications/Adobe InDesign CC/*/Reader for Word
           0x110e4d000 -        0x110eb3fff +com.adobe.Reader for XLSX (Reader for XLSX 5.65.0.31977 - 5.65.0.31977) <D896568B-FB6A-3036-91FC-A1DF0FA820DF> /Applications/Adobe InDesign CC/*/Reader for XLSX
           0x110ecd000 -        0x110ed5ff7 +com.adobe.ZTextReader (ZTextReader 5.65.0.31977 - 5.65.0.31977) <28B268EF-A3AD-3933-B4DC-247428D3A88D> /Applications/Adobe InDesign CC/*/ZTextReader
           0x110f5c000 -        0x110fcbfff +com.adobe.InDesign.XMLParser (9.2.0.69 - 0) <745F02C0-071B-3979-B284-391BA59D9CF5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
           0x110fe1000 -        0x111204fff +com.adobe.InDesign.XML (9.2.0.69 - 0) <97314A64-BB21-3965-B9D3-F4C219C3DCDF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
           0x11124e000 -        0x11127bfff +com.adobe.InDesign.WorldReady (9.2.0.69 - 0) <787871A9-77D2-3095-8930-4F140D091F0A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
           0x11128b000 -        0x1112c8ff7 +com.adobe.InDesign.Workgroup (9.2.0.69 - 0) <FEA65E81-92F4-36EE-940C-3C7BD07DB7F4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
           0x1112d8000 -        0x1112fafff +com.adobe.InDesign.Workgroup Client (9.2.0.69 - 0) <2447A61F-74CA-38D1-9444-22A25D2DEE98> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
           0x111308000 -        0x111416fff +com.adobe.InDesign.Widgets (9.2.0.69 - 0) <A9FB91A0-7CDB-3025-B6AC-D53BA8BBEB1E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets
           0x11147c000 -        0x1115c0ff7 +com.adobe.InDesign.Transparency (9.2.0.69 - 0) <636FD3CD-06FE-3D25-A252-368317D80C66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
           0x1115eb000 -        0x11259ffef +com.adobe.psl (AdobePSL 14.0.0.31988 - 14.0.0.31988) <1EBD1547-F7B1-379D-8F50-FB49C7E01A58> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x112762000 -        0x11281bff7 +com.adobe.JP2K (1.2.2 - 1.2.2.31977) <8BD41D6E-B8A2-36FA-B855-7CF02E856A08> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x112842000 -        0x1128a4fff +com.adobe.InDesign.TOC (9.2.0.69 - 0) <99A6C9FF-2F20-3475-A9CF-24C7B0F63CF3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
           0x1128b8000 -        0x112ebbff7 +com.adobe.InDesign.Text (9.2.0.69 - 0) <4216A99F-7F58-3E9B-A37E-8178A6ED812A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
           0x112f59000 -        0x112fcfff7 +com.adobe.InDesign.Text Wrap (9.2.0.69 - 0) <8B65C672-BB4E-3F46-A7C5-6B2D0331C0F5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
           0x112fe8000 -        0x11300cfff +com.adobe.InDesign.Text Wrap Path (9.2.0.69 - 0) <D826BA05-20A8-367F-9414-573944D46303> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
           0x113015000 -        0x11302bff7 +com.adobe.InDesign.Text Editor Model (9.2.0.69 - 0) <C997B3C0-98C6-34A5-89E0-DBD7FB071AD6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
           0x113036000 -        0x11308cff7 +com.adobe.InDesign.Text Attributes (9.2.0.69 - 0) <F90E2E25-38B2-3F12-8902-D5A56D6AD919> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
           0x1130a7000 -        0x113104ff7 +com.adobe.InDesign.TableStyles (9.2.0.69 - 0) <4D83BFF9-CAF4-34EF-BEAE-86E2D8A1D14F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
           0x113117000 -        0x113349fff +com.adobe.InDesign.Table Model (9.2.0.69 - 0) <829471A3-999A-3B01-BD5A-B2ADC2F2972A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
           0x113385000 -        0x1133d8ff7 +com.adobe.InDesign.Image Filters (9.2.0.69 - 0) <F3DF9DCA-6073-3DF8-89EB-18F8D1DB8902> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
           0x1133e4000 -        0x11346ffff +com.adobe.InDesign.SVGExport (9.2.0.69 - 0) <E86D7C69-48CA-362B-B3A0-CC2C8F4B31B5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/SVGExport.InDesignPlugin/SVGExport
           0x113489000 -        0x113547fff +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <2FAB4B9A-EDB9-0FF9-55B2-52DEC380D2BF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x11356a000 -        0x11360efff +com.adobe.InDesign.Support for JavaScript (9.2.0.69 - 0) <EC1C0215-E510-3D0F-B692-E2F8853811D9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
           0x113639000 -        0x113690ff7 +com.adobe.InDesign.Support for AppleScript (9.2.0.69 - 0) <7D7706C3-B3C9-3B96-8473-CAD03A053148> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
           0x1136a6000 -        0x1137a8ff7 +com.adobe.InDesign.Graphics (9.2.0.69 - 0) <FCBDB8E7-46E8-3987-9BCB-0E3177F00F11> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
           0x1137cc000 -        0x113827ff7 +com.adobe.InDesign.Stroke and Fill (9.2.0.69 - 0) <72D3DE23-CFCC-3821-80AE-0908DB5768F5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
           0x11383f000 -        0x113980ff7 +com.adobe.InDesign.Spread (9.2.0.69 - 0) <AF10A69E-0D98-3E25-ABE5-CC310529098A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
           0x1139b2000 -        0x113a14fff +com.adobe.InDesign.Spread UI (9.2.0.69 - 0) <B7A3AE3F-DC65-34F6-B601-1780AF9220D9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
           0x113a30000 -        0x113a7afff +com.adobe.InDesign.Spline (9.2.0.69 - 0) <53E6EF37-C070-39BE-BB18-2703B2041EC6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
           0x113a92000 -        0x113adaff7 +com.adobe.InDesign.Spline UI (9.2.0.69 - 0) <9FC93D14-6D7C-32EE-BF90-3756FEA25FEE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
           0x113af6000 -        0x113b09ff7 +com.adobe.InDesign.Spelling Service (9.2.0.69 - 0) <1E6AAFFE-ACCA-3E0B-AA63-37A767CC336E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
           0x113b18000 -        0x113b26fff +com.adobe.InDesign.Sound (9.2.0.69 - 0) <43D68A27-E17F-3E9D-A02D-EB3230178339> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
           0x113b32000 -        0x113bbcfff +com.adobe.InDesign.SharedContent (9.2.0.69 - 0) <3863D336-3468-35E6-8298-3C1BFB37FBA5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/SharedContent.InDesignPlugin/SharedContent
           0x113bdd000 -        0x113c05fff +com.adobe.InDesign.Sections (9.2.0.69 - 0) <4DB2B4F0-124A-36F1-B1A3-9BFA36BB2FCF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
           0x113c16000 -        0x113cc4fff +com.adobe.InDesign.Scripting (9.2.0.69 - 0) <01395410-7F18-323A-BF92-4FAC6F3ECCD5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
           0x113ce3000 -        0x113d0dff7 +com.adobe.InDesign.Rulers (9.2.0.69 - 0) <C21FAD98-14EA-3E6F-9D58-7DED5B0EFB76> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
           0x113d20000 -        0x113eb5fff +com.adobe.InDesign.Print (9.2.0.69 - 0) <4E53767E-8497-32D1-B922-735E610640E2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
           0x113ee2000 -        0x113f21ff7 +com.adobe.InDesign.PNG Import Filter (9.2.0.69 - 0) <3EA87A99-3FBF-38E5-BE00-896001E5AD91> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
           0x113f31000 -        0x113f6afff +com.adobe.InDesign.Photoshop Import Filter (9.2.0.69 - 0) <B62B89C7-29F4-3058-BBD9-62BAB193B133> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
           0x113f7a000 -        0x113fe0fff +com.adobe.InDesign.Book (9.2.0.69 - 0) <A57C7841-5282-3A46-8202-CAB3C70DFBD0> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
           0x113ff7000 -        0x11410dff7 +com.adobe.InDesign.Image (9.2.0.69 - 0) <E026A24C-EF82-33E8-95FD-463A23618CB2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
           0x114139000 -        0x114145ff7 +com.adobe.InDesign.Group (9.2.0.69 - 0) <8DF66586-0FC5-3EA5-8F0D-6083387F0697> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
           0x114152000 -        0x114294fe7 +com.adobe.InDesign.EPS Page Item (9.2.0.69 - 0) <CFD4D636-06B2-3969-91FA-ED68F0873111> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
           0x1142d3000 -        0x11451ffff +com.adobe.InDesign.PDF (9.2.0.69 - 0) <36EED87F-F233-3B82-83C4-57584FEBE296> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
           0x114561000 -        0x114665fff +com.adobe.PDFPort (AdobePDFPort 2.1.0.31977 - 2.1.0.31977) <83787D51-C878-3CFF-A3A2-F2107F7BB920> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x114678000 -        0x1146a1ff7 +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <E07D101E-E47A-392A-8A44-005B49393DEC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
           0x1146ab000 -        0x114917ff7 +com.adobe.InDesign.Generic Page Item (9.2.0.69 - 0) <F0DECCE6-EAF5-30C0-8FB0-48FA56CB3503> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
           0x114963000 -        0x1149a7fff +com.adobe.InDesign.Path Type (9.2.0.69 - 0) <32D8F2D5-AF06-375A-85ED-C4E42D3B790B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
           0x1149c0000 -        0x1149caff7 +PathTypeLib.dylib (1) <A6E44FB4-61D6-3729-B3DD-A4D22EEC73B3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PathTypeLib.dylib
           0x1149d3000 -        0x114a88fff +com.adobe.InDesign.Paragraph Composer (9.2.0.69 - 0) <EEE3D51D-AF42-30AF-A8BA-DE663DC95888> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph Composer
           0x114a99000 -        0x114adafff +com.adobe.InDesign.Open Place (9.2.0.69 - 0) <6CBC4B8F-3B3D-3B14-9512-6808497AC68A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
           0x114aee000 -        0x114b06ff7 +com.adobe.InDesign.Movie (9.2.0.69 - 0) <FD78448B-F572-32C2-9580-4A0681AC69EE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie
           0x114b15000 -        0x114ba0fff +com.adobe.InDesign.Metadata (9.2.0.69 - 0) <361ED9DD-BAD7-35E5-AFE5-3176BAD1C0FC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata
           0x114bbd000 -        0x114ccafff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 81 - 79.154911) <38348CA8-7905-3AA4-AA00-95A6D912C491> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x114d00000 -        0x114d5cff7 +com.adobe.InDesign.Media (9.2.0.69 - 0) <560CE1DB-99AF-389F-8BC2-37D5F83C110F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
           0x114d72000 -        0x114eacfff +com.adobe.InDesign.Links (9.2.0.69 - 0) <1BCD7856-3DD0-3C58-AF61-0E430CF5EFBC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
           0x114ee1000 -        0x114f0afff +com.adobe.InDesign.Layout (9.2.0.69 - 0) <98815961-6446-3917-B266-7E3DB625B782> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
           0x114f19000 -        0x114f46fff +com.adobe.InDesign.Layer (9.2.0.69 - 0) <94604B73-0E52-30CB-9CC0-805F5B138FE4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
           0x114f59000 -        0x115029fff +com.adobe.InDesign.INXCore (9.2.0.69 - 0) <FCF49243-A7FD-3993-A242-7ECAB3971857> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
           0x115051000 -        0x115157ff7 +com.adobe.InDesign.Indexing (9.2.0.69 - 0) <CD23A88C-DBB2-3F46-91CC

  • WRT1900AC V1 - Linksys is aware that the router is not working properly. Help spread the word.

    I just had a conversation with Linksys' Customer Service via chat: Daphne L. J: Hello Fernando Paramo. My name is Daphne L..
    Daphne L. J: Welcome to Linksys Global Chat. Is this your initial contact or do you have a case number?
    You: Case number is 04971062
    Daphne L. J: Please give me 3-5 minutes to pull up and review your case.
    You: OK
    Daphne L. J: Thank you.
    You: I have a WRT1900AC, V1. The router is not working properly. I have disconnections every few minutes.I already installed the new firmware version and I still have the same issues. I already reset the router to factory defaults and same issues. I have changed the settings back to my personal preferences: Changed the SSID, changed the wireless security settings, changed the DNS and deactivate WPS. That's it.I'm using 5 Ghz mode with my laptops (5 Ghz adapters) and 2-4 Ghz with a few devices (Chromecast, Nintendo 3DS).
    Daphne L. J: Thank you for waiting.
    Daphne L. J: Please confirm if the following information is correct:
    Name : Fernando Paramo
    Phone Number :
    E-Mail Address : 
    Model Number : WRT1900AC
    Serial Number : 13J10609406280
    Country : United States
    You: That's correct.
    Daphne L. J: Okay. Were you able to check if the devices have stable connection wired to the router?
    You: No. I do not have devices with Ethernet ports. Well, only the cable modem.
    You: But the modem is fine. No disconnections from my ISP.
    You: It is the router.
    Daphne L. J: Alright. What is the current firmware version of your router?
    You: I tried to return the router to Wal-Mart yesterday with no luck. This is a useless device. And I have been reading comments on the community forums and a lot of people are having problems.
    Daphne L. J: We are actually aware of the issue and are working on a resolution. What is the current firmware version of your router?
    You: Ver. 1.1.10.167514
    You: Latest one.
    Daphne L. J: Yes, so you reflashed the firmware, reset and then manually reconfigure it after, not using backup configuration, is that right?
    You: That's correct.
    Daphne L. J: And it is intermittent on all devices connected to both 2.4 and 5 Ghz networks, is that right?
    You: That's correct.
    Daphne L. J: Thank you for the information. Please give ,e 3-5 minutes to verify this with my superior.
    Daphne L. J: Thank you for waiting.
    You: I want to send you my WRT1900AC and get a V2 or I want a EA8500 and pay the difference myseld.
    You: I do not want my current hardware.
    You: It is useless for my needs.
    You: I can't believe I had an older E3000 that didn't give me any problems.
    Daphne L. J: We have already exhausted all possible troubleshooting steps for your concern. As verified with my Supervisor, we will forward your case to our Customer Assurance Team. They are highly technical and knowledgeable when it comes to advanced troubleshooting. They will contact you in the next 24 to 48 hours. By the way, who is your Internet Service Provider? And do you Cable or DSL connection?
    You: Cable connection.
    Daphne L. J: Who is your Internet Service Provider?
    You: A company called .
    You: How are they going to contact me?
    Daphne L. J: Alright. By the way, on the device itself, on its FCC ID, please check if you have WRT1900AC or WRT1900AC v2.
    You: Are you paying attention to me?
    You: I already told you it's V1.
    Daphne L. J: They will call or email you. Please double check if these informations are correct:
    Name :
    Phone Number :
    E-Mail Address :
    You: I told you I want to send you my WRT1900AC and get a V2 or I want a EA8500 and pay the difference myself.
    You: I want them to contact me to my email. I can't answer the phone during work hours.
    Daphne L. J: We can't assure you if we will be able to replace it with Version 2 or if you are allowed to have the EA8500 instead.
    Daphne L. J: Just in case, do you also have an alternate number?
    Daphne L. J: Also, what time zone are you in? And what is your preferred time and day for them to contact you?
    You: I have the one from my office in Mexico. Central Time. Any time is good.
    Daphne L. J: So, you are currently in Mexico?
    You: I work in Mexico but I have the house in USA. I live in the border.
    Daphne L. J: I see. Do you have any other questions or clarifications?
    You: I live 10 minutes away from the International Bridge. But that's not an issue. I bought the router at Walmart in Laredo, TX.
    Daphne L. J: Thank you for the information. Would that be all for now?
    You: I want a clarification: Do you realize that there is an issue with the current WRT1900AC? Are you aware of that?
    You: Because this is a very expensive router that is not working as it should be.
    Daphne L. J: Yes, we are aware of the issue and are working on a resolution.
    Daphne L. J: Would there be anything else you need?
    You: That would be it. I will wait for you to contact me.
    You: Thanks.
    Daphne L. J: Alright. Thank you for giving us an opportunity to serve you through Linksys Live Chat. You may also visit our support site at www.linksys.com. For your reference, your case number is 04980394. Thank you for choosing Linksys and have a great day! We paid $250 for this piece of equipment. That's a lot of money for a device that doesn't work. I just want to get a V2 replacement, or better yet, an exchange for a EA8500. We should all demand this. It is not fair for us. The current WRT1900AC is a useless device. They even should do a recall of the product. I will wait for them to contact me, but I'm thinking if I should send the information to The Consumerist or someone else. What to do?

    Hello. I sent my WRT1900AC V1 to Linksys four days ago (Monday) via UPS with a RMA. Linksys paid the shipping and everything. The router is still in route, and it should arrive to their offices tomorrow. Once they receive the WRT1900 AC V1, they are going to send me an EA8500 as a replacement. But I have been reading the comments about the EA8500 here in the forum and it seems to have the same problems. I guess the firmware is extremely flawed in both routers (maybe it is almost the same code?). Anyway, I will try the EA8500 and I hope it works. I bought a temporary router from Walmart and I paid $35 for it. It is a Belink N600 DB. I can't believe that a $35 router is working a lot, lot, lot better than my previous $250 WRT1900AC router. Unbelievable. If the EA8500 doesn't work, I'm going to try and get my money back from Linksys, or contact The Consumerist or someone to get my money back and get a Nighthawk instead.

Maybe you are looking for

  • Dimension table greater than Fact table

    Hello, By analysing infocubes with SAP report , i encounter a situation where I have more records in a dimension table than in  the cube : ABI_C0101          /BIC/DABI_C01011    rows:         22    ratio:          0  % ABI_C0101          /BIC/DABI_C0

  • How to Group texting?

    I have a Treo 750 palm.  I always want to know how to send a group text messaging.  Anyone have an idea?  maybe a 3rd party software? Post relates to: Treo 750 (AT&T)

  • How to play movie on different resolution??

    I have mpg movie that it's resolution is 800*600,How to display this movie on 600*600 JPanel,and it's full JPanel,in other words the movie change aspect ratio on playing,but movie source file not change. Thanks

  • Service category

    i have already created a service category with internal number range. i have tested creating one service no. the problem is, when entering  the same service no  while creating a po, it displays does not exist.

  • Server move startup issues

    My database server system (9.2.0.1.0 on Solaris) was moved and its IP and domain were changed. Now, when attempting to restart the database, I get the error: ORA-03113: end of file on communication channel I checked the alert log and it shows an erro