Calling the same controller in Weblogic portal 10.3.2

In weblogic 8.1 calling the same controller instance (different action) is very simple.... just pass on the jpfScopeId in the request parameter as per the code below
function openActionInNewWindow(index){
<%
PortletPresentationContext ppc = PortletPresentationContext.getPortletPresentationContext(request);
String jpfScopeId = ppc.getInstanceLabel();
%>
url = "/someApp/portlets/somePath/someAction.do?index="+index;
url += '&jpfScopeID='+'<%=jpfScopeId%>';
alert(url);
extWindow = window.open(url, 'second', 'title=Breaking News,width=650, height=300,toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,resizable=yes');
extWindow.focus();
How do we do the same in Weblogic portal 10.3.2? I tried the above code but its invoking a new instance of the controller. I want to call the same controller instance as some instance variables in the controller are being used across different actions.

No, there isn't problem show in log. I don't know why... Please suggest me or help me.
Thanks in advance!
Best Regards,
Coy.

Similar Messages

  • NSArray of UIButtons calling the same function

    I've been thinking and searching and I can't figure it out. I've come across these two threads which seem to be pieces of my issue:
    http://discussions.apple.com/message.jspa?messageID=7891554
    http://discussions.apple.com/thread.jspa?threadID=1985019&tstart=0
    I'm basically attempting to create an array of 9 UIButtons which will all call the same function, but I need to know which button was clicked.
    I'm not entirely sure how to create the NSArray of buttons, and when I include (id)sender with the selectSquare function, it doesn't work. Any help is much appreciated!
    // Square a1
    a1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    [a1 setFrame:CGRectMake(0.0f, 0.0f, 70.0f, 70.0f)];
    [a1 setBackgroundImage:[UIImage imageNamed:@"black.png"] forState:UIControlStateNormal];
    [a1 setCenter:CGPointMake(60.0f, 200.0f)];
    [a1 addTarget:self action:@selector(selectSquare) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:a1];
    // I currently have the previous "a1" button code repeated 9 times, each
    // with a different button name... I want to put all these in a single
    // array instead
    -(void) selectSquare:(id) sender {
    if(turn == x) {
    [sender setBackgroundImage:[UIImage imageNamed:@"x_button.png"] forState:UIControlStateNormal];
    statusImage.image = [UIImage imageNamed:@"o_image.png"];

    TicTacToe indeed!
    The positions I have for my buttons seemed to be perfect when I tested them, so I just went with that vs. using IB.
    As for the tag property, would it just be an int? Like:button1.tag = 5And then use the tag as that button's index in the array? So the button with tag 5 would be the 6th element?
    Also, I'm still not sure on why -(void) selectSquare:(id) sender; doesn't work. When I click on "a1" (the current button with an action assigned to it), the simulator does nothing and then brings Xcode to the front... But when I take out (id)sender, it works fine.
    In the second thread I posted, somebody mentioned something about unbinding and rebinding control actions to fix this, but I'm not too sure what that process entails.
    Here is my interface for that controller:#import <UIKit/UIKit.h>
    @interface TicTacToeViewController : UIViewController {
    UIImageView *statusImage;
    UIButton *playButton;
    UIButton *a1;
    UIButton *a2;
    UIButton *a3;
    UIButton *b1;
    UIButton *b2;
    UIButton *b3;
    UIButton *c1;
    UIButton *c2;
    UIButton *c3;
    //IBOutlet UILabel *gameText;
    //IBOutlet UILabel *x_score;
    //IBOutlet UILabel *o_score;
    //IBOutlet UILabel *round;
    NSInteger turn;
    //NSInteger xscorevalue;
    //NSInteger oscorevalue;
    @property(nonatomic,retain) IBOutlet UIImageView *statusImage;
    @property(nonatomic, retain) UIButton *playButton;
    @property(nonatomic, retain) UIButton *a1;
    @property(nonatomic, retain) UIButton *a2;
    @property(nonatomic, retain) UIButton *a3;
    @property(nonatomic, retain) UIButton *b1;
    @property(nonatomic, retain) UIButton *b2;
    @property(nonatomic, retain) UIButton *b3;
    @property(nonatomic, retain) UIButton *c1;
    @property(nonatomic, retain) UIButton *c2;
    @property(nonatomic, retain) UIButton *c3;
    //@property(nonatomic,retain) IBOutlet UILabel *gameText;
    //@property(nonatomic,retain) IBOutlet UILabel *x_score;
    //@property(nonatomic,retain) IBOutlet UILabel *o_score;
    //@property(nonatomic,retain) IBOutlet UILabel *round;
    @property(nonatomic) NSInteger turn;
    //@property(nonatomic) NSInteger x_score;
    //@property(nonatomic) NSInteger o_score;
    //-(void)reset:(BOOL) newGame;
    -(void) selectSquare:(id) sender;
    @end

  • How to call the windows popup  on SRM  portal

    Hi ,
    how to call the windows popup on SRM portal.
    For example when I hit "Check" on the shoppoing cart screen I get a popup  saying  that "Shopping cart Test has no errors and can be orderd".
    I am looking to thorw a popup which has got "yes" and "no" options ( like function module POPUP_TO_CONFIRM in GUI ) and based on the users choice the logic follows through.
    Thanks,
    krishna.

    Is this thread still valid? If not, please close the thread.
    If so, as no response has been submitted, please rephrase your question and/or provide further information to describe your requirement.
    Thanks
    Jason
    SDN SRM Moderator Team

  • Help Calling the same vi after one button dialog

    hi need help aftr the the one dialog appears how to call the same vi again need help
    Message Edited by jeyanthi on 05-22-2008 10:13 PM
    Attachments:
    StationNumberEWS.vi ‏43 KB

    Why did you start a new thread? continue here
    Message Edited by MikeS81 on 05-23-2008 09:15 AM

  • How do you call the same parameters from function to function

    I need to create several functions to try and consolidate and clear up readability in my program and I need to call the same things in all the functions. How do I do that without writing everything I need to call in each function?

    Yeah . . that's pretty much right on base. Except this is how I did it and it doesn't quite work the way I thought.
    This first bit is what I wrote to replace the redundant code
    class Header   // this class is all the declaration stuff for the events
        { public void Header()
               {  SerialRead s;
               String serialString;
               int newline1,newline2;
               String line1,line2,line3,linetmp;
               String spindle,torque1,torque2,torque3,angle1,angle2,angle3;
                  int tval1 = Integer.parseInt(torque1);
                  int tval2 = Integer.parseInt(torque2);
                  int tval3 = Integer.parseInt(torque3);
                  int aval1 = Integer.parseInt(angle1);
                  int aval2 = Integer.parseInt(angle2);
                  int aval3 = Integer.parseInt(angle3);
        }This is how I thought it should be implemented
    class AcceptPass1 extends Header implements ActionListener{
      public void actionPerformed(ActionEvent e){
         s=new SerialRead();
         s.findPort();
         waitForSerial=true;
         s.openConnection();
         blank_l1.setText("Waiting for data from Pass #2");
         while(waitForSerial){
         blank_l1.setText("Data Received.  Please verify data!");
         s.closeConnection();
         serialString=serialBuffer.toString();
         line1=serialString.substring(0);
         linetmp=serialString.substring((serialString.indexOf("ZZZ") + 3));
         line2=linetmp.substring(0);
         line3=linetmp.substring(linetmp.indexOf("ZZZ") + 3);

  • IPhone SDK - Multiple buttons calling the same IBAction

    Hi,
    Can I call the same action with multiple buttons? I´ve just connected
    the action to the buttons in interface builder, but in the header file
    I can´t use - (IBAction)setOperator: (id)sender; as the parameter to the function, it always crash due to uncaught exception. If I use - (IBAction)setOperator; it
    works, but i can´t differentiate wich button was pressed.
    I don´t know if i can set the (id)sender parameter in the interface
    builder. Can anyone help me?
    Thanks,
    Pitteri

    .h file:
    #import <UIKit/UIKit.h>
    #import <Foundation/Foundation.h>
    @interface CalculatorView : UIView {
    IBOutlet UITextField *txtResult;
    IBOutlet UIButton *btnMult;
    IBOutlet UIButton *btnDiv;
    @property (nonatomic, retain) UITextField *txtResult;
    @property (nonatomic, retain) UIButton *btnMult;
    @property (nonatomic, retain) UIButton *btnDiv;
    - (IBAction)setOperator:(id)sender;
    @end
    .m file:
    #import "CalculatorView.h"
    @implementation CalculatorView
    @synthesize btnDiv, btnMult, txtResult;
    - (IBAction)setOperator:(id)sender{
    //if btnMult pressed
    //bla bla bla
    //if btnDiv pressed
    //bla bla bla
    that´s my code. Hope u can help.
    thanks
    @end

  • Step into method- call the same method (bermuda triangle)

    I don't know why but I have:
    step into method1-> call the same method1->step into method1-> call the same method1->step into method1-> call the same method1 and so on.
    Off course, the result is error "stack over flow".
    public Object getObject(Object o, String msg) {
              Object object = null;
              if (o instanceof Center) {
                   object = this.getObject((Center) o, msg);
              if (o instanceof Student) {
                   object = this.getObject((Student) o, msg);
              if (o instanceof Curriculumn) {
                   object = this.getObject((Curriculumn) o, msg);
              if (o instanceof Course) {
                      System.out.println("YAHOO!");
                object = this.getObject((Course) o, msg);
                   System.out.println("google");                                // no google
              return object;
    public Object getObject(Curriculumn curriculumn, String msg) {
              Object object = null;
              if(msg.equals("Author")) {
                   String s = new String();
                   curriculumn.setAuthor(s);
                   return s;
              if(msg.equals("CurriculumTitle")) {
                   String s = new String();
                   curriculumn.setTitle(s);
                   return s;
              if(msg.equals("RevisionDate")) {
                   String s = new String();
                   curriculumn.setRevisionDate(this.stringToCalendar(s));
                   return s;
              if(msg.equals("id")) {
                   String s = new String();
                   s ="0";                                     //dfsfsdfsd_____________0
                   curriculumn.setId(Integer.parseInt(s));
                   return s;
              if(msg.equals("Course")) {
                   Course course = new Course();
                   curriculumn.addCourse(course);
                   return course;
              return object;
         public Object getObjest(Course course, String msg) {
              Object object = null;
              if(msg.equals("RevisionDate")) {
                   String s = new String();
                   course.setRevisionDate(this.stringToCalendar(s));
                   return s;
              if(msg.equals("Author")) {
                   String s = new String();
                   course.setAuthor(s);
                   return s;
              if(msg.equals("Task")) {
                   Task task = new Task();
                   course.addTask(task);
                   return task;
              if(msg.equals("id")) {
                   String s = new String();
                   s = "0";                             //dfsdfffffffff______________________--3
                   course.setId(Integer.parseInt(s));
                   System.out.println("MESSAGE in id COurse"); ///9009090909
                   return s;
         if(object==null) System.out.println("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA");     
         return object;
         } The problem is that getObject((Curriculumn curriculumn,...) works well, but getObject((Course course, ) not.
    The out put is
    Yahoo
    Yahoo
    Yahoo
    and so on... it does not print google

    You forgot to use the @Overload
    annotation.
    Err.. @Override ?Won't work here :):-( Obviously I'm missing the point!There isn't one :)

  • Install of the OCS portlets on Weblogic Portal 8.1

    is anybody who has installed the whole stack of Collaboration Suite on a Weblogic Portal v8.1?
    if yes, had you encounter any problems? do you have some tips ? or documentations ?
    do you keep the WebCache in front of the WLS ?
    do you keep the HTTP Server in front of the WLS ?
    Thanks you

    As far as I know, OCS portlets are specific to Oracle Portal, therefore they can't work on other portals easily, if not at all.
    2 solutions :
    1) wait for ORacle to release JSR-168 compliant portlets (portable portlets ;-) )
    2) develop you own portlets for BEA. OCS includes a whole bunch of web services that you can easily call from a java portlet, and you can use LDAP indentification on OID or even integrate into SSO, as an external application (quite easy also), or as a partner application (more difficult but better integration).

  • Where is the download for Oracle Weblogic Portal and current documentation?

    The web page for Oracle Weblogic Portal has a download link, but nothing happens when I click it:
    http://www.oracle.com/technetwork/middleware/weblogic-portal/downloads/index.html
    I've downloaded the documentation
    http://www.oracle.com/technetwork/middleware/weblogic-portal/documentation/index.html
    which is supposed to be for version 10.3, but the dates on the documents are all from 2008. I don't see anything indicating support for JSR 286 in those documents.
    Are there more up-to-date documents for the latest version of Oracle WL Portal?
    Thanks.
    Dean

    Hi Dean
    Looks like that site is down. On Firefox, I checked in Error Console window and it shows some java script error like acceptAgreement is not found etc. This link did worked earlier. I hope they fix it asap. Same problem with IE browser also (java script error).
    Coming to documentation, based on your link, I hope you are using 10.3.2 docs. I clicked on View Library and then select Portlet Development -> Java Portlets link and got this link: This link does cover JSR 286 stuff. For more indepth JSR 286, you can google and get more details.
    http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14244/javaportlets.htm#CIHGBHCI
    Thanks
    Ravi Jegga

  • Multiple EARs packaging the same resource adapter -- Weblogic Application S

    Hello,
    I had a question regarding JNDI and deploying multiple applications (EAR's) which package the same resource adapter running on Webloigc Application Server 9.1. I have an EAR file, ear1, which contains a resource adapter with connection factory with JNDI name say 'xyz' specified in the weblogic-ra.xml file. I have another EAR file, ear2, which again packages the same resource adapter with the same connection factory with JNDI name 'xyz'. Upon activating the 2nd EAR file, I get an exception 'javax.naming.NoPermissionException: A Resource Adapter may only be accessed from within the same application from which it was deployed.', as seen below:
    <May 8, 2006 10:29:27 AM PDT> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating distribute task for application 'JMS2JMS_eInsightweblogic2'.>
    <May 8, 2006 10:29:27 AM PDT> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: java.lang.AssertionError: Internal Error occurred, Assertion Failed: No Initial Context for Jndi: javax.naming.NoPermissionException: A Resource Adapter may only be accessed from within the same application from which it was deployed.
    at weblogic.connector.deploy.ConnectorModule.prepare(ConnectorModule.java:217)
    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:90)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:318)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:53)
    Truncated. see log file for complete stacktrace
    javax.naming.NoPermissionException: A Resource Adapter may only be accessed from within the same application from which it was deployed.
    at weblogic.connector.outbound.RAOutboundManager.getConnectionFactory(RAOutboundManager.java:721)
    at weblogic.connector.deploy.JNDIHandler.getConnectionFactory(JNDIHandler.java:1017)
    at weblogic.connector.deploy.JNDIHandler.lookupObject(JNDIHandler.java:871)
    at weblogic.connector.deploy.JNDIHandler.getObjectInstance(JNDIHandler.java:845)
    at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
    Truncated. see log file for complete stacktrace
    It seems like the 2nd EAR is trying to go across and lookup the connection factory from the 1st EAR. Does weblogic bind the RA's connection factory jndi name in the global jndi and is not specific to each EAR? Is there some flag or switch I can turn on to make the JNDI specific to each EAR?
    My weblogic deployment descriptor for the ra looks like the following:
    <weblogic-connector xmlns="http://www.bea.com/ns/weblogic/90"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.bea.com/ns/weblogic/90
    http://www.bea.com/ns/weblogic/90/weblogic-ra.xsd">
    <jndi-name>JMS2JMS_eInsightDeployment4_stcbpelra</jndi-name>
    <enable-access-outside-app>false</enable-access-outside-app>
    <enable-global-access-to-classes>false</enable-global-access-to-classes>
    <outbound-resource-adapter>
    <connection-definition-group>
    <connection-factory-interface>javax.resource.cci.ConnectionFactory</connection-factory-interface>
    <connection-instance>
              <b><jndi-name>BPELConnectionFactory</jndi-name></b>
              <connection-properties>
              <pool-params>
              <initial-capacity>0</initial-capacity>
              <max-capacity>10000</max-capacity>
              <capacity-increment>1</capacity-increment>
              <shrinking-enabled>true</shrinking-enabled>
              <shrink-frequency-seconds>60</shrink-frequency-seconds>
              <match-connections-supported>false</match-connections-supported>
              </pool-params>
              <properties>
                   <property>
                        <name>BPELConnectionFactory</name>
                        <value>BPELConnectionFactory</value>
                   </property>
              </properties>
              </connection-properties>
         </connection-instance>
    </connection-definition-group>
    </outbound-resource-adapter>
    </weblogic-connector>

    Thanks for the reply... in my case this would be done by the active synch process so no GUI form is required. I will be getting a list of application ID for the user by LDAP AS. One i get it i will have to parse it and get the list of application user id. I am passing those ID;s to a workflow where I am forming the resource name as you mentioned
    for example:
    If i get user1#user2#user3 from AS i am separating them based on # using split and getting 3 different user id;s
    now i am forming a string with the resource name and passing it to the sub process in which i am checking out the user object, setting the user attributes and checking in the new view.
    user1#LDAP
    user2#LDAP|1
    user3#LDAP|2
    Problem ; When i run this user1 is getting created in LDAP but user2 and user3 are not. There entry is getting created in IDM.
    When I open the IDM object I get a yellow triangle (warning) and if I open the user object and hit save button IDM creates the user account on the LDAP.
    any help for further solving this problem would be appreciated.
    Regards,

  • Making the URL of an HTTP data service call the same domain it is served from

    Hi All,
    I've got an HTTP service I defined in Flash Builder, via the "Data Services" tab.  I've got an absolute URL in there right now.  Here's what it looks like:
    What I really want is to not define a path that includes a domain name at all--I want the service to simply call an absolute path that's on the same domain as whatever domain the SWF was served from... can I do that?  When I got rid of the base URL and then gave an absolute URL path (e.g., /roster/deleteMember), Flex Builder complained that "File does not exist."  Well, of course it doesn't exist, it isn't a file, it's a URL to a service call--there is no corresponding file on the filesystem.
    Can anyone advise me how to do that?  Changing the domain name has at least once caused me a great deal of trouble, and the only workaround I was able to figure out was to create a whole new project and copy/paste all the code from my previous project into that new project, and recreate the data service definitions.  Big headache!

    mmh,
    from the adobe documentation:
    The configuration files sometimes contain special {server.name} and {server.port} tokens. These tokens are replaced with server name and port values based on the URL from which the SWF file is served when it is accessed through a web browser from a web server. Similarly, a special {context.root} token is replaced with the actual context root of a web application.
    Whenever is a RemoteService, HttpService or WebService... if you specify the endpoint as http://{server.name}:{server.port}/{context.root}
    automatically on runtime, the variables are set by the flashplayer depending on where you've been downloaded the application. So, if the webservices are deployed on the same server where the flex application is downloaded, this is the solution.
    But in your case,  maybe you cannot do that through the plugin you are using for declaring your services, but have to programmatically solve it.
    Bye,
    Lionel

  • When i call my voicemail it calls the same guy in my contacts. Everytime. Any ideas or help?

    So I recently got the LG G3 but the phone has nothing to do with it really. When I call my voicemail (speed dial or from contacts) it calls one of my friends in my contacts. It is the same guy everytime and it happened when I had my old phone too.

        BRUH.
    That is an odd thing to have happen. I can see where this would be concerning. It sounds as if there is an issue with the way the voicemail is routing. I will send you a Private Message so that I can gain access to the account so I can fix this. Please look for that. Thanks!
    ErinW_VZW
    Follow us on Twitter @VZWSupport

  • Call the same report

    Hi experts,
    I have a urgent requirements ......
    In the selection screen i have three fields . And i m displaying one alv report for a perticular vendor number .My requirement is when i am double clicking the vendor number then it'll show another output of the same report for different selection criteria ...
    plase help its an urgen t.
    regards,
    Satya

    hi
    this code is also for the same thing follow the code
    it will be help ful
    *& Report  Z_SWAS_FUNCTIONAL
    report  z_swas_functional.
    tables: qmel,viqmel,iloa,afko.
    -- global data declerations--
    data: ok_code like sy-ucomm,
          gt_itab type table of zfunctional,
          t_output type table of zfunctional,
          g_container type scrfname value 'CUSTOM_CONTROL',
          grid1  type ref to cl_gui_alv_grid,
          g_custom_container type ref to cl_gui_custom_container,
          e_row type lvc_s_row,
          e_column type lvc_s_col,
          es_row_no type lvc_s_roid.
    *CLASS DECLARATION
    class z_functional definition.
    public section.
    class-methods : handle_double_click
                    for event double_click of cl_gui_alv_grid
                         importing e_row  e_column.
    endclass.
    *CLASS IMPLEMENTATION
    class z_functional implementation.
    method handle_double_click.
           perform handle_double_click using e_row e_column es_row_no.
    endmethod.
    endclass.
    *CODE FOR SELECTION SCREEN
    selection-screen begin of block 84433  with frame title text-t01.
    parameters : n_number like viqmel-qmnum as listbox visible length 10,
                    n_type like qmel-qmart,
                    f_loca like iloa-tplnr,
                    name like qmel-qmnam.
    selection-screen end of block 84433.
                        screen validation event                          *
    at selection-screen on n_number.
      select single *
        from viqmel
          where qmnum eq n_number.
    if sy-subrc ne 0.
      MESSAGE 'NOTIFICATION NUMBER DOESNOT EXIST' TYPE 'E'.
    endif.
    select qmart from qmel into qmel where qmart eq N_TYPE.
    endselect.
    if sy-subrc ne 0.
      MESSAGE 'NOTIFICATION TYPE DOES NOT EXIST' TYPE 'E'.
    endif.
    *START OF SELECTION EVENT
    start-of-selection.
        perform fetchdata.
    end-of-selection.
    *Call screen event
    call screen 100.
    *PERFORM DISPLAY.
    *&      Form  FETCHDATA
          text
    -->  p1        text
    <--  p2        text
    form fetchdata .
    *SELECT VIQMEL~QMNUM VIQMEL~QMTXT VIQMEL~QMDAT VIQMEL~LTRMN VIQMEL~PRIOK
          VIQMELBEZDT VIQMELAUFNR VIQMELTPLNR AFKOGLTRP into corresponding fields of table GT_ITAB
             FROM VIQMEL INNER JOIN AFKO ON VIQMELAUFNR = AFKOAUFNR
                   WHERE VIQMELQMNUM IN N_NUMBER and VIQMELQMART IN N_TYPE AND VIQMEL~QMNAM IN NAME.
    call function 'ZSWAS_TEST'
      exporting
        qmnum         = n_number
       qmart         = n_type
       tplnr         = f_loca
       qmnam         = name
      tables
        output        = gt_itab
    if sy-subrc ne 0.
       message e000(z84433_msg_class).
    endif.
    endform.                    " FETCHDATA
    *&      Module  STATUS_0100  OUTPUT
          text
    module status_0100 output.
      set pf-status 'MAIN'.
    SET TITLEBAR 'xxx'.
    *creating custom container and grid instance
    if g_custom_container is initial.
        create object g_custom_container
               exporting container_name = g_container.
        create object grid1
               exporting i_parent = g_custom_container.
        call method grid1->set_table_for_first_display
          exporting
            i_structure_name = 'ZFUNCTIONAL'
          changing
            it_outtab        = gt_itab.
    *set handler events
        set handler z_functional=>handle_double_click for grid1.
      endif.
    endmodule.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    module user_command_0100 input.
    case ok_code.
       when 'EXIT'.
        perform exit_program.
    endcase.
      clear ok_code.
    endmodule.                 " USER_COMMAND_0100  INPUT
    *&      Form  EXIT_PROGRAM
          text
    -->  p1        text
    <--  p2        text
    form exit_program .
    leave program.
    endform.                    " EXIT_PROGRAM
    *&      Form  handle_double_click
          text
         -->P_E_ROW  text
         -->P_E_COLUMN  text
         -->P_ES_ROW_NO  text
    form handle_double_click  using   e_row type lvc_s_row
                                      e_column type lvc_s_col
                                      es_row_no type lvc_s_roid.
    data: t_output type  zfunctional.
        read table gt_itab into t_output index e_row-index .
      if sy-subrc = 0 and e_column-fieldname eq 'QMNUM'.
        set parameter id 'K01' field t_output-qmnum.
        call transaction 'ZSMART' and skip first screen .
      endif.
    endform.                    " handle_double_click
    thanks s
    swaroop

  • Can Xgrid controller and agent run on the same controller?

    I am trying to setup an Xgrid on 2 Mac OS X Leopard computers. My intention was setting up one computer as a controller/agent and other computer as an agent so that I can have a grid with 2 agents running on different computers. I setup my grid with xgridctl and using Xgrid Admin, I am able to view the grid on a GUI program. In Xgrid Admin, I also see 2 computers (One is local, other one is remote computer) listed with their IP addresses. Only the remote computer's status is "Available". Local computer's status is "Unavailable".
    I was about to conclude that you can not have controller and agent on the same computer but I decided to shoot an email to apple mailing list and expect some clarification.
    Thanks in advance for the support,
    Umut Tezduyar

    You might get a better response to this in either the [OS X Server forum|http://discussions.apple.com/category.jspa?categoryID=96] or even the [Xgrid area!|http://discussions.apple.com/forum.jspa?forumID=722]

  • How to Create one more SOA-INFRA under the same domain in weblogic server

    Hi All,
    Can anybody can guide how to create one more soa-infra under the same domain. In order to maintain my composites to be deployed into
    different domains, I need to create one more soa-infra and deployed all the composites under that one.
    Please let me know if any demo is available for this activity to be gets completed.
    Regards,
    CH

    Hi Vijay,
    There are several composites which needs to be deployed and maintained in the server. So, we I'm trying to maintian
    by deploying composites into 3 different SOA-INFRA's so if one is not accessible, we can look into it and others can access the
    composites from another SOA-INFRA instead of creating domains.
    Let me know what will be feasible way to perform this activity.
    Regards,
    CH

Maybe you are looking for

  • Moving I-Tunes to an External Drive

    I recently bought an external hard drive and want to move my entire Music Library to the New Drive. What files/folders need to be moved in order for my I-pod to see them and Sync properly? Do I just move the I-tunes folder or do I need to have some o

  • Getting Analog Video into iMovie

    Greetings, OK, so I have successfully imported digital video into iMovie on several occasions with my "newer" video camera (a SONY DCR-TRV80). Problem is, I have and older camera (a Canon ES800A) that uses 8mm tape. I've been wanting to get rid of th

  • File Download - 403 problem

    Hi Folks, From long time away from here, I am back. In my application we are using only ADF Faces. There is a functionality in my application to download some files that have been previously uploaded by any user. The problem is that the file is not w

  • Keyboard shortcut to reply to Message in alert

    I'd like to be able to choose "reply" on a Message alert without using the mouse. I can type and send a message using only the keyboard, which is nice, but I'd like to be able to do the whole thing from the keyboard. I know I can tab through applicat

  • AVi movies (MPEG-4 AVI format) suddenly won't play properly in iPhoto 6.0.5

    Since updating iPhoto to v.6.0.5, all of my old AVI movies in iPhoto (taken with a CASIO Exilim digital camera and uploaded earlier to my iMac G5) show only a blank screen when played and now only play the sound that was recorded. The "thumbnails sti