Some tea leave reading regarding SAPs past, current & future strategies

Hi, folks!
Did anybody come across searchsaps interview with Axel Angeli titled "<a href="http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1250982,00.html">SAPs Shai Agassi is gone - Hurray!</a>"?
If not, give it a glance! This man speaks out some - for many of us probably uncomfortable - truths about SAPs recent past and future strategies, problems and challanges. What I - with this post - would like to get is your opinion on the questions risen in the article and the answer given there.
Was the introduction of Java really that big mistake and a wasting of resources that would better have been invested in the further development of ABAP. Do we now have a state where we must live with a Java engine, which would never prompt only one Java Developer to spend a thought about migrating his/her applications to it, and a half-baken ABAP engine, which still lacks many essential features, too.
Is ABAP the language of SAPs future on which the "premium application platform for nearly everyone" is to be built on in future, the vital medium which will enable the "full-featured, message queue-based Enterprise Service Bus" SAP needs to push its ESOA strategy.
Was the introduction of Java "the horror of customers"? Are there - beside the ERP - just "niche places" for BW, SEM and APO and will the major developments "happen mainly on the ABAP side"?
This - together with some other relevant news regarding the dull sale of SAPs Portal, the poor performance of MDM a.s.o. - leaves some serious questions open to me which I would really like to discuss with you guys. Just google for "agassi mdm portal" and you' ll get some interesting stuff from - unfortunatly mainly german - media like wiwo, computerzeitung a.s.o. which supply some perfect input for our talk.
Regards,
Thomas
Regards,
Thomas

David,
I don' t know how SAP sector looks like in US, but in Austria every CIO I know seems to shy at implementing any Java based SAP technology because of lacking professional consultant support or Basis/Development Know How within his/her organizsation. Even SAP itself often seems not to be able to provide reliable consulting, support or even information on their new product line.
So what' s the use of all these new Java based stuff - the real use for customers? Have any features been implemented in Java that couldn' t be realized in ABAP? Object Orientation, Web Services, Web Dynpro - what else do you need to provide Service Oriented Architecture but a set of clean interfaces to your business logic - a.k.a. BAPIs.
Customers are struggling to get their Java servers running, to get a Java infrastructure set up, to get the new SAP Java products modified to suit their needs a.s.o.
SAP' s struggling to get their new servers installed in customers IT landscapes, to huckster their new Java products like ESS/MSS a.s.o., to get companies/consultants buy their Java focused classroom trainings a.s.o.
Consultants like myself, who got into SAP branche luckily via the Java track realize that there' s no real steady demand for their skill set and are finally overhappy to get their BC400/401 paid so they can start working into real projects and not just internal demo applications, prototypes a.s.o.
Is this the great innovation Mr. Agassi brought to his customers, company and the people earning their living with his products by introducing this marvellous, open, standard based programming environment?
Regards,
Thomas

Similar Messages

  • Some Query Regarding SAP NetWeaver Features

    Hi friends,
        Can u give me some simple questions answers regarding NetWeaver :
    1> What is the oldest and latest versions of NetWeaver and in which SAP versions it runs ?
    2> Whether we can write Report(Type 1) or Module Pool (Type M) programs in NetWeaver ?
    3> Will we only see the NetWeaver output in Browser ( like this SDN Community Network ) or can view the output also through SAPGUI.
    4> What is current scope of NetWeaver for Job prospect against SAP ABAP?
    5> The basic type of works handled by NetWeaver ?
    6> And whether it a different module in SAP like SD, MM , or new programming environment like ABAP, or SAP new technology like BW ?
    Please reply back to me.
    Thanks & Regards,
    Sujoy
    [email protected]

    Hi Sujoy,
    1. the oldest version means Netweaver 2004 is the first and old version than the next release of Netweaver 2004s the latest vesion is Netweaver 7.0
    2.u can checkout in SDN for assistance
    3.no can u brief ur question ,as my point of view this seems to be different  u cant view those things in SAGUI
    4.can u brief the question
    5.Netweaver is the concept merging the things with Java ,a netweaver has two stacks as ABAP and as JAVA ,java engine looks for the development environment for the portals and it acts along with the ABAP stack as a frontend web pages to connect the r/3 as the backend -Refer this note no:864172
    6.please to know more about http://help.sap.com/saphelp_nw04/helpdata/en/start.htm
    reward points welcome for the useful tips!
    regards,
    S.Rajeshkumar

  • Help regarding SAP SCRIPT

    Hi!
      can any one help me regarding SAP SCRIPT. i unable to write a print program for sap script . can any one can send me sample code using ITCSY structure.
    Thanks in advance.
    Thanks & Regads,
    DurgaPrasad.k

    Hi,
    refer this to write print program:
    <b>The Print Program</b>
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase
    tables, defines the order of in which text elements are printed, chooses a form for printing and
    selects an output device and print options.
    <b>Function modules in a printprogram:</b>
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine
    forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed,
    is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you
    can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    <b>Structure of a print program</b>
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each
    form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Some important parameters:</b>
    FORM Name of the form
    DEVICE PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed.
    RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    <b>The print program</b>
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'INTRODUCTION'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT               = 'ITEM_LINE'
    FUNCTION              = 'SET'
    TYPE                  = 'BODY'
    WINDOW                = 'MAIN'
    EXCEPTIONS
    OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'DELETE'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'CLOSING_REMARK'
    FUNCTION                 = 'SET'
    TYPE                          = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within
    an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    rgds,
    latheesh
    Message was edited by: Latheesh Kaduthara

  • Issue Regarding SAP NetWeaver AS ABAP

    Recently I have downloaded SAP NetWeaver Application Server ABAP  7.02 trial SP6 32-bit and installed on my machine.Despite having met all the systems requirments and settings I am not able to work with Web Dynpro for ABAP. At the beginning it asks for activating some services using t-code SICF. There is one service path which it ask to activate do not exist in the service hierarchy due to which I am not able to load the view designer. Please can anyone suggest me any solution to solve this problem?
    My next issue with the same version of NetWeaver is that it provides only Airline Database tables and tcodes. If I tried to work with some other applications like SD, MM, FI the system prompts me the message saying the specified t-code or table in ABAP dictionary does not exist.My question is which version of NetWeaver would help me get fullfledged IDES system? Please if anyone aware of it kindly help me. Currently I am downloading SAP NetWeaver Application Servicer ABAP 7.03 SP04 trial 64-bit. My only problem is I should get to work with Web Dynpro ABAP and with other applications ie SD, MM, FI and not limited to only Flight Database. Which version of SAP NetWeaver would provide me fullfledged IDES System?
    Seeking Valuable suggestions solutions on the above subject matter.
    Thanks

    Hi Omkar,
    Can you specify what is path in TA SICF that needs to be activated and it not present in your test NetWeaver ABAP system? As per documentation it is service called: /default_host/sap/bc/webdynpro please double check if it is present in your installation.
    To your 2nd point. Actually none of test versions of NetWeaver have applications like SD, FI, .. installed in. As you said you need to have full flown SAP ECC installation or IDES system to run those. There are some companies out there which offer IDES access. However some of them are not SAP partners and their services are most likely illegal. Be careful while dealing with such a sites.
    cheers
    m./

  • From where to read the SAP note

    Hi,
    Many times it advise from some ref. to read SAP Note xxxxxxxx, but from where to read this note if we know the note number.
    regards,
    zafar

    Dear,
    You have to create Suser ID to view the SAP notes.
    Ask your company to provide Suser ID..
    You can see the same in the website https://websmp106.sap-ag.de/support
    Regards
    Utsav

  • Need information/training material regarding SAP CRM Functional

    Hello,
    I am a SD Consultant.
    I want to learn SAP CRM (Functional) on my own without going to any training institute or some thing.
    Therefore, can anyone help me in forwarding the link(s) or document(s) with which I can learn about SAP CRM (Functional).
    I want information/training material regarding SAP CRM 7.0 (on system/software working, not the general information, for example- why CRM, where CRM, etc)
    For example, about org data, org structure, possible scenarios, etc.
    Thanks in advance for spending your valuable time for me.
    Regards,
    T. Chaitanya

    Hi ,
    In the SDN lot of documents are there search in the WIKI.check the standard sap doc cr100.

  • Fm to read from SAP memory

    Hi,
    I need a fm whic will read the sub-equipments currnetly dismanteled for a superior equipment.
    I am using tcode ieo2 and enhancement IEQM0003
    Plz help

    Hi
    you can use export and import parameter i.d to read from sap memory
    Regards
    Divya

  • HT1848 I'm trying to sync my ipad mini with itunes and i get an error message '' there is no free space on your ipad mini''..... any ideas on how to empty some space on ipad mini manually? currently i run on 6.0.2

    I'm trying to sync my ipad mini with itunes and i get an error message '' there is no free space on your ipad mini''..... any ideas on how to empty some space on ipad mini manually? currently i run on 6.0.2

    iOS device backups are stored in your iTunes library.
    Move your iTunes library to an external drive.

  • Leave Planner on SAP

    Do we have a Leave Planner on SAP where employees can plan the Annual Leave?
    We currently do this manually using a spreadsheet and its time consuming.

    You have leave request in Employee Self Service (based on Webdynpro for JAVA/ABAP) or UI5
    Employee Self-Service - SAP Library

  • Unable to read PDF attachments past 1st page in iOS4

    I have upgraded to iOS4
    Now I am unable to read PDF attachments past the 1st page.
    I have received a number of suggestions (like resetting the phone) but to no avail.
    Anybody else with the same problem?

    Thanks for the valiant attempt!
    I uninstalled Stanza and hard reset the iPhone (Home+Sleep until the Apple appears)
    I tested a couple of new messages with fresh PDF attachments, and the problem
    did not go away.
    At this point I may have to consider some sort of software corruption with my iOS4
    Regards

  • I'm running a 13" MAC pro with version 10.8.2  But none of that will matter once you hear my news.  Some days ago, I copied then pasted a long page item into my calendar.  Now, all the claendar does is beep at me.  I can't delete or cut the entry.  In sho

    I'm running a 13" MAC pro with version Lion v.10.8.2  But none of that will matter once you hear my news.  Some days ago, I copied then pasted a long piece of type into into my calendar.  Now, the things jammed up and all it  does is beep at me.  I can't delete or cut the entry.  There much be someone out their smarter than I.  Help!

    Try restoring from your backup of a day or so prior to when you made the error.

  • Spilled some tea on my laptop and now the backspace key doesn't work!

    Hi All,
    So I spilled some tea on my macbook today. All over the ekeyboard. Thankfully everything is working perfectly fine except my BACKSPACE/DELETE key, which I hve come to realize is super important even just writing this message! Does anyone know how I can fix this? Is my computer forever going to be without a functioning backspace key? What can I do? Do you think the apple store can fix it??? HELP ME PLEASE THIS IS SO ANNOYING!

    You may be able to 'remap' keys on the MacBook's keyboard, so as to assign a new purpose to one of the keys you'd otherwise not use much anyway; such as the small "Enter" key in the bottom row of the portable; a remap of this should not affect the larger Enter key, so you can re-purpose of the small one so it performs a Delete.
    The 'arrow' keys allow a left-direction cursor movement without an erase; sometimes, the FN key can be used to control alternative functions; not sure how complex the commands or assigned functions can be & still work.
    There had been a few free remapping apps and guidelines to help Mac owners adjust their built-in keyboard for use with Windows under BootCamp, Parallels, for dual-booting in non-Mac OS X; or other virtualization schemes to use the main keyboard for custom functions. Some of these can be assigned to work in one OS.
    The idea of trying a known-good external USB keyboard, to test the computer's hardware beyond the issues you've found troublesome after the built-in keyboard was exposed to liquid, would be best to test the chassis and logic circuits for damages beyond the keyboard assembly.
    The built-in keyboard issues where a single key does not function after an immersion or liquid spill event, are unlikely to be cured by simple replacement of a single key-face; and the individual key-switches are not seperate components to be changed out. The keyboard and touchpad can be removed and replaced by a skilled and trained technician. The rest of the MacBook should be inspected and tested for damage, too.
    Depending on your exact build model version of MacBook, the keyboard, touchpad, and upper half of the lower case assembly has different parts and construction processes; so some of the online suggestions and YouTube videos posted there by other users may viewed with this in mind. Several upgrades occurred under the skin of these computers; so do the details on how to access or repair/replace internal components.
    The iFixit online instruction pages may have some information on how to replace the built-in keyboard; if your model build version of MacBook is one of those not too extreme for a non-expert to attempt a repair. The warning as intricate details go, usually implies you could do damages inside the computer in addition to the main symptom and issue(s) you initially seek to resolve. Be ware! {Like on old world maps: of dragons, etc.}
    You could look through search results to compare videos posted by well-intentioned users, to see which ones may appear to be more like the exact model MacBook you have. A more positive identification of your portable would be required to get correct parts and perform detailed procedures properly. These generally do not have general parts; details inside the MacBook line changed many times over the years its been made.
    Several leads appear in a search based on these words in a google browser:
    replace macbook keyboard
    Some sticky keys and individual keyface replacements are noted; however if the liquid damaged more than the keyboard you'd have to troubleshoot the computer to know for sure. One way to tell, is to attach an external USB keyboard and see if the actual functions themselves are still working. Liquid can also cause corrosion later on, so a temporary fix may involve a superficial symptom. Other issues may follow later on.
    • How to remove/replace a single Keyface on MacBook keyboard:
    http://www.youtube.com/watch?v=2Kg6EfuR-6Y
    • How to remove a macbook 13" keyboard:
    http://www.youtube.com/watch?v=75IddbU4eSo
    • iFixit Guides -- for macbook:
    http://www.ifixit.com/Browse/MacBook
    The key itself may have some gunk within the parts, layers are as noted in the first youtube video linked above; but the liquid may have gone on to find places to cause further grief at a later time. Or the symptom you note may imply damage beyond the keyboard already has taken place.
    You may have to make an advance appointment to see some genius or product expert, and plan a time to take the unit in. Or contact some place who can do the work, and who are authorized experts, to have them inspect the computer and give you an estimate of the damages and a proper cure. Sorry that I don't have a simple answer; and have already been interrupted here while trying to put together some kind of a reply. Like getting my mind wiped clear more than twice, when someone comes along & starts talking nonsense, while I'm already busy (doing three things) and one more is an overload.
    Hopefully this helps somewhat...
    Good luck & happy computing!
    {edited to fix web link}

  • O apple have some mechanism through which they can track current IMEI no. via serial no?

    My iPhone was stolen few months back. Inspite of giving my IMEI for tracking through Police all efforts were in vain. Possibly IMEI no. has been tampered for my iPhone. Do apple have some mechanism through which they can track current IMEI no. via serial no. as those morons will never think of changing serial no.

    When we connect iPhones to iTune, Apple collects almost every information. They should consider providing this information if request is made by official apple id. When we are buying such permium & expensive products from Apple, they can atleast add this facility as a paid service @ nominal charges.

  • Premiere elements 12 - cannot move assets past current time indicator ... why?

    Cannot drag/move jpg (img 1232) past current time indicator (red) on any of the available tracks ... it does nothing ... I can only drag/move asset around before the current time indicator ... why
    This would make my work useless !!! Please help!
    Newly installed as iMac OSX 10.8.5
    Premiere Elements 12 directly downloaded from Adobe site (purchase version)

    Dave
    Whatever you decide, please keep watch on how many days from date of purchase so that you do not lose any rights to 30 day money back from Adobe if you purchased from Adobe.
    I had some thoughts for some areas to look into in your situation.
    You have asked several time if you are using the correct project preset. I do not see that any one has responded to that question. I am assuming that your iPhone 5s is recording H.264.mov or.mp4 1920 x 1080 @ up to 30 progressive frames per second. The frame rate is probably up to 30, meaning variable frame rate. So, where is the 120 frames per second video coming from? I would manually set the project preset for
    NTSC
    DSLR
    1080p
    DSLR 1080p30@ 29.97
    Details for manually setting the project preset are in the How To section of
    http://www.atr935.blogspot.com/2013/04/pe11-accuracy-of-automatic-project.html
    The use of video with variable frame rate has created all sorts of issues besides audio out of sync with Premiere Elements. It could be the iPhone 5S video that is creating the problems, but.... Have you taken the time to  remove selectively and sequentially types of media from the tracks to determine if such removal would then allow you to place additional media from Project Assets to Timeline wherever you want?
    If you implicate the iPhone 5S video in the issue, you could take it into a program such as HandBrake and change the file's variable to constant frame rate and export it from there as 1920 x 1080 @ 29.97 progressive frames per second H.264.mp4 file. Then try it in your project.
    The party line is that you cannot change the project preset once it has been set for a project. We can go into that later. By the way, if you start a new project, is the problem of placing source media where you want in the Timeline still there?
    We will be watching for further developments.
    ATR

  • Is Adobe Reader Touch a more current version than Adobe Reader 9?

    Is Adobe Reader Touch a more current version than Adobe Reader 9?  I am reviewing spec requirements for a software program to run on my Microsoft Surface RT, and need to know if the Adobe Reader Touch (which is currently the only Adobe Reader available in the Microsoft Store) is an "Adobe Reader 9 or later" version of Reader.

    Adobe Reader Touch (Windows Store app with "Modern" UI) and Adobe Reader XI (traditional desktop app with classic UI) are completely different products.   Probably the only thing in common is the first part of the name "Adobe Reader".
    The latest versions of Adobe Reader Touch are
    version 2.0 for Windows 8.1/RT 8.1
    version 1.3 for Windows 8/RT
    For a Surface RT tablet running the Windows RT operating system, your choice of a PDF viewer is somewhat limited to Adobe Reader Touch or Microsoft Reader.  Because Adobe Reader XI is not compatible with the Windows RT operating system.

Maybe you are looking for

  • How do I change the pitch of all tracks in a session?

    I have 6-7 midi tracks in the key of "C". Now, I want to sing on this (in an audio file) with my pitch G, which means I have to change the pitch of all the tracks to G.  How do I do this? Thanks!

  • Export ALV with the current layout to excel via selection screen

    Hello, I want to export my ALV table with my default layout, but from the selection screen. In other words i want the function "List ->export -> spreadsheet" to be done via the selection screen when the user push the "run" button. Is that possible ?

  • Developer's need to know things: Essbase as datasource for OBIEE

    I am in a project where Essbase is the datasource. I know nothing about Essbase but I an experienced OBIEE prof. Can anyone tell me the things I need to know about integrating Essbase with OBIEE, using Essbase cubes in obiee. I looking for some basic

  • How to create a tree structure using list items(tlist)

    HI every one, As we know how to create a tree structure using Hierarchy item type. We have a requirement to create The same tree like structure using List Item(Tlist) I would be so appreciated If you send with an example Thanks RangaReddy

  • Sun Java Outlook Connector with IMS 5.2/Calendar 6.0

    Is anyone using this? I understand using Outlook with an Exchange Server there was an option under tools to setup an "out of office" message. Does anyone know if this functionality exists within Outlook using IMS5.2, or do we have to have folks go to