Run report then How we can set it maximize utomaticaly

PLEASE HELP ME REGARDING THIS ISSUE
HOW CAN I MAXIMIZE REPORT IN DEVELOPER 6.0 REPORTS BUILDER AUTOMATICALY
REGARDS
AHMAD

ahmad,
you seem to have landed in the wrong forum
this one is for html db only
scott

Similar Messages

  • Run report then How we can set it maximize Automaticaly

    I M USING DEVELOPER 6.0 REPORTS
    I WANT TO MAXIMIZE REPORT WINDOW ON RUNING AS LIKE FORS MAXIMIZE BY SETTING PROPERTY IN WHEN_NEW_FORM_INSTANCE TRIGGER
    HO CAN I MAXIMIZE IT AUTOMATICALY WHEN REPORT RUN
    PLEASE HELP ME
    REGARDS
    AHMAD

    Dear Phillipp and Ahmad
    One possible way to call the report in maximize order is, to add a parameter list of report to be called:
    add_parameter(pl_id,WINDOW1,'MAXIMIZE');
    The output will be maximized window.
    Secondly, from the command line you can use this syntax:
    rwrun60.exe report=my_report userid=un/pw@db maximize=yes
    tofa
    lahore,pakistan

  • How i can set break point in standard sap modulepool

    how i can set breakpoint in standard sap modulepool

    If you know the program name, it is no different from normal setting of break point.
    It will have a break point button in the abap editor.
    Place the cursor on the line and set the break point.
    Then run the transaction in another session.
    Or type /h from the transaction itsefl to start the debugging.
    see the wiki faqs section for debuging
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+debugger&
    Regards,
    Ravi

  • I have an Ipad 2 and here is what I am trying to accomplish.  On my laptop I connect to a remote desktop connection to access a shared program we use for reporting.  How do I set up my Ipad to access this remote server?  Thanks for the help.

    I have an Ipad 2 and here is what I am trying to accomplish.  On my laptop I connect to a remote desktop connection to access a shared program we use for reporting.  How do I set up my Ipad to access this remote server?  Thanks for the help.

    Close ... before going for a specific Cisco app ... lets find out some details:
    Host we need more details:
    What is your server environment (Windows Server, or Mac OS X Server, or Linux)?
    What security is implemented in your environment - as what is restricted (RDP for all or specifc credentials on all machines? Are you part of local admin group to the server you wish to connect)?
    Does your environment Support CISCO IPSec connection? If so use Settings> VPN and IPSec tab to enter VPN details, if not then go with above suggestion. IF your restricted to RSA then either built in VPN settings or 3rd party app for RSA would suffice.
    Finally, there are many RDP applications out there I use "Mocha RDP Light" (free minimal ads when launched not when connecting).

  • How i can set size of editor at runtime?

    dear all,
    How i can set size of editor at runtime?
    The size of editor is good when I run form on windowX but so small on web . why? have any body call tell me how i can do?
    thank for advance

    Hi there,
    You can use the builtin EDIT_TEXTITEM.
    You can pass x-pos, y-pos, width and height as parameters to that.
    Hope this helps

  • How I can set Leopard to use the color management mixture that Tiger uses?

    I have recently bought a new Mac with Leopard installed. My old Mac is running Tiger. Unfortunately the color management default settings in Leopard are different than in Tiger, so this is completely messing up my calibration. Can somebody please tell me how I can set Leopard to use whatever color management mixture that Tiger uses? - Thanks.

    I already have set FF to No Proxy. This made FF work again, but not any of my other internet programs, programs that don't have the option to set to no proxy, they rely on the system settings. So I need to know how to reset my system settings back to their default values. This will allow all my net progs to access the net again, including FF using the Use System Settings option. Since FF has an option to use system settings, this is a somewhat FF related question. I need to get all my net programs working again, not just FF! And, if my system settings are restored, FF will work using the system settings, and all my other progs will work too.

  • HT5312 I forgot my security questions and  I don't have a rescue mail, how I can set new questions? Or retrieve the old?

    I forgot my security questions and  I don't have a rescue mail, how I can set new questions? Or retrieve the old?

    Apple ID Security -
    Telephone Apple Care for your country and ask for the Account Security Team, then request help resetting the questions.

  • How I can set up the DynDns inside the Time capsule, or only with the Time capsule I have external access from a PC for ex.?

    How I can set up the DynDns inside the Time capsule, or only with the Time capsule I have external access from a PC for ex.?

    MobileMe service is finished.. to get remote access to the Mac or TC you use iCloud account.. but that is for files.. not to access web cams.
    Without dyndns client in the TC, you can perhaps run dyndns on the computer or video recorder..many of these will have clients built into them.
    Even better get a static Public IP from your ISP.. that is the correct professional way to do it.
    Or you can use whatever broadband modem you have and remove the TC as the main router.. simply bridge it. Use your adsl router for connection. Almost all adsl have built in dyndns.
    Sorry your language is very hard to follow.. and I am sure you are finding my answers similarly difficult.
    Basically the TC is about the hardest device to setup because it is lacking important networking functions.
    Get a vpn router and use vpn connection is far superior to any other method. But you cannot do it with TC.

  • Please tell me how I can set an array field to an object?

    Hi,
    Please tell me how I can set the plID (an array field) to an object? This result is for one Agent object. Suppose the Agent object only has these two fields.
    If a sql query result is something like this (which is one object).
    agent_last PLID
    smith      5
    smith               6
    smith               7
    Agent agent = new Agent();
    StringBuffer sql = new StringBuffer();
    int count = getPLNo(agentID);// # of the query result
    try {
    SQL tsql = new SQL();
    Connection conn = tsql.getConnection();
    sql.append("SELECT agent_last, b.PLID ");
    sql.append("FROM Agent a, PL b ");
    sql.append("where a.agent_id = b.agent_id ");
    sql.append("and a.agent_id = ? ");
    PreparedStatement st = conn.prepareStatement(sql.toString());
    st.setInt(1, agentID);
    ResultSet rs = st.executeQuery();
    while (rs.next()) {
    agent.setAgentID(agentID);
    agent.setAgentLast(rs.getString(1));
    for ( int i = 0 ; i < count; i++ ) {               //how to do it?
    agent.setPrivateLabelID(new int[] {rs.getInt(2)});//how to do it?
    st.close();
    rs.close();
    tsql.close();
    } catch (SQLException e) {
    System.out.println("SQL: " + e.getMessage());
    throw new Exception(e.getMessage());
    } catch (Exception e) {
    System.out.println("Except: " + e.getMessage());
    throw new Exception(e.getMessage());
    return agent;
    }

    If that's not what you're looking for, then you get
    what you pay for. :-)Hi fmeyer75,
    Thank you very much for your input. That's exactly what I was looking for and it works!!!!
    For anyone who has similar issue, I changed the code a little to make it work with my existing ones. I never splited queries before, so please tell me if there's a better way to handle it.
    I keep the first half part and changed a little for the second half. Below is what I use now
    sql.setLength(0);
    sql.append("SELECT PLID ");
    sql.append("FROM PL ");
    sql.append("where agent_id = ? ");
    List list = new ArrayList();
    PreparedStatement st2 = conn.prepareStatement(sql.toString());
    st2.setInt(1, agentID);
    ResultSet rs2 = st2.executeQuery();
    while (rs2.next()) {
                 list.add(new Integer(rs2.getInt(1)));
    agent.setPrivateLabelID(new int[list.size()]) ;
    for ( int i = 0 ; i < list.size(); i++ ) {
    agent.getPrivateLabelID() = ((Integer)
    list.get(i)).intValue() ;
    st.close();
    rs.close();
    st2.close();
    rs2.close();

  • I changed my ISP, how I can Setting up my Time Capsule ?

    Recently, I changed my ISP, how I can Setting up my Time Capsule again?

    Hello. I jus tbought mine and will be setting up shortly. So I am only guessing here, based on how my airport extreme base station acted when I switched once. When you connect the ethernet to it, it should simply find the signal,a nd prompt you for the password information that you set up with the new ISP.
    If not, please report back how it goes..

  • I have replaced my airport extreme with a new airport time capsule and want to know how I can set up my extreme to extend/strengthen my Wi-Fi?

    I have replaced my airport extreme with a new airport time capsule and want to know how I can set up my extreme to extend/strengthen my Wi-Fi?

    Start with a "hard reset" (see below) then use AirPort Utility to configure it.
    When asked what you want to do with it, indicate that you want it to add to an existing network, similar to the following screenshot.
    Follow the prompts that will eventually lead you to the words "wirelessly extend..." as shown.
    To "hard reset" an AirPort Base Station: make sure it's powered up, then press and hold its tiny reset button and keep it depressed for five to ten seconds, long enough for its LED to flash amber rapidly. Release the reset button. Then, the LED will glow amber steadily for about a minute. Then, it will flash amber, slowly, about once every second or two, waiting for you to configure it with AirPort Utility.

  • How i can set the selected item of a dropDown component from java code

    Hi
    Thank you for reading my post
    How i can set the slected item of a DropDown component from backing beans java code ?
    it is binded with a database , so one field determine its display and one other field determine its value , I want to set the selected item of this combobox
    In back code i have both value and display values to use them .
    can some one give me some help ?
    Thanks ,

    See code sample 3 at http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/helloweb.html
    See also, the selection components row in the table under http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/helloweb.html
    It says
    One way to preselect items is to call setSelectedValue(Object[]) or setSelectedValue(Object) from the prerender() method. You pass in the return values of the items that you want preselected. Be sure to verify that getSelected() returns null before setting the default options, or you will overwrite the user's selections on a post-back.

  • I have family plan of 5 iphones and all them have the same apple id, the q. is how I can set each one with their own apple id? please advise...

    I have family plan of 5 iphones and all them have the same apple id, the q. is how I can set each one with their own apple id? please advise...

    See How to Stop Sharing an Apple ID.
    (Note that I am affiliated with that site, and some pages contain ads).

  • How I can set the Non-standard option of -Xmxn of jvm

    Hi there,
    Can any one tell me how I can set the Non-standard option of -Xmxn of jvm (setp by step).Iam using Sun's jvm(jdk1.2.2).Iam facing a error(java.lang .OutOfMemory).I want to set the maximum size of the memory allocation pool.Any help will be highly appreciated.
    Thanks for ur valuable Time
    Bikash

    you can use the following sample options to specify memory size.
    EX:java -Xms128mb -Xmx512mb myClassFile

  • How i can set dropDown item to 6th item from java code ?

    Hi
    Thank you for reading my post.
    how i can set dropDown item to 6th item from java code ?
    i have the value field of database and i can use it to set selected item of DropDown.
    so : can i use value field to set the selected item ?
    Thank u.

    Hi,
    Please go through the following thread which discusses about setting teh selected item for a dropdown:
    http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=50697
    Hope it helps
    Cheers
    Giri

Maybe you are looking for

  • Hide a Row in Pivot table depending on condition

    Hi , I am using pivot table which is in below format. I--------------------date 1 | date 2 | date 3| new calculated item measure 1 v1 v2 v3 v4 measure 2 v5 v6 v7 v8 measure 3 v9 v10 v11 v12 measure 4 v13 v14 v15 v16 now i need to hide the date 2 (ie

  • Safari Wont Load Any pages

    Yea for some reason safari will not load any websites at all, IE works fine, i have tried reinstalling safari as well but still wont work. Anyone know why its doing this ?

  • Exception caught: error reading

    Hi, I have a problem with the following code. I tried in the public class ListOfRncs to read in the file location of the input and output files. hence, with a         while(((inFileLocation = inFileUserInput()).equals("end")) != true){               

  • Maintaining Regulatory without Content Provider

    Hi All, I came across a client for our company who are not ready for content providers (like 3E, SERC, LOLI). Anyone worked for a client without having the content provider ? If yes, have you enter the regulatory data manually for the specification ?

  • Project Start Date and End date

    Dear all I am working in Product Life cycle managerment. PLM dept. will be creating a project in Cproject. I need to find out project start date and enddate for a particular project. I got one table in PLM server like CGPL_PROJECT and R/3 view VIAOM_