Can a Method listen to more than one event in ABAP OO ?

Hi,
is it possible to prepare/register a handler method for e.g two events of two different classes ?
Or can a method generally listen to only one event ?
It seems that the syntax allows only one event ?
methods event_handler for event my_event of my_class.
Thanks for help in advance
Olaf

An event can refer to more than one object but you have to instantiate the objects
for example   I have 2 grids and want to handle events depending on which grid
the user is selecting / requesting actions on. (I've just posted the relevant bits coded here as data extraction etc you can code normally).
FORM instantiate_grid
* Create Grid container
* Instantiate Grid class
* Instantiate Event Handler class
* Display the Grid
   USING  grid_container  TYPE REF TO cl_gui_custom_container
          class_object  TYPE REF TO cl_gui_alv_grid
          container_name TYPE scrfname.
* create the container
  CREATE OBJECT grid_container
  EXPORTING container_name = container_name.
* Create the ALV grid object using
* container just created
  CREATE OBJECT  class_object
  EXPORTING
     i_parent = grid_container.
*  Exclude the SUM function from the GRID toolbar
  ls_exclude = cl_gui_alv_grid=>mc_fc_sum.
  APPEND ls_exclude TO lt_exclude.
* Instantiate our handler class
* lcl_event_handler
  CALL METHOD class_object->register_edit_event
    EXPORTING
      i_event_id = cl_gui_alv_grid=>mc_evt_enter.
  CREATE OBJECT g_handler.
  SET HANDLER g_handler->handle_double_click FOR class_object.
  SET HANDLER g_handler->handle_hotspot_click FOR class_object.
  SET HANDLER g_handler->handle_toolbar FOR class_object.
  SET HANDLER g_handler->handle_user_command FOR class_object.
  SET HANDLER g_handler->handle_data_changed FOR class_object.
  SET HANDLER g_handler->handle_data_changed_finished FOR class_object.
ENDFORM.                    "instantiate_grid
MODULE status_0100 OUTPUT.
  IF grid_container IS INITIAL.
    PERFORM instantiate_grid
       USING grid_container
             grid1
             'CCONTAINER1'.
* Grid title Primary Grid
    struct_grid_lset-grid_title = 'Delimit Old org Units - Selection'.
    struct_grid_lset-edit =  'X'.
    struct_grid_lset-sel_mode = 'D'.
    PERFORM display_grid
     USING
        grid1
         <dyn_table>
         it_fldcat.
  ENDIF.
  SET PF-STATUS '001'.
  SET TITLEBAR '000' WITH 'Delimit Old Org Units'.
ENDMODULE.                    "status_0100 OUTPUT
* PAI module
MODULE user_command_0100 INPUT.
  CASE sy-ucomm.
    WHEN 'BACK'.
      LEAVE PROGRAM.
    WHEN 'EXIT'.
      LEAVE PROGRAM.
    WHEN 'CANC'.
      LEAVE PROGRAM.
    WHEN 'RETURN'.
      LEAVE PROGRAM.
  ENDCASE.
ENDMODULE.                    "user_command_0100 INPUT
MODULE status_0200 OUTPUT.
  IF grid_container1 IS INITIAL.
    PERFORM instantiate_grid
       USING grid_container1
             grid2
             'CCONTAINER2'.
* Grid title  secondary grid
    struct_grid_lset-grid_title = 'Delimited Objects'.
    struct_grid_lset-edit =  ' '.
    PERFORM display_grid
     USING
        grid2
         <dyn_table1>
         it_fldcat1.
  SET PF-STATUS '001'.
  SET TITLEBAR '000' WITH 'Org Units Delimited'.
endif.
ENDMODULE.                    "status_0200 OUTPUT
In your local event handling class use the variable SENDER to  determine which grid / object triggered the event
for example
CLASS lcl_event_handler DEFINITION .
  PUBLIC SECTION .
    METHODS:
**Hot spot Handler
    handle_hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
                      IMPORTING e_row_id e_column_id es_row_no,
**Double Click Handler
    handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
                                    IMPORTING e_row e_column es_row_no
                                    sender,
** Toolbar handler.
handle_toolbar
        FOR EVENT toolbar OF cl_gui_alv_grid
            IMPORTING e_object e_interactive
            sender,
* button press
    handle_user_command
        FOR EVENT user_command OF cl_gui_alv_grid
            IMPORTING e_ucomm
             sender,
* data changed
handle_data_changed
    FOR EVENT data_changed OF cl_gui_alv_grid
      IMPORTING er_data_changed,
*data changed finished
handle_data_changed_finished
     FOR EVENT data_changed OF cl_gui_alv_grid,
download_to_excel.
ENDCLASS.                    "lcl_event_handler DEFINITION
* Implementation methods for lcl_event_handler
CLASS lcl_event_handler IMPLEMENTATION.
*Handle Hotspot Click
* When a "hotspotted"cell is double clicked
* Hotspot indicatore needs to be set in
* the field catalog.
* Not required for this application.
  METHOD handle_hotspot_click .
    PERFORM mouse_click
      USING e_row_id
            e_column_id.
    CALL METHOD grid1->get_current_cell
      IMPORTING
        e_row     = ls_row
        e_value   = ls_value
        e_col     = ls_col
        es_row_id = ls_row_id
        es_col_id = ls_col_id
        es_row_no = es_row_no.
    CALL METHOD grid1->refresh_table_display.
    CALL METHOD grid1->set_current_cell_via_id
      EXPORTING
        is_column_id = e_column_id
        is_row_no    = es_row_no.
  ENDMETHOD.                    "lcl_event_handler
*Handle Double Click
  METHOD  handle_double_click.
    CASE sender.
      WHEN grid1.
* returns cell double clicked  FROM GRID 1
* Ignore any event from GRID 2
        PERFORM double_click
           USING e_row
           e_column.
    ENDCASE.
  ENDMETHOD.                    "handle_double_click
* Add our buttons to standard toolbar
  METHOD handle_toolbar.
    CASE sender.
* Only add functionality to PRIMARY GRID (GRID 1)
      WHEN grid1.
* append a separator to normal toolbar
        CLEAR ls_toolbar.
        MOVE 3 TO ls_toolbar-butn_type.
        APPEND ls_toolbar TO e_object->mt_toolbar.
* Delimit Org
        CLEAR ls_toolbar.
        MOVE 'PROC' TO ls_toolbar-function.
        MOVE icon_railway TO ls_toolbar-icon.
        MOVE 'DELIMIT' TO ls_toolbar-quickinfo.
        MOVE 'DELIMIT ORG UNIT' TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        APPEND ls_toolbar TO e_object->mt_toolbar.
* Select All Rows
        MOVE 'SELE' TO ls_toolbar-function.
        MOVE icon_select_all TO ls_toolbar-icon.
        MOVE 'ALL CELLS' TO ls_toolbar-quickinfo.
        MOVE 'ALL CELLS' TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        APPEND ls_toolbar TO e_object->mt_toolbar.
* Deselect all Rows.
        MOVE 'DSEL' TO ls_toolbar-function.
        MOVE icon_deselect_all TO ls_toolbar-icon.
        MOVE 'DESELECT ALL' TO ls_toolbar-quickinfo.
        MOVE 'DESELECT ALL' TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        APPEND ls_toolbar TO e_object->mt_toolbar.
        ENDCASE.
     move  0 to ls_toolbar-butn_type.
     move 'EXCEL' to ls_toolbar-function.
     move  space to ls_toolbar-disabled.
     move  icon_xxl to ls_toolbar-icon.
     move 'Excel' to ls_toolbar-quickinfo.
     move  'EXCEL' to ls_toolbar-text.
     append ls_toolbar to e_object->mt_toolbar.
  ENDMETHOD.                    "handle_toolbar
  METHOD handle_user_command.
* Entered when a user presses a Grid toolbar
* standard toolbar functions processed
* normally
   g_sender = sender.
    CASE e_ucomm.
      WHEN 'PROC'.    "Process selected data
        PERFORM get_selected_rows.
      WHEN 'SELE'.
        PERFORM select_all_rows.
      WHEN 'DSEL'.
        PERFORM deselect_all_rows.
      WHEN 'EXCEL'.
          call method me->download_to_excel.
        WHEN OTHERS.
    ENDCASE.
  ENDMETHOD.                    "handle_user_command
  METHOD handle_data_changed.
* only entered on data change  Not req for ths app.
    PERFORM data_changed USING er_data_changed.
  ENDMETHOD.                    "data_changed
  METHOD handle_data_changed_finished.
* only entered on data change finished  Not req for ths app.
    PERFORM data_changed_finished.
  ENDMETHOD.                    "data_changed_finished
* Interactive download to excel
  method download_to_excel.
  field-symbols:
   <qs0>   type standard table,
   <qs1>   type standard table.
  data: G_OUTTAB1 type ref to data,
        g_fldcat1 type ref to data,
        LS_LAYOUT type KKBLO_LAYOUT,
        LT_FIELDCAT type KKBLO_T_FIELDCAT,
        LT_FIELDCAT_WA type KKBLO_FIELDCAT,
        L_TABNAME type SLIS_TABNAME.
case g_sender.
  when grid1.
     get reference of <dyn_table> into g_outtab1.
     get reference of it_fldcat into g_fldcat1.
   when grid2.
   get reference of <dyn_table1> into g_outtab1.
     get reference of it_fldcat1 into g_fldcat1.
endcase.
   assign g_outtab1->* to <qs0>.
    assign g_fldcat1->* to <qs1>.
       call function  'LVC_TRANSFER_TO_KKBLO'
      exporting
        it_fieldcat_lvc   = <qs1>
*     is_layout_lvc     = m_cl_variant->ms_layout
         is_tech_complete  = ' '
      importing
        es_layout_kkblo   = ls_layout
        et_fieldcat_kkblo = lt_fieldcat.
    loop at lt_fieldcat into lt_fieldcat_wa.
      clear lt_fieldcat_wa-tech_complete.
      if lt_fieldcat_wa-tabname is initial.
        lt_fieldcat_wa-tabname = '1'.
        modify lt_fieldcat from lt_fieldcat_wa.
      endif.
      l_tabname = lt_fieldcat_wa-tabname.
    endloop.
    call function 'ALV_XXL_CALL'
         exporting
              i_tabname           = l_tabname
              is_layout           = ls_layout
              it_fieldcat         = lt_fieldcat
              i_title             = sy-title
         tables
              it_outtab           = <qs0>
         exceptions
              fatal_error         = 1
              no_display_possible = 2
              others              = 3.
    if  sy-subrc <> 0.
      message id sy-msgid type 'S' number sy-msgno
             with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
endmethod.
ENDCLASS.                    "lcl_event_handler IMPLEMENTATION
The sender instance is a variable such as  g_sender type ref to cl_gui_alv_grid.       "Sender instance.
The above example is for OO ALV grids but should work for other interactive cases where a User presses a key or does a mouse action.
Cheers
jimbo

Similar Messages

  • Listening for more than one event

    I've been following some online tutorials and am now doing my own program. I have a simple gui that uses radio buttons and a standard JButton, I am trying to write an if statement that does something if one of the Radiobuttons is selected and the JButton is pressed, here is the code I have tried:
              if(e.getSource() == makeTest && e.getSource() == wTest)
                   buttonPanel2.setBackground(Color.green);
              }e is my ActionEvent, makeTest is the JButton and wTest is the radiobutton. This if statement worked fine if it was just testing to see whether makeTest was pressed, so I'm guessing I might have to use another Actionevent to compare a second button? If someone could give me some pointers on this I would much appreciate it.

    If you think some more you will see that it's impossible for e.getSource() to equals 2 different components...
    You should check only if the source is the JButton and then check if the radio button is selected using radioButton.isSelected()

  • Cant listen to more than one song in a row with ios4

    Ever since i "upgraded" to the new ios4 software i can no longer listen to more than one song in a row without it stopping by itself. if im using apps while playing music it takes me back to the home screen. If someone knows how to fix this that would be nice bc im really frustrated with it and regret getting the software.

    But all of a sudden I cannot get my libraray or any playlist ti play more than one song at a time automatically. It just stops after each song.
    head into your itunes main library window. are all the little boxes to the left of your tracks unchecked?
    is so, hold down Ctrl and click on one of those boxes to recheck all the songs. (this may take a little time.)
    do you get continuous play once all the songs are rechecked?

  • HT204291 Can you send music to more than one airplay enabled speaker at the same time

    I have just purchased an airplay enabled speaker which is great, I would like another in the kitchen so as you move from room to room you can listen to the same music but I am not sure if you can play the music through more than one speaker at a time ?

    iOS devices and Apple TV's will only send the audio to one Airplay speaker at a time. However, iTunes on a computer will send audio to multiple Airplay speakers. With the help of Home Sharing and Apple's free Remote app on an iOS device you can control iTunes as well as the speakers connected to it.

  • Methods that return more than one object.

    Hello everyone,
    I don't know if this has ever been proposed or if there's an actual solution to this in any programming language. I just think it would be very interesting and would like to see it someday.
    This is the thing: why isn't it possible for a method to return more than one object. They can receive as many parameters as wanted (I don't know if there's a limit), but they can return only 1 object. So, if you need to return more than one, you have to use an auxiliary class...
    public class Person {
       private String name;
       private String lastName;
       public Person(String name, String lastName) {
          this.name = name;
          this.lastName= lastName;
       public String getName() {
           return name;
       public String getLastName() {
           return lastName;
    }So if you want to get the name of somebody you have to do this, assuming "person" is an instance of the object Person:
    String name = person.getName();And you need a whole new method (getLastName) for getting the person's last name:
    String lastName = person.getLastName();Anyway, what if we were able to have just one method that would return both. My idea is as follows:
    public class Person {
       private String name;
       private String lastName;
       public Person(String name, String lastName) {
          this.name = name;
          this.lastName= lastName;
       public String name, String lastName getName() {
           return this.name as name;
           return this.lastName as lastName;
    }And you would be able to do something like:
    String name = person.getName().name;and for the last name you would use the same method:
    String lastName = person.getName().lastName;It may not seem like a big deal in this example, but as things get more complicated simplicity becomes very useful.
    Imagine for example that you were trying to get information from a database with a very complex query. If you only need to return 1 column you have no problem, since your object can be an array of Strings (or whatever type is necessary). But if you need to retrieve all columns, you have three options:
    - Create 1 method per column --> Not so good idea since you're duplicating code (the query).
    - Create and auxiliary object to store the information --> Maybe you won't ever use that class again. So, too much code.
    - Concatenate the results and then parse them where you get them. --> Too much work.
    What do you think of my idea? Very simple, very straight-forward.
    I think it should be native to the language and Java seems like a great option to implement it in the future.
    Please leave your comments.
    Juan Carlos García Naranjo

    It's pretty simple. In OO, a method should do one thing. If that thing is to produce an object that contains multiple values as part of its state, and that object makes sense as an entity in its own right in the problem domain--as opposed to just being a way to wrap up multiple values that the programmer finds it convenient to return together--then great, define the class as such and return an instance. But if you're returning multiple values that have nothing to do with each other outside of the fact that it's convenient to return them together, then your method is probably doing too much and should be refactored.
    As for the "if it increases productivity, why not add it?" argument, there are lots of things that would "increase productivity" or have some benefit or other, but it's not worth having them in the language because the value they add is so small as to no be worth the increase in complexity, risk, etc. MI of implementation is one great example of something that a lot of people want because it's convenient, but that has real, valid utility only in very rare cases. This feature is another one--at least in the domain that Java is targetting, AFAICT.

  • ITunes 8.1 Can't Seem to do More Than One Thing at a Time

    I upgraded to 8.1 and now, rather than a "faster" iTunes experience as was advertised on Apple's website, iTunes can't seem to do more than one thing at a time without locking up the application completely. For instance, when trying to download podcasts if I choose to hit more than one "Get" button at a time iTunes will freeze up until the first podcast has completely downloaded. During this time I cannot access any other screen in iTunes at all.
    This freezing of iTunes also occurred while I was trying to sync my iPhone 3G. I received the Calendar sync error that a few other people have mentioned on the forum and wanted to turn off Calendar sync (since I don't use it and don't understand why iTunes turned it on by default, apparently, after the upgrade) but I had to wait for my iPhone 3G to completely sync before I could gain access to any of the tabs in the iPhone sync window.
    So, basically it seems like the new version of iTunes (8.1) really doesn't like to be bothered while it is trying to copy data from one place to another.
    Any ideas?

    I'm using Vista Ultimate 64-bit and iTunes 8.1 installed OK, but required a restart of the entire OS after upgrading. It takes forever to launch, clicking on certain items (like applications) causes itunes to freeze for about 15-30 seconds before it continues (this is actually something that's been there since the introduction of the app store), I've had to switch my library view to LIST and avoid any sort of album art. Using album art to view my library causes iTunes to be extremely, obnoxiously unresponsive.
    The best part - plugging in my iPhone to sync it... iTunes simply sits there dumbly - doesn't even recognize that I've plugged my iPhone in. So now I can't even sync. QUALITY product, quality. So the app I'm FORCED to use to manage my phone doesn't even work after upgrading. Outstanding.
    I'm terrified of uninstalling and reinstalling... the last time I did that with iTunes it jacked my library up... it "lost" all of my music... basically it disassociated all of the music (even the stuff purchased through the itunes store) with the index file so I had to re-import EVERY song and delete the duplicate entry.
    I searched a ton of forums looking for any clues as to how I could improve performance... All I run into is apple fan boys flaming any and all forums to the point of PC *****, no Apple *****, and so forth. Extremely unhelpful.
    The fact is this - if I wasn't forced to use iTunes to manage my non-jailbroken iPhone 3G, then I'd dump it completely. It is a horrible app. Why punish the customers that haven't gone the route of "jail breaking" their iPhones?
    One individual on one of the forums suggested that blue screens, and all the other random errors, including slow performance were due to a lack of RAM. I have 4GB of RAM on my machine I can run a virtual Fedora core 9 machine and a virtual WinXP machine on my Vista x64 box and still not have any performance issues with those two virtuals in the background sucking up system resources, yet with nothing open and less than 50% of my 4GB of RAM in use iTunes performance is abysmal. I have not run into any other application on my Vista machine that performs as badly as iTunes.
    And Apple is touting a "64-bit" version of iTunes - it isn't. The applications the 64-bit installer installs are all 32-bit.
    So, I'm searching as the two of you are for an answer to horrible performance of iTunes.
    Even exiting out of iTunes takes a day and a half... "saving itunes library".... And my "library" isn't that big.

  • Can this be used on more than one computer?

    Can this be used on more than one computer?  (Multiple-users?)

    Hi Jessica,
    ExportPDF is for one user per account. Please refer to our terms... this should help with your questions!
    Let me know if this helps.
    Regards, Stacy

  • Can you sign in with more than one apple id on an iPad?

    Can you sign in with more than one apple id on an iPad?

    Only one account can be signed in at a time (via Settings > Store), and if you turn on automatic downloads and/or download past purchases from an account then you risk tying the iPad to that account for 90 days : http://support.apple.com/kb/HT4627

  • Can I have a photo in more than one event?

    I understand that it is normally not possible to have one photo in more than one event at a time.
    I am quite careful about arranging my photos into events logically, but find in my library tere are several events called [Date] Photo Stream, which I've not delivberately created. It appears that in many cases the photos these Photo stream events contain are also in other events.
    Can anyone tell me what is going on here? Can I safely delete the Photostream events and their contents?

    To have a photo in more than one Event it must be duplicated and the duplicate added to the other Event.  A photo can be in multiple albums, books, slideshows without having to duplicate the photo as those use pointers to the original photo.
    At the beginning of each month new photos in the Shoto Stream are imported into an Event with the month and year as the Event name.  All photos taken that month are added to that Event.  That's because the iPhoto/Photo Stream preferences are set to auto import photos taken by your mobile devices:
    Events are basically buckets of photos based on the date taken and how you've setup iPhoto's preferences for importing photos:
    Merging Events can change the location in the resulting event among the other events due to the variety of dates of the photos.
    OT

  • How can i use the same front panel graph in more than one events in an event structure?

    i want to display the signals from my sensorDAQ in a graph.but i have more than one event in the event structure to acquire the signal and display it in the graph.the first event is to acquire the threshold signals and its displayed in the graph as a feedback.after the first event is executed, i will call the second event,where the further signals are acuired and compared with the threshold signals from the event 1.my question is how can i use the same front panel control in more than two events in the event structure?please answer me i'm stuck.
    Solved!
    Go to Solution.

    Hi,
    I have attached here an example of doing the same using shift registers and local variables. Take a look. Shift register is always a better option than local variables.
    Regards,
    Nitzz
    (Give kudos to good answers, Mark it as a solution if your problem is Solved) 
    Attachments:
    Graph and shift registers.vi ‏12 KB
    graph and local variables.vi ‏12 KB

  • Can the AirPort Extreme support more than one printer at a time?

    can the AirPort Extreme support more than one USB printer at a time if it is connected to a USB Hub?

    can the AirPort Extreme support more than one USB printer at a time if it is connected to a USB Hub?
    Yes.....IF.....you use a powered USB hub.
    I have had 3 printers connected at the same time in the past and assume that more would work as long you have a powered hub to support the number of ports that you need.

  • How can i find out the more than one times occurance of integer in a array?

    How can i find out the more than one occurance of integer in a array. Assume i have 2,2,3,4,2,5,4,5 in a Array and i need to find out the how many times of 2, 5 and 4 is exists in that array. Please some one help me as sson as possible. thanks in advance....

    Kumar_Mohan wrote:
    How can i find out the more than one occurance of integer in a array. Assume i have 2,2,3,4,2,5,4,5 in a Array and i need to find out the how many times of 2, 5 and 4 is exists in that array. Sort the array. Then loop through it and compare each i-th element with the (i+1)-th element.
    Please some one help me as sson as possible. thanks in advance....In future postings, please refrain from telling that it is urgent, or you need help ASAP. It is rather rude to do so.

  • Can rented movies be on more than one device at a time?

    Can rented movies be on more than one device at a time?

    No.
    "You can move the movie between devices as many times as you wish during the rental period, but the movie can only exist on one device at a time."
    iTunes Store: Movie rental frequently asked questions (FAQ)

  • Can I pair and use more than one set of bluetooth speakers at the same time on my ipod touch 4.0

    can I pair and use more than one set of bluetooth speakers at the same time on my ipod touch 4.0 or Iphone 4s or Ipad 2?

    You can only connect to one device at a time using Bluetooth, See article below for more information.
    http://support.apple.com/kb/ht1664
    While your iOS device can maintain multiple pairing records, it can only connect to one headset or hands-free device at a time. This prevents your iOS device from sending your data to the wrong Bluetooth accessory.

  • Can I create and use more than one repository on OVM 2.1.5

    The version of Oracle VM I am using is 2.1.5 .
    I wonder can I create and use more than one repository on OVM 2.1.5. Because I want to install different GOS on different disks.
    I know in Oracle VM 2.2 we can use following commands to realize that.
    a. #/opt/ovs-agent-2.3/utils/repos.py –n /dev/mapper/mpathxp1
    b. #/opt/ovs-agent-2.3/utils/repos.py –r UUID
    c. #/opt/ovs-agent-2.3/utils/repos.py –i
    And other repositories can also be mounted and found under /var/ovs/mount/UUID.
    But in Oracle VM 2.1.5, seems just one repository can be created and mounted. For example:
    At first, I create a repository using mpath1p1:
    a. # mkfs.ocfs2 /dev/mapper/mpath1p1
    b. #/usr/lib/ovs/ovs-makerepo /dev/mapper/mpath1p1 C "cluster root"
    c. I can find the repository has been mounted under /OVS.
    But if I want to use "/usr/lib/ovs/ovs-makerepo /dev/mapper/mpath2p1 C "cluster root" to create another repository, and check the mount status using command "mount", these two disks are all have been mounted under /OVS.
    "# cat /etc/ovs/repositories", only mpath1p1 with UUID was recorded there.
    After reboot, only repository with mpath1p1 was mounted under OVS.
    Can anyone tell me how to use more than one repositories on OVM 2.1.5. Do I have to install all the GOSs on the same disk and repository.
    Thank you very much.

    Now I've known how to create different repository. They will be mounted under /OVS/UUID. Thanks.

Maybe you are looking for

  • Has anyone used this macro to correct Help File problem?

    Peter, thanks for answering so quickly. I hope this gives you the information you need? Dryheat1 Jarno Ahokas 3 posts since Dec 15, 2009 Currently Being Moderated 5. Dec 15, 2009 6:42 AM in response to: Petteri_Paananen Re: CS4 missing features and f

  • Custome Views Defined Showing Incorrect Data

    Dear All, When users apply filters -> define and save custom views, they see instances in their defined view which have actually already gone out from the current activity. This gives them an incorrect picture of the view at any point causing great a

  • Xi installation - database instance error

    hai everyone, while installing XI3.0, in the step database instance after specifying Exports DVD label.asc file i'am getting this error ERROR 2007-02-28 17:23:17 FSL-02015  Node C:/XI/DATA does not exist. ERROR 2007-02-28 17:23:17 MSC-01003  ESyExcep

  • TS1292 i have credit in my account but not able to redeem it for purchasing

    I have credit in my account but not able to redeem it  for ourchsing

  • Multiple website question

    Hypothetical at the moment but can you run a web site with out a Domain name just a fixed IP AND a second or third named site on the same IP? (from the same server of course)