[svn:fx-3.x] 7653: updating the package target to include the new jar.

Revision: 7653
Author:   [email protected]
Date:     2009-06-08 15:07:23 -0700 (Mon, 08 Jun 2009)
Log Message:
updating the package target to include the new jar.
QE Notes: None.
Doc Notes: None.
tests: checkintests
Modified Paths:
    flex/sdk/branches/3.x/build.xml

Hi,
I did this but it is given an error due to return table so i copy the routine from 3.x and copy in BI 7 start routine, now it is given an error
E:Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary types, not "LIKE" or "STRUCTURE".
Could you please help me.
Thanks

Similar Messages

  • [svn:bz-trunk] 8210: Update source package target to remove some build artifacts that were being pickup

    Revision: 8210
    Author:   [email protected]
    Date:     2009-06-24 16:15:50 -0700 (Wed, 24 Jun 2009)
    Log Message:
    Update source package target to remove some build artifacts that were being pickup
    Modified Paths:
        blazeds/trunk/build.xml

    First, I agree with Karol, use the AUR so that pacman can do its job.  Second, when you do your make, there is no reason to run it as root (until you do the make install)  For the initial build, it is much safer to not use root; plus all the files in your home directory will continue to belong to use, not to root.
    But, try the AUR.

  • How to refresh the data in a container and to update the new data

    Hi,
    I have created a Module Pool Program in which i have two containers to display the long text.
    Initially this container is filled and based on some condition i want to update the text in the same conatiner.
    I am using the below two classes to do all this.
    cl_gui_textedit,
    cl_gui_custom_container,
    Could someone help me how to remove the long text in the container and update the new long text.
    I am getting the new long text but not able display it in the same container. Please someone help me how to refresh and update the container.
    Thanks in advance.

    Hi
    Try this.
      IF cl_gui_textedit  IS INITIAL.
      create control container
        CREATE OBJECT cl_gui_custom_container
           EXPORTING
                container_name = 'Container Name''
           EXCEPTIONS
                cntl_error                  = 1
                cntl_system_error           = 2
                create_error                = 3
                lifetime_error              = 4
                lifetime_dynpro_dynpro_link = 5.
    create text_edit control
        CREATE OBJECT cl_gui_textedit
           EXPORTING
                parent = cl_gui_custom_container
                wordwrap_mode = cl_gui_textedit=>wordwrap_at_windowborder
                wordwrap_to_linebreak_mode = cl_gui_textedit=>false
           EXCEPTIONS
                error_cntl_create      = 1
                error_cntl_init        = 2
                error_cntl_link        = 3
                error_dp_create        = 4
                gui_type_not_supported = 5.
      ENDIF.
    *--use method to set the text
      CALL METHOD cl_text_edit->set_text_as_stream
        EXPORTING
          text            =  t_lines ( Internal table with long text).
        EXCEPTIONS
          error_dp        = 1
          error_dp_create = 2
          OTHERS          = 3.
    regards,
    Raghu.

  • I have recently updated the new apps via creative cloud now photoshop and bridge no longer work, they open then say they have encountered a problem and close, I also tried opening the old version of photo shop but getting the same result

    I have recently updated the new apps via creative cloud now photoshop and bridge no longer work, they open then say they have encountered a problem and close, I also tried opening the old version of photo shop but getting the same result

    What OS version? What's the exact error? Exactly when does the error occur? What previous versions? What is on the screen when the error displays? Does Photoshop get fully open?
    Try opening Photoshop holding down Shift key immediately to turn off plug-ins. Lots of good suggestions here: Photoshop: Basic Troubleshooting steps to fix most issues

  • I have two apple id's because my hotmail account is no longer active. How can I delete the old one and use or update the new one?  Every time I try it won't allow me and now my iPad thinks there are two accounts and they are arguing with each other. Help!

    I have two apple id's because my hotmail account is no longer active. How can I delete the old one and use or update the new one?  Every time I try it won't allow me and now my iPad thinks there are two accounts and they are arguing with each other. Help!

    You can't merge accounts or copy content to a different account, so anything that you bought or downloaded via the old account is tied to that account - so any updates that those apps get you will only be able to download via that account. You can change which account is logged in on the iPad via Settings > Store

  • I am trying to update the new OS however, I keep getting an error messaging saying to have my connectivity checked since it is not connected. I ran a diagnostics test and everything passed. Any ideas on how I can to make sure a connection is established?

    I am trying to update the new OS system on my iPhone 4, however, when I connect to iTunes and try to download, I keep getting an error message that says the connection is not established. I ran a diagnostics test and everything passed, however, I'm not sure why I keep getting an error message when the software is at the end of downloading.
    Any tips?

    Disable your firewall/security software.

  • Wanted to update the software now available, but it is asking for a pass code. As far as I remember in didn't put in any pass code , how do I settle this issue . Earlier updates were asking Apple ID but pass code for updating the new soft ware not known.

    Wanted to update the software now available, but it is asking for a pass code. As far as I remember in didn't put in any pass code , how do I settle this issue . Earlier updates were asking Apple ID but pass code for updating the new soft ware not known.

    Hello Kewal,
    Thank you for the details of the issue you are experiencing when trying to perform an update.  I recommend trying to update using iTunes, and as always, it is a good idea to make a backup first. 
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    Update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/ht4623
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Trigger is not updateing the :new value in the table

    Hi,
    I've greated a row trigger that will trigger on insert statements.
    The last thing the trigger will do is to update the :NEW.role_id value in the inserted row, see the trigger bellow.
    The trigger was mutation so I had to add the 'PRAGMA AUTONOMOUS_TRANSACTION;' to avoid the mutation error.
    When performing test with controlled insert statements the trigger is working without problems, but when I my J2EE application is inserting rows to the table the role_id value is nog updated, see the trigger below and the :NEW.role_id := nRole_id; part. The role_id for the new row is empty. What can be the problem?
    CREATE OR REPLACE TRIGGER MSP_36.M2_USER_ALERT_INSERT_TRG_SCA
    BEFORE INSERT
    ON MSP_36.M2_USER_ALERT
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    ex_not_valid_role_name EXCEPTION;
    /* Variables */
    nAlertTypeId M2_USER_ALERT.alert_type%TYPE;
    isLogical      boolean;
    validRole     boolean;
    nRole_id      M2_ROLE.role_id%TYPE;
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
         BEGIN
              SELECT distinct at.alert_type INTO nAlertTypeId
              FROM M2_USER_ALERT ua, M2_ALERT_TYPE at,M2_ALERT_TYPE_PROPERTIES atp
              WHERE ua.alert_type = at.alert_type
              AND at.alert_type = atp.ALERT_TYPE_ID
              AND ua.alert_type = :NEW.alert_type
              AND upper(atp.property_name) = 'LOGICAL'
              AND upper(atp.property_value) = 'TRUE';
              isLogical := true;
         EXCEPTION
                   WHEN no_data_found THEN
                   isLogical := false;
                   NULL;     
         END;     
    IF (isLogical = true) THEN
    BEGIN
              SELECT distinct ro.role_id INTO nRole_id
              FROM M2_ROLE ro, M2_USER_ALERT
              WHERE ro.name = :NEW.name;
         EXCEPTION
                   WHEN no_data_found THEN
                        validRole :=false;
                        RAISE_APPLICATION_ERROR(-20001,'LOGICAL UserAlert: Role with id'|| nRole_id || ' does not exist.');     
                        NULL;
         END;
         validRole := true;
         IF (isLogical = true AND validRole = true AND :NEW.status = 1) THEN
         INSERT INTO M2_USER_ROLE (user_id,role_id)
         VALUES (:NEW.user_id,nRole_id);
         :NEW.role_id := nRole_id;
    END IF;
    END IF;
    commit;
    END;
    Many thanks,
    Michael

    I only get a empty column that include now data. The first insert is working correct so I know that the role_id is valid and working. Can there be problem with commit or my AUTONOMOUS_TRANSACTION running this from JDBC ?
    EXAMPLE data from
    M2_USER_ROLE
    ===================
    USER_ID = ROLE_ID =
    ===================
    20 = 10040 =
    1259756 = 10040 =
    ===================
    Example partly data from
    M2_USER_ALERT
    =========================================================
    USERALERT_ID = USER_ID = ALERT_TYPE = NAME = ROLE_ID =
    =========================================================
    3725 = 1259756 = 10288 = MG_Test = =
    =========================================================
    When inserted from the application the role_id is empty and I've taken the same SQL from the library cache and run it with same BIND variables and then it's working.
    Michael

  • HT5654 I have a new computer, Windows 8.  My old laptop died and I used to Sync my iPad and iPhone on that device.  Now I want to update, the new computer states that I do not have permission.  How do i change permissions to this new computer?

    I have a new computer, Windows 8.  My old laptop died and I used to Sync my iPad and iPhone on that device.  Now I want to update, the new desktop computer states that I do not have permission.  How do I change permissions to this new computer?

    Did you authorize it?

  • How can i get Google maps back on, i lost them with the ios6 update, the new maps are terrible

    how can i get Google maps back on, i lost them with the ios6 update, the new maps are terrible

    It's still not known if and when Google Maps becomes available in the AppStore. This is today's story: http://www.macrumors.com/2012/09/25/google-has-not-yet-submitted-a-google-maps-a pp-to-apple/

  • I just bought 15' Mac book pro. as i work a lot on Garageband. I even downloaded all the drummers and loops to update the new Garageband 10.0.1 now my problem is that all my past work which i did on older version on GB, has missing sounds in it.

    I just bought 15' Mac book pro. as i work a lot on Garageband. I even downloaded all the drummers and loops to update the new Garageband 10.0.1
    now my problem is that all my past work which i did on older version on GB, has missing sounds in it. so here are my questions
    1. DO i have to install JAMPACKS on my new Macbook pro?
    2. Are JAMPACKS still compatable with the new GB?
    3. There is an UPDATE on the new GB on Appstore and once i click it, it goes to billing no detail is provided what this update is for so help!
    thanks

    3. There is an UPDATE on the new GB on Appstore and once i click it, it goes to billing no detail is provided what this update is for so help!
    See: This document explains what the in-App purchase is about.
    Expanding GarageBand for Mac (v10.0) content with an in-app purchase
    Do you still have your old Mac?
    How did you migrate from the old Mac to the new Mac? Did you transfer your old software and documents using Setup Assistant? Then your old GarageBand '11 version should have been migrated, and all your instruments.
    if you did  not migrate GarageBand '11, copy your old Instruments Library and Loop Library over from the old mac. Copy the following folders to a thumbsdrive and merge the missing dontents into the corresponding folders on your new mac:  (from the system library - the top level library folder on your Macintosh HD):
    /Library/Application Support/GarageBand/
    /Library/Audio/Apple Loops/
    And if you would like to continue to use GarageBand '11 for access to missing features, copy also /Applications/GarageBand over, but to a subfolder of Applications. I recommend, to install the old GarageBand as well. It can be used in parallel to GB 10.0, and will come in handy, if your old projects are having problems.
    1. DO i have to install JAMPACKS on my new Macbook pro?
    2. Are JAMPACKS still compatable with the new GB?
    The JamPacks are nice to have, a terrific collection of instruments and loops, but if you did not have them previously, that will not help with your missing instruments. You can instll them by buying Mainstage 3. They work well with GarageBand 10.0
    -- Léonie

  • Hi there, Wondering if you might know?  I don't have enough space to update the new software on iPad.  So my facetime isn't working anymore, this is prob why. Seems I have to delete like all the games/apps we have to do so.  Will I lose the progress data/

    Hi there,
    Wondering if you might know?  I don't have enough space to update the new software on iPad.  So my facetime isn't working anymore, this is prob why. Seems I have to delete like all the games/apps we have to do so.  Will I lose the progress data/levels in the games? But how do I back up the games data?
    Please help.  Scared to delete them to update and then not have the space to restore them and if I get them again will the levels/progress be gone?
    Thanks Rachel

    Connect your device to iTunes and do the update through iTunes. Using a computer takes much less space on your device than doing the update on your device.

  • I have a problem when updated the new release of iphoto version(11 jun 2012). After that I cannot open any photo libraries and program is error.

    I have a problem when updated the new release of iphoto version(11 jun 2012). After that I cannot open any photo libraries and program is error. I must to force quit iphoto window. There are any fixed bug update.

    If you have no photos:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library' and start.
    Regards
    TD

  • I am trying to update the new settings on my iphone 4s but every time I plug in to update it tells me i need to change my media sync options and I'm unsure how to do this? Can anyone help? thanking you :)

    I am trying to update the new settings on my iphone 4s but every time I plug in to update it tells me i need to change my media sync options and I'm unsure how to do this? Can anyone help? thanking you

    What exactly does the message say?

  • My phone was updating the new software and now will not turn back on, what do i do?

    my phone was updating the new software and now will not turn back on, what do i do?

        Never fear, help is here jpeterson4! Have you attempted to plug your device into your home computer? Have you verified that the device is charged? Does anything appear on the device when you plug the device into a charger? Please keep us posted, thanks!
    MatthewS_VZW
    Follow us on Twitter @VZWSUPPORT

Maybe you are looking for

  • My mac isnt recognizing that i plugged my iphone in

    I want to plug my iphone in to my mac, but it wont even recognize that it has been plugged in

  • SVGA to RCA cable TV not working

    I have a Macbook and I bought SVGA to RCA cable that I connect to the adapter from my Macbook so I can try to use it with my TV. The SVGA to RCA cable prongs are green, red and blue and are designed for HDTV. I am trying to connect the Macbook to a S

  • Email Spell Check

    Two things regarding the spell check.  When I click on the spell check after writing an email, it turns the misspelled words yellow.  Any 'misspelled' words in the email chain are highlighted and when i send it they stay yellow to the other user.  Is

  • SM37 - Scheduled and Released.

    Hi All, In SM37 (Simple Job Selection Screen) what is the difference between Scheduled and Released status?? Regards.

  • Old Raw processing bug returns.

    Since upgrading to 10.6.5, I have now found that the default camera Raw setting is no longer staying set. I have reprocessed a batch of images in a project, and started re-applying the Raw Fine Tuning settings, as I've found the default Apple one is