Are there significant changes in the UI framework between 5.2 and 2007 ?

Hi,
As the UI framework got introduced in 5.2 . Are there significant changes to the framework between 5.2 and 2007.
Therefore could a developer with experience in 5.2 carry out developments within the UI framework for 2007?
These developments need to be carried out to integrate a third party solution .
Regards
Manbir

Hi Manbir,
have worked with 5.1 and 5.2 before switching to 6.0.
I did not notice many changes in the framwork. Most of it still seems to be ICWC anyway.
- SAP has added some new BAdI's,
- there seems to be a lot of additional logic regarding webservices
- there are some new UI gimmicks (Move Assignmentblocks, Configuriation directly in the client, sortable tableviews, etc.)
- the designlayer (did not notice it before)
- component enhancements (I believe they were there in 5.2)
- editable overviewpages, i.e. extensive use of the view_group_context
So yes, when you have done 5.2 before, you will know your way aroung most things and be better off then 90% of the people starting with 6.0

Similar Messages

  • Is there any changes in the DIAdem script between DIAdem 9.x and DIAdem 10.x ?

    Hello,
    I have got a question about DIAdem Script.
    I saw the compatibility problem described in KB.
    'Why do my DIAdem 9.1 Scripts not work in DIAdem 10?'
    Many problems were solved, but some case were not.
    So I guess there is some changes in the DIAdem script between DIAdem 9.x and DIAdem 10.x
    Thanks for your help.

    Hi supportko...
    Yes, there were a lot of new features introduced in DIAdem 10.0, and 10.1.  These are described in detail in each product's ReadMe file, and also in the Online Help under  the "Index" tab at the node "DIAdem>>New Features>>New Commands and Variables"-- you will see 2 sections there:  "Version 10.1", and "Version 10.0", showing you exactly what has changed.  In most cases there is a compatability switch whenever a new feature creates a compatability issue for scripts developed in a previous DIAdem version.  R&D works very hard to minimize the impact of new features on existing VBScript applications.
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Message Edited by Support on 05-02-2007 03:56 PM

  • Are there any applications that help improve compatibility between Microsoft Powerpoint and OS X Mavericks versión?

    when I want to view the presentation in full screen the program crashes.
    -PowerPoint 2011.versión14.0(100825)
    -MacBook Air
    -OS X Mavericks(10.9.2)

    You will need to contact Microsoft for Mac Support  and/or post in their forums.

  • Changes in their scheduling interface between 6.4 and 7.0

    Can you share with me if there are any changes in the scheduling interface between 6.4 and 7.0 (NetWeaver 2004s)?  We have a job scheduling solution that this would effect.  Thank you

    When we upgraded from 8.4 to 8.9, we had to switch to use the new table structures. This was about 3 years ago, but I recall that the miscellaneous tables you are asking about were combined into the other tables (maybe the payment one). You will need to review the fields on each of the new tables to see where the freight and tax information is now stored. We didn't store that information for the vouchers we loaded via EDI in the past, so we didn't have to worry about it going forward.
    Good Luck! It wasn't fun converting this part of the system!
    Jennifer

  • JPA and CAF BO - are there any editors of the JPA data (like CAF)?

    Hello!
    As you know SAP invented some layer above JPA and called it CAF. There is a very convenient way to edit data in CAF.
    But now I have to create a complex database scheme, also with CAF doesn't allow us to work with objects. So we can't use someObject.getChildren().
    So my question is are there any editors of the JPA data (like it is done in CAF)?

    Hi Kirill,
    at the beginning of our project at the end of 2009, we did a deep analysis of CAF since our architect vehemently suggested to use this framework.
    First about the history and purpose of CAF: Initially, CAF was never meant to be a layer above CAF since CAF was invented in the time before EJB 3.0 and JPA standard where writing persistence with EJB 2.x CMP forced the developer to write pages of boiler plate code. This background was approved by SAP.
    With upcoming of JPA, CAF ist mostly useless (except for very simply structured data) and prevents you from writing good software.
    It is easy just to write @Entity, @Id and @OneToMany (for complex database schemes) and CAF forces you to use an ugly, imperformant database scheme (e.g. CAF uses mapping tables even for 1:n relationships, a clear antipattern!)
    The CRUD-services generated with CAF are a pain, too. Usage of pessimistic locking is not up to date for web applications.
    With your complex database schemes, you exceed the limit of CAF.
    (We decided not to use CAF and did never regret this.)
    Concerning your question: There is an "JPA Details" view in NWDS that might help you. It needs JPA Persistence facet on your project to work. Developed by SAP. For JPA beginners, it is a good cheat sheet for JPA annotations and their attributes.
    You do not need more since a JPA POJO is easy to code.
    Regards,
    Rolf

  • HT6058 Is there any change in the MODERN FIRMWARE??

    Is there any change in the MODERN FIRMWARE with the new ios update of 7.0.4?

    The entire point of an update is to make changes in the current firmware.
    So, yes there are changes.  That is what an update is.

  • Is there a change in the way 10g sees the rowid column.

    i have two databases in my test environment
    1. Oracle 10g on CentOS 5.3
    2. Oracle 9i on Windows Server 2003
    i am practicing simple SQL with the default HR schema created while creating databases using dbca.
    all i am doing is trying to display the employee with the 10th highest salary.
    in Oracle 10g i run the following command:
    SQL> select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10);
    FIRST_NAME||''||LAST_NAME                          SALARY
    Lisa Ozer                                           11500when i run the same command in 9i
    select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10)
    no rows selectedon digging deeper i found out that in 9i .... when i run the two sub-queries, give the same rowid as output.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10;
    ROWID
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    10 rows selected.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10;
    ROWID
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    9 rows selected.the same two queries in 10g give different rowids (this is correct)
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10;
    ROWID
    AAAMg3AAFAAAABYAAA
    AAAMg3AAFAAAABYAAB
    AAAMg3AAFAAAABYAAC
    AAAMg3AAFAAAABYAAt
    AAAMg3AAFAAAABYAAu
    AAAMg3AAFAAAABUAAD
    AAAMg3AAFAAAABUAAH
    AAAMg3AAFAAAABYAAI
    AAAMg3AAFAAAABYAAv
    AAAMg3AAFAAAABYABE
    10 rows selected.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10;
    ROWID
    AAAMg3AAFAAAABYAAA
    AAAMg3AAFAAAABYAAB
    AAAMg3AAFAAAABYAAC
    AAAMg3AAFAAAABYAAt
    AAAMg3AAFAAAABYAAu
    AAAMg3AAFAAAABUAAD
    AAAMg3AAFAAAABUAAH
    AAAMg3AAFAAAABYAAI
    AAAMg3AAFAAAABYAAv
    9 rows selected.is there a change in the way Oracle 10g treats rowids from subqueries?
    when i change the query to include the rowid in the innermost sub-query things work as they should in both 10g and 9i
    select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select rowid,first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select rowid,first_name || ' ' || last_name from employees order by salary desc) where rownum < 10)

    OK,
    I didn't seem to have made myself clear. You state
    'the above query uses rownum to filter the top 10 and top 9 salaries and picks the person with the 10th highest salary.'
    As you are using row*id* , and rowids are random strings, and can change during the life of your table, you can not rely on the results of your query.
    Your usage of the rownum pseudo function (as opposed to the rownum analytical function is also incorrect, as rownum is assigned prior to ordering it.
    This
            select * from
             (select rownum rn, ename, sal
              from
              (select ename, sal from scott.emp order by sal desc)
              where rn=10is quite as sufficient, and doesn't use hacks like rowid.
    Sybrand Bakker
    Senior Oracle DBA
    Experts: those who did read documentation.

  • When I tried to back up my computer, Time Machine says 'an error occurred while creating the backup folder.' When I check the side of the partition where I manually saved old files, the folders are there, but NONE of the files are.

    I haven't backed up my computer in over a year. When I tried to back it up today, Time Machine says 'an error occurred while creating the backup folder.' When I check the side of the partition where I manually saved old photos and documents (including all the pictures from the year I studied abroad/traveled a bunch), the folders are there, but NONE of the files are.
    Does anyone have any idea what the problem might be, or how I could fix it? I really don't want to lose all those photos

    So you were doing a time machine backup to another partition on the same hard drive? Just trying to gather some information so i can provide a helpful response.

  • Are there Apps to use the iPad in a lab

    I work in a research medical lab. Usually I write experiments and data in a lab notebook where I can describe experiments and draw figures by hand and record data. My Question: Are there APPS available for the iPad that would allow me to do this with my data/experiment written documentation????
    Thanks

    HI,
    I think your best bet would be a search engine like Google or Bing. If someone can write an app that records your heartbeat for the iPhone: http://www.dailymail.co.uk/sciencetech/article-1307646/iStethoscope-The-iPhone-a pp-replacing-real-thing-hospitals.html
    then one would think there's a developer out there somewhere that's working on a "lab" app.
    Carolyn

  • I have a iPod Nano, when it is connected to my laptop all my songs and books are there but when it is disconnected from laptop, some books and songs are missing from the library

    I have a iPod Nano, when it is connected to my laptop all my songs and books are there but when it is disconnected from laptop, some books and songs are missing from the library

    I have a simlar issue like this when loading my movies to my iTouch. iTunes says that all of your wanted content is sync and your iPod says that all content wasn't synced, is that what you are saying?

  • I am thinking of buying a iPad but my main desktop machine uses Windows 7 and MS Office.  How easy or difficult is it to transfer data files between the iPad and Windows?  Are there obvious problems or the need for some form of conversion programs?

    I am thinking of buying a iPad but my main desktop machine uses Windows 7 and MS Office.  How easy or difficult is it to transfer data files between the iPad and Windows?  Are there obvious problems or the need for some form of conversion programs?
    Many thanks for any advice.
    David

    You don't need conversion programs, iTunes can copy most of your content over to the iPad via the file sharing section, and some apps also support Dropbox, email attachments, transfer via your wifi network. There are a number of apps that you can get that support Microsoft office file (microsoft don't make an app versions of their software) e.g. from Apple there are Pages (word support), Numbers (excel) and Keynote (powerpoint), and from third-parties there are apps such as Documents To Go and QuickOffice HD

  • Are there any problems using the Ipad while is is plugged into the wall and charging?

    Are there any contraindications using the Ipad while it is plugged into the wall and charging???

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
     Cheers, Tom

  • Why are there lines going across the screen?

    Why are there lines going across the screen?

    It may (likely) be a video card issue. There is a "known issue" with certain iMacs made in a certain timeframe (2011-12 I think), and one of the telltale symptoms is vertical lines showing up on your display. Go to Apple's website (https://getsupport.apple.com/) to find out how to get support, then either call their service line (they usually pick right up) or take it into your nearest store's Genius Bar. They'll first check if your iMac's serial number is on the list of vulnerable machines, and then they'll have to do a diagnostic to prove that's the problem -- if your serial number's on the list and it fails the diagnostic, they'll replace the video card for free, even if you're not covered by AppleCare (and if you are, it's free regardless).
    My iMac just had this problem, there were lines sometimes and just weird display issues other times. Eventually it just grayed out altogether and I couldn't use it. So it's likely your display problems will worsen if you don't get it looked at.
    It took them about a week to ship the new video card over, install it, and return the iMac to me.
    Good luck!

  • Where are there pictures of all the iMac Apple computers?...

    Where are there pictures of all the iMac Apple computers so you can identify which one you're using?...
    20 inch flat panel iMac   Mac OS X (10.3.9)  

    Use this link: how to identify your iMac.
    Miriam

  • Would like to use an alarm clock.  I need the alarm clock to function from the sleep mode.  A review said that MAC products will not allow a program to wake up a Mac.  Is this correct ?  Are there any products in the Mac store what will function from the

    Would like to use an alarm clock.  I need the alarm clock to function from the sleep mode.  A review said that MAC products will not allow a program to wake up a Mac.  Is this correct ?  Are there any products in the Mac store what will function from the sleep mode ?  How do I check this out ?

    You can set times for your computer to turn on or wake from sleep in the Energy Saver system preference pane using the Schedule... button.

Maybe you are looking for

  • Printer Agent LIST with IP ADDRESS

    Hi, I am seeking a tool which will export a list of iPrint Printer Agent which must include the IP Address of each device. In the old days (a good days), I used a utility for NetWare platform. Does anyone know a such tool? Thanks.

  • Mac OS X 10.8.1 Mountain LionでCREATIVE SUITE 4 アップグレード版B をインストール中に止まってしまいます.

    タイトル通りですが. Mac mini 2.5 Mac OS X 10.8.1 Mountain LionでCREATIVE SUITE 4 アップグレード版B をインストール中に止まってしまいます. 旧商品のシリアルNoを入力し.インストールが開始されますが.バーが半分くらいのところで止まってしまいます. 解決法をご存じないでしょうか?

  • Adobe Air 3.2 (ios ipad first gen) performance issues

    Hi guys, I've been working for a while with Starling framework on mobile, it works really good in all platforms except ipad1, I am afraid I won't be able to carry on working with it if I can't manage to make it run properly on ipad1, unfortunatelly i

  • After Effects CS6 display issues

    After Effects is giving me a lot of OpenGL errors and parts of the window and tool icons aren't displaying properly. Is anyone else having this issue? MacBook Pro Retina, Mid 2012 Intel HD Graphics 4000 / NVIDIA GeForce GT 650M

  • ISync hangs on lanch - can't sync Moto E815

    I'm trying to sync a Moto E815 using iSync. The problem is that iSync when either launched from the dock or from the Apps folder just bounces up and down and never successfully launches. When I try to launch it from the menu bar (the sync icon at the