What's it gonna be: NW2004S?

Dear all,
Within SAP's strategy to deliver products (PAM) I recently saw a version called NW2004S.
I am wondering what kind of differences are between 2004 and 2004S.
Topics I'd like to know are:
- Guided procedures (CAF 2.0) available?
- Adobe interactive forms / WAS 7.0 supporting thin clients? (non Active-X and ACF). I know the Adobe Reader version must be 7.0.5 (will be released this year - planned)
- New ESS / MSS components?
- Can we use this release without being in Rampup for ERP 2005?
There is some documentation about 2004S (SAP Netweaver 2004S - FAQ), but it does not mention anything regarding these changes/differences.
Kind regards,
Noë

Hi Noel
let me clarify my remark:
Interactive Forms is shipped with 2004s integrated into more technologies than in NetWeaver 04.
You have been able to use it with Web Dynpro Java and ABAP (for high-volume printing, i.e. non-interactive) in NetWeaver 04 and with ISR in ERP 2004 (e.g. MSS).
From 2004s, it is also integrated into Web Dynpro ABAP, BI reporting (for printing tables from the browser), and Guided Procedures.
While in ISR you only have online scenarios with PDF forms, GP only offers the possibility of using a PDF form for offline scenarios. GP obviously also has online steps available, but not if you want to use a PDF form.
Once it's up, have a look at the overview presentation I held at TechEd with Matthias Zeller from Adobe, it shows how Interactive Forms is integrated and which applications are shipping forms using these technologies.
Regards,
Markus

Similar Messages

  • HT201407 hi..I cant activate my Iphone 5. I bought this from someone who cant remember her apple password and even the email address that she used to set up the account.What am I gonna do now....How can I activate my Iphone. what are my options...pls help

    hi..I cant activate my Iphone 5. I bought this from someone who cant remember her apple password and even the email address that she used to set up the account.What am I gonna do now....How can I activate my Iphone. what are my options...pls help me.thank you

    Activation Lock in iOS 7  >  http://support.apple.com/kb/HT5818
    hannibalfromlemery wrote:
    .I cant activate my Iphone 5. I bought this from someone
    The Apple ID and Password that was Originally used to Activate the iDevice is required.
    If you cannot get this information from the seller
    Removing a device from a previous owner’s account
    You need to return the Device for a refund, as you will not be able to re-activate it.

  • ALV list with empty data - What could have gone wrong?

    Dear experts,
    I'm currently working on some codes to display data (the tables involved really do contain data), but when the codes are executed, the ALV list does not contain any data in it (only the column headers are fine).
    What could have gone wrong? I've been staring at the codes for hours now. Please help. Appreciate any help at all. 
    Displaying ALV data with REUSE_ALV_LIST_DISPLAY:
    form display_alv_data .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
    *     I_INTERFACE_CHECK              = ' '
    *     I_BYPASSING_BUFFER             =
    *     I_BUFFER_ACTIVE                = ' '
          I_CALLBACK_PROGRAM             = w_prog
    *     I_CALLBACK_PF_STATUS_SET       = ' '
    *     I_CALLBACK_USER_COMMAND        = ' '
    *     I_STRUCTURE_NAME               =
    *     IS_LAYOUT                      =
          IT_FIELDCAT                    = gt_field_cat[]
    *     IT_EXCLUDING                   =
    *     IT_SPECIAL_GROUPS              =
    *     IT_SORT                        =
    *     IT_FILTER                      =
    *     IS_SEL_HIDE                    =
    *     I_DEFAULT                      = 'X'
    *     I_SAVE                         = ' '
    *     IS_VARIANT                     =
    *     IT_EVENTS                      =
    *     IT_EVENT_EXIT                  =
    *     IS_PRINT                       =
    *     IS_REPREP_ID                   =
    *     I_SCREEN_START_COLUMN          = 0
    *     I_SCREEN_START_LINE            = 0
    *     I_SCREEN_END_COLUMN            = 0
    *     I_SCREEN_END_LINE              = 0
    *     IR_SALV_LIST_ADAPTER           =
    *     IT_EXCEPT_QINFO                =
    *     I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    *   IMPORTING
    *     E_EXIT_CAUSED_BY_CALLER        =
    *     ES_EXIT_CAUSED_BY_USER         =
        TABLES
          T_OUTTAB                       = gt_final
        EXCEPTIONS
          PROGRAM_ERROR                  = 1
          OTHERS                         = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endform.                    " display_alv_data
    Retrieving data from the database tables into the internal table:
    form retrieve_data .
      " For internal table 1
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             lfa1~name1
      FROM ekbe INNER JOIN mseg ON ekbe~ebeln = mseg~ebeln
                INNER JOIN lfa1 ON mseg~lifnr = lfa1~lifnr
      INTO CORRESPONDING FIELDS OF TABLE gt_1
      WHERE mseg~bwart = '101' AND      " Movement type: Goods Receipt
            ekbe~vgabe = '2' AND        " Transaction / event type for Invoice Verification Number
            ekbe~matnr IN s_m_num AND
            mseg~lifnr IN s_v_num.
      " For internal table 2
      SELECT ekbe~ebeln
             makt~maktx
             eket~eindt                 
      FROM ekbe INNER JOIN makt ON ekbe~matnr = makt~matnr
                INNER JOIN eket ON ekbe~ebeln = eket~ebeln
      INTO CORRESPONDING FIELDS OF TABLE gt_2
      WHERE eket~eindt IN s_d_date.
      " For internal table 3
      SELECT ekbe~ebeln
             ekko~bedat
             ekko~ekorg
             ekko~ekgrp
             ekko~bukrs
      FROM ekbe INNER JOIN ekko ON ekbe~ebeln = ekko~ebeln
      INTO CORRESPONDING FIELDS OF TABLE gt_3
      WHERE ekko~bedat IN s_p_date AND
            ekko~ekorg IN s_p_org AND
            ekko~ekgrp IN s_p_grp.
      " For the final internal table
      SORT: gt_1, gt_2, gt_3.
      LOOP AT gt_1.
        MOVE-CORRESPONDING gt_1 TO gt_final.
        READ TABLE gt_2 WITH KEY gfs_ebeln = gt_1-gfs_ebeln BINARY SEARCH.
        MOVE-CORRESPONDING gt_2 TO gt_final.
        READ TABLE gt_3 WITH KEY gfs_ebeln = gt_1-gfs_ebeln BINARY SEARCH.
        MOVE-CORRESPONDING gt_3 TO gt_final.
        APPEND gt_final.
      ENDLOOP.
    endform.                    " retrieve_data

    Dear forumers,
    I apologize for the rather late reply. The SAP server that I've been working on was down since Thursday evening and I wasn't able to debug much into the codes. Nevertheless, I really do appreciate all of your inputs and help here.
    Rob,
    I've just debugged my codes again and found out that in the first place, there is no data contained in the internal table gt_1 at all. My rough guess is because I've misused the INNER JOIN wrongly here (see code comments below):-
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             lfa1~name1  " this line should probably be commented out
      FROM ekbe INNER JOIN mseg ON mseg~ebeln = ekbe~ebeln
                        INNER JOIN lfa1 ON lfa1~lifnr = mseg~lifnr   " this line should probably be commented out - the table join here is not based on table ekbe at all
      INTO CORRESPONDING FIELDS OF TABLE gt_1
      WHERE mseg~bwart = '101' AND     
            ekbe~vgabe = '2' AND 
            ekbe~matnr IN s_m_num AND
            mseg~lifnr IN s_v_num.
    Next, I commented out certain lines further and found that there is still no data contained in the internal table gt_1 again, as follows:-
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             " lfa1~name1
      FROM ekbe INNER JOIN mseg ON mseg~ebeln = ekbe~ebeln
                        " INNER JOIN lfa1 ON lfa1~lifnr = mseg~lifnr
      INTO CORRESPONDING FIELDS OF TABLE gt_1.
      " WHERE mseg~bwart = '101' AND     
            " ekbe~vgabe = '2' AND 
            " ekbe~matnr IN s_m_num AND
            " mseg~lifnr IN s_v_num.
    There should be data contained in table ekbe here. What could have really gone wrong now?

  • What is Apple gonna do about the bent ?

    Apple what are you gonna do about the bent part with the iphone 6 ?
    Because Apple must be Really dum if They just let this happen

    Marchall,
    You clearly didn't read the Terms of Use of this forum.  Had you, you wouldn't have embarrassed yourself to all the users here by addressing Apple directly.  Apple isn't here.  It's users just like yourself. 
    Feedback goes here:  http://www.apple.com/feedback/iphone.html.
    Best,
    GDG

  • What has suddenly gone wrong with Facetime? I'm using OSX Snow Leopard 10.6.3

    What has suddenly gone wrong with Facetime? I'm using OSX Snow Leopard 10.6.3

    No, cannot revert to the original. Suddenly this new Facetime was imposed on me and it doesn't work. It's okay on a year old MacBook Pro, and it's ok in the iPhone 4S. Just not ok on the imac running on 10.6.3. Cannot try OS update suggested because I am currently 300 miles from the Mac and travelling so will have to wait until I get back. Reluctant to install mavericks because of all the complaints I have seen about incompatibilities. Appreciate the business reasons for constant OS updates, but businesses themselved would always rather remain with tried ant trusted software. I stopped using iMovie entirely because suddenly a new version was imposed that required re-leaening the whole process.

  • What is diff b/w NW2004 and NW2004s

    Hi
    could any body tell me what that is the basic/major difference between SAP NW2004  and SAP NW2004s Servers
    Thanks
    mmukehs

    <b>NW04</b>
    NW04 is a 'Java version' which means we can develop applications using Java and export them to portal.
    WEB Applications server (AS) supports Java API’s and can be integrated with NW Developer Studio developed by SAP. Studio supports application development in java, testing/debugging.
    Third party JVM is added to NW04 to run support java functionality.
    <b>NW04S</b>
    SAP NW2004s is the mySAP Business Suite edition of SAP NW 2004.it is a minor release that delivers on specific needs of the mySAP and xApps solutions delivered by SAP in 2005. The "s" stands for "mySAP Business Suite Edition".
    As in NW04, third part JVM is used to support Java stack.
    Few of the New capabilities in NW2004s
    Developing a web based user interface with WebDynPro fro ABAP
    Enhancements to enabling B2B processes
    Enhancements to business task management
    Enhancements to business planning
    Enhancements to enterprise data warehousing
    Mass setup of mobile devices
    Implementing a global portal
    NW04s is a ‘ABAP version’. Here you can develop ABAP reports and transactions and export them to portal. There you can create iViews using them.
    Netweaver 04S, includes both the ABAP and Java stacks.
    The Sneak preview for NW04s is only for the ABAP stack, and the Sneak Preview NW04 SP15 is only the java stack.
    If you are using the sneak preview for ABAP, you can develop WDA applications and BSP applications; they run directly in the engine, not in a portal. But they can be embedded in an iView in some portal.
    You don't have to have a portal to run your application. If you are using the java side, you can develop WDJ applications and JSP applications. Same applies here, they run on the java engine, not in a portal, but can be embedded into an iView which runs on the portal. But you don't need a portal for your application to run.
    The portal is just a front end UI; the apps themselves run on the underlying engine, whether it’s ABAP or JAVA.
    Hope that helps

  • Yosemite install deleted files from Time Machine!!  Yosemite installation deleted a printer application.  Went into Time Machine to restore the printer app and it was gone!  Now I wonder what else is gone.

    Installed Yosemite on iMac desktop.  Made sure I backed up and disconnected external hard drive.  Yosemite deleted a printer/scanner application.  Went into Time Machine to restore it and it was gone.  When external hd was remounted Yosemite went into it, probably to index, and deleted the application from all backups.  Wonder what else is missing??    Besides being unbelievably SLOW now I have to see what else has been lost.  

    Can you simply navigate to your Time Machine backup with the Finder? Treat it like an external hardrive and just look for your old Applications folder. /Applications/
    Also, quite a few apps put config and support files in ~/Library/Application\ Support/
    So you may be able to get the files from there as well.

  • HT5714 i cancelled my pre order but the orange box still '' pre-ordered '' what am i gonna do ?

    i cancelled my preorder but the orange box is still showing '' Pre-ordered'' . what does it mean ? am i still gonna get charged for the preoder even tho i cancelled it ? please help thank you x

    Hi mikedelrey56!
    It sounds like you may need to report an issue with this purchase using the information in the link below:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • What's everyone gonna do for 5.1 as well as video monitoring in Studio 2?

    Anyone using a Decklink or a KONA card and then monitoring audio through a seperate device? Are you having sync issues? What's the best way to do this?
    Thanks for any input!
    Bob

    Can I butt in on this please? I have a Kona LHe card with the K (the numbers escape me) break-out interface, that gives me an extra pair of unbalanced RCA audio plugs - I can't find any audio output to monitor! I am monitoring from the Kona with a SD output to a JVC SDi CRT Monitor, sound plays via the Monitor's tiny speaker. I want to monitor via stereo headphones.
    I've tried accessing audio on the back of my JVC SDi monitor, there is a Monitor audio L + R out pair of RCA sockets but can hear nothing, in my Mackie mixer. So I tried the RCAs on the Kona breakout, nothing (they are all meant to be live I believe) and the same with the L+R XLR analogue outs - nothing.
    Could you tell me how you are accessing the audio into your Tascam - is your Tascam digital or analogue?

  • What could have gone wrong?

    I installed PHP 4.4.6 + Oracle instant client 10g(win32) + Apache 2.0.59 (Win32) on my Windows XP Professional Version 2002 SP2.
    I enabled php_oci8.dll in my php.ini. Also put tnsname.ora under C:\instantclient_10_2.
    I loaded phpinfo.php and it shows "OCI8 Support      enabled"
    However when I use below script to test:
    <?php
    if ($c=OCILogon("user", "pw", "db")) {
    echo "Successfully connected to Oracle.\n";
    OCILogoff($c);
    } else {
    $err = OCIError();
    var_dump($err);
    print "\nError code = " . $err;
      print "\nError message = "  . $err[message];
      print "\nError position = " . $err[offset];
      print "\nSQL Statement = "  . $err[sqltext];
      echo "\nOracle Connect Error " . var_dump( OCIError() );
    ?>
    The output is:
    Interactive mode enabled
    bool(false)
    Error code =
    Error message =
    Error position =
    SQL Statement = bool(false)
    Oracle Connect Error
    Please help enlighten what I should do to move on.
    Many thanks,
    PHPNewbie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thanks cj. I think I'm getting closer.
    After replaced php_oci8.dll, I retested a simplified script:
    if ($c=OCILogon("user", "pw", "kirin"))
    { echo "Successfully connected to Oracle.\n";
    OCILogoff($c); }
    else { $err = OCIError();
    var_dump($err);
    #echo "\nOracle Connect Error " . var_dump( OCIError() );
    ?>
    The the output is:
    Warning: ocilogon() [function.ocilogon]: OCIEnvInit() failed. There is something wrong with your system - please check that ORACLE_HOME is set and points to the right directory in C:\work\test.php on line 3
    Warning: ocierror() [function.ocierror]: OCIError: unable to find error handle in C:\work\test.php on line 6
    bool(false)
    I can't understand both warnings, isn't that ORACLE_HOME is not needed for instant client, For the second warning, isn't that OCIError does not need to pass any handle?

  • WHAT HAVE I GONE AND DONE!!!!!!!!!!!!

    Hi to all
    this could take some time gonna make it as brief as possible purchased external sound card for my pc(my earphone output had a fight with my foot) so in order to use earphone got SB095 anyway had a problem initially installing took 50mins and then when my prompt to restart appeared I as you do restarted it only to find that my lappy screen would not work so I connected to an external monitor and could see everything so motherboard cards etc where fine relief anyway still had problem so i tried to uninstall soundblaster couldnt find programe obviously didnt install but did a good job at mashin me screen up so I tried and tried and tried to fix it checking this checking that to no avail it so happens that my mate came round to see me and this guy is like a master of pc's and he looked at it for me and couldnt find much at first anyway just as a elimination he booted it in low rez and it started and that was it it seemed to work and it did other than the fact that i had no sound at all but with a few resetting with defaults it went on to work happy daze so know I had me sound blaster working but I had none of the software on my lappy now after a few days I attempted to install it again so i inserted disc and it seemed to install very quikly and smoothly so much better than before so after installing again the restart prompt appeard so i very hesitantly clicked and hey presto my lappy turned back on now wher getting somwhere i had everything happydaze wavestudio everything on the disk my lappy worked perfectly fine it was an achievment well to me anyway the night came and I decided to call it a day very happy with myself the next day i turned me lappy on got very comfortable and huh my screen was doing very strange things as if it was doing a colour test in turn the screen went red green yellow blue. white black various shades of grey and wouldnt stop doing this eventually had to turn it off myself when I rebooted I had the bbos nuthin but a black screen again so I connected my external monitor and went to set up and started it in low rez like my mate and ffs nothing happened and Ive tried everything that i could think of pretty peed off with this i've decided to ask well the people that might know any ideas people?
    by the way im running the crap vista home premium on a acer aspire8930
    Many thanks
    paulg68

    Were you previously using the Manually manage music setting (you added songs by dragging them to the iPod in iTunes)?  If so, and you then set up the Music tab for the iPod in iTunes to sync ONLY one album, and clicked the Apply button, you are now using the automatic sync setting (instead of doing it manually).
    The Music tab for the iPod defines how you want iTunes to sync your iTunes library to your iPod.  If you only selected one album on the Music tab, syncing will replace the current content of the iPod with just that one album.
    If the above does not describe your situation, please post back with more details.

  • What are i gonna do?

    The lite light on the back of the iPhone will not turn itselvs off.. I tried to turn it of, and let it run out of battery, butmit dident work.. Do anyone here know what i can do?

    Garddun wrote:
    The lite light on the back of the iPhone will not turn itselvs off.. I tried to turn it of, and let it run out of battery, butmit dident work.. Do anyone here know what i can do?
    Is this what you mean...
    Turn on LED Flash for Alerts: Go to Settings  >  General  >  Accessibility  >  LED Flash for Alerts. >  Off / On

  • I installed ios6 and my ipad is freeze what i am gonna do?

    what i have to do?
    help meeeeee!

    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • HT1937 I just cant get pass my iphone 5 passcode what am i gonna do ?

    What can I do ?

    If you have a passcode to the screen lock that you've forgotten, restore the device from the computer to which the device is synced. For information and instructions, see:
    http://support.apple.com/kb/ht1212
    If that will not work, you'll need to put the device into Recovery Mode and then try the Restore again:
    http://support.apple.com/kb/ht1808
    If that still doesn't work, as a last resort try DFU mode:
    http://www.iclarified.com/entry/index.php?enid=1034
    If your device is running iOS 7 and you set up Find My iPhone (iPad/iPod),  however, then it has the Activation Lock on it and you'll need to enter in your Apple ID and password to activate the device after restoring:
    http://support.apple.com/kb/HT5818
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • HT1349 i cannot open anymore my iphone3gs. i just had it back to original setting because im having hard time sychronizing my phone to itunes. then i left my phone for about 5 hours then when i found it could not be activated, what am i gonna do with this

    i cannot open anymore my iphone3gs. just had it back to its original setting because in having hard time sychronizing this one.

    What specifically is the issue?

Maybe you are looking for