Upload photos along with post in Forums module?

Have built a forum using the module, it doesn't seem that one can submit photos with the post. Is there a way around this? Are there known plans to integrate photo uploading?
Thanks, Will

Thank you Liam. Do you think it possible to build a Web App to replace the Forum module? Client wants logged in users to be able to create posts along with photos.
Regards, Will

Similar Messages

  • How to raise pop up window along with radio buttons in module pool program

    how to raise pop up window along with radio buttons in module pool program

    FUNCTION zscheme_determination.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(I_KUNNR) TYPE  KUNNR
    *"  EXPORTING
    *"     REFERENCE(E_VALUE) TYPE  NETWR_AK
    *"  TABLES
    *"      G_ITEM_DATA_ITAB STRUCTURE  ZITEM_DATA
    *  TYPES: BEGIN OF ty_sord,
    *         include type ZSD_SCHEME_DTL,
    *         END   OF ty_sord.
    *  data : gt_sord type standard table of ZSD_SCHEME_DTL,
    *         wa_sord type ZSD_SCHEME_DTL.
    *  select * from ZSD_SCHEME_DTL into table
    *  gt_sord
    *  where matnr = i_matnr.
    *  T_ITEM_DATA
    *********Data Declarations
       DATA:
             salesdocumentin LIKE bapivbeln-vbeln,
             orderheaderin LIKE bapisdhd1,
             orderheaderinx LIKE bapisdhd1x,
             sender LIKE bapi_sender,
             binaryrelationshiptype LIKE bapireltype-reltype,
             intnumberassignment LIKE bapiflag-bapiflag,
             behavewhenerror LIKE bapiflag-bapiflag,
             logicswitch LIKE bapisdls,
             testrun LIKE bapiflag-bapiflag,
             convert LIKE bapiflag-bapiflag,
             return LIKE bapiret2 OCCURS 0,
             orderitemsin LIKE bapisditm OCCURS 0,
             orderitemsinx LIKE bapisditmx OCCURS 0,
             orderpartners LIKE bapiparnr OCCURS 0,
             orderschedulesin LIKE bapischdl OCCURS 0,
             orderschedulesinx LIKE bapischdlx OCCURS 0,
             orderconditionsin LIKE bapicond OCCURS 0,
             orderconditionsinx LIKE bapicondx OCCURS 0,
             ordercfgsref LIKE bapicucfg OCCURS 0,
             ordercfgsinst LIKE bapicuins OCCURS 0,
             ordercfgspartof LIKE bapicuprt OCCURS 0,
             ordercfgsvalue LIKE bapicuval OCCURS 0,
             ordercfgsblob LIKE bapicublb OCCURS 0,
             ordercfgsvk LIKE bapicuvk OCCURS 0,
             ordercfgsrefinst LIKE bapicuref OCCURS 0,
             orderccard LIKE bapiccard OCCURS 0,
             ordertext LIKE bapisdtext OCCURS 0,
             orderkeys LIKE bapisdkey OCCURS 0,
             extensionin LIKE bapiparex OCCURS 0,
             partneraddresses LIKE bapiaddr1 OCCURS 0.
       DATA : wa_orderpartners LIKE bapiparnr,
              wa_orderitemsin LIKE bapisditm,
              wa_orderitemsinx LIKE bapisditmx,
              wa_orderschedulesin LIKE bapischdl,
              wa_orderschedulesinx LIKE bapischdlx,
              wa_orderconditionsin LIKE bapicond,
              wa_orderconditionsinx LIKE bapicondx,
              wa_return LIKE bapiret2,
              lv_value TYPE netwr_ak.
       DATA : lv_dtyp TYPE char45,
              lv_sorg TYPE vkorg,
              lv_sdch TYPE vtweg,
              lv_sdiv TYPE spart.
       TYPES : BEGIN OF ty_sord,
               zsdscheme TYPE comt_scheme_id,
               posnr TYPE posnr_va,
               matnr TYPE matnr,
               disc_type TYPE rebate_disc_type,
               calc_type TYPE catyp,
               qty_from TYPE kwmeng,
               qty_to TYPE kwmeng,
               spart TYPE spart,
               custcondgrp TYPE kdkg1,
               werks TYPE werks_d,
               matmn TYPE matnr,
               END   OF ty_sord.
       DATA : gt_sord   TYPE STANDARD TABLE OF ty_sord,
              gt_sordd  TYPE STANDARD TABLE OF ty_sord,
              wa_sord TYPE ty_sord,
              wa_knvv TYPE knvv,
              lv_cal_foc TYPE p DECIMALS 3,
              lv_cal_dis TYPE p DECIMALS 3,
              lv_new_qty TYPE kwmeng,
              lv_posmat TYPE posnr_va,
              lv_posfoc TYPE posnr_va.
       DATA:lv_diff TYPE kwmeng.
    ******Schemes Selection Logic
    * Get Valid Schemes
    * Validate Scheme for validity Period, Material, Customer Type and Plant
       TYPES : BEGIN OF ty_rtab,
               sign   TYPE c LENGTH 1,
               option TYPE c LENGTH 2,
               low    LIKE mara-matnr,
               high   LIKE mara-matnr,
             END OF ty_rtab.
    *  TYPES : ty_matnr TYPE RANGE OF ty_rtab.
       DATA : it_matnr TYPE TABLE OF ty_rtab,
              wa_matnr TYPE ty_rtab,
              wa_it    TYPE zitem_data,
             wa_tab TYPE zitem_data.
    *order table declaration
       TYPES:
             BEGIN OF ty_order,
               zsdscheme TYPE comt_scheme_id,
               matnr     TYPE matnr,
               kwmeng    TYPE kwmeng,
             END OF ty_order,
       BEGIN OF ty_scheme,
        zsdscheme TYPE comt_scheme_id,
    *                matnr     TYPE matnr,
        kwmeng    TYPE kwmeng,
      END OF ty_scheme.
       DATA:
             gt_order      TYPE TABLE OF ty_order,
             gt_scheme     TYPE TABLE OF ty_scheme,
              wa_scheme    TYPE ty_scheme,
              wa_order     TYPE  ty_order.
       DATA:i_kwmeng TYPE kwmeng.
    * Transfer all the material received from order to internal table
       LOOP AT g_item_data_itab INTO wa_it.
         MOVE : wa_it-matnr TO wa_matnr-low,
                'I'          TO wa_matnr-sign,
                'EQ'         TO wa_matnr-option.
         APPEND wa_matnr TO it_matnr.
         CLEAR wa_it.
       ENDLOOP.
    * Get the Valid Schemes based on given criteria
       SELECT
               zsd_scheme_dtl~zsdscheme
               zsd_scheme_dtl~posnr
               zsd_scheme_dtl~matnr
               zsd_scheme_dtl~disc_type
               zsd_scheme_dtl~calc_type
               zsd_scheme_dtl~qty_from
               zsd_scheme_dtl~qty_to
               zsd_scheme~spart
               zsd_scheme_hdr~custcondgrp
               zsd_scheme_hdr~werks
               zsd_scheme_hdr~matnr
       FROM zsd_scheme_hdr
       INNER JOIN zsd_scheme ON zsd_scheme~zsdscheme = zsd_scheme_hdr~zsdscheme
       INNER JOIN zsd_scheme_dtl ON zsd_scheme_dtl~zsdscheme = zsd_scheme_hdr~zsdscheme
       INTO TABLE  gt_sord
       WHERE  zsd_scheme_dtl~matnr IN it_matnr
    *    zsd_scheme_hdr~matnr IN it_matnr
    *    AND zsd_scheme_hdr~werks = '1509'
         AND zsd_scheme_hdr~werks = '1529'
         AND zsd_scheme_hdr~custcondgrp = '01'
         AND zsd_scheme~datuv LE sy-datum
         AND zsd_scheme~datub GE sy-datum.
       SORT gt_sord BY zsdscheme ASCENDING.
    *  LOOP AT gt_sord INTO wa_sord.
    *    READ TABLE g_item_data_itab INTO wa_it WITH  KEY matnr = wa_sord-matnr.
    *    wa_order-zsdscheme = wa_sord-zsdscheme.
    *    wa_order-matnr = wa_it-matnr.
    *    wa_order-kwmeng = wa_it-kwmeng.
    *    COLLECT wa_order INTO gt_order.
    *    CLEAR wa_order.
    *  ENDLOOP.
       LOOP AT g_item_data_itab INTO wa_it.
         READ TABLE gt_sord INTO wa_sord WITH  KEY matnr = wa_it-matnr.
         wa_order-zsdscheme = wa_sord-zsdscheme.
         wa_order-matnr = wa_it-matnr.
         wa_order-kwmeng = wa_it-kwmeng.
         COLLECT wa_order INTO gt_order.
         MOVE : wa_sord-zsdscheme  TO wa_scheme-zsdscheme,
                wa_it-kwmeng  TO wa_scheme-kwmeng.
         COLLECT wa_scheme INTO gt_scheme.
         CLEAR : wa_order, wa_scheme.
       ENDLOOP.
       CLEAR wa_scheme.
       DATA w_line TYPE sy-tabix.
    * Updating table based on Schemes
       LOOP AT gt_scheme INTO wa_scheme.
         CLEAR w_line.
         gt_sordd[] = gt_sord[].
    *    DELETE gt_sordd WHERE zsdscheme NE wa_scheme-zsdscheme and disc_type NE 'FOC'.
         DELETE gt_sordd WHERE zsdscheme NE wa_scheme-zsdscheme AND disc_type NE 'F'.
         DELETE ADJACENT DUPLICATES FROM gt_sordd COMPARING zsdscheme matnr.
         DESCRIBE TABLE gt_sordd LINES w_line.
         IF w_line GT 1.
    * popup message to select one foc type.
         ELSE.
           CLEAR wa_sord.
           READ TABLE gt_sordd INTO wa_sord INDEX 1.
           IF sy-subrc EQ 0.
             i_kwmeng = wa_scheme-kwmeng.
             lv_cal_foc = i_kwmeng DIV wa_sord-qty_from.
             lv_cal_dis = i_kwmeng MOD wa_sord-qty_from.
             MOVE : lv_cal_foc TO wa_it-kwmeng,
                    wa_sord-matnr TO wa_it-matnr.
             APPEND  wa_it TO g_item_data_itab.
             SORT gt_order BY kwmeng DESCENDING.
             LOOP AT gt_order INTO wa_order WHERE zsdscheme = wa_scheme-zsdscheme.
               IF lv_cal_dis GT 0.
    *        LOOP AT gt_order INTO wa_order WHERE zsdscheme = wa_scheme-zsdscheme
    *                                             AND lv_cal_dis GT 0.
    *                  LOOP AT gt_order INTO wa_order WHERE zsdscheme = wa_scheme-zsdscheme.
    *                LOOP AT g_item_data INTO wa_item_data WHERE matnr EQ wa_order-matnr.
                         LOOP AT g_item_data_itab INTO wa_tab WHERE matnr EQ wa_order-matnr.
                           wa_orderconditionsin-itm_number = wa_tab-posnr.
    *                  wa_orderconditionsin-itm_number = wa_item_data-posnr.
                           wa_orderconditionsin-cond_st_no = '001'.
    *                  IF gt_sordd-calc EQ ‘post AND disc_type EQ ‘percentage’.
                           IF wa_sord-calc_type EQ 'O' AND wa_sord-disc_type EQ 'P'.
                             wa_orderconditionsin-cond_type = 'ZTPB'.   "'ZREG'.
    *                  ELSEIF gt_sordd-calc EQ ‘pre’ AND disc_type EQ ‘percentage’
                           ELSEIF wa_sord-calc_type EQ 'E' AND wa_sord-disc_type EQ 'P'.
                             wa_orderconditionsin-cond_type = 'ZTPP'.   "'ZREG'.
                           ENDIF.
                           wa_orderconditionsin-currency = 'INR'.
                           wa_orderconditionsin-conpricdat = sy-datum.
                           APPEND wa_orderconditionsin TO orderconditionsin.
                           CLEAR wa_orderconditionsin.
    *Update Discount Conditon
                         ENDLOOP.
    *                  ENDLOOP.
    *Modify balance of Item
                 CLEAR wa_tab.
                 READ TABLE g_item_data_itab INTO wa_tab WITH KEY matnr = wa_order-matnr.
                 IF sy-subrc EQ 0.
                   lv_diff = wa_tab-kwmeng - lv_cal_dis.
                   IF lv_diff GT 0.
                     wa_tab-kwmeng  = wa_tab-kwmeng - lv_cal_dis.
    *            MODIFY g_item_data TRANSPORTING kwmeng  index sy-tabix.
                     MODIFY g_item_data_itab INDEX sy-tabix FROM wa_tab TRANSPORTING kwmeng  .
                   ELSE.
                     wa_tab-kwmeng  =  lv_cal_dis.
                     lv_cal_dis  = lv_diff.
                     MODIFY g_item_data_itab INDEX sy-tabix FROM wa_tab TRANSPORTING kwmeng .
    *            MODIFY G_ITEM_DATA_ITAB TRANSPORTING kwmeng index sy-tabix.
                   ENDIF.
                   gt_sordd[] = gt_sord[].
                   DELETE gt_sordd WHERE zsdscheme NE wa_scheme-zsdscheme AND disc_type EQ 'F'.
                   DESCRIBE TABLE gt_sordd LINES w_line.
                   IF w_line GT 1.
                     SORT gt_sordd BY zsdscheme DESCENDING.
    *              SORT gt_sordd BY quantity DESCENDING.
                     CLEAR wa_sord.
    *              LOOP AT gt_sordd WHERE quantity_from LT wa_shceme-kwmeng AND quantity_to GT wa_shceme-kwmeng.
                     LOOP AT gt_sordd INTO wa_sord  WHERE qty_from LT wa_scheme-kwmeng AND qty_to GT wa_scheme-kwmeng.
    *             LOOP AT gt_order INTO wa_order WHERE scheme = wa_scheme-scheme.
                       LOOP AT gt_order INTO wa_order WHERE zsdscheme = wa_scheme-zsdscheme.
    *                LOOP AT g_item_data INTO wa_item_data WHERE matnr EQ wa_order-matnr.
                         LOOP AT g_item_data_itab INTO wa_tab WHERE matnr EQ wa_order-matnr.
                           wa_orderconditionsin-itm_number = wa_tab-posnr.
    *                  wa_orderconditionsin-itm_number = wa_item_data-posnr.
                           wa_orderconditionsin-cond_st_no = '001'.
    *                  IF gt_sordd-calc EQ ‘post AND disc_type EQ ‘percentage’.
                           IF wa_sord-calc_type EQ 'O' AND wa_sord-disc_type EQ 'P'.
                             wa_orderconditionsin-cond_type = 'ZDPD'.   "'ZREG'.
    *                  ELSEIF gt_sordd-calc EQ ‘pre’ AND disc_type EQ ‘percentage’
                           ELSEIF wa_sord-calc_type EQ 'E' AND wa_sord-disc_type EQ 'P'.
                             wa_orderconditionsin-cond_type = 'ZDPD'.   "'ZREG'.
                           ENDIF.
                           wa_orderconditionsin-currency = 'INR'.
                           wa_orderconditionsin-conpricdat = sy-datum.
                           APPEND wa_orderconditionsin TO orderconditionsin.
                           CLEAR wa_orderconditionsin.
    *Update Discount Conditon
                         ENDLOOP.
                       ENDLOOP.
                     ENDLOOP.
                   ELSE.
                   ENDIF.
                 ENDIF.
               ENDIF.
             ENDLOOP.
           ENDIF.
         ENDIF.
       ENDLOOP.
    *  select
    *          ZSD_SCHEME_DTL~ZSDSCHEME
    *          ZSD_SCHEME_DTL~POSNR
    *          ZSD_SCHEME_DTL~matnr
    *          ZSD_SCHEME_DTL~DISC_TYPE
    *          ZSD_SCHEME_DTL~CALC_TYPE
    *          ZSD_SCHEME_DTL~QTY_FROM
    *          ZSD_SCHEME_DTL~QTY_TO
    *          ZSD_SCHEME~SPART
    *          ZSD_SCHEME_HDR~CUSTCONDGRP
    *          ZSD_SCHEME_HDR~WERKS
    *          ZSD_SCHEME_HDR~MATNR
    *  from ZSD_SCHEME_DTL
    *  inner join ZSD_SCHEME on ZSD_SCHEME~ZSDSCHEME = ZSD_SCHEME_DTL~ZSDSCHEME
    *  inner join ZSD_SCHEME_HDR on ZSD_SCHEME_HDR~ZSDSCHEME = ZSD_SCHEME_DTL~ZSDSCHEME
    *  into table
    *  gt_sord
    *  where ZSD_SCHEME_DTL~matnr = i_matnr and
    *        ZSD_SCHEME~DATUV LE sy-datum and
    *        ZSD_SCHEME~DATUB GE sy-datum.
    *  break-point.
    * Process Common Logic for Schemes Processcing
       CLEAR wa_sord.
    * Convert FOC Quantity and Materials
    *  LOOP AT gt_sord INTO wa_sord.
    **   lv_cal = i_kwmeng / wa_sord-QTY_FROM.
    *    lv_cal_foc = i_kwmeng DIV wa_sord-qty_from.
    *    lv_cal_dis = i_kwmeng MOD wa_sord-qty_from.
    *  ENDLOOP.
    *lv_new_qty = i_kwmeng - lv_cal_dis.
    * Get the Sales Document Type
       SELECT SINGLE low
    FROM tvarvc
    INTO  lv_dtyp WHERE
    name = 'SD_DOC_TYPE'.
       SELECT SINGLE * FROM knvv INTO wa_knvv WHERE kunnr = i_kunnr.
       IF sy-subrc = 0.
         lv_sorg = wa_knvv-vkorg.
         lv_sdch = wa_knvv-vtweg.
         lv_sdiv = wa_knvv-spart.
       ENDIF.
    * Give the Popup for schemes with multiple FOC
    * Schemes Specific Processing
    * Schemes Specific Processing
       orderheaderin-doc_type = lv_dtyp.
       orderheaderin-sales_org = lv_sorg.
       orderheaderin-distr_chan = lv_sdch.
       orderheaderin-division = lv_sdiv.
       wa_orderpartners-partn_role = 'AG'.
       wa_orderpartners-partn_numb = i_kunnr.
       APPEND wa_orderpartners TO orderpartners.
    *    wa_ORDERPARTNERS-PARTN_ROLE = 'WE'.
    *    wa_ORDERPARTNERS-PARTN_NUMB = p_ship.
    *    append wa_ORDERPARTNERS to ORDERPARTNERS.
    * Item number begin
       CLEAR : lv_posmat.
       lv_posmat = lv_posmat + 10.
       wa_orderitemsin-itm_number = lv_posmat.
       wa_orderitemsin-material = wa_sord-matmn.  "i_matnr.
       wa_orderitemsin-target_qty = lv_new_qty.
    *  wa_ORDERITEMSIN-TARGET_QU = i_VRKME.
       APPEND wa_orderitemsin TO orderitemsin.
       wa_orderitemsinx-itm_number = lv_posmat.
       wa_orderitemsinx-material = 'X'.
       wa_orderitemsinx-target_qty = 'X'.
       wa_orderitemsinx-target_qu = 'X'.
       APPEND wa_orderitemsinx TO orderitemsinx.
       wa_orderschedulesin-itm_number = lv_posmat.
       wa_orderschedulesin-sched_line = lv_posmat.
       wa_orderschedulesin-req_qty = lv_new_qty.
       APPEND wa_orderschedulesin TO orderschedulesin.
       wa_orderschedulesinx-itm_number = lv_posmat.
       wa_orderschedulesinx-sched_line = lv_posmat.
       wa_orderschedulesinx-req_qty  = 'X'.
       wa_orderschedulesinx-updateflag = 'X'.
       APPEND wa_orderschedulesinx TO orderschedulesinx.
       wa_orderconditionsin-itm_number = lv_posmat.
       wa_orderconditionsin-cond_st_no = '001'.
       wa_orderconditionsin-cond_type = 'ZDPD'.   "'ZREG'.
       wa_orderconditionsin-currency = 'INR'.
       wa_orderconditionsin-conpricdat = sy-datum.
       APPEND wa_orderconditionsin TO orderconditionsin.
       wa_orderconditionsinx-itm_number = lv_posmat.
       wa_orderconditionsinx-cond_st_no = '001'.
       wa_orderconditionsinx-cond_type = 'ZDPD'. "'ZREG'.
       wa_orderconditionsinx-updateflag = 'X'.
       wa_orderconditionsinx-cond_value ='X'.
       wa_orderconditionsinx-currency = 'X'.
       APPEND wa_orderconditionsinx TO orderconditionsinx.
    ****18/06Beg
    *  if not lv_cal_dis is initial.
    *    lv_posmat = lv_posmat + 10.
    *    wa_ORDERITEMSIN-ITM_NUMBER = lv_posmat.
    *    wa_ORDERITEMSIN-MATERIAL = WA_SORD-MATMN.  "i_matnr.
    *    wa_ORDERITEMSIN-TARGET_QTY = lv_cal_dis.
    **  wa_ORDERITEMSIN-TARGET_QU = i_VRKME.
    *    append wa_ORDERITEMSIN to ORDERITEMSIN.
    *    wa_ORDERITEMSINX-ITM_NUMBER = lv_posmat.
    *    wa_ORDERITEMSINX-MATERIAL = 'X'.
    *    wa_ORDERITEMSINX-TARGET_QTY = 'X'.
    *    wa_ORDERITEMSINX-TARGET_QU = 'X'.
    *    append wa_ORDERITEMSINX to ORDERITEMSINX.
    *    wa_ORDERSCHEDULESIN-ITM_NUMBER = lv_posmat.
    *    wa_ORDERSCHEDULESIN-SCHED_LINE = lv_posmat.
    *    wa_ORDERSCHEDULESIN-REQ_QTY = lv_cal_dis.
    *    append wa_ORDERSCHEDULESIN to ORDERSCHEDULESIN.
    *    wa_ORDERSCHEDULESINX-itm_number = lv_posmat.
    *    wa_ORDERSCHEDULESINX-sched_line = lv_posmat.
    *    wa_ORDERSCHEDULESINX-req_qty  = 'X'.
    *    wa_ORDERSCHEDULESINX-updateflag = 'X'.
    *    append wa_ORDERSCHEDULESINX to ORDERSCHEDULESINX.
    *  endif.
    *  lv_posmat = lv_posmat + 10.
    *  wa_ORDERITEMSIN-ITM_NUMBER = lv_posmat.
    *  wa_ORDERITEMSIN-MATERIAL = i_matnr.  "WA_SORD-MATMN.
    *  wa_ORDERITEMSIN-TARGET_QTY = LV_CAL_FOC.
    *  wa_ORDERITEMSIN-ITEM_CATEG = 'ZDGN'.
    **  wa_ORDERITEMSIN-TARGET_QU = i_VRKME.
    *  append wa_ORDERITEMSIN to ORDERITEMSIN.
    *  wa_ORDERITEMSINX-ITM_NUMBER = lv_posmat.
    *  wa_ORDERITEMSINX-MATERIAL = 'X'.
    *  wa_ORDERITEMSINX-TARGET_QTY = 'X'.
    *  wa_ORDERITEMSINX-TARGET_QU = 'X'.
    *  wa_ORDERITEMSINX-ITEM_CATEG = 'X'.
    *  append wa_ORDERITEMSINX to ORDERITEMSINX.
    *  wa_ORDERSCHEDULESIN-ITM_NUMBER = lv_posmat.
    *  wa_ORDERSCHEDULESIN-SCHED_LINE = lv_posmat.
    *  wa_ORDERSCHEDULESIN-REQ_QTY = LV_CAL_FOC.
    *  append wa_ORDERSCHEDULESIN to ORDERSCHEDULESIN.
    *  wa_ORDERSCHEDULESINX-itm_number = lv_posmat.
    *  wa_ORDERSCHEDULESINX-sched_line = lv_posmat.
    *  wa_ORDERSCHEDULESINX-req_qty  = 'X'.
    *  wa_ORDERSCHEDULESINX-updateflag = 'X'.
    *  append wa_ORDERSCHEDULESINX to ORDERSCHEDULESINX.
    ****18/06End
    * Item number end
    * Switch off dialog (BAPIs always run without)
       CALL FUNCTION 'DIALOG_SET_NO_DIALOG'.
       CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
         EXPORTING
    *     SALESDOCUMENTIN               =
         order_header_in               = orderheaderin
    *     ORDER_HEADER_INX              =
    *     SENDER                        =
    *     BINARY_RELATIONSHIPTYPE       =
    *     INT_NUMBER_ASSIGNMENT         =
    *     BEHAVE_WHEN_ERROR             =
    *     LOGIC_SWITCH                  =
    *     TESTRUN                       =
    *     CONVERT                       = ' '
    *   IMPORTING
    *     SALESDOCUMENT                 =
       TABLES
         return                        = return
         order_items_in                = orderitemsin
         order_items_inx               = orderitemsinx
         order_partners                = orderpartners
         order_schedules_in            = orderschedulesin
         order_schedules_inx           = orderschedulesinx
         order_conditions_in           = orderconditionsin
         order_conditions_inx          = orderconditionsinx
    *     ORDER_CFGS_REF                =
    *     ORDER_CFGS_INST               =
    *     ORDER_CFGS_PART_OF            =
    *     ORDER_CFGS_VALUE              =
    *     ORDER_CFGS_BLOB               =
    *     ORDER_CFGS_VK                 =
    *     ORDER_CFGS_REFINST            =
    *     ORDER_CCARD                   =
    *     ORDER_TEXT                    =
    *     ORDER_KEYS                    =
    *     EXTENSIONIN                   =
    *     PARTNERADDRESSES              =
    *    commit work.
       CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    *     EXPORTING
    *       WAIT          =
    *     IMPORTING
    *       RETURN        =
       LOOP AT return INTO wa_return.
         WRITE:/ wa_return-message.
       ENDLOOP.
    ENDFUNCTION.
    *& Include ZSD_SO_CHANGES2_TOP                               Module Pool      ZSD_SO_CHANGES2
    PROGRAM  ZSD_SO_CHANGES2.
    ***&SPWIZARD: DATA DECLARATION FOR TABLECONTROL 'ITEM_DATA'
    *&SPWIZARD: DEFINITION OF DDIC-TABLE
    TABLES:   VBAP,kna1.
    *&SPWIZARD: TYPE FOR THE DATA OF TABLECONTROL 'ITEM_DATA'
    TYPES: BEGIN OF T_ITEM_DATA,
              POSNR LIKE VBAP-POSNR,
              MATNR LIKE VBAP-MATNR,
              KWMENG LIKE VBAP-KWMENG,
              VRKME LIKE VBAP-VRKME,
            END OF T_ITEM_DATA.
    *&SPWIZARD: INTERNAL TABLE FOR TABLECONTROL 'ITEM_DATA'
    DATA:     G_ITEM_DATA_ITAB   TYPE T_ITEM_DATA OCCURS 0,
               G_ITEM_DATA_WA     TYPE T_ITEM_DATA. "work area
    DATA:     G_ITEM_DATA_COPIED.           "copy flag
    *&SPWIZARD: DECLARATION OF TABLECONTROL 'ITEM_DATA' ITSELF
    CONTROLS: ITEM_DATA TYPE TABLEVIEW USING SCREEN 4000.
    DATA:GV_NUM TYPE I VALUE 1,
           GV_NUM2 TYPE I.
    DATA:     G_T_YREC_TAB_LINES  LIKE SY-LOOPC.***********top*************
    *& Include ZSD_SO_CHANGES2_TOP                               Module Pool      ZSD_SO_CHANGES2
    PROGRAM  ZSD_SO_CHANGES2.
    ***&SPWIZARD: DATA DECLARATION FOR TABLECONTROL 'ITEM_DATA'
    *&SPWIZARD: DEFINITION OF DDIC-TABLE
    TABLES:   VBAP,kna1.
    *&SPWIZARD: TYPE FOR THE DATA OF TABLECONTROL 'ITEM_DATA'
    TYPES: BEGIN OF T_ITEM_DATA,
              POSNR LIKE VBAP-POSNR,
              MATNR LIKE VBAP-MATNR,
              KWMENG LIKE VBAP-KWMENG,
              VRKME LIKE VBAP-VRKME,
            END OF T_ITEM_DATA.
    *&SPWIZARD: INTERNAL TABLE FOR TABLECONTROL 'ITEM_DATA'
    DATA:     G_ITEM_DATA_ITAB   TYPE T_ITEM_DATA OCCURS 0,
               G_ITEM_DATA_WA     TYPE T_ITEM_DATA. "work area
    DATA:     G_ITEM_DATA_COPIED.           "copy flag
    *&SPWIZARD: DECLARATION OF TABLECONTROL 'ITEM_DATA' ITSELF
    CONTROLS: ITEM_DATA TYPE TABLEVIEW USING SCREEN 4000.
    DATA:GV_NUM TYPE I VALUE 1,
           GV_NUM2 TYPE I.
    DATA:     G_T_YREC_TAB_LINES  LIKE SY-LOOPC.
    ************************pbo*******************
    *&  Include           ZSD_SO_CHANGES2_PBO
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ITEM_DATA'. DO NOT CHANGE THIS LINE!
    *&SPWIZARD: COPY DDIC-TABLE TO ITAB
    MODULE ITEM_DATA_INIT OUTPUT.
       IF G_ITEM_DATA_COPIED IS INITIAL.
    *&SPWIZARD: COPY DDIC-TABLE 'VBAP'
    *&SPWIZARD: INTO INTERNAL TABLE 'g_ITEM_DATA_itab'
    *    SELECT * FROM VBAP
    *       INTO CORRESPONDING FIELDS
    *       OF TABLE G_ITEM_DATA_ITAB.
    *    G_ITEM_DATA_COPIED = 'X'.
         REFRESH CONTROL 'ITEM_DATA' FROM SCREEN '4000'.
       ENDIF.
       ITEM_DATA-LINES = G_T_YREC_TAB_LINES + 15.
    ENDMODULE.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ITEM_DATA'. DO NOT CHANGE THIS LINE!
    *&SPWIZARD: MOVE ITAB TO DYNPRO
    MODULE ITEM_DATA_MOVE OUTPUT.
       MOVE-CORRESPONDING G_ITEM_DATA_WA TO VBAP.
    ENDMODULE.
    *&      Module  STATUS_4000  OUTPUT
    *       text
    MODULE STATUS_4000 OUTPUT.
       SET PF-STATUS 'APAR'.
    *  REFRESH G_ITEM_DATA_ITAB.
        GV_NUM = 1.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_4000  OUTPUT

  • I have used the "description" spot in iPhoto for in-depth additional information for photos of my ancestors. Now I am wanting to know if there is a way to print the photos along with the descriptions; either photo by photo, or maybe more than one per page

    I have used the "description" spot in iPhoto for in-depth additional information for photos of my ancestors. Now I am wanting to know if there is a way to print the photos along with the descriptions; either photo by photo, or maybe more than one per page, or possibly in some sort of booklet format. Thank you very much.

    You can make a Book and have a photo on one side and your text description on the other.

  • How to upload image along with timestamp

    Hi all,
    I need to upload an image (byte array) and its timestamp to server which has jsp/servlet. But having trouble to transmit both in the same request.
    In actionscript, I use URLRequest and URLLoader and upload the image without problem, however, I don't know how to upload the timestamp in the same request. I tried to build a ByteArray to contain both timestamp and the image, but I couldn't convert the Date.getTime() to byte[] correctly. The only function in ByteArray to input 8 bytes is writeDouble, but it doesn't embed the time correctly.
    Where is the best way to handle this?
    Thanks a lot

    Thanks for the reply.
    Can you shed some light how to transfer the file over? I use URLLoader with POST method and set the request data to a bytearray which is the image bitmapdata bit array. How do I send the the file name over? (parse the filename is not a problem)
    Thanks,
    Rovi

  • When uploading photos to Photobucket or Imgur or select forums either nothing happens at all or I get the "connection was reset" error. I have no problem uploading photos to other forums and FB. Firewall disabled, Spyware Doctor OFF, UAC off. Win 7-64.

    I have cleared the cache and history on both IE and firefox. When I try to upload photos to Photobucket, I get "IOException" and when I try to upload photos to paleoplanet (yuku) I get the "The connection was reset" firefox error. I can upload photos to FB and other forums just fine. I tried to use Imgur instead of Photobucket and I get a similar failure.

    Hi Trond,
    Extremely helpful observations here. Am sure quite some folks will hit this thread!
    Regards,
    Srikishan

  • Issue when posting comments along with a photo to facebook.

    Hi 
    When i firs got my phone around 2 months ago, all was cool. 
    Now, when i post a photo to facebook's Xperia album, i'm asked if i want to write a comment along with the photo, i write a comment, then press 'post' The comment is never posted. This seems to happen when i post the photo to the Xperia album as i want to have a record of pics taken on this phone. 
    In accounts, i have an 'Xperia with facebook' account & a 'facebook' account,should these be synced, what is the difference between the 2 & could this be the reason for the issue?
    Many Thanks
    Rup 

    I just tested this here and it seems like there's an issue with the latest version of Facebooks app. If i upload a photo to one of my albums (doesn't matter which album) using it and add a comment, the comment is never added to the picture on Facebook. It doesn't matter if i share the photo from Album or if i open Facebooks app and upload it from there with a comment.
    I reported it as an issue to Facebook using their app and i recommend that you also do this.
    Beside the option to use the web version of Facebook (www.facebook.com/m.facebook.com/touch.facebook.com) you have two apps in your phone for Facebook. The first is the Facebook app made by Facebook and the other is Xperia with Facebook made by us. Xperia with Facebook is designed to synchronize certain data with Facebook like pictures to Album.
    But due to API changes made by Facebook we are however in the process of phasing out Xperia with Facebook and some functionality has already been removed. In our latest software, there's no option to upload a picture with Xperia with Facebook so you need to use Facebooks app.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • I'm having trouble with my iCloud photos. I thought i could be a little sneaky and take a photo of my photos that were more than 30 days old, so they would be uploaded along with my new photos. that part worked, but i can't upload them to Snapfish?!

    i'm having trouble with my iCloud photos. I thought i could be a little sneaky and take a photo of my photos that were more than 30 days old, so they would be uploaded along with my new photos. that part worked, but i can't select them to upload them to Snapfish?! Any thoughts? I'm bummed. I've got a few hundred photos on my iPhone that I'd like to move seemlessly - or somehow at all.

    hopefully something in here is helpful?
    http://support.apple.com/kb/HT4486

  • How does photo metadata get uploaded to shared Photo Stream along with the photos?

    Performed upgrade to Mountain Lion so I could share Photo Streams with other people,. Trouble is all the naming, descriptions, locations of the photos do not show up in Photo Stream. Is there a way to enable this or is it just not possible?
    I am migrating from sharing Picasa Web Albums to Photo Stream and would like to have all the metadata along with the photos...
    I was not sure where to post this question as it is related to iCloud, iPhoto, OS X Mountain Lion, etc. The shared Photo Stream feature appeared in my version of iPhoto '11 (version 9.4.2) only after the upgrade to Mountain Lion.

    Photo Stream only uses the file names and what you're changing is the Title, not file name.  To get the title to be the file hame you have to export the photo out of iPhoto via the File ➙ Export ➙ File Export menu with the option to use the title as the new file name.
    Send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • Problems with uploading photos to Facebook - Photoshop elements 9

    Yesterday I was able to upload photos to Facebook with no problems, but today I just keep getting a message to say I can't upload.  I get a message saying "there is a problem with your internet connection.  Please check that the firewall is not blocking Elements organiser or that you have an internet connection".  The firewall is not blocking it and I do have an internet connection, I can upload to Flickr, and I attach to email's as attachments, but I cannot upload to Facebook. 
    It was fine yesterday and I can't work out why it isn't working today - nothing has changed at my end - is anyone else experiencing the same problem and does anyone know how to fix it?

    Three posts down - http://forums.adobe.com/thread/911836?tstart=0

  • Moving LR5 catalog (Irdata & Ircat) to a new hard drive and photos. Lost all meta data - How do I move meta data along with catalog?

    I moved LR5 catalog (Irdata & Ircat) to a new hard drive and photos. Lost all meta data - How do I move meta data along with catalog?
    The meta data for each image is missing.
    I have over 2,000 images. I don't want to go back through each image and add meta data.
    Is there some way to move everything?

    No, do not re-import your images. I assume you can see the thumbnails in the library module, just cannot access the full images, right? If this is the case there should be an exclamation mark in the top right corner of every one of your pictures and you only have to tell LR where the images are now.
    Click the exclamation mark of one of the images and a dialog window should pop-up, telling you that LR cannot find the file, but with an option to locate it. Press "Locate" and navigate to the folder on your new HD where the file is. If in the new external HD you kept the same folder structure that you had on the internal disk, LR will be able to find all your images and re-link them to the database without further intervention.

  • I have a G5 which I intend to keep.  Now that I have updated my iphone 4s to iOS 7.0.  I cannot add music to my iphone or upload photos to iphoto.  I have the last itunes 10.6.3. which was supported by apple.  itunes will not interact with my iphone on an

    I have a G5 which I intend to keep.
    Now that I have updated my iphone 4s to iOS 7.0.
    I cannot add music to my iphone or upload photos to iphoto.
    I have the last itunes 10.6.3. which was supported by apple.
    itunes will not interact with my iphone on any level.
    Apple made all the equipment I use.
    Bentley and Ferrari etc do not stop making parts for their cars?
    The least Apple could is.
    A. Update itunes to run on a G5
    Regarding iOS 7.0 you have totally lost the plot.
    We buy apple why?
    Quality.
    Intuitive interface.
    Stable software.
    Design.
    All that Steve Jobs consider sacrosanct.
    Quality is about ongoing support longevity of product.
    Its not about trying to sell to every person on the planet, others are way ahead of you.
    So try respective the customers you have, it wont be long before theirs a better operating system and your lead in hardware is marginal. 
    Regards
    Glyn Evans
    My post on facebook this morning.
    If you have an iPhone or iPad do not update to ISO 7 unless you want an operating system that looks like windows 8. The graphics looks like it was designed by a artistically challenged mongoose and the operating system is not intuitive something apple users expect. Overly complicated ugly and generally change for the sake of apples paranoia since the death of Steve Jobs.

    You need to update iTunes to 11.1 on your PC

  • SAP BPC 7.5 - Netweaver- File Upload -Transaction data along with comments

    Hi,
    We have a requirement to upload a file containing comments along with transaction data.
    We are planning to store commnents in a Ztable from the flat file and read and post comments in the BADI
    using UJC*Add_cmt.
    Use a custom process chain to execute the above steps and link to a pakage.
    Please let me know if there is a better process/how to doc  and any code for the above.
    Your early reponse is much appreciated.
    Regards,
    Venkata

    Hi Venkata,
    *MVAL  function allows you to use multiple time period columns. I don't think this may help your scenario. I my opinion you may need to use two transformation files to bring the data from BW cube to BPC. BPC is an account base model, I don't think you can load the data in two columns in BW cube using one transformation file.
    Thanks

  • Photo uploaded from PC when posted, displays long description of image, instead of my own comments that were just typed.

    All previous saved and uploaded images were able to be posted without excessive, unwanted image descriptions. I typed my OWN comment to go along with my posting, but the image description appeared in the box instead. I tried posting ONLY the image, but it did the SAME thing! Here is the URL for the image location>>http://www.google.com/imgres?imgurl=http://www.cbs.dtu.dk/staff/dave/roanoke/wegman-dog-artist_2.jpg&imgrefurl=http://www.democraticunderground.com/discuss/duboard.php%3Faz%3Dview_all%26address%3D105x5983853&usg=__e0dndJMvk6Hu1hgdDLy-NcV1boM=&h=445&w=430&sz=33&hl=en&start=20&sig2=qdrchCai4Jhuj7eE-Eog0Q&zoom=1&tbnid=lLJJ6svfcVNm1M:&tbnh=107&tbnw=103&ei=-afyTPSxMIzEsAPotvzJCw&prev=/images%3Fq%3Dwilliam%2BWEGMAN%26um%3D1%26hl%3Den%26client%3Dfirefox-a%26sa%3DG%26rls%3Dorg.mozilla:en-US:official%26biw%3D800%26bih%3D400%26tbs%3Disch:10%2C603&um=1&itbs=1&iact=hc&vpx=483&vpy=81&dur=2479&hovh=228&hovw=221&tx=119&ty=214&oei=86fyTM-MCon2swPwluS1CQ&esq=3&page=3&ndsp=10&ved=1t:429,r:8,s:20&biw=800&bih=400

     The Nokia 3720 classic is a IP54 level water,
    Not even close to good enough, LCD screen will crack, water will go in through the jack/charger ports..
    The phone i describe has no external ports just 4-5 little pins which can't let water in or out of the device, the docking station will connect via these 4 - 5 pins for data transfer and recharging...., IPX8 standard, all the electronics are epxoyed with a glue to stop real bad shocks from drops and bangs, along with a silicon case and all the other preventative meausres means this little phone is going to outlive you.
    in combination with heart rate external bluetooth connection, really what more could you want... only the Sonim comes close in terms of perfection but if it managed to pack all of above, then it would be simply wow... I don't think there's enough people who work for nokia who actually go camping, backpacking, hiking, i'm pretty sure that if i told them one day
    on a holiday you might drop your phone into the swimming pool, ok fine it's a mistake but damn, there goes your $$$$ N7 or N900 or even a HTC or Iphone.... not this, you'd yell to the first person you see in the pool, hey mate can i have my phone back, don't worry about the water damage, i'll get it back on insurance after a small lie stopping the person from running off with it (in fear of the now useless mobile phoned killed by water, making an attempt to steal be useless) 
    The person gets their phone back and carries on about his day, it drops out of your pocket, how many times you ran over it because you happened to leave it behind the back tire. oh no i ran over my phone, the tough casing and the epoxy keeping it nice and safe, except for superficial damage cosmetic, the screen and phone should be working still able to make that call or send out GPS info....
    Sorry nothing comes close by any company (except Sonim) in terms of what they can do... maybe even a portable charger turn it to recharge like on LED dynamos. nah maybe not.

  • Can't upload photos to Flickr with Safari - Safari always crashes.

    Help, I can't upload photos to Flickr with Safari.  Safari always crashes and I recieve the following error message (and I've not included all of it just to keep it somewhat short):
    Process:         com.apple.WebKit.WebContent [673]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.74.9)
    Build Info:      WebKit2-7537074009000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [155]
    User ID:         501
    Date/Time:       2014-03-17 22:17:24.605 -0500
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  782BB667-7908-403F-2F7A-8205C11B8B24
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    VM Regions Near 0x8:
    -->
        __TEXT                 000000010babf000-000000010bac0000 [    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebKit2                       0x00007fff922c9212 WebKit::SandboxExtension::consumePermanently() + 10
    1   com.apple.WebKit2                       0x00007fff92408c38 WebKit::WebPage::extendSandboxForFileFromOpenPanel(WebKit::SandboxExtension::Ha ndle const&) + 26
    2   com.apple.WebKit2                       0x00007fff9240da8b void CoreIPC::handleMessage<Messages::WebPage::ExtendSandboxForFileFromOpenPanel, WebKit::WebPage, void (WebKit::WebPage::*)(WebKit::SandboxExtension::Handle const&)>(CoreIPC::MessageDecoder&, WebKit::WebPage*, void (WebKit::WebPage::*)(WebKit::SandboxExtension::Handle const&)) + 80
    3   com.apple.WebKit2                       0x00007fff922db338 WebKit::WebPage::didReceiveWebPageMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 6660
    4   com.apple.WebKit2                       0x00007fff922c3a6b CoreIPC::MessageReceiverMap::dispatchMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 125
    5   com.apple.WebKit2                       0x00007fff922c3950 WebKit::WebProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 28
    6   com.apple.WebKit2                       0x00007fff922c38b9 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101
    7   com.apple.WebKit2                       0x00007fff922c37e2 CoreIPC::Connection::dispatchOneMessage() + 106
    8   com.apple.WebCore                       0x00007fff8eefe34e WebCore::RunLoop::performWork() + 270
    9   com.apple.WebCore                       0x00007fff8eefe222 WebCore::RunLoop::performWork(void*) + 34
    10  com.apple.CoreFoundation                0x00007fff8db9e731 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    11  com.apple.CoreFoundation                0x00007fff8db8fea2 __CFRunLoopDoSources0 + 242
    12  com.apple.CoreFoundation                0x00007fff8db8f62f __CFRunLoopRun + 831
    13  com.apple.CoreFoundation                0x00007fff8db8f0b5 CFRunLoopRunSpecific + 309
    14  com.apple.HIToolbox                     0x00007fff93de1a0d RunCurrentEventLoopInMode + 226
    15  com.apple.HIToolbox                     0x00007fff93de17b7 ReceiveNextEventCommon + 479
    16  com.apple.HIToolbox                     0x00007fff93de15bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    17  com.apple.AppKit                        0x00007fff8b00b3de _DPSNextEvent + 1434
    18  com.apple.AppKit                        0x00007fff8b00aa2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    19  com.apple.AppKit                        0x00007fff8affeb2c -[NSApplication run] + 553
    20  com.apple.AppKit                        0x00007fff8afe9913 NSApplicationMain + 940
    21  com.apple.XPCService                    0x00007fff96086c0f _xpc_main + 385
    22  libxpc.dylib                            0x00007fff8c819bde xpc_main + 399
    23  com.apple.WebKit.WebContent             0x000000010babfba0 0x10babf000 + 2976
    24  libdyld.dylib                           0x00007fff959895fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8c8c8662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff96fe643d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff96fe6152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8c8c3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8c8c2d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8db90155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8db8f779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8db8f0b5 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8b1ab16e _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8c8c3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8c8c2d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8db90155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8db8f779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8db8f0b5 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff946b0967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff946b076b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 4:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x00007fff8c8c3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8c8c2d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8db90155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8db8f779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8db8f0b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8dc44811 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x00007fff8efaad44 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 5:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a8369c5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8c8c7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7ef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff95c81fb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8c8c7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7ef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff95c81fb9 start_wqthread + 13
    Thread 14:: WebCore: Worker
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a836ddd ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x00007fff8fbbe2cb ***::PassOwnPtr<WebCore::WorkerRunLoop::Task> ***::MessageQueue<WebCore::WorkerRunLoop::Task>::waitForMessageFilteredWithTime out<WebCore::ModePredicate const>(***::MessageQueueWaitResult&, WebCore::ModePredicate const&, double) + 187
    4   com.apple.WebCore                       0x00007fff8fbbdcf6 WebCore::WorkerRunLoop::runInMode(WebCore::WorkerContext*, WebCore::ModePredicate const&, WebCore::WorkerRunLoop::WaitMode) + 102
    5   com.apple.WebCore                       0x00007fff8fbbdc50 WebCore::WorkerRunLoop::run(WebCore::WorkerContext*) + 80
    6   com.apple.WebCore                       0x00007fff8fbc0f50 WebCore::WorkerThread::workerThread() + 624
    7   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 15:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a8369c5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 17:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 18:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 19:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 20:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 21:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8c8c7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95c7fc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8a837437 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8a8372c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8a82bc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff95c7d899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95c7d72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95c81fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff5413ef78  rbx: 0x0000000000000000  rcx: 0x00007fe085a2dcb8  rdx: 0x00007fe085a2dcb8
      rdi: 0x0000000000000000  rsi: 0x00007fff5413ef90  rbp: 0x00007fff5413ef60  rsp: 0x00007fff5413ef50
       r8: 0x0000000000000000   r9: 0x0000000000000190  r10: 0xfffffffffffffe91  r11: 0x00007fff7be09db8
      r12: 0x000000011100b8c0  r13: 0x00007fff5413ef90  r14: 0x00007fff92408c1e  r15: 0x0000000000000000
      rip: 0x00007fff922c9212  rfl: 0x0000000000010246  cr2: 0x0000000000000008
    Logical CPU:     6
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:

    This procedure is a diagnostic test. It will make no changes to your system, and therefore will not, in itself, solve your problem.
    If you have more than one user account, you must be logged in as an administrator to carry out these instructions.
    Triple-click anywhere in the line below to select it:
    sudo opensnoop -e 2>&- | sed -En '/ m[dt]/d;s/(\/Users\/)[^/]+/\1-/p;/ReportC/q' | tail -50 | pbcopy
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password. Nothing will be displayed when you type it. If you don’t have a login password, you’ll need to set one before you can run the command. You may get a one-time warning not to screw up. Confirm. You don't need to post the warning.
    If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Log in as one and start over.
    Now take the action that causes the crash.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign ($) to appear.
    The output of the command will be automatically copied to the Clipboard. If the command produced no output, the Clipboard will be empty. Paste into a reply to this message.
    The Terminal window doesn't show the output. Please don't copy anything from there.
    If any personal information appears in the output, anonymize before posting, but don’t remove the context.
    You can then quit Terminal.
    Important: There is an obscure bug in some versions of OS X that may cause cursor movement to lag or stutter after running the above command. If you notice this behavior, simply restart the computer to clear it.

  • How to download a module pool program along with its screens ,includes etc

    Hello Experts,
    How can I  download a module pool program along with its screens ,includes etc to my presentatio0n server and then upload it back when needed.
    When  I searched , I got a program which is satisfying my partial requirement because it only downloads
    the module pool program first(ie.just the main program)  and then the include needs to be downloaded to the system separately.Screen and statuses wont be downloaded.
    Is there a way to download all the objects for the corresponding program store in some format and then upload it back when required.
    Please Help.

    Hello,
    Go to the layout of the modulepool to be uploaded or downloaded. choose the menu path utilities->upload/download.
    The same file which is downloaded can be used to upload
    1.the screen flow logic and
    2.layout
    Using this you can upload as well as download
    Cheers,
    Vasanth

Maybe you are looking for

  • I have a HP Officejet Pro 8500 wireless. Does it support "air print'?

    I just purchased an iPad2.  I have setup a wireless network in my home. My laptop, printer and Blu-ray are attached to this. The iPad2 said the wireless printer must be "air print" enabled.  I can not find anywhere there is a mention of "air print" o

  • View metadata near his image in a html file?

    Hi I am new to this board, I wanted to ask if there is a way to publish the metadata of an image, (or filtered metadata), into a html file, (for expample near the image). It want to publish photos with some of the metadata of it made readable on an e

  • [Flex 4] calculate component width/height inline or with bindable function

    What I want to achive is something like these two examples (it doesn't work, it's just the idea): 1) Inline <s:Group id="main" width="100%" height="100%" minWidth="950" minHeight="650">      <s:Group width="100%" height="{if (main.height < main.minHe

  • Self-made pop-up menu

    Hey guys, This is the first time I've been working with fireworks, so you might have a little patience with me. I'm a hard-learner. Here's the deal: I'm about to design a little website and wanted to use a selfmade pop-up menu, since I don't like the

  • Installing HP DESKJET 2050 ALL-IN-ONE On windows 8

    I want to install my HP 2050 J510 series on my laptop with windows 8, but it's rejected (not supported). I had previously had windows 7 and the printer had installed okay. How do I upgrade to be able to install the 2050 on windows 8? Davekam