Flash front-end Java back-end

Is it in any way possible to do the above?
Would it be possible to communicate between flash and java in a standalone application?
Instead of building the interface with swing I would be using flash.

Possible yes, though java support only extends (with JMF: java media framework) to Flash 2.0, which just about eliminates all of your fancy ActionScript stuff.
You can have a pure animation effect done in Flash with just a gif, which can look very sexy and very cheap in terms of file size. This can be stuck on with ImageIcon blah ... --> ...new JLabel(blah), which is nice and easy or you can also use Graphics.drawImage(...) too. Alternately with JMF you can have some Flash based buttons and the like, though limited as I've said - I have done this with the help of the local library I tracked down a half decent Falsh 2.0 book and the local university a Flash 2.0 CD - Some effort! Worth it? It was very nice in the end ...but, really worth it? - no.
My advice: stick to pure java and simple animated gifs for thing such as splash screens.

Similar Messages

  • Front end and Back end experience in SAP BW

    Hi Friends...
         Can ne1 plz explain wht things in SAP BW come under Front end and Back end experience......Thanks in advance

    Generally, back-end would consist of the taks associated with configuration of data targets (ODS, Cubes), working with extractors, mapping data to the data targets, writing transfer/start rtn/update rules, and creating Infopkgs/ Process Chains.
    Front-end deals with the use of the BW - writing queries, workbooks, web (although I think some of the infrastructure aspects of web reporting. e.g. javascript/templates might really could be considered backend).  Think of Front-end as all of the client/customer/user facing components.

  • Is there a way to find out details about, who approved the RMA on system using front end or back end?

    Is there a way to find out details about, who approved the RMA on system using front end or back end?

    But is there a way (simple or not-so-simple) to find
    out EVERY SINGLE FILE that's referenced on a
    timeline? (I have lots of stuff imported into the
    project that I know isn't used on any timeline, but
    I'm afraid of moving or deleting things for fear of
    never finding it again.)
    I'd love to get some sort of "printout" (a list or
    something) of every single file.
    There is, go to browser and cntrl click on any one of the columns,
    and select - show/source. A new column named "source" will pop up and will show where everything "lives". Click on the header at the top and it will justify the column as well. You'll notice this won't show anything for your seq.'s. of course, but will show stills/audio/motion files...
    Once you have the new column, you can drag it next to the "name" column and get a grab of it and print it if you like, or whatever.
    If you want to do this for just 1 seq., then can create a new bin and double click it to open it. Cntrl-A (select all) in your main seq. and just drag all into the new bin. You will see only what's in that seq. with the "source" column right next to it.
    From what I've read, you seem to get the MM thing and it's obviously what you'll need to do to archive as the guys said. But what your missing is a file path system to where everything resides.
    Hope this helps and that I've read you properly,
    Peace
    P-Book 1.5, 17" 2gsRAM   Mac OS X (10.4.4)   FCStudio

  • Java Front End, PHP Back End

    Hi all, I am trying to create a java front end with a php back end. Using a tip from Core Java Technologies Tech Tips (http://java.sun.com/developer/JDCTechTips/2004/tt0210.html#2). I tried to convert their code from a command line to a GUI and have gotten preaty far but it is only allowing me to get one row of data from the php file. Here is my code so far:
    package test;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.net.URLConnection;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    * @author bdeonline
    public class test extends javax.swing.JFrame {
    private static URLConnection connection;
    private String inputLine;
    private static void connect( String urlString ) {
    try {
    URL url = new URL(urlString);
    connection = url.openConnection();
    } catch (MalformedURLException e){
    } catch (IOException e) {
    private String readContents() {
    BufferedReader in = null;
    try {
    in = new BufferedReader(
    new InputStreamReader(
    connection.getInputStream()));
    String inputLine;
    while (
    (inputLine = in.readLine()) != null) {
    return(inputLine);
    } catch (IOException e) {
    return inputLine;
    /** Creates new form test */
    public test() {
    initComponents();
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    private void initComponents() {
    jButton1 = new javax.swing.JButton();
    jScrollPane1 = new javax.swing.JScrollPane();
    jTextArea1 = new javax.swing.JTextArea();
    addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(java.awt.event.WindowEvent evt) {
    exitForm(evt);
    jButton1.setText("jButton1");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton1ActionPerformed(evt);
    getContentPane().add(jButton1, java.awt.BorderLayout.SOUTH);
    jScrollPane1.setViewportView(jTextArea1);
    getContentPane().add(jScrollPane1, java.awt.BorderLayout.CENTER);
    pack();
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    connect("http://localhost/test.php");
    jTextArea1.setText(readContents());
    /** Exit the Application */
    private void exitForm(java.awt.event.WindowEvent evt) {
    System.exit(0);
    * @param args the command line arguments
    public static void main(String args[]) {
    new test().show();
    // Variables declaration - do not modify
    private javax.swing.JButton jButton1;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTextArea jTextArea1;
    // End of variables declaration
    I am preaty new at java, I know PHP preaty well though so something like this could help me out alot. Most of this code was generated with the help of Netbeans.

    I dont see why it would unles it has something to do with your URLConnection being static. setText() is only going to give you one line as well. try
    jTextArea.append(inputLine);
    and make only one declairation of inputLine.
    The only thing that should be static in your code is the main method.

  • Authentication with UME separation of front end and back end

    My webdynpro project has 2 application. One for Admin one for Rating.
    Is it possible to create a java class at Webdynpro level and share it between the 2 applications?
    Why the need?
    Created a custom class (lets called it CommonEJB), to point to the right pages and set of UI controls after the initial login with UME. This class utilizes the IWDClientUser.getSAPUset() method to get IUser object.
    If it is not possible to create a java class at Webdynpro, then this ejb will need to be deployed to the backend.
    Putting it at the backend is not good as security wise, its always better to separate the authentication between front and back end.
    Any ideas/solutions?
    thanks

    s0003358504
    au-?Krup
    LDAP
    ==============================================
    Computer Associates Int'l  [eTrust Directory]  
    Critical Path  [CP Directory Server (CP DS)]  
    Microsoft  [Windows 2000 Active Directory Server]  
    Microsoft  [Windows 2003 Server - Active Directory]  
    Netscape Communications  [Netscape Directory Server]   
    Novell  [DirXML Driver for User Management]  
    Novell  [Novell DirXML Driver for SAP HR/PA]  
    Novell  [Novell eDirectory]  
    Oracle Deutschland  [Oracle Internet Directory (OID)]  
    Siemens  [DirX Directory Server]  
    Siemens  [DirX Extranet Edition]  
    Sun Microsystems  [Sun Java System Directory Server] 
    •     Test Objectives
    •     Testing Scope
    •     Test Approach
    •     Test Environment
    •     Test Data
    •     Entry / Exit Criteria
    •     Risks
    •     Schedule and Resources
    •     SIT Deliverables
    •     Test Planning Source Documents
    Well, i wish to create a java class that can separate the view areas depending on their login.
    lets say you're a manager, u can see certain views. and if you're a supervisor u see another. This is achieved using the java class with information from getSAPUser() position. After retrieving the position, using the java class will programmatically assigned the appropriate views, buttons, tabs etc.
    so this class need to in front end, and not back end. problem is we have 2 application.
    if the class is created front end in one application can it be shared with another.

  • Front end and back end questions

    Hi,
    If I want to develop a web base SOA application by using Jcaps, I have several question want to ask.
    1.) In the front end, if i create the page by using eVision to create the page
    flow and the page layout, how can I match the fields of the page (such
    as the username, email, tel no... with the back end web services?
    2.) Does the flow of the front end web pages are control by the page flow in
    eVision? When will the eVision supported AJAX or JSF?
    3.) What is the use of the eInsight Business process manager, does it
    control all the back end flow, such as the flow of each web services?
    Does Jcaps has the Bpel engine to control the flow of web services?
    4.) I know that in JBoss, there is a jBPM server to control the flow of the front
    end pages, does JCAPS has this kind of server?
    5.) If i want to connect to the Database? I know that there is a eTL to extract
    the data from the database, it is true? Or do u recommend to connect the
    database directly through the web services by using JDBC or other
    framework as well?
    6.) If I have an existing application that is developed by .Net (With no web
    services). How can i integrate with other systems? What can I do in order
    to reuse the system? Or what Jcaps can do in this manner?
    Thanks for you reply! ^ ^

    Generally, back-end would consist of the taks associated with configuration of data targets (ODS, Cubes), working with extractors, mapping data to the data targets, writing transfer/start rtn/update rules, and creating Infopkgs/ Process Chains.
    Front-end deals with the use of the BW - writing queries, workbooks, web (although I think some of the infrastructure aspects of web reporting. e.g. javascript/templates might really could be considered backend).  Think of Front-end as all of the client/customer/user facing components.

  • TMG2010 - Front-End (DMZ) / Back-End (Internal) - Reverse Publishing. Exchange 2010

    Hey Guys,
    I need some help conceptually understanding how TMG2010 is used in a front-end back end scenario. For Example:
    1) The client would have TMG2010 in the DMZ
    2) The client would have TMG2010 in the Internal Network.
    3) The client would have multiple Network Cards (2-Leg's) on each of the TMG boxes
    My question is definitely design related so my apologies if its a little confusing. Would the correct way of setting up TMG securely be the way i have described? If so how would you set the Auth type? Do you know of any design documents that cover my scenario?
    What i am really confused about is the Authentication Type for each of the TMG servers (Front-End, Back-End) and if those servers would both be joined to the domain or not. 
    Thanks,
    Robert
    Robert

    Hi Robert,
    Various way to do it however below are one method of Doing it.
    Internal TMG
    Internal TMG can be joined to Domain
    Two LEG TMG
    Once NIC connected to Internal network Switch
    Other NIC Connected to DMZ Switch ( Which Routes Traffic to External TMG internal Interface )
    External
    Workgroup
    One NIC connecting to internet Router
    Other NIC connecting to DMZ switch
    Network relationship can be NAT between TMG, You can use the Internal TMG as Proxy / Web Publishing / Server Publishing etc. Use the External TMG as plain firewall and to NAT Internet Inbound Request to back end Firewall External Interface IP address. Malware
    / NIS can be enabled as per your requirement on any one of the TMG.
    Additional to It
     You can Configure one More LEG a third Interface on Both TMG
    Configure External DMZ on the Third Interface on External TMG. External DMZ will be only Internet Facing
    Configure Internal DMZ on the Third Interface of Internal TMG. You can Use it as Inside DMZ.
    Hope this helps
    Thanks for the response. But what about the Authentication? How would that be setup? I am still unclear on that part of it. For Example:
    In my lab i have the following:
    1) Single Armed TMG server
    2) Auth set to NTLM/Integrated on both TMG and Exchange (OWA). Other Auth settings for other exchange services
    3) Single Listener, SSO Across AD Sites
    4) TMG is only providing Reverse Publishing, no other network security services.
    If I added another TMG server as a front end how would i configure the Authentication for the above scenario?
    Thanks,
    Robert
    Robert

  • Front-end and back-end

    Hi experts,
    My client is having an integration with a Warehouse Management System. Obviously, SAP Business One is going to be back-end. Our job is to suck in all the transactions occurred from the front-end system. Here is the requirement and the problem, a Credit Note based on an A/R Invoice. It can be done manually by putting in the BaseEntry, BaseLine and BaseType in the credit note document lines template. Common sense, who the hell is going to do that, not the users.
    Data is extracted from WMS system into .txt file(tab delimited).The WMS consultant is refused to generate 3 new columns to indicate BaseEntry, BaseLine and BaseType which are not making any sense as they are front-end system(not accounting). I would like to know how can we(SAP) know the BaseEntry, BaseType and BaseLine during migration?
    Please advice.
    Thank you.
    Regards,
    Lim Tou Lead

    Hi!
    Why your front end system doesn't having any link between its AR invoice and Credit Note ?
    If its there use that as a tracking mech.
    Also, if you planned to go with SAP DTW, you can't get the BaseType,Num... You need to write a SDK import which should extract the details (Baseref,type) with the help of the refrence from front end system

  • Front-end: APEX, Back-end: Oracle 10g

    I'm new to Apex but I'd like to have a two tier setup with a front-end server running Apex 3 that is accessible to the Internet and a back-end server running Oracle 10g database that is only accessible from the front-end server. I know how to restrict the access using my firewall, but how do I "point" the apex-server at the db-server?

    Hi Troy,
    Yes that's correct, the 'pointing' between the OHS and the DB is done via the Database Access Descriptor (DAD), if you read through the APEX installation docs here -
    http://download-uk.oracle.com/docs/cd/B32472_01/doc/install.300/b32468/toc.htm
    specifically the section on editting the DAD -
    http://download-uk.oracle.com/docs/cd/B32472_01/doc/install.300/b32468/post_inst.htm#CHDHCBGI
    all should become clear.
    Note that the above section on editting the DAD might not be applicable to your exact setup so please take the time to read through the entire installation doc rather than just skipping to the section I've pointed to.

  • Removing admin password form Access 2003 database front end and back end

    We have a legacy database that has been passed down from the original creator, who is no longer with the organization. It was created in Access 2003. It has a front end and a back end. The original admin password can not be located and we are in the process
    of upgrading this application to 2010.  Is there a way to remove that password so we can make changes to the original files?

    Hi,
    What password are you talking about, the one created with the workgroup manager? That will be difficult since 2010 doesn't have the workgroup manager anymore. You can still use the database in the 2010 environment but you can't make any changes to the original
    database without the password.
    Maurice

  • Help with EJB Arch: Synchronous front-end -- Asynchronous back-end

    Hi folks, We are developing an application with the following characteristics: - users can invoke requests on our appl and they will expect a quick response - to obtain the information requested by the user, our application talks with Tibco using RV. This communication follows a pub/sub messaging paradigm and is asynchronous. - thus, we have a synchronous req/resp front-end and an asynch back-end.
    We would like some advice as to the best way of architecting this application. Here is our approach. Please critic and suggest alternatives.
    1. Consider an user who has requested something from our app. 2. The user will be using a JSP based front-end. (S)he submits the request on a form and a servlet is driven. 3. The servlet uses a session EJB and invokes one of its methods, which handles some business-specific logic. 4. The method in the session EJB then instantiates a helper class. 5. A method on our helper class is now driven. This method sends a message to Tibco and it provides a callback method in the helper class. 6. The method in the helper class blocks the thread - basically, it waits. 7. Meanwhile, Tibco does the processing and invokes the callback method (in the helper class) with the result. 8. In the callback method, the data sent by Tibco is stored in member variables of the helper class. 9. The callback method wakes up the blocking thread. 10. The method in step 6 wakes up and returns the information to the session EJB. 11. The session EJB returns the information to the invoking servlet. 12. The servlet provides the information back to the user.
    The version of Tibco-RV that we are using is not JMS compliant.
    We keep hearing that threads should be handled very carefully in an EJB container environment, so we would like to know if the way we are handling the thread in the helper class is okay. Could we remove the helper class and do the same thread-handling in the session EJB itself?
    Can we use JMS in this solution even though our Tibco-RV does not support JMS?
    Tools: Weblogic App Server 6.1, JBuilder 5.0.
    Thanks for your advice and suggestions!

    Let me start off by mentioning that Sonic MQ (an excellent JMS server) now provides a bridge for TIB/Rendezous. I am also wrestling with a simliar issue, something that requires threading at the servlet or ejb level, and have given some thought to using JMS. My concern was that JMS is an asynchronous process so it's model does not fit well with the synchronous front end. Technically I can see a few ways to implement it but architecturally I am not convinced that they are sound. You could send a message from the session bean to the TIB via SonicMQ and have a JMS message bean registered as a listener for messages from the TIB, again via SonicMQ. The JMS bean could update a static class or singleton which your session checks but you still have the issue of making the session bean wait on that event.
    I'll do a bit more digging and see if there's a design pattern available for this situation.
    -Dat

  • Sharepoint recovery 1 front-end one back-end

    I have a simple SharePoint environment with a SharePoint 2010 front end and a dedicated SQL back-end. Both virtualized on Hyper-V 2008 R2 host. There are no complicated apps - it is just a file serving SharePoint implementation.
    The VHD for the front end server (it only had one drive) got corrupted. I have an export of the complete server from the 29th December, including the VHD.
    The back end (SQL and all the databases) if unaffected.
    I tried creating a new VM with the three day old VHD from the export, but it does not seem to correctly connect to the back end.
    I also have DPM 2012 backups of the whole thing systems, though they are made via the SharePoint front end.
    With a whole panoply of solutions I can:
    1. import the exported front end and see if that works better than just re-creating the machine (GUIDs and all that)
    2. Forget the export of the front end on the 29th and do a fully fledged DR from DPM
    Any other ideas?
    CarolChi

    One thing to note is that SharePoint does not support VM backups (that is, snapshots or full backups of the VHD itself). Since your VHD is older than the data within the Configuration database, it is best to start with a new front end.
    You should be able to install SharePoint up to the same patch level on the new front end, "join" the existing farm, and then forcibly remove the defunct SharePoint server from Central Administration.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Differnec in front end and back end of ESS record time from ABAP point

    HI Expert,
    Here I need information regarding employee working time.
    Quary is we are trying to restricts the records entered in time sheet through user exit CATS0006.
    Here in CATS0006 one table is there CHECK_TABLE.
    when I am executing time sheet from back end(t code  CAT2) the table Check_table is having forward and backword 6 weeks data from the key date and date_from and date_to fields have correct value for week start and end.So that I am able to validate records.
    But when I am executing from ESS>Working time>Record working time and set an external debugger on CATS0006 I got that at this time CHECK_TABLE has only edited entry and date_from and date_to field value are also not correct one.
    Please suggest what may the cause of problem ,is it the case with your system as well?
    Is it a problem with SAP standard code?
    << Moderator message - Please do not promise points >>
    << Moderator message - The answers in the forum are provided by volunteers. Please do not ask for help quickly. >>
    Thanks,
    Subhashree.
    Edited by: Rob Burbank on Dec 2, 2011 9:26 AM

    Hi,
    What password are you talking about, the one created with the workgroup manager? That will be difficult since 2010 doesn't have the workgroup manager anymore. You can still use the database in the 2010 environment but you can't make any changes to the original
    database without the password.
    Maurice

  • Data from Front end to Back end of ALV Grid

    Hi Experts,
    I developed interactive ALV for maintaining master data for some BW Objects. I also included custom F4 for all fields.
    Problem:
    When entered new record or modified a record by using F4 help of fields, it doesn't work properly. For collecting front end data i wrote below specified code.
    for new record insert.
    METHOD handle_data_changed.
        DATA: mod_cell        TYPE lvc_s_modi,
              del_row TYPE lvc_s_moce,
              del_index TYPE i,
              new_index TYPE sy-tabix.
        DATA:   l_assum TYPE /bic/pzassum-/bic/zassum,
                l_assum_modl TYPE /bic/pzassum-/bic/zass_mdl,
                l_assum_typ TYPE /bic/pzassum-/bic/zass_typ,
                l_drv_assum TYPE /bic/pzassum-/bic/zdriver,
                l_infl_assum TYPE /bic/pzassum-/bic/zinflate,
                l_sht_text TYPE /bic/tzassum-txtsh,
                l_mdm_text TYPE /bic/tzassum-txtmd.
        CLEAR error_record.
      IF e_onf4 IS INITIAL.
    ******Get Inserted Data from Frontend
       CALL FUNCTION 'MESSAGES_INITIALIZE'.
        IF er_data_changed->mt_inserted_rows IS NOT INITIAL.
          IF er_data_changed->mt_mod_cells IS NOT INITIAL.
           REFRESH : gt_inserted_data,gt_inserted_text.
            LOOP AT er_data_changed->mt_mod_cells INTO mod_cell.
              CALL METHOD er_data_changed->get_cell_value
                EXPORTING
                  i_row_id    = mod_cell-row_id
                  i_fieldname = '/BIC/ZASSUM'
                IMPORTING
                  e_value     = l_assum.
              wa_changed_data-/bic/zassum = l_assum.
              CALL METHOD er_data_changed->get_cell_value
                EXPORTING
                  i_row_id    = mod_cell-row_id
                  i_fieldname = '/BIC/ZASS_MDL'
                IMPORTING
                  e_value     = l_assum_modl.
              wa_changed_data-/bic/zass_mdl = l_assum_modl.
              CALL METHOD er_data_changed->get_cell_value
                EXPORTING
                  i_row_id    = mod_cell-row_id
                  i_fieldname = '/BIC/ZASS_TYP'
                IMPORTING
                  e_value     = l_assum_typ.
              wa_changed_data-/bic/zass_typ = l_assum_typ.
              CALL METHOD er_data_changed->get_cell_value
                EXPORTING
                  i_row_id    = mod_cell-row_id
                  i_fieldname = '/BIC/ZDRIVER'
                IMPORTING
                  e_value     = l_drv_assum.
              IF sy-subrc = 0.
                wa_changed_data-/bic/zdriver = l_drv_assum.
              ENDIF.
              CALL METHOD er_data_changed->get_cell_value
                EXPORTING
                  i_row_id    = mod_cell-row_id
                  i_fieldname = '/BIC/ZINFLATE'
                IMPORTING
                  e_value     = l_infl_assum.
              IF sy-subrc = 0.
                wa_changed_data-/bic/zinflate = l_infl_assum.
              ENDIF.
              CALL METHOD er_data_changed->get_cell_value
                EXPORTING
                  i_row_id    = mod_cell-row_id
                  i_fieldname = 'TXTSH'
                IMPORTING
                  e_value     = l_sht_text.
              IF sy-subrc = 0.
                wa_changed_text-txtsh = l_sht_text.
              ENDIF.
              CALL METHOD er_data_changed->get_cell_value
                EXPORTING
                  i_row_id    = mod_cell-row_id
                  i_fieldname = 'TXTMD'
                IMPORTING
                  e_value     = l_mdm_text.
              wa_changed_text-txtmd = l_mdm_text.
              APPEND wa_changed_data TO gt_inserted_data.
              wa_changed_text-/bic/zassum = wa_changed_data-/bic/zassum.
              APPEND wa_changed_text TO gt_inserted_text.
            ENDLOOP.
            DELETE ADJACENT DUPLICATES FROM gt_inserted_data.
            DELETE ADJACENT DUPLICATES FROM gt_inserted_text.
          ENDIF.
    For Modified Record
    IF er_data_changed->mt_mod_cells IS NOT INITIAL AND
                  er_data_changed->mt_inserted_rows IS INITIAL.
         REFRESH : gt_modified_text,gt_modified_data.
         REFRESH : gt_valid_text,gt_modified_text.
          LOOP AT er_data_changed->mt_mod_cells INTO mod_cell.
            row_index = mod_cell-row_id.
            CALL METHOD er_data_changed->get_cell_value
              EXPORTING
                i_row_id    = mod_cell-row_id
                i_fieldname = '/BIC/ZASSUM'
              IMPORTING
                e_value     = l_assum.
            wa_changed_data-/bic/zassum = l_assum.
            CALL METHOD er_data_changed->get_cell_value
              EXPORTING
                i_row_id    = mod_cell-row_id
                i_fieldname = '/BIC/ZASS_MDL'
              IMPORTING
                e_value     = l_assum_modl.
            wa_changed_data-/bic/zass_mdl = l_assum_modl.
            CALL METHOD er_data_changed->get_cell_value
              EXPORTING
                i_row_id    = mod_cell-row_id
                i_fieldname = '/BIC/ZASS_TYP'
              IMPORTING
                e_value     = l_assum_typ.
            wa_changed_data-/bic/zass_typ = l_assum_typ.
            CALL METHOD er_data_changed->get_cell_value
              EXPORTING
                i_row_id    = mod_cell-row_id
                i_fieldname = '/BIC/ZDRIVER'
              IMPORTING
                e_value     = l_drv_assum.
            IF sy-subrc = 0.
              wa_changed_data-/bic/zdriver = l_drv_assum.
            ENDIF.
            CALL METHOD er_data_changed->get_cell_value
              EXPORTING
                i_row_id    = mod_cell-row_id
                i_fieldname = '/BIC/ZINFLATE'
              IMPORTING
                e_value     = l_infl_assum.
            IF sy-subrc = 0.
              wa_changed_data-/bic/zinflate = l_infl_assum.
            ENDIF.
            CALL METHOD er_data_changed->get_cell_value
              EXPORTING
                i_row_id    = mod_cell-row_id
                i_fieldname = 'TXTSH'
              IMPORTING
                e_value     = l_sht_text.
            IF sy-subrc = 0.
              wa_changed_text-txtsh = l_sht_text.
            ENDIF.
            CALL METHOD er_data_changed->get_cell_value
              EXPORTING
                i_row_id    = mod_cell-row_id
                i_fieldname = 'TXTMD'
              IMPORTING
                e_value     = l_mdm_text.
            wa_changed_text-txtmd = l_mdm_text..
            APPEND wa_changed_data TO gt_modified_data.
            wa_changed_text-/bic/zassum = wa_changed_data-/bic/zassum.
            APPEND wa_changed_text TO gt_modified_text.
          ENDLOOP.
          DELETE ADJACENT DUPLICATES FROM gt_modified_data.
          DELETE ADJACENT DUPLICATES FROM gt_modified_text.
        ENDIF.
    Custom F4 is working properly.
    Below i am specifing one test case which is my program failed.
    i entered  2 new records by choosing F4 help. The 2nd record only inserted in data base.
    Please help me....
    Thanks in Advance

    Hello Siva
    Some people like to do extensive coding in the event handler method for DATA_CHANGED.
    I do NOT belong to these people.
    My recommendation is (almost) always the same:
    - If required store values in (static) attributes of your event handler class / instance
    - Trigger PAI (using method CL_GUI_CFW=>SET_NEW_OK_CODE)
    At PAI of your screen you can now easily work with your OUTTAB itab used for the ALV list.
    Regards
      Uwe

  • BI - Java front end ...multiple BW abap back-ends?

    Experts,
    we have a BI java/portal running NW7.01sp6 (portal/BIjava application types).  We have used the config wizard to successfully  connect to our BW NW7.02 abap back-end in order to run bex, etc.
    My question is this: 
    Is it possible to connect the BI-java portal to multiple BW abap back-ends?  Or should we have one BI-java portal for each BW abap back-end?
    This may be the wrong forum for this question.  If so, please forgive me and point me to the correct one.
    Thanks
    NICK

    Hey Judith and experts,
    I found this note:
    Note 919197 - Troubleshooting: More than one master system found
    In there it states:
    Each SAP Web Application Server Java always has precisely one SAP Web Application Server ABAP, which serves as a BI master system. The metadata for Web items and Data Providers is read from this system, for example, and this is the only system from which you can start Web templates and Enterprise reports.
    If you want to display Web templates that originate from more than one SAP Web Application Server ABAP in an SAP Enterprise Portal, for example, you can use the Global Portal technology.
    Does anyone have any idea what they mean by "Global Portal technology"?  Or should I just bite the bullet and install another BI java portal to go with the ABAP instance.
    __NICK

Maybe you are looking for

  • No data in report after auto linking tables

    Hi All, I m new to Crystal Reports 2008 and I have a report that takes data from multiple database tables. The problem is that the report is not returning any data. On the Links tab in Database Expert, I checked that the tables are linked. I removed

  • Transferring Photos from iPhone 3GS to iPhoto

    IPhone is not visible in iPhoto so I am not able to transfer my iPhone pics to iPhoto. It used to work fine until 3-4 weeks ago! Can anyone help me resolve this I have reinstalled iTunes and iPhoto and Rebooted my MacBook Pro 15'' Message was edited

  • Ipod Touch does not restore

    When i connected my itouch in the computer to charge it, it said that it needed to be restored and when I try to restore it, it says extracting software and after that it says verifying restoring.. and then the unknown error 3014 occurred message pop

  • Why can't I use facetime on 3G ?

    Hello guys, U know, facetime is really amzaing... But only wifi.... Why can't I use that on 3G ? Anybody knows that ? Regards,

  • Query: Predictive Use Cases for Customer Acquisition during Launch Phase

    Dear all, May I ask you to help me with some Predictive Use Cases (essentially SAP InfiniteInsight) for a Telco Customer who is going to launch new 4G services. Some important points to note are: 1) Being a new product launch, there is no historical