Submit report to get output list

Hi friends,
   I have one requirement to take output list of a transaction in one internal table.
As the transaction is very much interactive , that perticular internal table gets populated somewhere in the middle of the standard program...later on that table undergoes further processing  to cope up with he interaction...
using  SUBMIT report ,  we can export it to memory
and using  FM  'LIST_FROM_MEMORY' we can get it back as following.
list_tab contains data in two fields RFCSIZE  and RFCRECORD in numbers only...
Submit   report_name  with SELECTION-TABLE SELTAB
        exporting list to Memory and return.
CALL FUNCTION 'LIST_FROM_MEMORY'
  TABLES
    listobject = list_tab
  EXCEPTIONS
    not_found  = 1
    OTHERS     = 2.
   BUT , Can we get the same output list (i.e before interaction) in one internal table...
thanks

Hi,
You can check whether the list is exported in between before the submit.
Supposed it is exported before the interaction den you can import it ..Just check the value is fetched and stored in a temporary table.
Is it a csutom program or standard SAP one..?
Hope this helps.
Regards,
Navin.

Similar Messages

  • Report to Get the List of Personnel Numbers in COntrol Record

    Hi Folks,
    In Pao3-Control Record, we get the List of Personnel Numbers active for the current month in a Particular Payroll area, For one particular payroll area, we have around 1000 numbers , is there any standard report available to get the employee list along with personnel  numbers from the control record.
    Regards,
    Sekar.

    You can try using Flexible Employee Report.
    Choose Payroll Area as Input
    Choose Personnel Number and Employment status as Output.
    Try this.

  • Report- formatting of output list. -urgent

    Hi experts,
    i have done report in where i hv to display more than 20 fiedls to display. I report output list is around 300 chacertes when i am prinint the report it is printing only  132 chac per page. Remaring 168 is not printing. How can i do this one. How to print total ouput in page. The max size of print page is 132 chac .
    its and urgent requiremnt to me.
    <b>useful answers surely awarded with points</b>
    regards,
    sunil kumar.

    Hi ,
    At start of the report program add LINE SIZE which will be required for your display examople
    REPORT ztest_rep NO STANDARD PAGE HEADING
                                          LINE-SIZE 1023 .
    Above id the "ztest_rep program and line size will define the number of the characters that will be output as in this case it will be 1023 char...
    Reward points if usefull....
    Message was edited by:
            SOURABH MALHOTRA

  • How to print the list outout with out getting output?

    How to print the list outout with out getting output?
    My requirement is that when i exicute the program the list output has to print with out getting output list display on the screen.
    if possible cana anyone share the code....
    Phani,

    See this Sample Program.
    DATA: PARAMS LIKE PRI_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION           = 'LT50'
                COPIES                = COUNT
                LIST_NAME             = 'TEST'
                LIST_TEXT             = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY           = 'X'
                RELEASE               = 'X'
                NEW_LIST_ID           = 'X'
                EXPIRATION            = DAYS
                LINE_SIZE             = 79
                LINE_COUNT            = 23
                LAYOUT                = 'X_PAPER'
                SAP_COVER_PAGE        = 'X'
                COVER_PAGE            = 'X'
                RECEIVER              = 'SAP*'
                DEPARTMENT            = 'System'
                NO_DIALOG             = ' '
      IMPORTING OUT_PARAMETERS        = PARAMS
                VALID                 = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Awrd POints If useful
    Bhupal

  • Report output list to internal table using submit report

    Hello,
    I have a report that generates the output in the form of an abap list. I want this data in an internal table for further processing. the report internally does not do a export data to memory so i cannot use import later on to get the data.
    i did the following
    SUBMIT <report name> exportING LIST TO MEMORY and return.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = itab_list
      EXCEPTIONS
        not_found  = 4
        OTHERS     = 8.
    CALL FUNCTION 'LIST_TO_ASCI'
      EXPORTING
        list_index         = -1
      TABLES
        listasci           = ascitab
        listobject         = itab_list
      EXCEPTIONS
        empty_list         = 1
        list_index_invalid = 2
        OTHERS             = 3.
    This returns the data in the ascitab, but the data contains additional unwanted info like lines and hyphens etc. Also the data is in a table with a single column, so pulling out individuals fields is again an issue. Is there a way to get this data into an internal table directly?
    best regards,
    Suraj

    hi suraj
    export the internal table  of report
    DATA: BEGIN OF SR_VBAK ,
          VBELN LIKE VBAK-VBELN,
          END OF SR_VBAK.
    DATA: IR_VBAK LIKE STANDARD TABLE OF SR_VBAK WITH HEADER LINE.
    EXPORT IR_VBAK TO MEMORY ID 'SALES'.
           SUBMIT <program name in which u want internal table records > AND RETURN.
    now import that data in submit program  .
    here u have to creat a internal table with same structure as the internal table from which u r trying to export the data
    DATA: BEGIN OF SR_VBAK,
          VBELN LIKE VBAK-VBELN,
          END OF SR_VBAK.
    DATA : IR_VBAK LIKE STANDARD TABLE OF SR_VBAK WITH HEADER LINE.
    IMPORT IR_VBAK FROM MEMORY ID 'SALES'.
    regards
    ANIL CHAUDHaRY

  • Will SUBMIT report EXPORTING LIST TO MEMORY work, when Run in Background?

    You can use SUBMIT <report> EXPORTING LIST TO MEMORY, and then Call the FM LIST_FROM_MEMORY to get the Data.
    This works fine, when the Program is Run in Foreground. My question is, will it work when I Run the Program in Background? i.e. When I Run the Program in Background, will the SUBMIT Statement, Export the List to Memory? Because only then the FM LIST_FROM_MEMORY will get the Data.
    Any alternate solution to meet the same requirement will be appreciated.

    It works for me... my spool output looked like:
    11.01.2008          JC: Calling program - test list to memory                  1                                                                               
    ZLOCAL_JC_SDN_CALLING_PROGRAM                started at 12:54:29                        
    ZLOCAL_JC_SDN_CALLING_PROGRAM                call complete 12:54:30                     
    ZLOCAL_JC_SDN_CALLING_PROGRAM                started at 12:54:30                                                                               
    11.01.2008           JC: Called program - testing list to memory                                                                               
    ZLOCAL_JC_SDN_CALLED_PROGRAM                 was called at: 12:54:29                    
    for the following code:
    report zlocal_jc_sdn_calling_program.
    parameters:
      p_start(1)            type c.
    start-of-selection.
      perform testcase.
    *&      Form  testcase
    form testcase.
      data:
       lt_list              type table of abaplist.
      write: / sy-repid, 'started at', sy-uzeit.
      submit zlocal_jc_sdn_called_program
        exporting list to memory
        and return.
      write: / sy-repid, 'call complete', sy-uzeit.
      call function 'LIST_FROM_MEMORY'
        tables
          listobject = lt_list.
      write: / sy-repid, 'started at', sy-uzeit.
      call function 'WRITE_LIST'
        tables
          listobject = lt_list.
    endform.                    "testcase
    and
    report zlocal_jc_sdn_called_program.
    start-of-selection.
      write: / sy-repid, 'was called at:', sy-uzeit.

  • Can we call a transaction in background and get the list in report?

    I want to call the standard T-Code MC.9 from a report in background using Call Transaction and get the list in the report.There are some enhancement done to its base program RMCB0300 due to which if I use Submit ... exporting to memory and then import the list from memory, the result doesnt match to the values given by T-Code MC.9.
    The option apparently for me is to use Call Transaction method, but if I use Call transaction method, how do I make the report to be executed in background and then get the resultant list in the report?

    Copy the program in Z and than modify it saving the list on memory on database table.

  • Getting alternative colors in output list

    Hi Frnds,
                  I have to provide alternative colors for each row for my report which i m unable to do.
    Actually i am getting colors in my header but i need alternative colors for each row in my output.
    below i am providing my code.
    <code>
    REPORT  ZVVK_DOWNLOAD.
    TYPE-POOLS RSDS.
    DATA : IT_TABLEKEY LIKE COND_FLDS OCCURS 0 WITH HEADER LINE,
           IT_TABLEDAT LIKE COND_FLDS OCCURS 0 WITH HEADER LINE,
           IT_PRICING  LIKE COND_RECS OCCURS 0 WITH HEADER LINE,
           IT_RANGE    TYPE RSDS_FRANGE_T,
           IT_KNUMH    LIKE COND_KNUMH OCCURS 0 WITH HEADER LINE .
    DATA : IT_KONH                  LIKE KONHDB OCCURS 0 WITH HEADER LINE,
           IT_KONP                  LIKE KONPDB OCCURS 0 WITH HEADER LINE,
           IT_KONM                  LIKE COND_KONM OCCURS 0 WITH HEADER LINE,
           IT_KONW                  LIKE COND_KONW OCCURS 0 WITH HEADER LINE,
           IT_BAPI_COND_RECS        LIKE BAPICONDCT   OCCURS 0 WITH HEADER LINE,
           IT_BAPI_KEY_FIELDS       LIKE BAPICONDDD   OCCURS 0 WITH HEADER LINE,
           IT_BAPI_DATA_FIELDS      LIKE BAPICONDDD   OCCURS 0 WITH HEADER LINE,
           IT_COND_HEADER           LIKE BAPICONDHD OCCURS 0 WITH HEADER LINE,
           IT_COND_ITEM             LIKE BAPICONDIT OCCURS 0 WITH HEADER LINE,
           IT_COND_QUANTITY_SCALE   LIKE BAPICONDQS OCCURS 0 WITH HEADER LINE,
           IT_COND_VALUE_SCALE      LIKE BAPICONDVS OCCURS 0 WITH HEADER LINE,
           IT_T682I                 LIKE T682I      OCCURS 0 WITH HEADER LINE.
    DATA : WA_RANGES LIKE LINE OF IT_RANGE,
           WA_SELOPT LIKE LINE OF WA_RANGES-SELOPT_T.
    *Data declarations for displaying downloaded file into application server in output list
    TYPES: BEGIN OF T_VARINFO,
              FLAG TYPE C,
              OLENGTH TYPE X,
              LINE LIKE RALDB-INFOLINE,
            END OF T_VARINFO.
    DATA:TABLES TYPE TRDIR-NAME OCCURS 0 WITH HEADER LINE ,
         INFOTAB TYPE T_VARINFO OCCURS 0 WITH HEADER LINE.
    SELECT-OPTIONS SO_DATE FOR SY-DATUM.
    PARAMETERS : P_CONTAB TYPE T681-KOTABNR   OBLIGATORY,
                FILENAME(128) DEFAULT '/usr/sap/tmp/' LOWER CASE.
    *start-of-selection
    START-OF-SELECTION.
      IF NOT SO_DATE[] IS INITIAL.
        WA_RANGES-FIELDNAME = 'DATBI'.
        LOOP AT SO_DATE.
          MOVE-CORRESPONDING SO_DATE TO WA_SELOPT.
          APPEND WA_SELOPT TO WA_RANGES-SELOPT_T.
        ENDLOOP.
        APPEND WA_RANGES TO IT_RANGE.
      ENDIF.
    *--For Datarevin for condition table
      CALL FUNCTION 'SELECT_RECORDS_FROM_COND_TABLE'
        EXPORTING
          I_KVEWE                       = 'A'
          I_KOTABNR                     = P_CONTAB
          I_BLOCKSIZE                   = 0
          I_RANGES                      = IT_RANGE
        TABLES
          T_COND_TABLES_KEY_FIELDS      = IT_TABLEKEY
          T_COND_TABLES_DATA_FIELDS     = IT_TABLEDAT
          T_COND_RECORD_PRICING         = IT_PRICING
        EXCEPTIONS
          INVALID_USAGE                 = 1
          INVALID_TABLE                 = 2
          DIFFERENT_PARAMETERS_IN_BLOCK = 3
          LASTBLOCK_ALREADY_SENT        = 4
          OTHERS                        = 5.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      SELECT * INTO TABLE IT_T682I
        FROM T682I
        WHERE KOTABNR = P_CONTAB.
      LOOP AT IT_PRICING.
        IT_KNUMH-KNUMH = IT_PRICING-KNUMH.
        APPEND IT_KNUMH.
      ENDLOOP.
      CALL FUNCTION 'SELECT_PRICES_DETAILS'
        TABLES
          T_KNUMH = IT_KNUMH
          T_KONH  = IT_KONH
          T_KONP  = IT_KONP
          T_KONM  = IT_KONM
          T_KONW  = IT_KONW.
      CALL FUNCTION 'CRS_MAP_COND_INTO_BAPISTUCTURE'
        EXPORTING
          I_OPERATION            = '005'
        TABLES
          TI_COND_RECS           = IT_PRICING
          TI_KEY_FIELDS          = IT_TABLEKEY
          TI_DATA_FIELDS         = IT_TABLEDAT
          TI_KONHDB              = IT_KONH
          TI_KONPDB              = IT_KONP
          TI_VKONM               = IT_KONM
          TI_VKONW               = IT_KONW
          TO_BAPI_COND_RECS      = IT_BAPI_COND_RECS
          TO_BAPI_KEY_FIELDS     = IT_BAPI_KEY_FIELDS
          TO_BAPI_DATA_FIELDS    = IT_BAPI_DATA_FIELDS
          TO_COND_HEADER         = IT_COND_HEADER
          TO_COND_ITEM           = IT_COND_ITEM
          TO_COND_QUANTITY_SCALE = IT_COND_QUANTITY_SCALE
          TO_COND_VALUE_SCALE    = IT_COND_VALUE_SCALE.
      IF SY-SUBRC <> 0.
      ENDIF.
    For displaying filename and number of records downloaded in application server
      DATA:VAR_INFO TYPE TABLE OF RSVARADMIN WITH HEADER LINE ,
           VAR_NAME TYPE TABLE OF RSVARRANGE WITH HEADER LINE  .
      CALL FUNCTION 'RS_VARIANT_ADMIN_DATA'
        EXPORTING
          CURR_REPORT   = SY-REPID
        TABLES
          VARIANT_INFO  = VAR_INFO
          VARIANT_NAMES = VAR_NAME.
      CALL FUNCTION 'PRINT_SELECTIONS'
        EXPORTING
          MODE      = TABLES
          RNAME     = SY-REPID         "program name
          RVARIANTE = VAR_INFO-VARIANT    "varient name
        TABLES
          INFOTAB   = INFOTAB.
      LOOP AT INFOTAB.
        WRITE / INFOTAB-LINE.
      ENDLOOP.
      WRITE:/1(80) SY-ULINE .
      WRITE:/1 SY-VLINE ,
             3 'The output filename:' COLOR 7,
             49 sy-vline,
             50 'no of records downloaded:' COLOR 6 ,
             80 SY-VLINE.
      WRITE:/1(80) SY-ULINE .
    Where used
      PERFORM DATA_DWNLD TABLES IT_T682I USING P_CONTAB 'WHERE_USED' 'DAT' 'xls'.
    *IT_BAPI_COND_RECS
      PERFORM DATA_DWNLD TABLES IT_BAPI_COND_RECS USING P_CONTAB 'COND_RECS' 'BIN' 'txt'.
    IT_BAPI_KEY_FIELDS
      PERFORM DATA_DWNLD TABLES IT_BAPI_KEY_FIELDS USING P_CONTAB 'KEY_FIELDS' 'ASC' 'txt'.
    KEY_FIELDS
      PERFORM DATA_DWNLD TABLES IT_BAPI_KEY_FIELDS USING P_CONTAB 'KEY_FIELDS' 'DAT' 'xls'.
    *DATA_FIELDS
      PERFORM DATA_DWNLD TABLES IT_BAPI_DATA_FIELDS USING P_CONTAB 'DATA_FIELDS' 'BIN' 'txt'.
    *COND_HEADER
      PERFORM DATA_DWNLD TABLES IT_COND_HEADER USING P_CONTAB 'COND_HEADER' 'BIN' 'txt'.
    *COND_ITEM
      PERFORM DATA_DWNLD TABLES IT_COND_ITEM USING P_CONTAB 'COND_ITEM' 'BIN' 'txt'.
    *COND_QUANTITY_SCALE
      PERFORM DATA_DWNLD TABLES IT_COND_QUANTITY_SCALE  USING P_CONTAB 'QUANTITY_SCALE' 'BIN' 'txt'.
    *COND_VALUE_SCALE
      PERFORM DATA_DWNLD TABLES IT_COND_VALUE_SCALE  USING P_CONTAB 'VALUE_SCALE' 'BIN' 'txt'.
    *&      Form  DATA_DWNLD
          text
    FORM DATA_DWNLD TABLES P_TAB
                    USING  P_CONTAB   TYPE ANY
                           P_TABNAME  TYPE ANY
                           P_FILETYPE TYPE CHAR10
                           P_EXT      TYPE ANY.
      DATA: L_FILE TYPE STRING,
            V_LINES TYPE I .
      DESCRIBE TABLE P_TAB LINES V_LINES.
      CONCATENATE 'ORG' P_CONTAB P_TABNAME
                 INTO L_FILE SEPARATED BY '_'.
      CONCATENATE FILENAME L_FILE '.' P_EXT INTO L_FILE.
      CONDENSE L_FILE.
      FIELD-SYMBOLS : <FS_DATA> TYPE ANY.
      OPEN DATASET L_FILE FOR OUTPUT IN BINARY MODE .
      IF SY-SUBRC NE 0.
        EXIT.
      ELSE.
        LOOP AT P_TAB ASSIGNING <FS_DATA>.
          TRANSFER <FS_DATA> TO L_FILE .
        ENDLOOP.
      ENDIF.
      CLOSE DATASET L_FILE.
    For displaying filename and number of records downloaded in application server
      WRITE:/1 SY-VLINE ,
             3  L_FILE ,
             49 sy-vline,
             50 v_lines,
             80 SY-VLINE.
      WRITE:/1(80) SY-ULINE .
    ENDFORM.                    " DOWNLOAD_FILE
    </code>

    Hi Satya,
    Try this .
    select ebeln ebelp statu aedat matnr menge meins netpr peinh
    up to 10 rows
      from ekpo
      into table it_ekko.
    *Populate field with color attributes
    loop at it_ekko into wa_ekko.
    Populate color variable with colour properties
    Char 1 = C (This is a color property)
    Char 2 = 3 (Color codes: 1 - 7)
    Char 3 = Intensified on/off ( 1 or 0 )
    Char 4 = Inverse display on/off ( 1 or 0 )
              i.e. wa_ekko-line_color = 'C410'
      ld_color = ld_color + 1.
    Only 7 colours so need to reset color value
      if ld_color = 8.
        ld_color = 1.
      endif.
      concatenate 'C' ld_color '10' into wa_ekko-line_color.
    wa_ekko-line_color = 'C410'.
      modify it_ekko from wa_ekko.
    endloop.
    endform.                    " DATA_RETRIEVAL
    For more info ,
    http://www.sapdev.co.uk/reporting/alv/alvgrid_color.htm
    Regards,
    Chitra

  • Getting swf  movie report n the output window?

    i am getting a swf movie report in the output window and nothing else, cant get rid of it help please?

    when i test the movie the output window just displays a list longer than my arm with the title
    swf. movie report in the output window meta data or something?
    and no eror reports.
    sorry cant be more specific but im about to shoot my pc.

  • How GET Output to Excel with Oracle9i Report using OC4J

    how GET Output to Excel with Oracle9i Report using OC4J.
    I FINISHED THE SETPS CONCIDERING THE JSP CODE NEEDED TO GET THE EXCEL OUTPUT ON LOCAL MACHINE.
    I NEED TO PUBLISH THIS REPORT THROUGH APPLICATION SERVER.
    THE QUESTION IS:
    1- HOW TO START AN OC4J INSTANCE FROM ORACLE 9I DS FOR THIS REPORT?
    2- WHERE (PATH) TO PUBLISH THE REPORT ON THE APPLICATION SERVER?
    3- WHAT IS THE DEFAULT URL TO RUN THIS REPORT AND WHERE TO PUT IT?
    4- HOW TO MAKE MAPPING FOR DIRECOTRY PATH TO TRANSLATED AS URL FOR THIS REPORT?
    5- IF ANY ONE CAN GIVE ME THE FULL CODE TO RUN AND CALL SIMPLE JSP REPORT TO BE VIED IN INTERNET EXPLORER.
    THANK YOU

    Hi,
    I can't answer to all your questions, however I can tell you that:
    2) The directory where to put the report file is specifiend in a file named
    <serverName>.conf
    in the sourceDire property
    <property name="sourceDir" value="/directory/dove/mettere/i/report"/>
    that you can find under ORACLE_HOME/reports/conf
    3) The URL is
    http://<server IAS address>:<port number>/<jsp file path>/<repName>.jsp?server=<report server name>&userid=<user>/<pwd>@<DB conn string>[&<param>=<valore>[&...]]
    5) In IE you have only to set the previous URL in the address bar.
    Hope this helps you
    Bye
    Raffy

  • JOB_OPEN, SUBMIT REPORT VIA JOB, JOB_CLOSE, How to get result?

    Hi Friends,
    I am calling reports using jobs as calling job_open, submit report via job.., and job_close. But I want to the output/result of the report. How can I do this?
    Thanks.

    Hello nkara,
    Welcome to SDN!!!
    Check this thread:
    background grid
    REgards,
    Vasanth

  • Need to download the report output list to a Excel file.

    Hi,
       I have a report output list, which i need to download to an Excel file, could any body suggest how to do this with out writing the ws_download.
    My report data is coming from two internal tables, one internal table for left side reprt display and another internal table for right side report display, both the internal tables having the same fields.
    suggest me how to combine these two internal table data in one internal table.
    2 internal table structure is same but data is different.
    Sunil

    Hi,
    in the o/p list use the below menu path.
    LIST>SAVE/SEND>FILE,
    then a pop-up window with different formates will appear,then choose u r required format.
    Thanks,
    Anji

  • How can we get Empty screen as a output list

    Hi Experts,
      when executing the program I want to display an empty screen (as a output list) instead of error message . How we can do? let me know.
    Thanks in advance.
    Silviya T

    Hi Thomas,
    Is u have such a requirement either u can use a sucess message i.e. type s with no text.
    REPORT ZSAC_TEST1 message-id 00.
    message s000.
    Or try using this
    write:/ 120 '.' .
    the o/p screen looks like blank.
    Hope this helps U.
    Regards
    Sachin Dhingra

  • How do I get a list of the reports that a user has access to?

    <p>I need to be able to determine which reports a specified user has access to.  This is for an application where users will be able to search and view reports that have been archived through a separate process.  </p><p>I&#39;ve searched through the developer library, but I can&#39;t find this specific information.  Can I use the ObjectPrinicpals class to get this info?</p><p>Thanks!</p><p>-Dell<br /></p>

    Hi Robert!
    Yes, the presentation went well. It was a lot of fun to do and I had a great time at the conference.
    Your suggestion works great if I'm walking down through the reports looking to see who has access to them.Â
    However, I need to do this starting from the User object. When I use the ObjectPrincipals of the User, I get a list of the users who have the rights to modify the user. I did a lot of work on this last week and it boils down to I'm going to have to actually log in as the user (I can use trusted authentication to do this without having the user's password) and then run a query to select all of the reports in the system - this should give me just the reports that the user has access to. Not the most efficient way to get the data from my perspective, but it should work.
    This would be a great feature to have added to future versions of the SDK. I need it for a couple of purposes:
    1. To gather information to set up the security in my archive viewer application.
    2. For auditing purposes - we currently have only Professional licenses so I don't have access to the internal auditing functionality. Plus, I'm not sure that that includes the kind of info I'm looking for so I'm building an app that extracts information to XML which is then used by a couple of reports so that I can provide the audit info as needed.
    -Dell
    Â - A computer only does what you told it to, not what you thought you told it to!</p>

  • Need to have an identifier on the Report Output List View (My BIP Reports)

    Please help as we need to have an identifier e.a (Quote Id - Report Name) when the BIP
    report was generated in Report Output List View, is it possible to customize
    this vanilla functionallity or is there a patch we need in order to apply
    this requirement?

    i doubt it is from skype. i havent used skype in 2 days or so.
    here are the crash reports IDs from JUST today..
    bp-8c7fab55-79c8-4db1-9527-4ba072111013 10/13/2011 4:51 PM
    bp-db6bf6c4-cf34-4eae-a742-105842111013 10/13/2011 4:51 PM
    bp-f28611cf-3ff0-4658-a843-05da92111013 10/13/2011 4:32 PM
    bp-03fa57ef-580d-4f1d-8fb4-52ac72111013 10/13/2011 4:21 PM
    bp-d07e0d82-df2a-41c8-a19b-bb99e2111013 10/13/2011 4:19 PM
    bp-fafbd8cf-6769-4b76-8153-c17242111013 10/13/2011 4:06 PM
    bp-ee9694ab-585b-4963-8b94-e46432111013 10/13/2011 3:47 PM
    bp-773242e1-a87d-4e19-90cb-ce4e52111013 10/13/2011 3:37 PM
    bp-6bae0db3-895b-4239-8a71-758ce2111013 10/13/2011 3:36 PM
    bp-6dfc1b57-5a8f-4244-baa1-8d0642111013 10/13/2011 3:36 PM
    bp-9a6589cd-0e2f-4299-b517-a6c862111013 10/13/2011 3:31 PM

Maybe you are looking for

  • LDB Selection-screen

    Hello ,     In my program selection-screen is coming from LDB(logical database) and i want my own selection-screen in the top means before LDB selection-screen.         Pls solve this ASAP. Thanks.

  • How to setup airport extreme vs express at WDS mode?

    How to setup airport extreme(Main) vs express(Site) at WDS mode?

  • UCCX: 8.02 (IPV6

    Dear Gents, I have the following problem on one of our client he has the below: 1- Cisco CUCM 8.02 and UCCX 8.02 2- IP Phones 7960 3- Cisco Agents desktop 4- Agents are using extension mobility The problem is that the users login to a phone using ext

  • How to run wrap command

    Hi, I want to run wrap command for encryption. I am a bit confused about syntax. Can anybody help. Prashant....

  • Import .mov for iMovie 2 project

    Hi all- I have some .MOV movies that I want to use in an iMovie 2 project, but I noticed that it won't import them. Is there any way to do this? Thanks