Generate button

Hello guys..
What is the importance of 'generate' button while making condition tables in a condition technique?
Explaine how to create or maintain condition tables in condtion technique in step by step manner.
And also explain the importance of each step.
Thanks in advance
regards
vamshi

A condition table is a work bench request because you are creating a database table in the backend.
When a workbench transport is created, just saving the object will not activate it. Whenever we create or change a workbench object, we need to generate it. Even while creating programs, we need to generate them .Only during generation, the relevant objects will be made active.
So during condition table creation, after doing all the configuration, we have to click this Generate button. If we just save it, then the condition tables will not be activated.
Hope this helps you
Pls reward if this helps you

Similar Messages

  • Generating buttons and listboxes dynamically on the screen

    Hi people!!
    There's a way to generate buttons and listboxes dynamically on the screen????
    Tks in advance
    Gabriel

    hi check this..
    Dynamic drop down list box

  • Text Generator button won't work

    I am in the middle of getting a project done for this Monday. Last night, I was able to use the text generator button in the viewer. Today, it won't work. What have I done to disengage it? Help is needed quickly.
    Thanks.

    Yes, it is a drop-down menu and when I clicked on it, nothing happened—not even the tool tip. However, I just figured out the problem. Somehow, late last night when I was working, the cat began walking on the computer desk and keyboard. In my haste to get him out of the way, I must have clicked on the choice to show my preferred transitions and such only. I had been exploring some of the menus looking for a feature I couldn't remember how to access. Once I clicked on show all just now, I was back in business. Before I did that, I couldn't see any of the transition choices or other options under Effects. Whew, that's a relief. Now, keep your fingers crossed there are enough hours left in this weekend for me to finish this project before I have to show the presentation on Monday night. Off to get more coffee. Thanks for trying to help.

  • Generate buttons dynamically

    Is there a way to generate buttons (or other items) dynamically (at run time) using Forms 10g? I am aware of the common technique of creating multiple items and manipulating their visibility dynamically. I'd like to know if there is a way to avoid this.
    Perhaps there is a way to do it through Java plug-ins. But I am not familiar with Java, so I am mostly interested in native Forms methods.
    I know there is a way to do it in Access, so perhaps Forms have it as well.
    Thank you!

    How flexible are java beans?In general, java-beans in forms are used to enhance the functionality or add some piece of UI-experience which is not standard in forms. So the question is, what functionality are you missing for a "pure" forms-solution?
    perhaps you have experience with both jdeveloper and java-beansYes i do, but thats comparing apples to peaches. JDeveloper is a tool to write any kind of java-applications, java-beans in the sense of forms are "widgets" you can use inside a forms-application.
    What kind of application do you want to develop? Is is data-driven, is it a graphical application?
    What are the requirements for it? Does it have to be web-based, will be used in intranet and/or internet?
    Do you already have forms-applications and the infrastructure you need for it (such as an application server)?
    There are a lot of questions which can lead to a decision for forms or any other kind of application-architecture.
    Most items on my interface will be non-database controls. They will serve mostly to enter parameters and launch stored procedures.So they are static dialogs ? Why then the need for java-beans?

  • Add an action listener to a dynamically generated button...

    The use case is that i generate programatically some RichCommandButton(it's oracle ADF) and wanna associate with that button a method (as i do statically in .jspx [actionListener="#{method that has ActionEvent as parameter}"])...
    Problem is that i get {code}java.lang.IllegalArgumentException: wrong number of arguments{code} when i press the button...
    My code is as follows:
    {code}
    RichCommandButton closeBtn = new RichCommandButton();
    closeBtn.setText("X");
    // next to bind it to an action
    FacesContext faces = FacesContext.getCurrentInstance();
    Application app = faces.getApplication();
    ExpressionFactory ef = app.getExpressionFactory();
    MethodExpression me =
    ef.createMethodExpression(faces.getELContext(),
    "#{backingBeanScope.backing_untitled1.remove}",
    Object.class,
    new Class[] { ActionEvent.class });
    closeBtn.setActionExpression(me);
    // Add components
    toolbar.getChildren().add(closeBtn);
    {code}
    and the remove method is :
    {code}
    public void remove(ActionEvent actionEvent) {
    // Add event code here...
    System.out.println("s-a declansat remove");
    {code}
    Can anyone help with this... it more JSF than ADF...
    thanks,
    kquizak

    You need UICommand#addActionListener() rather than UICommand#setActionExpression().

  • KeyEvent on dynamically generated Buttons - AWT

    hi,
    I have posted the below in Swing forum and was adviced to post this type of questions in AWT forum. I got a solution jbutton.setMnemonic(int keycode) and that can be used only in JButton, I believe.
    Is there anything similar we can use in Button. Below is the post. Could someone please help ?
    I have an app, which builds <n> number of buttons reading from an XML file.
    Below is the code that generates the buttons
      Button btn[];
         for (int i=0; i<strBtnValue.length; i++) {
            btn[i] = new Button(strBtnValue[1]);
    btn[i].setForeground(getColor(strBtnForeground[i][1]));
    btn[i].setBackground(getColor(strBtnBackground[i][1]));
    btn[i].setBounds(intX_btn, intY_btn, intW_btn, intH_btn);
    intX_btn = intX_btn + 140;
    btn[i].setFont(strBtnFont);
    btn[i].addKeyListener(this);
    add(btn[i]);
    public void keyReleased(KeyEvent e) {
    int keyCode = e.getKeyCode();
    if (keyCode == 68) { // key D is pressed
    System.out.println("Released D");
    }I need to assign 'keyboard D' to a button. And when 'D' is pressed, i want to get the attributes for that button. Could anyone shed some light ? Let me if this is not a clear explanation.
    Thanks in advance.
    Edited by: Sathanga on Feb 13, 2008 7:00 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Is this what you're looking for?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ButtonTest extends JFrame implements KeyListener {
         public ButtonTest() {
              JPanel cp = new JPanel(new BorderLayout());
              Button b = new Button("Button 1");
              b.addKeyListener(this);
              cp.add(b, BorderLayout.LINE_START);
              b = new Button("Button 2");
              b.addKeyListener(this);
              cp.add(b, BorderLayout.LINE_END);
              setContentPane(cp);
              setTitle("Button Test");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              pack();
         public void keyPressed(KeyEvent e) {
         public void keyReleased(KeyEvent e) {
              if (e.getKeyCode()==KeyEvent.VK_D) {
                   Button b = (Button)e.getSource();
                   String buttonText = b.getLabel();
                   System.out.println("'D' key released for button: " + buttonText);
         public void keyTyped(KeyEvent e) {
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        new ButtonTest().setVisible(true);
    }

  • KeyEvent on dynamically generated Buttons

    hi,
    I have an app, which builds <n> number of buttons reading from an XML file.
    Below is the code that generates the buttons
         for (int i=0; i<strBtnValue.length; i++) {
            btn[i] = new Button(strBtnValue[1]);
    btn[i].setForeground(getColor(strBtnForeground[i][1]));
    btn[i].setBackground(getColor(strBtnBackground[i][1]));
    btn[i].setBounds(intX_btn, intY_btn, intW_btn, intH_btn);
    intX_btn = intX_btn + 140;
    btn[i].setFont(strBtnFont);
    btn[i].addKeyListener(this);
    add(btn[i]);
    public void keyReleased(KeyEvent e) {
    int keyCode = e.getKeyCode();
    if (keyCode == 68) { // key D is pressed
    System.out.println("Released D");
    }I need to assign 'keyboard D' to a button.  And when 'D' is pressed, i want to get the attributes for that button.  Could anyone shed some light ? Let me if this is not a clear explanation.
    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    In the future Swing questions should be posted to the Swing forum: http://forum.java.sun.com/forum.jspa?forumID=57
    Your mistake is that you are using KeyListener - this is only valid if you want to listener to the keyboard when the component has focus.
    Instead, you should set a mnemonic: http://java.sun.com/javase/6/docs/api/javax/swing/AbstractButton.html#setMnemonic(int)
    Or work with keyboard bindings: http://java.sun.com/products/jfc/tsc/special_report/kestrel/keybindings.html

  • Program generated button click

    How can I make my program "click" one of the JButtons in the user interface?
    I have a menu item and a JButton, both created with a subclassed AbstractAction.
    Somewhere in my program I want to trigger the same sequence of events which would occur if the end user clicked on the button or the menu item.

    Yes, I'm new to forums. I thought, in retrospect, that this was a better place to post this question.
    By the way, do you have an answer to the question?

  • Generating buttons Please Help!

    Hey All,
    I'm not sure if this is a dreamweaver issue or fireworks,
    both versions are mx 2004 that I have. The person I replaced made a
    web page on cd with a very in depth hyperlink structure. The main
    page has 5 links and each of those leads to other pages with
    hundreds of more links. I don't know how or why but somehow he
    generated the .jpg's being used as the link image which gives me
    more than 1500 .jpg's in this one site. I need to change the
    wording on some of them but they're images so I'd have to edit them
    one by one, figure out the matching font and such. I know he would
    not have set it up this way and the creation timestamp on each .jpg
    shows that they were created within milliseconds of each other
    meaning (to me anyway) that they were generated somehow. Does
    anyone know how you can generate .jpg's like this?

    Hi there,
    Thanks so much for your response.
    I managed to sort out the problem in a round about way. I had to get into the code itself and add a switch statement into the php code. But I really thought Dreamweaver was suppossed to do that sort of stuff for you.
    Maybe I'm just really stupid, but I had two other engineers helping out and then I got the code to insert and it finally works.
    Regards,

  • How to generate button action in another JPanel?

    I want to get a line draw in another JPanel 2 when I click the button in JPanel 1.
    Can I acheive it in any way?

    give JPanel 1 a pointer to JPanel 2
    add an actionlistener to the button in JPanel 1
    with some code like
    JPanel2.addLine();

  • Button is generated at runtime how to hide it in WD4A

    Hi Experts,
    i am using SAles processing application thru Portal , there i have Customer search in the customer search iview i want to hide create sales order button.
    i found the technical details by using personalization option
    Technical Information for UI Element
    General Information About the Application and Component
    Application: POWL
    Web Dynpro Component: SALV_WD_TABLE
    Window Information: TABLE
    View Information: VIEW_TABLE
    Configuration ID: O200705080740527294200
    Information on Field
    Field ID: F_CREA
    Type of UI Element: TOOLBAR_BUTTON
    UI Element Library: STANDARD
    Attributes of UI Element
    List of Attributes
    Attribute Name Value Context Path Type
    COLLAPSIBLE      
    DESIGN standard (00)    
    EXPLANATION      
    TEXT Create Sales Order    
    IMAGE_FIRST X    
    IMAGE_SOURCE      
    TEXT_DIRECTION inherit (02)    
    ENABLED      
    TOOLTIP      
    VISIBLE visible (02)    
    ON_ACTION      
    VALUE_HELP_KIND      
    VALUE_HELP      
    what i found is Create sales order button is generated dynamic at runtime , how to hide dynamic generated button.

    Hi,
    First you need to figure out where the button is being dynamically generated. Then you can use the enhancement framework to hide the button (Change the visibility of the button) once it is generated. The enhancement framework allows you to add code at certain positions within the application. You will have to find a point after the  button is generated.
    Hope this helps
    Wenonah

  • Jquery + json generate html buttons with condition

    Hi all,
    My need is to generate buttons with conditions described in json. Help me please, I’m newbie.
    Here is my json code (it is valid, but does not work with html code below) :
        "Caption": "Module caption",
        "IconsDirectory": "C://Images/",
        "Buttons": [
                "Conditions": [
                        "ConditionText": "1 == 1",
                        "ButtonText": "Text1",
                        "Visible": true,
                        "Colors": {
                            "FontColor": "#FFFFFF",
                            "BGColor": "#00FF00"
                        "Size": {
                            "Width": 200,
                            "Height": 50
                        "Icon": {
                            "FileName": "Smile.png",
                            "Width": 16,
                            "Height": 16
                        "Url": {
                            "UrlAddress": "http://www.google.com",
                            "OpenNewWindow": true
                        "JavaScriptAction": {
                            "Text": "alert('ok');"
                        "ConditionText": "2 == 2",
                        "ButtonText": "Text2",
                        "Visible": true,
                        "Colors": {
                            "FontColor": "#FFFFFF",
                            "BGColor": "#00FF00"
                        "Size": {
                            "Width": 200,
                            "Height": 50
                        "Icon": {
                            "FileName": "Smile.png",
                            "Width": 16,
                            "Height": 16
                        "Url": {
                            "UrlAddress": "http://www.google.com",
                            "OpenNewWindow": true
                        "JavaScriptAction": {
                            "Text": "alert('ok');"
    html code:
    <html>
    <head>
    <title>SMButtons</title>
    [removed][removed]
    [removed]        
    //When document loaded.
    $(document).ready(function(){  
    // Get data from file as JSON
                $.getJSON('weekendtask.json', function(data) {
            var buttons = data.Buttons;
               $.each(buttons, function(key, val)
                        $('<li><input type="button" value="'+ val.ButtonText +'"/></li>').appendTo('#ulObj');
       [removed]
    </head>
    <body>
    <br>
    <br>
    <div>
    <ul id='ulObj'>
    <li>1</li>
    <li>2</li>
    <li>3</li>
    </ul>
    </div>
    </body>
    </html>
    Also I would like to show here my working code (generating html buttons from json without condition).
    json code (it works) :
        "Caption": "Module caption",
        "IconsDirectory": "C://Images/",
        "Buttons": [
                "TText": "google",
                "JavaScriptAction": "alert('google')"
                "TText": "microsoft",
                "JavaScriptAction": "alert('microsoft')"
                "TText": "yahoo",
                "JavaScriptAction": "alert('yahoo')"
    html code (it works) :
    <html>
    <head>
    <title>SMButtons</title>
    <script src="jquery/jquery-1.4.2.js"></script>
    <script type="text/javascript">                 
    //When document loaded.
    $(document).ready(function(){  
    // Get data from file as JSON
                $.getJSON('Module.json', function(data) {
                // Set json data from file to variable 'persons'
        var buttons = data.Buttons;
        var icondir = data.IconsDirectory;
        // For each item of variable person append to ul list
               $.each(buttons, function(key, val)
                        //$("<li><input type='button' onClick='"+ val.Url +"' value='"+ val.Text +"'/></li>").appendTo('#aaa');
    //$("<li><input type='button' style='"+ val.Style +"' onClick='"+ val.Url +"' value='"+ val.Text +"'/></li>").appendTo('#aaa');
    //$("<li><input type='button' value='"+ val.TText +"'/></li>").appendTo('#bbb');
                        //style="height: 25px; width: 100px"
                        //$('<li><input type="button" onClick="'+ val.action +'" value="'+ val.Text +'"/></li>').appendTo('#aaa');
                        $('<li><input type="button" onClick="'+ val.JavaScriptAction +'" value="'+ val.TText +'"/></li>').appendTo('#ulObj');
        //var knop = data.Knop;
        // For each item of variable person append to ul list
               //$.each(buttons, function(key, val)
                        //$("<li><input type='button' onClick='"+ val.Url +"' value='"+ val.Text +"'/></li>").appendTo('#aaa');
    //$("<li><input type='button' style='"+ val.Style +"' onClick='"+ val.Url +"' value='"+ val.Text +"'/></li>").appendTo('#bbb');
                        //style="height: 25px; width: 100px"
                        //$('<li><input type="button" onClick="'+ val.action +'" value="'+ val.Text +'"/></li>').appendTo('#aaa');
                        //$('<li><input type="button" onClick="'+ val.action +'" value="'+ val.Text +'"/></li>').appendTo('#aaa');
       </script>
    </head>
    <body>
    <br>
    <br>
    <div>
    <ul id='ulObj'>
    <li>1</li>
    </ul>
    </div>
    <br>
    <div>
    <ul id='aaa'>
    <!--<li>1</li>-->
    </ul>
    </div>
    <!--<button type="submit" style="height: 95px; width: 550px"> </button>-->
    <!--background: url('img/submit_button.jpg'); background-position: center; background-repeat: no-repeat;  background-color:Transparent;-->
    <div>
    <ul id='bbb'>
    <!--<li><img src="img/submit_button.jpg"/></li>-->
    <!--<li>Button caption</li>-->
    </ul>
    </div>
    </body>
    </html>

    What you are saying makes great sense. It's just the mechanics behind what you've said that I'm unclear about.
    <p>
    Are you saying to create another button within the same region with the same attributes/position, so they overlay each other? Then set the conditions on both buttons?
    <p>
    If I understand the above correctly, then how do I set the conditions? I guess I'm asking where do I place the SQL statement and how does the results relate to the button conditions?
    <p>
    Thanks for the help,
    David

  • Generate Databasis Button

    Hi Friends,
    When I  log-in to SEM BCS workbench/ using TCODE:UCWB, to Create Databasis.>Selected the required objects, in Field catalog & roles in Data Model Tabs.>Selected the generate totals record infoprovider,generate Rep. cube, multiprovider, infoprov MP,-->But I need to press generate Button which is now disabled by default . How to enable this button.Even our basis guy's are unable to solve this. Now I am able to generate the databasis by clicking the save button, as Generate button is disabled.
    Any suggestions on this please ?
    Regards
    CSM Reddy

    Thanks for info.
    Below is the note's text:
    Symptom
    The Generate button on the detail screen of the Data Basis, located on top of the Data Streams tab, is available in change mode and even in the case that there are unsaved changes. This can lead to an inconsistency between the generated state of the ODS objects compared to the saved state of your data basis, e.g. if you undo or cancel your intermediate changes after you have generated.
    Reason and Prerequisites
    Program error: The Generate button must not be available in change mode. You have to use the Save button instead, and any necessary generation will be triggered automatically by the system during the save process. Only in display mode, the Generate button should be available.

  • Problem setting a hidden item value when button clicked with dynamic action or pl/sql process

    Apex 4.1
    Oracle 11g
    I have a page that consists of a main region and several sub regions.  I have a pl/sql process in After Header SET_DISPLAY(:P400_DISPLAY :='MAIN';)
    Three subregions have a contional display where P400_DISPLAY = STORE.  This works in hiding the sub regions.
    Now I want to change the P400_DISPLAY value to STORE to show the subregions when I hit a button.
    I tried creating a dynamic action for on click of the add button but get the following error:
    The selected button uses a 'Button Template' that does not contain the #BUTTON_ID# substitution string
    I went to the templates and found:
    Substitution Strings
    Substitution strings are used within sub templates to reference component values. This report details substitution string usage for this template.
    Substitution String
    Referenced
    From
    Description
    #LINK#
    Yes
    Template
    To be used in an "href" attribute
    #JAVASCRIPT#
    No
    To be used in an "onclick" attribute
    #LABEL#
    Yes
    Template
    Button Label
    #BUTTON_ATTRIBUTES#
    No
    Button Attributes
    #BUTTON_ID#
    No
    Generated button ID will be either the button's Static ID if defined, or if not will be an internally generated ID in the format 'B' || [Internal Button ID]
    I then tried creating a page process, pl/sql, :P400_DISPLAY :='STORE'; when the appropriate button is pressed.  The button action is submit page. However, it does not change the P400_DISPLAY value and the subregions stay hidden.
    Suggestions please on how to fix the template or change the P400_DISPLAY value?

    The root issue is that, although you change the value of your page item, it isn't visible to other areas of the page until it is in the session. So, any other action based on the value of your page item; the visibility of a control, a report based on the item's value, etc. will all be unaffected by changing the value of the page item until it has been changed in the session. Even after this the items are stored in the session, you must thereafter do something to cause the value to be reevaluated. To see the effect of this, observe that your page loads and evaluates the value of your page item, it sees that is "MAIN" and hides the regions. However, it doesn't reevaluate them after this.
    So; your choices to get this value set in the session are to either Submit the page, or use JavaScript to set the value in the session. If you use the latter of these, you'll have to do some further work to cause the visibility tests to be re-run, So, let's stick with with the submit method.
    What you've done above sounds correct for this but, there are a lot of decisions you could have made that might have caused things not to happen in the correct sequence.
    Firstly, let's confirm that what I describe above is your problem. From the development environment, load the page, click the button to change the value and submit. Now, click the link labelled Session. Is it still set to MAIN? If so; this is your issue.
    Let's start with the your After Header computation. Did you set it to *only* run if the current value of your page item is NULL??? If not, that's your problem.
    Load Page -> Item set to 'Main' by Computation -> Click Button -> Item set to STORE -> Submit -> Load Page -> Item set to 'Main' by Computation
    See the problem?
    Assuming this isn't the issue, you created a Branch to the same page, right? What is your process point for the Branch? Is it *After* Validation, Computation etc? Because if not, you aren't changing the value before the submit happens.
    I bet it is the first issue but, take a look at these.
    Cheers,
    -Joe

  • Button based on data is not working in form/ report / region

    create or replace procedure "BUT2"
    is
    begin
    declare
    cursor c1 is select plot_id,plot_status from re_plot;
    tno number;
    v1 varchar2(500);
    c2 c1%rowtype;
    begin
    open c1;
    loop
    tno := nvl(tno,0) + 1;
    fetch c1 into c2;
    exit when c1%notfound;
    if c2.plot_status='BLOCKED' then
    v1 := v1 || ' ' ||'<input inline type =submit style="color:BLUE;background-color:RED" value='||c2.plot_id||'>';
    else
    v1 := v1 || ' ' ||'<input inline type =submit style="color:ORANGE;background-color:GREEN" value='||c2.plot_id||'>';
    end if;
    if mod(tno, 4)= 0 then
    --v1 := v1 || '<br/>' || ' ';
    htp.p(v1);
    v1 := null;
    end if;
    end loop;
    close c1;
    htp.p(v1);
    end;
    end;this above procedure works fine in SQL Command browser. I am unable to make it as page form / report.
    My requirement is i want to bring this images in form / report. Based on click button, the value need to be parsed to other page?
    how to do it?
    yours
    andi_raj

    is not working Insufficient information. In what way is it "not working"? The page doesn't render as required? There's an error message? The browser crashes? The server room has been trampled into dust by a herd of buffalo?
    >
    I am unable to make it as page form / report.
    v1 := v1 || ' ' ||'<input inline type =submit style="color:BLUE;background-color:RED" value='||c2.plot_id||'>';
    ...It is not possible to generate form elements in an APEX page in this way. The [APEX_ITEM API|http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/apex_item.htm#CACEEEJE] is the only way to create APEX items in PL/SQL. However it contains no procedures to generate button items, so an alternative design is required in this case, e.g. a report with links.
    (Also what is the intention of "inline" in the above code? [There is no *inline* attribute|http://www.w3.org/TR/1999/REC-html401-19991224/interact/forms.html#h-17.4].)

Maybe you are looking for

  • ALV problem (with filter use)

    Hi all !! When setting a filter on ALV grid (called with fm 'Reuse_alv_grid_display') after enter, the selection field are truncated at 10 bytes, also using a match code . the result of the list is consequently mistaken. Somebody know how to fix that

  • Disc Burning Issue

    I've been burning discs forever but suddenly I have an issue. I'll place a new disc into the drive and I get the usual box that states, "You inserted a blank CD. Choose an action...blah blah blah". I click OK and move onto my Burn Disc Folder. When I

  • Error Code 0xc000185

    Two weeks ago I purchased a brand new HP notebook HP 15-p091-sa as a Christmas gift for my son.  I'm dismayed to find that it is already displaying the following message on a blue screen:  "Recovery - Your PC needs to be repaired.  A required device

  • Oracle10g How to configure HTTPS to access EM in Linux

    I have installed Oracle10g on Linux Enterprise Server on XEON-based server. I can run Oracle Enterprise Manager (EM) via http://127.0.0.1:5500/em Since EM will be unsafe to run on the Internet without SSL, does any one knows how to configure and enab

  • I have had a iphone for a while with icloud and photo stream for my photos now i just put i cloud on my windows 8 now what?

    I have had icloud on my iphone 4 for a while have all my photos in photo stream i just now have windows 8 on my new laptop set up icloud and now i have no idea how to transfer my photo stream photos to my laptop or  itunes all with same account