Saving Data from subscreen to main screen on a click of a button

Hi,
I have a main screen which has multiple subscreens attached to it.
My problem is when ever i enter the data on the screen and execute a button, the data on the screen is not being saved. what i observed is when ever there is a button press, the data is cleared. i have checked the same in debugging mode as well still then i am not able to see the data which i am trying to store.
I have attached the code, please help me in this regards,
Thanks,
Shanky.
Main screen:-
PROCESS BEFORE OUTPUT.
MODULE STATUS_9020.
  MODULE MZO_DISABLETABSTRIP.
  MODULE CHECK_MANDATORY_DISABLE.
  CALL SUBSCREEN SUB1 INCLUDING SY-REPID '9030'.
  CALL SUBSCREEN SUB2 INCLUDING SY-REPID '9050'.
  CALL SUBSCREEN SUB3 INCLUDING SY-REPID '9060'.
  CALL SUBSCREEN SUB4 INCLUDING SY-REPID '9080'.
  CALL SUBSCREEN SUB5 INCLUDING SY-REPID '9090'.
  CALL SUBSCREEN SUB6 INCLUDING SY-REPID '9070'.
PROCESS AFTER INPUT.
MODULE MZI_USER_COMMAND_9020.
CALL SUBSCREEN SUB1.
CALL SUBSCREEN SUB2.
CALL SUBSCREEN SUB3.
CALL SUBSCREEN SUB4.
CALL SUBSCREEN SUB5.
CALL SUBSCREEN SUB6.
Subscreen - 1
PROCESS BEFORE OUTPUT.
MODULE MZO_STATUS_9030.
  MODULE MZO_INITIALIZATION_9030.
module mzo_routes_display.
PROCESS AFTER INPUT.
  MODULE MZI_USER_COMMAND_9030.
PROCESS ON VALUE-REQUEST.
  FIELD ZTTT001-ZFACTNAME MODULE MZV_ZFACTNAME.
  FIELD ZTTT001-ZTTBASICOBJI1 MODULE MZV_ZTTBASICOBJI1.
  FIELD ZTTT001-ZTTBASICOBJI2 MODULE MZV_ZTTBASICOBJI2.
  FIELD ZTTT001-ZTTBASICOBJI3 MODULE MZV_ZTTBASICOBJI3.
  FIELD ZTTT001-ZTTBASICOBJI4 MODULE MZV_ZTTBASICOBJI4.
  FIELD ZTTT001-ZTTBASICOBJI5 MODULE MZV_ZTTBASICOBJI5.
  FIELD ZTTT001-ZTTBASICOBJI6 MODULE MZV_ZTTBASICOBJI6.
  FIELD ZTTT001-ZTTBASICOBJI7 MODULE MZV_ZTTBASICOBJI7.
  FIELD ZTTT001-ZTTBASICOBJI8 MODULE MZV_ZTTBASICOBJI8.
  FIELD ZTTT001-ZSEASONALPROD MODULE MZV_ZSEASONALPROD.
  FIELD ZTTT001-ZROUTEID MODULE MZV_ZROUTE.
  FIELD ZTTT001-ZFPLANTS MODULE MZV_ZPLANTS.
  FIELD ZTTT001-ZTOPLANTS MODULE MZV_ZTOPLANTS.
  FIELD ZTTT001-ZSTACKCONFIG MODULE MZV_ZSTACKCONFIG.
G_OKCODE2 = SY-UCOMM.
  CASE G_OKCODE2.
    WHEN 'SAVE'.
      " Write code for save as draft version and saving the existing data.
      PERFORM SAVE_AS_DRAFT_VERSION.
    WHEN 'COMP'.
      ZTTT001-ZDOFCOMMENCT = SY-DATUM.
      PERFORM SAVE_DATA_ORIGINATOR.
      PERFORM F_UPDATENWORKFLOW. " Update the database table and initiate workflow.
      LEAVE PROGRAM.
   WHEN 'ENTER'.
     PERFORM save_temporary_data.
     LEAVE TO SCREEN 9020.
    WHEN 'OTHERS'.
BREAK-POINT.
  PERFORM TT_GENERATE_NUMBER.
  Wa_ZTTT001-MATNR = ZTTT001-MATNR.
  Wa_ZTTT001-ZTTNO = ZTTT001-ZTTNO.
  Wa_ZTTT001-ZORGNAME = ZTTT001-ZORGNAME.
  Wa_ZTTT001-ZORGCONT = WA_ITZTTT001-ZORGCONT.
  Wa_ZTTT001-ZDECNTNAME = ZTTT001-ZDECNTNAME.
  Wa_ZTTT001-ZFACTNAME = ZTTT001-ZFACTNAME.
  Wa_ZTTT001-ZTTCREDATS = ZTTT001-ZTTCREDATS.
  Wa_ZTTT001-ZTTBASICOBJ1 = ZTTT001-ZTTBASICOBJ1.
  Wa_ZTTT001-ZTTBASICOBJ2 = ZTTT001-ZTTBASICOBJ2.
  Wa_ZTTT001-ZTTBASICOBJ3 = ZTTT001-ZTTBASICOBJ3.
  Wa_ZTTT001-ZTTBASICOBJ4 = ZTTT001-ZTTBASICOBJ4.
  Wa_ZTTT001-ZTTBASICOBJ5 = ZTTT001-ZTTBASICOBJ5.
  Wa_ZTTT001-ZTTBASICOBJ6 = ZTTT001-ZTTBASICOBJ6.
  Wa_ZTTT001-ZTTBASICOBJ7 = ZTTT001-ZTTBASICOBJ7.
  Wa_ZTTT001-ZTTBASICOBJ8 = ZTTT001-ZTTBASICOBJ8.
  Wa_ZTTT001-ZDOFCOMMENCT = ZTTT001-ZDOFCOMMENCT .
  Wa_ZTTT001-ZSEAARSHIPTEXT = ZTTT001-ZSEAARSHIPTEXT.
  Wa_ZTTT001-ZPRODHIERARCHY = ZTTT001-ZPRODHIERARCHY.
  Wa_ZTTT001-ZNEWPRODDEV = ZTTT001-ZNEWPRODDEV.
  Wa_ZTTT001-ZPRODNAME = ZTTT001-ZPRODNAME.
  Wa_ZTTT001-ZNOFPALLETS = ZTTT001-ZNOFPALLETS.
  Wa_ZTTT001-ZSTACKCONFIG = ZTTT001-ZSTACKCONFIG.
  Wa_ZTTT001-ZRATFTT1 = ZTTT001-ZRATFTT1.
  Wa_ZTTT001-ZRATFTT2 = ZTTT001-ZRATFTT2.
  Wa_ZTTT001-ZCOMMENTS = ZTTT001-ZCOMMENTS.
  Wa_ZTTT001-ZROUTEID = ZTTT001-ZROUTEID.
  Wa_ZTTT001-ZTOPLANTS = ZTTT001-ZTOPLANTS.
  Wa_ZTTT001-ZFPLANTS = ZTTT001-ZFPLANTS.
  Wa_ZTTT001-ZSHIPMENTNO = ZTTT001-ZSHIPMENTNO.
  Wa_ZTTT001-ZDELIVERY = ZTTT001-ZDELIVERY.
  Wa_ZTTT001-ZTRAILER = ZTTT001-ZTRAILER .
  Wa_ZTTT001-ZPALLET = ZTTT001-ZPALLET.
  Wa_ZTTT001-ZSTONUM = ZTTT001-ZSTONUM.
  Wa_ZTTT001-ZSTATORG = 'Complete Version'.
  MOVE Wa_ZTTT001 TO ZTTT001.
  MODIFY ZTTT001 FROM Wa_ZTTT001.
  COMMIT WORK.
endform.

Let's see... if you call the subscreen9030  after 9020 PBO, then in the 9020 PAI you call it again, and the PBO for 9030 initializes the data, didn't you just wipe out what you have entered?

Similar Messages

  • Calling the subscreen into main screen

    Hi Guru's,
          I am having a main screen, which holds 2 radio buttons.
          If I select one radio button it has to call one table control, if I select 2nd radio button it has to call different table control.
          For this I have created two subscreens, each one holds a table control.
    based on the selection of radio button I have to call these subscreens in to the main screen.
       Please help me how to call the subscreen into main screen.

    There is no help text for this dump                                         
    Either the text was inadvertently deleted or the release of                 
    the kernel differs from the release of the database                         
    Refer to the Note system for further information on            this dump.                                                                               
    000160           %_archive TYPE arc_params,                                     
    000170         END   OF COMMON PART.                                            
    000180   *                                                                      
    000190   FIELD-SYMBOLS: <%_1>   %_PREDEFINED.                                   
    000200                                                                          
    000210   DATA: %_repid     TYPE syst-repid   %_PREDEFINED,                      
    000220         %_viaselscr TYPE x VALUE '04' %_PREDEFINED.                      
    000230                                                                          
    000240   SYSTEM-EXIT.                                                           
    000250   PERFORM (sy-xform) IN PROGRAM (sy-xprog).                              
    000260                                                                          
    000270   * Nach Laden des Dynpros                                               
    000280   MODULE %_ctl_init OUTPUT.                                              
    000290     %_repid = sy-repid.                                                  
    000300     PERFORM %_ctl_init IN PROGRAM sapmssyd USING %_repid IF FOUND.       
         >   ENDMODULE.                                                             
    000320                                                                          
    000330   * Um DCO                                                               
    000340   MODULE %_ctl_output OUTPUT.                                            
    000350     %_repid = sy-repid.                                                  
    000360     PERFORM %_ctl_output IN PROGRAM sapmssyd USING %_repid IF FOUND.     
    000370   ENDMODULE.                                                             
    000380                                                                          
    000390   * Um DCI                                                               
    000400   MODULE %_ctl_input INPUT.                                              
    000410     %_repid = sy-repid.                                                  
    000420     PERFORM %_ctl_input IN PROGRAM sapmssyd USING %_repid IF FOUND.      
    000430   ENDMODULE.                                                             
    000440                                                                          
    000450   * Erstes Modul in PAI                                                  
    000460   MODULE %_ctl_pai INPUT.                                                
    000470     %_repid = sy-repid.                                                  
    000480     PERFORM %_ctl_pai IN PROGRAM sapmssyd USING %_repid IF FOUND.        
    000490   ENDMODULE.

  • Saving Data from ALV.

    hi all.
    I have an issue regarding saving data from alv to data base table.
    The problem is like this. I have an internal table consist of 10 column from three diferent tables.one primary key is there.
    now i have displayed it in alv grid. there is a column of quantity. i made some changes in quantity of some rows. now i want to save it into the database table from which that quantity field fetched.
    i used first check_changed_data method. if the flag is set it means data is changed.
    wat shud i do to save that quantity column into data base.
    Thanks In advance.
    varu

    Hi,
    <b>To modify database or ztable from the ALV grid,you need to do the following:</b>
    ---You have to modify the field Catalog fields (fields that you want to make editable).Set the field <b>EDIT as 'X'</b>.For example if you want to make the field below editable:
    ls_fcat-fieldname = 'CARRID'.
    ls_fcat-edit = 'X'.
    APPEND ls_fcat TO pt_fieldcat.
    ---Call the method below before you call the set_table_for_first_display.
    CALL METHOD ALV_GRID_INSTANCE-><b>set_ready_for_input</b>
    EXPORTING
    i_ready_for_input = 0. ( For Display ) and ('1' for Edit )
    After this put the set_table_for_first_display.
    <b>Now if the ALV data has changed,and you want to change the database or ztable,then in your pf status give a function code for SAVE button in the GUI.
    In the PAI of the screen,in user command module write the following:</b>
    WHEN 'SAVE'.
    <b>call method gr_alvgrid->check_changed_data</b>
    importing e_valid = l_valid.
    if l_valid = 'X'.
    <b>MODIFY spfli FROM TABLE itab_spfli.</b>
    endif.
    <b>(l_valid is a flag.</b>
    DATA:l_valid type c.
    If you want to check if the user has entered any value on the grid, use the Method : CALL METHOD gr_alvgrid->check_changed_data.
    This method returns a flag l_valid which can be checked to see if the data on the ALV grid has been changed or not.)
    Regards,
    Beejal
    **Reward if this helps

  • I lost my iphone. How can I get my saved data from back up on my new laptop?

    Dear Friends,
    I did a mistake as when selling my iphone I did not get my saved data from my iphone back up. Now I have a new laptop and I want to get my backed up data.
    Is there any way I could get or as Apples traditional greed ... more money more money ...more .. more??????
    Please help if I can get back my at least contacts and video for free. I do not are for my music. My God it is so difficult to get going with Apple.

    stedman1 wrote:
    A warranty does not cover physical damage. Did you have AppleCare +?
    AppleCare+ doesn't cover loss or theft, only accidental damage.

  • Pulling data from crosstab into main report

    Hello
    I want to pull some data from crosstab into main report and show it in same row.
    Activity date will always be today date. Loadnum is a uniq id number, carriercode also has uniq id.
    In one row i have load,activity date, carrier code etc . I need to add a field which will show count all loads before today made by carrier code. Right now i added a crosstab which is counting loads made by carrier code. Is there a chance to pull/get the data/field from crosstab into the main report?
    Thanks for any suggestions

    HI Mateusz,
    Where is the crosstab located?
    You can do this without trying to get the count from the crosstab.
    1) Group on the CarrierCode field
    2) Go to Insert > Summary > Choose the field you used under 'Summarized Fields' in the Crosstab > Place this summary on the Group Footer 1
    3) Suppress the details section and move all fields to the Group Footer.
    -Abhilash

  • I cannot access my mail from the Comcast main screen, firefox says it may be a problem with having deleated cookies.

    From the Comcast main screen, using FF 3.6.13, when I click on my mail to get it, I get an error page that says Firefox has detected the server trying to direct my request to the wrong place and that it may be because i have deleted cookies. I had in fact done this while looking around the other day, but now, under tools, it says I am allowing cookies and I found a list that looks like they are all there. I am unable to get my mail, but am able to go to other web sites ok.

    Your problem is typical of the many problems reported with McAfee, and that may well be the cause. McAfee is free with Infinity but isn't built-in in the sense that you have to take it. Is your previous anti-virus still installed? If so, you should get rid of one of them anyway, and the usual advice here would be to ditch McAfee.
    Even if McAfee is the your only AV I would replace it. If your previous AV is no longer available there are plenty of free options, and Microsoft Security Essentials (MSE) is as good a choice as any. There's advice on uninstalling McAfee here.
    You can click the white star next to this message if you think it was helpful.

  • My screen turns white and my functions lag on me for instence i try going to my ipod and it turns on but then turns right off going back to main screen. when i click on my settings it takes forever to open up, if opening at all.

    my screen turns white and my functions lag on me for instence i try going to my ipod and it turns on but then turns right off going back to main screen. when i click on my settings it takes forever to open up, if opening at all.

    Restore the phone --> http://support.apple.com/kb/HT1808
    If this does not resolve the problem you have a hardware problem.

  • Capturing the values of screen elements on click of execute button

    Hello folks,
    Is there a way to capture the values entered in the screen on click of the execute button?
    What I want to do is, I have a selection screen where-in a user can fill the input fields (parameters and select-options). Now when the user clicks on the execute button, the values of all the screen elements (no matter if they are filled or empty) should be stored in variable, so that I can use these values again when I am calling this program from another program.
    I want to do something similar to saving a variant, but this save should happen on click of Execute button and user need not require to explicitly save these values as variant.
    Hope I am clear enough to put my query in front of you all.
    It would be a great thing if you could help me.
    Need your help.
    Thanks in advance.

    Hi,
    You need something like this
    REPORT A.
    TABLES: sflight.
    PARAMETERS: pa_scarr   TYPE sflight-carrid.
    SELECT-OPTIONS so_conn FOR  sflight-connid.
    DATA: BEGIN OF it_selscr_values OCCURS 0.
            INCLUDE STRUCTURE rsparams.
    DATA END OF it_selscr_values.
    START-OF-SELECTION.
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          curr_report     = sy-repid
        TABLES
          selection_table = it_selscr_values.  "here you have all parameters' values from selection screen
    "later in some other program you can use this table to call report A filling its selection screen with these default values like
    SUBMIT a WITH SELECTION-TABLE it_selscr_values.
    Regards
    Marcin

  • Launching Splash Screen on the click of a button

    Situation: I have an application running, and when the user clicks a button on the main menu, a new dialog opens.
    Problem: This dialog takes awhile to load as it is retreiving information from the database etc ... hence I would like to launch a splash screen in one thread and the other dialog in a second thread.
    Following is the Splash Screen class:
    public class SplashScreen extends JWindow {
        public SplashScreen(int d) {
            duration = d;
            this.launchSplash();
        public void launchSplash() {
            JPanel content = (JPanel) getContentPane();
            content.setBackground(Color.white);
            // Set the window's bounds, centering the window
            int width = 350;
            int height = 255;
            Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
            int x = (screen.width - width) / 2;
            int y = (screen.height - height) / 2;
            setBounds(x, y, width, height);
            // Build the splash screen
            JLabel label = new JLabel();
            label.setIcon(new ImageIcon(getClass().getResource("loading.gif")) );         
            label.setHorizontalAlignment(JLabel.CENTER);    
            content.add(label, BorderLayout.CENTER);          
            // Display it
            this.setVisible(true);
            // Wait a little while, maybe while loading resources
            try {
                Thread.sleep(duration);
            } catch (Exception e) {
            this.setVisible(false);
    //        System.exit(0);
    //    public static void main(String[] args) {
    //        // Throw a nice little title page up on the screen first
    //        SplashScreen splash = new SplashScreen(10000);
    //        // Normally, we'd call splash.launchSplash() and get on
    //        // with the program. But, since this is only a test...
    //        System.exit(0);
    //    }When I run this as a standalone, it works fine (i.e. uncomment the 'main' function). But when I try to call it from another function, it doesn't launch.
    Eg: I am calling it when a button has been clicked. Code is as follows:
        public void actionPerformed(ActionEvent e) {
         SplashScreen sd = new SplashScreen(10000);
         // Calling the dialog (that takes a long time to load) here
    }Would like to know whether
    [1] is it possible to launch a splash screen on the click of a button? As usually a splash screen is done at the beginning of an application before anything is loaded. In my case an application is already running, during which a splash screen needs to be launched.
    [2] Would using the new splashscreen class of Java 6.0 support this?
    [3] If not what is the best way to approach this problem
    Appreciate any input.
    Thanks,
    Edited by: mnr on Feb 20, 2008 9:47 AM

    Thanks Michael_Dunn, I see what you mean.
    I know this is not exactly as you suggested, but when I tried the following I got a partial solution. Just wanted to know whether I am on the right track.
    I wrote a small class for the thread
    public class cSplashScreenThread extends Thread {
        public volatile boolean finished = false;
        public cSplashScreenThread(){       
    // override run() method in interface
        public void run() {
           SplashScreen sd = new SplashScreen(10000);
        }This calls the SplashScreen(code encl in earlier post).
    In the main application I added the following
    public void actionPerformed(ActionEvent e) {
    // SPLASH SCREEN
    //                    SwingUtilities.invokeLater(new Runnable() {
    //                        public void run() {
                                cSplashScreenThread sd = new cSplashScreenThread();
                                sd.start();
                                sd.finished = true;
    // DIALOG
                        SwingUtilities.invokeLater(new Runnable() {
                            public void run() {
                          DialogToCall tempDialolog = new DialogToCall(.......);
                                tempDialolog .setVisible(true);
    :When I run this in the application, the SplashScreen does indeed appear(earlier I wasn't able to see the splashScreen), and I notice (when I put a breakpoint at the pt where it calls the dialog), that it is going and creating the dialog etc, but the dialog never appears ...... after the splash screen closes, nothing else happens!
    Could you please guide me on what best to do?
    Thanks,
    Edited by: mnr on Feb 21, 2008 11:19 AM

  • Display of data from DB table to screen

    i have added two date fields to the table MBEW by including a structure with 2 date fields. i want the data to displayed on the screen when the user retrives data.
    when i enter any data it gets saved in the DB table but when i try to read it from screen fields the date fields dont display any date they remain blank. i have set the attributes as input and output for the screen fields .
    please tell wats the problem.
    regards,
    Archana

    Hi archana,
              You have extended the standard table rt?
    So when you added these fields to the screen what is the reference structure you have taken to point to the screen fields.
    And does ur work area SAP contains ur custom fields?
    and also there is a standard procedure to extend the SAP screen.
    You better go through this link to understand it clearly
    Link: [Re: SCREEN EXITS]
    Reward points
    Thanks,
    Prasanna

  • How do i retrieve data from a powerbook whose screen lights up but displays nothing? I have a firewire and a second powerbook...

    how can I retrieve data from my old powerbook? It's screen lights up, but displays only pixelated blankness. I have a second powerbook and a firewire cable....

    It would probably be correct to assume that both PowerBook computers are equipped with FireWire. The article below could possibly be of interest to you. With a bit of luck, the old computer will be recognised.
    http://support.apple.com/kb/HT1661
    Otherwise, it may become necessary to open the old PowerBook and remove the hard drive. The drive can then be connected to an appropriate external USB adapter, and read via another Mac.
    Jan

  • Saving data from loops to excel file.

    Hello all,
    Okay I am jammed up on this topic.   What I have is two while loops in parallel and I need to save the data from each loop in the same spreed sheet but on different pages.  I don't know if this is possible.  If not then just one spreed sheet with the data saved in columns.
    On the one page I would need the Interlock data (supply pressure, return pressure, flow rate, and change in pressure) an on the next page I would need the power supply info,  (supply current, supply voltage, and voltage across the diode).  I also have a date time stamp and an operator initials and diode serial number that I would like to have on each page but not 100% a must just need to save somewhere in the file. 
    I have the data going into table and table two respectivly, but don't need to view the tables.  I just used them as a test to see if the data was being passed correctly.
    Any help would be much appriciated, and If anyone has any question about the problem I would be more then happy to answer them.  Thanks. 
    BTW I am using labview 7.0
    Attachments:
    TEST STATION.vi ‏588 KB

    As stated before in this thread the way you are currently doing it you are NOT using activeX and writing directly to Excel, you are just writing a tab delimited text file that you can open with excel or that you have set to open with Excel in windows. You will NOT be able be able to put your data on two seperate pages. You MUST use activeX with Excel to do this. Again have a look at the link posted above, search the forums for Excel, have a look at the activeX examples in LV. What you want to do is not hard you will just have to change your program to use activeX.
    I could do an example for you but I only have 8.20. Maybe I'll do one later today and post it to the excel board and then someone could convert it to LV 7 for you.
    Message Edited by Jhoskins on 11-10-2006 09:54 AM
    Joe.
    "NOTHING IS EVER EASY"

  • Saving data from BSP to table in SAP

    Hi,
      I am displaying some data from a standarad table using BSP in a browser....Now when we change anything and we want to save that data back to the database..
    Is it possible to save data from Screen to SAP standard table using BSP..
    Can anyone help me with sample code

    Hi,
    Yes, it is very much possible, But as per SAP suggestion we never update any SAP table directly, as many other tables are link with each other, so the better way is to update any table by means of calling BAPI's.
    Suggestions :
    1.Gather all changes reqd into an int table. Then use an ABAP statement - Export to memory and then submit and return command which executes a z program. Inside the zprogram, write a small code which will import the int table and then update the ztable.
    2.If you have the table in your BSP as an internal table (example: wt_mytable), and the ABAP table is called mytable, you can use this code:modify mytable from wt_mytable.
    This will add new entries and modify existing ones, based on the contents of your internal table wt_mytable.
    Hope this helps,
    Regards
    CSM Reddy

  • Hide First Operation sub screen from PM order main screen

    Hi,
    I want to hide first opeartion subscreen from Maintance order first screen.
    Is there any standard setting to hide this.
    Rakesh

    Rakesh,
    You mean the one at the bottom of the HeaderData tab?
    You could try the following:
    - Field-selection in the IMG (although I don't think this will work)
    - View profiles for the order (similar to notification config)
    - Transaction variants SHD0
    - Development
    PeteA

  • Saving data from 1d array of cluster of 2 elements: HP 8752 driver

    I'm using the following driver to communicate with my HP 8720C Network Analyzer
    http://sine.ni.com/apps/utf8/niid_web_display.down​load_page?p_id_guid=E3B19B3E9092659CE034080020E748​...
    ...So far I've easily been able to use the "collect and display data" vi, except for saving data. All I want to be able to do is save the data from a single sweep in spreadsheet format. Displaying the data is no problem, which I can then print, however, the output data file is a mess. The VI is rather complicated, and I can't figure out how to save the data in a nice pair of columns of numerical values.
    The VI's output data is in the format of a 1 dimensional array of clusters of 2 elements (ie the x-y values). I would've thought it would be trivial to do this, since this is the standard format for data for the classic X-Y graph. So far, I haven't been able to come up with anything. Any ideas?
    Thanks,
    Spence

    Feed the array of clusters into a for loop with autoindexing enabled (the default). Inside the loop use the Unbundle primitive to extract X and Y for one point. Use Build Array to make a two-element array from X and Y. Wire this array out of the for loop and you will have a two dimensional array with two columns and as many rows as there are elements in the array of points.
    Lynn

Maybe you are looking for