How can i display list from memory

Hello,
now i am trying to develop exit to inspect code before release change request.
There is function module  TR_INSPECT_OBJECTS to be used.
But it returns only error flag. the result screen is kept in abap memory.
what i want is to count how many error / warning in result.
as i debug, the result in in hexstring structure.
are there any method to retrieve it and count?
thanks & regards,
pichet a.

Hi
Make use of foll. FM in such cases.
LIST_FROM_MEMORY - Prepared list import from memory
Other FMs used in this aspect .
DISPLAY_LIST  - List object display
SAVE_LIST       - Save list
WRITE_LIST      -  Display a (saved) list obj.
Regds,
abhee.
Edited by: abheesawant on Jun 9, 2010 11:43 AM

Similar Messages

  • How can I display pictures from an Ipod on my Ibook?(it's not the home comp

    I am trying to figure out how I can display pictures on my Ibook from the video Ipod. The Ipod is connected to another computer, a PC. Please help, thanks.
    Also, how can I get the pictures off the ipod to the ibook?

    if it is impossible, could i have an explanation? please someone respond.

  • How can i print lists from the reminder app

    Does anybody know how to print lists from the Reminder app ?

    There's no print menu in Reminders.
    You can take a screen shot and print that.  Hit command-shift-3 when Reminders is showing, then hit the spacebar, and then click on the Reminders window and you'll get a screen shot on your desktop.  You can then open that in Preview and print from there.
    A better solution though is to just use an iPhone and sync, and have your reminders with you :-)

  • Can't display values from memory

    Hi, all experts
    i am having trouble displaying the value that i have imported to memory.
    EXPORT keyfgr           FROM  p_keyfgr     TO MEMORY ID 'CM_KEYFGR'.
    EXPORT fcst_filedata    FROM gt_fcst_filedata[]       TO MEMORY ID 'CM_FCST_FILEDATA'.
    SUBMIT (g_hlp_progname) WITH fpath  = p_fname
                               WITH vrsioz = p_vrsioz
                               VIA SELECTION-SCREEN
                               AND RETURN
    When i want to use this value in my other tcode is doesn't display value. pls, help
    IMPORT keyfgr TO D FROM MEMORY ID 'CM_KEYFGR'.
    IMPORT fcst_filedata TO GTA_fcst_filedata FROM MEMORY ID 'CM_FCST_FILEDATA'.
         LOOP AT GTA_fcst_filedata INTO WA_fcst_filedata.
              WRITE: / WA_fcst_filedata-FIELD1.
        ENDLOOP.

    Hi sophanith,
    please go through the code below.
    export p_keyfgr to MEMORY id 'XYZ' .
    EXPORT gt_fcst_filedata[]       TO MEMORY ID 'ABC'.
    SUBMIT (g_hlp_progname) WITH fpath  = p_fname
                               WITH vrsioz = p_vrsioz
                               VIA SELECTION-SCREEN
                               AND RETURN.
    in Import program u should declare the gt_fcst_filedata[] and keyfgr same as export program.
    DATA :gt_fcst_filedata[] TYPE TABLE OF ................
    DATA:keyfgr type ...........
    IMPORT keyfgr FROM MEMORY ID 'XYZ'.
    IMPORT gt_fcst_filedata[] FROM MEMORY ID ' ABC'.
    the you can loop the internal table in to work area.
    regards Ashwin kv

  • How can I install list from English template in German SharePoint?

    I have a list, that was customized with InfoPath. I exported it as template and wanted to create list from this template in another server.
    The original list was created in SharePoint with English language. Now, the target server is in German language. My English list templates are not available in "Apps you can add".
    How can I create the list in German server? InfoPath won't deploy list to another URL, and recreating list in InfoPath would be possible but mean enormous amount of work.

    On which OOTB list is based your customized List you customized?
    Some more hints:
    1. Make sure that your target site is based on same site template as the site on which you created your template
    2. In some cases "Team Collaboration Lists" feature has to be enabled on target site, check if it is enabled.
    3. Compare other Site Collection and Site features on both Source and Target sites.
    Dragan Panjkov [http://www.dragan-panjkov.com]

  • How can i display data from mysql (cant do it using netbeans)

    im confused with changing ResultSet-->List->Array;
    i already done displaying a data table from mysql but im lost on how to display mysql rows to ComboBoxes and JLists...
    im new here.
    how does the setModel() work?
    i hate this GUI stuff.. = (
    thanks...

    im new here.
    how does the setModel() work?
    i hate this GUI stuff.. = (You claim you have JDBC working already, if I understand your post correctly. So you're asking a question about GUIs in the JDBC forum. Not a good strategy. Try the Swing forum.

  • How can I display photos from a facebook group in my Muse website?

    I am creating a website for a client, using Muse, and she wants to be able to upload photos into her website, and allow her users to do this as well.
    As an option, I was thinking of maybe adding a facebook plugin that will post photos that users add to her fb group.
    Is that possible to do?
    If not, can you recommend a way for me to set up a feature on her actual website that will allow her users to upload photos and display them on her site??
    Thanks!

    Hi,
    You will have to get the code from the http://developers.facebook.com which you can insert as HTML on the pages designed from Muse.
    Regards,
    Abhishek Maurya

  • How can I display data from ResultSet to a component like jLable and JTable

    hi there
    My code as shown below
    boolean fillTable(int type){
            try{
                //model.setRowCount(0);
                if(type == 1){
                    System.out.println("line 1");
                    model = new DefaultTableModel(new Object [][] {   },
                            new String[] { "\u1200 Code", "Description" });
                    System.out.println("line 2");
                    while(lookup.rs2.next()){
                        System.out.println("line in while");
                        model.addRow(new String[] { lookup.rs2.getString("code"),
                            "\u1201 " + lookup.rs2.getString("amdescription")});
                          //System.out.println("While : " + lookup.rs2.getString("code") + " " +
                            //      lookup.rs2.getString("amdescription"));
                    lookup.rs2.last();
                    String str;
                    str =  new String (lookup.rs2.getString("amdescription"));
                    jLabel2.setText(str);
                    System.out.println("line 3");
                    tblLookup.setModel(model);
                    System.out.println("line 4");
                else if(type == 2){
                    System.out.println("line else if 1");
            }catch(Exception ex)    {
                System.out.println("Exception @ MilLookupDisplay fillTable : " + ex.getMessage());
                return false;
            return true;
        }I can read from access db and put the resultset on rs2 , it works fine
    my problem is when I try to display the data ( which is amharic unicode character ) on jTable and jLabel as shown it displays '???'
    besides I have checked the font by giving unicode like '\u1200' on both component displays it well
    so is there something to do before trying to display unicode characters from resultSet
    please I ' m waiting
    thanks a lot

    http://forum.java.sun.com/thread.jspa?threadID=5153938

  • HT4437 How can I display internet from my Macbook to my Apple TV? I have lion and my apple tv is updated.

    I am trying to mirror the display to my TV. Cant seem to get it to work. Itunes will connect, but I am only trying to show my web browser.

    Hi Vaz,
    I Have a Mac Pro which I brought in May 2012 from NYC. I have the latest IOS version :  Mac OS X Lion 10.7.5 (11G63) and latest Apple TV 3rd generation HDMI output.
    Home sharing and I tunes content including music , photos and vedios is also available. Thi is great and is working from my Ipod Touch and Iphone 4. However screen mirrioring using air play is not working on my Mac Pro and TV screen. I ddont see the airplay Icon on my menu bar.
    I checked system pref / display but do not find air display there.
    Am i missing some thing.
    Airplay is also on on the apple tv. I have not used any password for air play.
    Please help If  I am missing. Help much appreciated.
    Regards
    M

  • How can I display iPad on tv via apple tv.

    How can I display screen from iPad using apple tv?

    The correct answer is only with a limited number of apps, you cannot share the iPad screen, unfortunately. YouTube, iPhoto. I am very disappointed keynote presentations are not supported.

  • How can i remove items from list that have been deleted when i click on them it keeps showing empty

    how can i remove items from the list that have been deleted when i click on them it keeps showing folder empty

    Actually, Reader SHOULD keep showing documents that no longer exist, I disagree. It's no big deal, and people will quickly realise why they can't open the file. They open more files, the old ones move off.
    The REASON why it should not check is that checking whether a file exists can take a long time when things aren't good. For instance if a file server goes down, or a memory card is unplugged. That in turn would mean delays opening the File menu, and I've seen some software that can sit there for several minutes. That would really give people something of which to complain...

  • Noobie question: How do I add something to the display list from a non-main class?

    I know how to use addChild() within the main class to add
    something to the stage display list and have it appear on the
    screen, but how do I add something to the stage display list from
    code within another class?
    So for example say I want to add some text (myTextField) to
    the stage's display list from within NotTheMainClass' code, could
    you give an example of the necessary code?

    you must pass a reference to a display list object or create
    one that's available to your class.
    there are so many ways to do this i'm not sure how you want
    to proceed. but you can create a globally available reference to
    the stage and root timeline:

  • How to call list from memory after submitting RCS13001

    Can anyone help me with this problem? I am submitting RCS13001 and using option exporting list to memory and return. It was successfully displayed the ALV list (which I don't want to see) and return to the caller program. Then when calling function list_from_memory, it short dumped/returned nothing. It seems that nothing is saved in the memory when submitting the program.
    So what I want to get now is call RCS13001 and process the data, don't display the ALV report but save it in memory, and then collect the memory for output.
    Any help is appreciated and points awarded. Thanks in advance
    Regards,
    Eric
    Code:
            SUBMIT ZRCS13001
              WITH PM_MTNRV INCL v_matnr
              WITH PM_WERKS INCL p_werks
              WITH PM_STLAL INCL p_stlal
              WITH PM_CAPID INCL p_capid
              WITH PM_DATUV INCL p_datuv
              WITH PM_EMENG INCL v_emeng
              EXPORTING LIST TO MEMORY
              AND RETURN.
        CALL FUNCTION 'LIST_FROM_MEMORY'
          TABLES
            LISTOBJECT       = alv_stb
        EXCEPTIONS
          NOT_FOUND        = 1
          OTHERS           = 2

    Hi Eric,
    Please check Rich's sample code.
    report zrich_0003 .
    data: begin of listout occurs 0,
          line(1024) type c,
          end of listout.
    * Submit the report and export list to memory
    submit z_your_report exporting list to memory
                and return.
    * Get list from memory and convert to ascii
    perform retrieve_list_from_memory tables listout.
    loop at listout.
      write:/ listout.
    endloop.
    * RETRIEVE_LIST_FROM_MEMORY
    form retrieve_list_from_memory tables reportlines.
      data: list like abaplist occurs 0 with header line.
      data: txtlines(1024) type c occurs 0 with header line.
      clear list.  refresh list.
      clear reportlines. refresh reportlines.
      call function 'LIST_FROM_MEMORY'
           tables
                listobject = list
           exceptions
                not_found  = 1
                others     = 2.
      check sy-subrc = 0.
      call function 'LIST_TO_ASCI'
           tables
                listobject         = list
                listasci           = txtlines
           exceptions
                empty_list         = 1
                list_index_invalid = 2
                others             = 3.
      check sy-subrc = 0.
      reportlines[] = txtlines[].
      call function 'LIST_FREE_MEMORY'.
    endform.
    Also please check this link for more sample codes.
    http://www.sapdevelopment.co.uk/reporting/rep_submit.htm
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • How to retrieve Task Lists from All Subsites to the Parent Site and display in Grid view using CAML Query

    How to retrieve Task Lists from All Subsites to the Parent Site and display in  Grid view using CAML Query + object model

    do u just want task list or items under task list for all subsites
    for items use spsitedataquery ref
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsitedataquery.aspx use recursive to get it from alll subsite under site collection
    for tasklist only u can a simply use a for loop to find in all subsite
    Manish Sati

  • How can I display the holiday list in the portal

    System
    ECC 6.0
    EP 7.0
    ESS/MSS 1.0
    how can I display the holiday list in the portal.
    There will be a holiday list created by the ABAP-er in ECC, how can I include it in the portal?

    Hi,
    Create a WebDynpro Iview to create a simple application that pulls information from the RFM(that you has ABAPer created).
    Start from <a href="https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#backend">Here</a>
    (Or)
    To get an idea, download the world time BP from below link. It has calender with holidays displayed.
    http://www.sweetlets.com/world_times_preview.html
    Regards,
    N.

Maybe you are looking for

  • Adobe Bridge CC bleibt stehen oder ist sehr langsam

    Hallo. Ich hatte auf meinem Rechner die Bridge CC, Photoshop CC und Photoshop CC 2014 am laufen. Alles Tadellos, die Bridge arbeitet fehlerfrei. Die beiden PS Versionen hatte ich laufen, weil´s mit meine Tablet Probleme unter CC2014 gab. Nu gabs neue

  • Want to view all photos in an Event, at once

    I want to view all photos, from an Event, at once without scrolling down. When we got this, I remember looking at all photos together. Now, if I want to click and drag to another page or to iMovie, it wont let me. I can't put in trash either. Is it p

  • Problem with Java Communication API

    hi I installed the Java Communication API on win32 platform (as per the guidelines) Now when I try to run the sample program 'Blackbox' for the serial port, I get an error (in fact an exception is generated inside main function in BlackBox.class file

  • Cannot open form with a button

    Hi folks, I'm new to Developer, so apologies. I am opening a form xxx by attaching a smart trigger of WHEN-BUTTON-PRESSED to a button by call_form('xxx'); It compiles fine, but when I evesute the form, it says errer 400010 cannot read form. Any ideas

  • Existing Single $19.99/month App - Want to convert to LR & PS

    I signed up for CC this summer, but only for PS.  I now see they are running a deal for $9.99 for Photoshop AND LR.  I'm currently  only getting Photoshop but paying double.  Can I convert my subscription??