Missing Response Data  after PBM Excution

Hi @ all,
after manual execution of a simple Process (BPM) in NWDS ( see Screenshots).
SAP BPM: the Automated activity calls an Integarted Configuration in AEX, and the process ist successfully completed.
SAP PO: the messages are delivered. (Web Services Call), ( Sender Channel SOAP XI 3.0)
The Problem is, i miss the response Data after the process execution.
Thanks a lot
Kind regards
Abdel

Hi,
i need help to solve this issue.
Thank you
Abdel

Similar Messages

  • Missing EXIF data after editing picture

    Hi,
    I've noticed that PSE 12 editor no longer writes the EXIF data from the original image.
    I believe this started after upgrading to the most recent version of PSE 12 via Help -> Updates
    Do you have any suggestions?
    Regards,
    Mike
    Before:
    After:

    1/ to answer your question:
    I don't have any user generated tags/kewords/captions on these historical pictures - but normal metadata (camera EXIF data) is showing up fine on flickr.
    2/ I went ahead and tried Jeffery Friedl's Flickr Lightroom publishing plugin - it works well and GPS data is correctly picked up by Flickr.
    so - unless anyone can demonstrate a working adobe flickr publishing setup with gps data I will assume it doesn't work and continue to use jeffery's.
    Thanks
    Bill

  • Missing GPS data after Publish to Flickr

    Hi, I'm using a GPS Geotagger with my D3.
    In LR3.2 I can see GPS data correctly in my metadata.
    I then publish photos to Flickr using th built in LR publishing service.
    When I check the metadata in Flickr there is no associated GPS info in the EXIF data.
    I haven't got anything checked like 'minimize embedded metadata'
    Anyone have this working or is it a known problem?
    Thanks
    Bill

    1/ to answer your question:
    I don't have any user generated tags/kewords/captions on these historical pictures - but normal metadata (camera EXIF data) is showing up fine on flickr.
    2/ I went ahead and tried Jeffery Friedl's Flickr Lightroom publishing plugin - it works well and GPS data is correctly picked up by Flickr.
    so - unless anyone can demonstrate a working adobe flickr publishing setup with gps data I will assume it doesn't work and continue to use jeffery's.
    Thanks
    Bill

  • Missing data after server restart

    Hi,
    We restarted our MDM server at the OS level last night. Everything seemed okay after the restart. However, when our users came in this morning, they found that some data was missing from a table. We have a Material repository with 3 main tables. Some data which have previously been populated was not appearing in our Products Detail table, the largest of the three. A large number of rows in the table had columns that failed to load with data on the repository auto-start that occured after the server restart. The auto start value in the mds.ini file was set at 300 (5 minutes) as we had seen this iisue happen once before, and thought that may help.
    A stop and restart of the repository corrected the issue. Is there anything we could have done to prevent this? Is it worthwhile to try increasing the auto start delay again? Validating detail data after every server restart is not an effective option.  
    MDM version: 7.1 SP08
    OS: AIX  DB: Oracle 11g
    Thanks!
    Dave

    Hi Dave,
    I meant that when you load repository using Immediate data is loaded from .acl files (accelerator files) in a async manner.
    Whereas when you load by Update Indices new acl files are generated.
    Below men6tioned is a comparision between the 2 ways of laoding repository:
    Load Repository Immediate
    o Loads indexes from accelerator files instead of being regenerated by reading the data them from the DB and creating the index.
    o Automatically builds indexes stored in out-of-date accelerator files.
    o Is usually fast.
     Load Repository with Update Indices
    o Rebuilds all MDM indexes files by reading and indexing data stored in the DB. The results are flushed on disk as accelerator files.
    o Necessary by repository schema changes or if any error occurs.
    o Might take significant amount of time to complete.
    So when you observe some visual data impact in your repository it is good idea to rebuild indexes.
    I guess we cannot schedule this as default behavior is to load by immediate even through the inin parameter.
    as a best practice one can do this by fixing a time frame eg monthly depending on data/schema changes.
    Thanks,
    Ravi

  • How to save data after clicking checkbox stored in databasetable

    TYPE-pools: slis.
    tables:mkpf,mseg,mard.
    TYPES: BEGIN OF tp_data,
          mblnr LIKE mseg-mblnr,
         matnr LIKE mseg-matnr,
         werks LIKE mard-werks,
         lgort LIKE mard-lgort,
         lgpbe LIKE mard-lgpbe,
         charg LIKE mseg-charg,
         bwart LIKE mseg-bwart,
         budat LIKE mkpf-budat,
         menge LIKE mseg-menge,
         meins LIKE mseg-meins,
         kostl LIKE mseg-kostl,
         aufnr LIKE mseg-aufnr,
         rsnum LIKE mseg-rsnum,
         checkbox TYPE c,
      __mark,
    END OF tp_data,
    tp_tbl_data TYPE STANDARD TABLE OF tp_data.
    Constants
    Data objects (variable declarations and definitions)
    Report data to be shown.
    DATA: it_data TYPE STANDARD TABLE OF tp_data.
    Heading of the report.
    DATA: t_heading TYPE slis_t_listheader.
    ========================== Selection Screen ==========================
      SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:smblnr FOR mseg-mblnr MODIF ID m1,
                   smatnr FOR mseg-matnr MODIF ID m2,
                   swerks FOR mard-werks MODIF ID m3,
                   slgort FOR mard-lgort MODIF ID m4,
                   slgpbe FOR mard-lgpbe MODIF ID m5,
                   scharg FOR mseg-charg MODIF ID m6,
                   sbwart FOR mseg-bwart MODIF ID m7,
                   skostl FOR mseg-kostl MODIF ID m8,
                   saufnr FOR mseg-aufnr MODIF ID m9,
                   srsnum FOR mseg-rsnum MODIF ID m10.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:pre RADIOBUTTON GROUP radi USER-COMMAND ucomm DEFAULT 'X',
               pse RADIOBUTTON GROUP radi,
               bps RADIOBUTTON GROUP radi.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    PARAMETER:layout TYPE i.
    SELECTION-SCREEN END OF BLOCK b3.
    =========================== Event Blocks =============================
    AT selection-SCREEN.
    start-OF-selection.
    PERFORM get_data USING it_data.
    END-OF-selection.
    PERFORM build_alv USING it_data t_heading.
    =========================== Subroutines ==============================
    *&      Form  get_data
          Gets the information to be shown in the report.
    FORM get_data USING t_data TYPE tp_tbl_data.
      SELECT msegmblnr msegmatnr mardwerks mardlgort mardlgpbe msegcharg msegbwart mkpfbudat
        msegmenge  msegmeins msegkostl msegaufnr mseg~rsnum
      INTO CORRESPONDING FIELDS OF TABLE t_data
      FROM mseg
      JOIN mard ON mardmatnr EQ msegmatnr
                   JOIN mkpf ON msegmblnr EQ mkpfmblnr
                   WHERE mseg~matnr IN smatnr.
    ENDFORM.                    " get_data
    *&      Form  build_alv
          Builds and display the ALV Grid.
    FORM build_alv USING t_data TYPE tp_tbl_data
          t_heading  TYPE slis_t_listheader.
    ALV required data objects.
      DATA: w_title   TYPE lvc_title,
            w_comm    TYPE slis_formname,
            w_status  TYPE slis_formname,
            x_layout  TYPE slis_layout_alv,
            t_event    TYPE slis_t_event,
            t_fieldcat TYPE slis_t_fieldcat_alv,
            t_sort     TYPE slis_t_sortinfo_alv.
      REFRESH t_fieldcat.
      REFRESH t_event.
      REFRESH t_sort.
      CLEAR x_layout.
      CLEAR w_title.
    Field Catalog
      PERFORM set_fieldcat2 USING:
            1 'MBLNR' 'MBLNR' 'MSEG' space space space space space space space space space space space space t_fieldcat ,
            2 'MATNR' 'MATNR' 'MSEG' space space space space space space space space space space space space  t_fieldcat ,
            3 'WERKS' 'WERKS' 'MARD' space space space space space space space space space space space space  t_fieldcat,
            4 'LGORT' 'LGORT' 'MARD' space space space space space space space space space space space space t_fieldcat ,
            5 'LGPBE' 'LGPBE' 'MARD' space space space space space space space space space space space space t_fieldcat ,
            6 'CHARG' 'CHARG' 'MSEG' space space space space space space space space space space space space t_fieldcat ,
            7 'BWART' 'BWART' 'MSEG' space  space space space space space space space space space space space t_fieldcat,
            8 'BUDAT' 'BUDAT' 'MKPF' space  space space space space space space space space space space space t_fieldcat,
            9 'MENGE' 'MENGE' 'MSEG' space  space space space space space space space space space space space t_fieldcat,
            10 'MEINS' 'MEINS' 'MSEG' space  space space space space space space space space space space space t_fieldcat,
            11 'KOSTL' 'KOSTL' 'MSEG' space  space space space space space space space space space space space t_fieldcat,
            12 'AUFNR' 'AUFNR' 'MSEG' space  space space space space space space space space space space space t_fieldcat,
            13 'RSNUM' 'RSNUM' 'MSEG' space  space space space space space space space space space space space t_fieldcat,
            14 '__MARK' 'XFELD' space space space 'Select' 'Select this row' 'Sel' 'Select this row' space space space 'X' 'X' space t_fieldcat.
    Layout
      x_layout-zebra = 'X'.
    Top of page heading
      PERFORM set_top_page_heading USING t_heading t_event.
    Events
      PERFORM set_events USING t_event.
    GUI Status
      w_status = ''.
    User commands
      w_comm   = 'USER_COMMAND'.
    Order
    Example
    PERFORM set_order USING '<field>' 'IT_DATA' 'X' space space t_sort.
    PERFORM set_order USING 'LIFNR' 'IT_DATA' 'X' space 'X' t_sort.
    PERFORM set_order USING 'EBELN' 'IT_DATA' 'X' space 'X' t_sort.
    PERFORM set_order USING 'EBELP' 'IT_DATA' 'X' space space t_sort.
    Displays the ALV grid
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program       = sy-repid
        it_fieldcat              = t_fieldcat
        is_layout                = x_layout
        it_sort                  = t_sort
        i_callback_pf_status_set = w_status
        i_callback_user_command  = w_comm
        i_save                   = 'X'
        it_events                = t_event
        i_grid_title             = w_title
      TABLES
        t_outtab                 = t_data
      EXCEPTIONS
        program_error            = 1
        OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " build_alv.
    *&      Form  set_top_page_heading
          Creates the report headings.
    FORM set_top_page_heading USING t_heading TYPE slis_t_listheader
          t_events  TYPE slis_t_event.
      DATA: x_heading TYPE slis_listheader,
            x_event   TYPE LINE OF slis_t_event.
    Report title
      CLEAR t_heading[].
      CLEAR x_heading.
      x_heading-typ = 'H'.
      x_heading-info = 'Reporte Prueba'(001).
      APPEND x_heading TO t_heading.
    Program name
      CLEAR x_heading.
      x_heading-typ = 'S'.
      x_heading-KEY = 'Program: '.
      x_heading-info = sy-repid.
      APPEND x_heading TO t_heading.
    User who is running the report
      CLEAR x_heading.
      x_heading-typ = 'S'.
      x_heading-KEY = 'User: '.
      x_heading-info = sy-uname.
      APPEND x_heading TO t_heading.
    Date of execution
      CLEAR x_heading.
      x_heading-typ = 'S'.
      x_heading-KEY = 'Date: '.
      WRITE sy-datum TO x_heading-info.
      APPEND x_heading TO t_heading.
    Time of execution
      CLEAR x_heading.
      x_heading-typ = 'S'.
      x_heading-KEY = 'Time: '.
      WRITE sy-uzeit TO x_heading-info.
      APPEND x_heading TO t_heading.
    Top of page event
      x_event-name = slis_ev_top_of_page.
      x_event-FORM = 'TOP_OF_PAGE'.
      APPEND x_event TO t_events.
    ENDFORM.
    *&      Form  set_events
          Sets the events for ALV.
          The TOP_OF_PAGE event is alredy being registered in
          the set_top_page_heading subroutine.
    FORM set_events USING t_events TYPE slis_t_event.
      DATA: x_event   TYPE LINE OF slis_t_event.
    Example
    clear x_event.
    x_event-name = .
    x_event-form = .
    append x_event to t_event.
    ENDFORM.
    *&      Form  set_order
          Adds an entry to the order table.
    FORM set_order USING p_fieldname p_tabname p_up p_down p_subtot
          t_sort TYPE slis_t_sortinfo_alv.
      DATA: x_sort TYPE slis_sortinfo_alv.
      CLEAR x_sort.
      x_sort-fieldname = p_fieldname.
      x_sort-tabname   = p_tabname.
      x_sort-UP = p_up.
      x_sort-down = p_down.
      x_sort-subtot = p_subtot.
      APPEND x_sort TO t_sort.
    ENDFORM.                    "set_order
    *&      Form  set_fieldcat2
          Adds an entry to the field catalog.
    FORM set_fieldcat2 USING p_colpos p_fieldname p_ref_fieldname p_ref_tabname
          p_outputlen p_noout
          p_seltext_m p_seltext_l p_seltext_s p_reptext_ddic p_ddictxt
          p_hotspot p_showasicon p_checkbox p_edit
          p_dosum
          t_fieldcat TYPE slis_t_fieldcat_alv.
      DATA: wa_fieldcat TYPE slis_fieldcat_alv.
      CLEAR wa_fieldcat.
    General settings
      wa_fieldcat-fieldname = p_fieldname.
      wa_fieldcat-col_pos = p_colpos.
      wa_fieldcat-no_out = p_noout.
      wa_fieldcat-HOTSPOT = p_hotspot.
      wa_fieldcat-CHECKBOX = p_checkbox.
      wa_fieldcat-ICON = p_showasicon.
      wa_fieldcat-do_sum = p_dosum.
    Set reference fieldname, tablenam and rollname.
    If p_ref_tabname is not given, the ref_fieldname given is a data element.
    If p_ref_tabname is given, the ref_fieldname given is a field of a table. In case ref_fieldname is not given, it is copied from the fieldname.
      IF p_ref_tabname IS INITIAL.
        wa_fieldcat-rollname =   p_ref_fieldname.
      ELSE.
        wa_fieldcat-ref_tabname = p_ref_tabname.
        IF p_ref_fieldname EQ space.
          wa_fieldcat-ref_fieldname =   wa_fieldcat-fieldname.
        ELSE.
          wa_fieldcat-ref_fieldname =   p_ref_fieldname.
        ENDIF.
      ENDIF.
    Set output length.
      IF NOT p_outputlen IS INITIAL.
        wa_fieldcat-outputlen = p_outputlen.
      ENDIF.
    Set text headers.
      IF NOT p_seltext_m IS INITIAL.
        wa_fieldcat-seltext_m = p_seltext_m.
      ENDIF.
      IF NOT p_seltext_l IS INITIAL.
        wa_fieldcat-seltext_l = p_seltext_l.
      ENDIF.
      IF NOT p_seltext_s IS INITIAL.
        wa_fieldcat-seltext_s = p_seltext_s.
      ENDIF.
      IF NOT p_reptext_ddic IS INITIAL.
        wa_fieldcat-reptext_ddic = p_reptext_ddic.
      ENDIF.
      IF NOT p_ddictxt IS INITIAL.
        wa_fieldcat-ddictxt = p_ddictxt.
      ENDIF.
    Set as editable or not.
      IF p_edit IS NOT INITIAL.
        wa_fieldcat-INPUT     = 'X'.
        wa_fieldcat-EDIT     = 'X'.
      ENDIF.
      APPEND wa_fieldcat TO t_fieldcat.
    ENDFORM.                   "set_fieldcat2
    =========================== Subroutines called by ALV ================
    *&      Form  top_of_page
          Called on top_of_page ALV event.
          Prints the heading.
    FORM top_of_page.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
      EXPORTING
        i_logo             = 'XXXXX'
        it_list_commentary = t_heading.
    ENDFORM.                    " alv_top_of_page
    *&      Form  user_command
          Called on user_command ALV event.
          Executes custom commands.
    FORM user_command USING r_ucomm     LIKE sy-ucomm
          rs_selfield TYPE slis_selfield.
    Example Code
    Executes a command considering the sy-ucomm.
    CASE r_ucomm.
       WHEN '&IC1'.
         Set your "double click action" response here.
         Example code: Create and display a status message.
         DATA: w_msg TYPE string,
               w_row(4) TYPE n.
         w_row = rs_selfield-tabindex.
         CONCATENATE 'You have clicked row' w_row
                     'field' rs_s lfield-fieldname
                     'with value' rs_selfield-value
                     INTO w_msg SEPARATED BY space.
         MESSAGE w_msg TYPE 'S'.
    ENDCASE.
    End of example code.
    ENDFORM.                    "user_command
    this is mycode,mblnr, matnr and checkbox both field had created in database table
    then save data after clicking checkbox data stored in database table,and next clickin checkboxes are no change. this my requirment.
    plz send me code .

    Try this
    In user_command form...
    LOOP AT IT_DATA.
    IF  CHECKBOX __MARK EQ 'X'.
    write logic wht u want....
    ENDIF.
    ENDLOOP.

  • Mail Missing Plug-in after sending; quit and restart Mail fixes it

    mail > Missing Plug-in after sending; quit and restart Mail fixes it.
    Its very obnoxious after all these years to have Apple Mail continue to complain about Missing Plug-in
    This happens for PDFs, .zips, .jpgs and other types.
    Any ideas why Apple cannot seem to fix this?

    Back up all data.
    Boot into Recovery mode. When the OS X Utilities screen appears, follow the prompts to reinstall the OS. You don't need to erase the boot volume, and you won't need your backup unless something goes wrong. If your Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade, so make a note of those before you begin.

  • Missing/wrong data in XI from RFC in ECC 6

    I'm having the following issue where I send data from an RFC in ECC6 to an imported RFC in XI.  Below is my structure in SAP ECC 6 and I see this in my testing of the RFC in SE37:
    ORG_ID       US12345
    LOG_ID       OR123
    PASS_WD   ABC123
    TAXONOMY  ELECTRONIC.ORDER
    Below is a snapshot of the XML of the Inbound Message in XI:
    - <rfc:_-EFI_TI076_SEND_PCARD_PAYM xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
    - <S_AUTH>
      <ORG_ID>US12345</ORG_ID>  (Correct)
      <LOG_ID>ABC123</LOG_ID>     (Incorrect)
      <PASS_WD>mc.Application.PaymentN</PASS_WD> (Incorrect)
      <TAXONOMY /> (Incorrect)
      </S_AUTH>
    Keep in mind the following:
    1) I've imported the RFC from the sender system into XI multiple times
    2) I've executed both ABAP and Full Cache refreshes
    Thanks so much in advance for your help on this. 
    Regards,
    John

    Carlos,
    Thank you again for the follow up.  I have again checked the data in the RFC, and my problem remains that the data shows up in the wrong field.  Also - I'm missing some data that should be in certain fields.
    Thanks as well for the information on the Queues.  The Queues look ok, and nothing is being held up there.  The "green" messages are those that are sent into the XI system from ECC.  There are subsequent messages after the initial inbound message, which indicate an additional web service error, of which we can resolve quite easily.
    Thanks so much!
    John

  • How to deal with FLV with missing meta data?

    I have and will get flvs in the future with missing meta
    data.
    I think for the most part the meta data that is missig is the
    file length.
    The exact files that are not working on our server are
    working on some other companies FMS.
    They must have some workaround actionscript on the server or
    configuration that is making it work.
    I'd like to know that workaround or that configuration
    change. That would be the ideal fix.
    I already know how to fix the FLV after I download it but I
    wanted to know if there is another way to deal with this problem.
    One were I can leave the FLVs alone.
    Is there some serverside actionscript that would tell FMS the
    length of the movie or change the configuration of fms to deal with
    this somehow.
    Any ideas?

    If you are using the same database and referencing two tables then you dont need special configuration for it. You use single jdbc adapter. In ESR you create two statment structure one for each table. This is one option. The second option is use join statment and write query and in this case one statment data structure.
    Please go through the help sap link for the jdbc document structure.
    http://help.sap.com/SAPHELP_NW04s/helpdata/EN/2e/96fd3f2d14e869e10000000a155106/content.htm
    The second option can be done using the below structure.
    <StatementName>
    <anyName action=u201D SQL_QUERYu201D >
    <access>SQL-String with optional placeholder(s)</access>
    <key>
      <placeholder1>value1</placeholder1>
      <placeholder2>value2<placeholder2>
    </key>
    </anyName > 
    </StatementName>

  • Video import: missing GPS data

    Imported several videos from an iPhone 4 into LR 4.2, but there seems to be no GPS data after the import although the video files include GPS metadata: On the iPhone all videos are placed on the map of iOS 6, but missing on Lightrooms own map feature.
    Any solution? Imported to the HD both from inside LR and the import feature of OS X Mountain Lion.
    Additional problem: the video capture time is shifted by 2 h.
    Importing simple pictures works flawless.
    Thanks!

    LR's support for video metadata is incomplete and buggy.  Please add your vote and opinion to this topic in the official Adobe feedback forum: Lightroom: LR4 Beta: Metadata applied to videos in Lightroom isn't available in other applications.

  • Date type-specific Customizing missing for date type ACTActPln

    Hi all.
    I'm using a Web Service obtained by copying the CRM 7.0 built-in WS APPTACTCRTRC.
    I'm using it to create Appointments using an Adobe Interactive Form.
    It goes everything fine (a Date is created in the system, with all the input data properly set) excepted the dates...
    The WS uses two TIMESTAMPS, TIMESTAMP_FROM for StartDateTime and TIMESTAMP_TO for EndDateTime, whereas the GUI transaction to create Dates accepts dates and times in separated fields.
    Going in Debug I can see that the execution ends with the following error, referred to the involved entity (CRM_APPOINTMENT):
    Date type-specific Customizing missing for date type ACTActPln
    CRM_APPOINTMENT uses date profile 0000000001 with three possible date types: ORDERACTUAL, ORDERPLANNED and ORDERPROPOSED and I cannot find anywhere date type ACTActPln (just to add it in customizing).
    Is anyone able to enlight me?
    Thank you in advance!
    Alessandro
    PS I've years of experience in Java programming but I'm quite new to the SAP world. Maybe the problem is not a problem at all, but it seems to me as such. Even if it has a trivial solution, please let me know. Thx!

    Hi,
    Well I was about to write that you should enter date in decimal format. but you already did that as mentioned in How to set a date in a Form where the bound date format is a decimal?
    In response to following from above thread (copied for others to understand my response)
    Hi all.
    I'm successfully using the LiveCycle Designer and I've managed to remotely create Appointments using a CRM Web Service (a mere copy of APPTACTCRTRC).
    The only problem I'm encountering is that I'm not able to set the dates/times (start and end of the appointment).
    Dragging each of the two fields from the WSDL based Data Connection I obtain a Decimal Field limited to 15 digits.
    How can I write a date and time in such a field?
    I've tried with a retroverse date as YYYYMMDDHHmmss (for example, 20100301124500) but it does not work
    (the appointment is indeed created, but with the start date and time fields filled with
    the current date/time and the end date and time fields filled with the current date and time plus 10 minutes).
    The retroverse date above is only 14 digit long, so, maybe, this is the problem.
    But, given the field definition, I'm not able to fill a blank space between the date and the time.
    I'm not able to put a dot either.
    What should I do?
    Any suggestions?
    Thank you in advance.
    Alessandro
    15 digit in UTC time format here is fraction of second so you should enter 201003011245000 (add one more zero).
    14th Oct 2010 16:00 should be written as 201010141600000, so just try it and and see if it works, I guess if you do not supply end time then by default it will be starttime + 10 min but this is just guess.
    Regards,
    Gourav

  • Missing application icons after upgrade to 2.0

    Missing application icons after upgrading to 2.0. Tetris, Clock and Voice recording icons are missing. Looks like the applications are still installed but they are not showing up with all the other icons.
    There is absolutely nothing in the help about restoring icons.
    Any ideas as to how I can get these missing icons to display again?
    Thanks.

    Great! Where was it?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • InfoObject is missing in report after upgrade

    Hi,
    My InfoObject Statistical ID is missing in Report after Upgrading from 3.5 to 7.0.
    I did comparison of report before and after upgrade and found this issue.
    the data content is the same but only this infoObject cannot be seen in the report
    how do I correct this issue.
    thanks
    Edited by: Bhat Vaidya on Aug 6, 2008 12:24 PM

    This not fixed. SAP couldn't explain why

  • Getting at Response data in a servlet filter??

    Hi,
    I'm hoping an expert would point me in the right direction.
    I'm writing a filter that'll act like a proxy. It'll need to inspect the response data coming back from the server, and also forward the response data back to the browser.
    As a first step, I've written a TestFilter that'll print the response data. When I go to print the response data in the TestFilter, it doesn't print anything! However, if I get print the contentLength of the response, it shows up as 3000!
    I know response isn't null, as the page gets displayed on to the browser that makes the request.
    How do I get at the response data?
    Thanks,
    --Sridhar
    Here is the sample filter -
    // HeaderFilter.java
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class HeaderFilter extends GenericFilter {
    public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)
    throws java.io.IOException, javax.servlet.ServletException {
    ServletContext context = filterConfig.getServletContext();
    HttpServletRequest request = (HttpServletRequest)req;
    CharResponseWrapper wrapper = new CharResponseWrapper((HttpServletResponse)resp);
    chain.doFilter(request, wrapper);
    System.out.println("******RESPONSE INFO******");
    System.out.println("The response is " + wrapper.toString());
    class CharResponseWrapper extends HttpServletResponseWrapper {
    private CharArrayWriter output;
    public String toString() {
    return output.toString();
    public CharResponseWrapper(HttpServletResponse response){
    super(response);
    output = new CharArrayWriter();
    public PrintWriter getWriter(){
    return new PrintWriter(output);
    // Here is the output...
    ******RESPONSE INFO******
    The response is

    I'm still baffled!!
    Here is the output I see in the console when I expect to see a lot more. This is the behaviour under both JRun & Weblogic. It makes me think that I'm missing something subtle!
    Could the experts point me in the right direction? This is really stumping me & the deadlines are looming large :(
    Output is -
    *** TEST FILTER ***
    ************** RESPONSE DATA ***********
    [B@2fb7ef
    Here is the test filter implementation -
    // TestFilter.java
    import javax.servlet.FilterChain;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    import java.io.OutputStream;
    public class TestFilter extends GenericFilter {
    public void doFilter(final ServletRequest request, final ServletResponse response, FilterChain chain) throws IOException, ServletException
    System.out.println("*** TEST FILTER ***");
    OutputStream out = response.getOutputStream();
    TestResponseWrapper wrapper = new TestResponseWrapper((HttpServletResponse) response);
    chain.doFilter(request, wrapper);
    System.out.println("************** RESPONSE DATA ***********");
    System.out.println(wrapper.getData());
    out.write(wrapper.getData());
    out.close();
    // TestResponseWrapper.java
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpServletResponseWrapper;
    import java.io.ByteArrayOutputStream;
    import java.io.PrintWriter;
    public class TestResponseWrapper extends HttpServletResponseWrapper{   
    private ByteArrayOutputStream output;
    private int contentLength;
    private String contentType;
    public TestResponseWrapper(HttpServletResponse response) {       
    super(response);
    output = new ByteArrayOutputStream();
    public ServletOutputStream getOutputStream() {       
    return new FilterServletOutputStream(output);
    public byte[] getData() {
    return output.toByteArray();
    public PrintWriter getWriter() {   
    return new PrintWriter(getOutputStream(), true);
    public void setContentType(String type) {       
    this.contentType = type;
    super.setContentType(type);
    public String getContentType() {       
    return this.contentType;
    public int getContentLength() {    
    return contentLength;
    public void setContentLength(int length) {       
    this.contentLength=length;
    super.setContentLength(length);
    // FilterOutputStream.java
    import javax.servlet.ServletOutputStream;
    import java.io.DataOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    public class FilterServletOutputStream extends ServletOutputStream {
    private DataOutputStream stream;
    public FilterServletOutputStream(OutputStream output) {       
    stream = new DataOutputStream(output);
    public void write(int b) throws IOException {       
    stream.write(b);
    public void write(byte[] b) throws IOException {       
    stream.write(b);
    public void write(byte[] b, int off, int len) throws IOException {       
    stream.write(b, off, len);

  • Can not pass data after while loop

    Hello.
    I have created a VI for my experiment and am having problem passing data outside a while loop to save on an excel file. The VI needs to first move a probe radially, take data at 1mm increment, then move axially, take data radially at 1mm increment, then move to the next axial position and repeat. It would then export these data to an excel file. The VI is a little complicated but it's the only way I know how to make it for our experiment. I have tested it and all the motion works correctly, however I can not get it to pass the data after the last while loop on the far right of the VI where I have put the arrows (Please see the attached VI ). Is it because I'm using too many sequence, case, and while loops?  If so, what other ways can I use to make it export data to the excel file?
    Any help would be appreciated. 
    Thank you,
    Max
    Attachments:
    B.Dot.Probe.Exp.vi ‏66 KB

    Ummmm .... gee, I'm not even sure where to begin with this one. Your VI is well .... ummmm... You have straight wires! That's always nice to see. As for everything else. Well... Your fundamental problem is lack of understanding of dataflow programming. What you've created is a text program. It would look fantastic in C. In LabVIEW it makes my heart break. For a direct answer to your question: Data will not show up outside a while loop until the while loop has completed. This means your most likely problem is that the conditions to stop that specific loop are not being met. As for what the problem is, I don't even want to start debugging this code. Of course, one way to pass data outside of loops is with local variables, and hey, you seem to be having so much fun with those, what's one more?
    This may sound harsh, and perhaps be somewhat insulting, but the brutal truth is that what I would personally do is to throw it out and to start using a good architecture like a state machine. This kind of framework is easy to code, easy to modify, and easy to debug. All qualities that your code seems to lack.
    Message Edited by smercurio_fc on 08-17-2009 10:00 PM

  • Missing export data in R/3

    Hi,
    I haven't setup customs management (i.e. not setup for proforma transfers from ECC) to GTS.
    However, I get a message when creating billing document in ECC that missing export data even though billing doc is saved.
    Do I need to do any config in ECC foreign trade
    ANy idea?
    Thanks,

    As now you using GTS for Foreign Trade acitivity you need not to maintain any detail under Foreign Trade Configuration in Feeder system.
    You will be getting this message because of the incompletion log schema activated  under  "Incompleteness Schemas for Foreign Trade Data" (Control Foreign Trade Data in MM and SD Documents). Deactivate those schema .
    Kind Regards,
    Sameer

Maybe you are looking for

  • Overclocking and the MSI K7N2 Delta ILSR

    Hi everyone, I wanna overclock my system. But, I've experienced several problems. Problem one: When i try to set my memory timings manual (3-3-3-8) in the BIOS, CPU-Z, Everest etc shows CL2.5.... instead of the CL3.0 that I've selected in the BIOS. T

  • Can I set up a small home network on mt BThub3

    Hi, I have two standard PCs one running on Vista and the other on XP also a laptop. They all successfully access the internet via a BT Hub 3. One computer connects via a LAN cable the laptop and the other computer connect via a wirless connection If

  • Throw exception in Java mapping and handle this in BPM

    Hi, I'll use a Java mapping in a BPM transform step. Is it possible to throw an exception inside this Java mapping and handle this in a BPM exception handler? thanks and regards Verena

  • SXMB Monitor info

    we use PI/XI to transfer payment behavior to FSCM credit management, in sxmb_moni XML message,  inbound message/SOAP header/trace, we can find user name and timestamp, but I would like to know in xml message, where can I find the document number, amo

  • Need information on oracle enterprise repository

    Hi, I am planning to get started on oracle enterprise repository. I have read a lot about it st various blogs and now want to have hands on implementation of the same. Can someone  let me know where I can get some tutorials or examples to get started