EHP for Sap Mobility

Hi All, We would like to use sap mobility in our server. So do we need to upgrade EHP (Currently we use ehp 2 )or whether it will work in any ehp. Thanks, Sam
[LOCKED BY MODERATOR. SEARCH FIRST AND IF NECESSARY ASK SPECIFIC QUESTIONS]

Hi Rahul,
Suppose I am using EP 7.0 , and within that server i want to upgrade only WD java server as suggeted by you so that i can use new functionallity of WD java, so is it possible that only WD java server/framework I can upgrade to 7.1 in EP 7.0, and rest other components of EP 7.0 remains same. Is this is possible ? if yes how ? any documents on this to upgrade particular component in 7.0 and keeping rest of the components of 7.0 unchanged ?
Do i have to apply any EHP for this, is that a mandatory step or without applying any EHP, Still i can upgrade any particular component of 7.0 to 7.1 ?
Ans - Yes we can only apply the most current patch for EP 7.0.
Most current patch for WebDynpro EP 7.00 version -> EPWDC22_0-10003557.SCA
We can deploy this component using SDM tool or JSPM tool. Details of document are :-
SDM Doc ref - For detailed information about the command line interface of the SDM, see the SDM installation directory (under <SDM-Install-Dir>/program/doc/SDMCommandLineDoc630_en_final.pdf).
JSPM Doc ref - "http://help.sap.com/nw70 --> Knowledge Center for SAP NetWeaver 7.0 (2004s) -> Functional View [open] -> SAP NetWeaver by Key Capability -> Solution Life-Cycle Management by Key Capability -> Software Life-Cycle Management -> Software Maintenance -> Java Support Package Manager".
To answer your question, I believe then we need not upgrade the whole version to EHP1 (i.e. 7.01 versions).
Do let me know in case of any further queries.
Thank you.
Regards,
Manomeet Mohapatra
<removed_by_moderator>
DO NOT ask for points
Read the "Rules of Engagement"
Edited by: Juan Reyes on Aug 30, 2010 9:23 AM

Similar Messages

  • Mentor for SAP Mobility

    Hi SAP Mentors,
    I am looking for a Mentor on SAP Mobility who can help me understand the Migration options on SAP UI5 from Webdynpro.  I would also like to get a mentor who can advise on SMP3.0, Sylco and Fiori.
    Do we have any mentors in India from SAP?
    Regards,
    Nagesh

    Hi Nagesh,
    You should take a look a the List of SAP Mentors it includes the Mentors area of expertise and their country.
    Hth,
    Simon

  • Prerequisites for SAP mobile Documents.

    Hello,
    I have going to install SAP Mobile Documents. I would like to know what are the requirements and if there are any install guide and videos.
    I believe that SAP Mobile Documents require NetWeaver Application Java and SAP Mobile Documents using the Software Update Manager (SUM).
    What are the other components that are required and the c
    Require your help on this
    Regards

    Hello Robert,
    you will find the prerequisites documents here:
    http://scn.sap.com/community/mobile-documents --> Implement --> Solution Prerequisites
    You find the complete step-by-step installation and configuration information here:
    http://scn.sap.com/community/mobile-documents --> Step-by-Step Implementation Guide
    Regards,
    Jens

  • SAP Mobile Installation

    I am New to SAP MI but has been assisgned a small PDA development, which I had done in VB.NET, but this project I want to use SAP MI.
    I have BW 3.5 with WEB AS 6.40 and also I have EP6.0,
    Can I use the BW WEB AS or EP 6.0 for SAP Mobile Install?
    How do I install SAP MI on the WEB AS.?
    Thanks
    Jagraj Dhillon

    Hi Jagraj
    SAP MI server is technically embedded in SAP Web Application Server (SAP Web AS)Both ABAP and J2EE stack are required.
    A minimal MI landscape ideally consists of the following components:
    1) One or more application backend systems
    2) A middleware server (Web AS)
    3) One or more client systems (mobile devices)
    For further clarification and learning please refer to the following links
    https://www.sdn.sap.com/irj/sdn/developerareas/mi?rid=/webcontent/uuid/6ba0ba72-0901-0010-e287-d8649ddb6425 [original link is broken]
    http://jogel.blogspot.com/2006/07/learning-sap-mi.html
    http://media.sdn.sap.com/public/html/submitted%5Fdocs/MI/MDK%5F2.5/
    http://help.sap.com/saphelp_nw04/helpdata/en/a7/893a5889e08b41b615688b1a93b559/frameset.htm
    Thanks
    Gopi

  • Documentation for SAPCRM Mobile Studio

    Hi all
    I am in the SAP -CRM mobile sales project.I am involved in configuation and programming in the SAP Mobile Studio(with VBA application-Visual basic).
    Problem is that i do not have documentaion help for SAP mobile studio.
    Anyone knows from where i can obtain the documentation help for it?
    Thanks
    Manjinder Sohi

    Hello,
    Have a look in help.sap.com :
    http://help.sap.com/saphelp_crm40sr1/helpdata/en/9a/15f9392486ce1ae10000000a114084/frameset.htm
    Regards,
    Frédéric

  • How to connect SAP Mobile device with BADI?

    Dear experts,
    We have some functionality written in the BADI program for handling Stock movement . We want to bring the same functionality for SAP Mobile device.
    Can you please provide your suggestions?
    Thank you!
    Saravanan

    continuing...
    How NW Mobile can achieve this is:
    1. By creating BAPI Wrappers (these should follow the CRUD principle)
    2. Then you import these BAPI Wrappers as 'Data Objects' into NW Mobile.
    (In your case, I guess you would have a Data Object relating to instances of Consignment Stock Movements)
    3. Then you create distribution rules (this will define which data object instances will flow to which devices)
    4. You create and deploy an application on your device (you can write whatever business logic you want in your application, including taking inputs from a user, or doing manipulations to the data object instances)
    When the user uses your application, changes will be done to the data object instances, either due to synchronizing data with NW Mobile (to get latest set of changes to the instances) or by creating, modifying or deleting the instances in the device.
    Later, when the user synchronizes with NW Mobile, the changes made to the data in the device will be forwarded to the backend via the BAPI Wrappers which you created earlier.
    This, in essence is how NW Mobile works.
    If however, you want to replicate the logic that is being performed in your BAdI in your mobile device, there are only two ways to it:
    1. You rewrite your logic in your mobile application (in Java, or whatever language it is that you wish to develop your application in)
    OR
    2. Say your BAPI Wrapper internally causes your backend to call certain BAdI's. But this is of no concern to the NW Mobile system itself.
    An example of #2 would be:
    Every time your user modifies a 'Consignment Stock Movement' in the device and syncs with NW Mobile, NW Mobile will call the MODIFY BAPI Wrapper in the backend (SRS system). The MODIFY BAPI Wrapper will trigger a workflow, or run an SAP shipped report or whatever it is that will lead your BAdI to be called... Finally, all this will cause some change to be done to your 'Consignment Stock Movement' in the backend. Which will get pushed to the NW Mobile system and the next time the device syncs with it, this change will be reflected in the device as well.

  • MSR 2.0 NWDS-eclipse project for SAP MI 7.0 updating issue

    Hello,
    I'm using NWDS 7.0 SP09 (based on Eclipse version 2.1.2) in order to changing the standard mobile application MSR 20 SR1 for SAP Mobile Infrastructure 7.0.
    I have the original MSR.war that works fine but a MSR_eclipse.war version does not exists, so I need to know how to import the MSR.war application adding also all sources files correctly.
    In NWDS I rebuilt the following MSR structure:
    -application folder (including its JSP)
    -customer folder (including its JSP)
    -META-INF folder
    -WEB-INF folder(*)
    -home.jsp
    -meRepMeta.XML
    In WEB-INF folder(*) there are:
    -application folder (including its view)
    -customer folder (including its view)
    -classes folder (empty, containg only properties files)
    -lib folder (including mbscore.jar, mbsmake.jar, query.jar)
    -srclib folder (including MSR.src.zip that contains all java source + msr.properties, msr_en.properties..)
    -core.configure
    -dataformat.properties
    -settings.xml
    -ui.properties
    -web.xml
    I succeed to build in NWDS in this way but when I export the first time and run the deployments, all .class files disappear and the MSR application doesn't work giving a 404 error, on the MSR home page, when I invoke the following URL: http://localhost:4444/MSR/start .
    Could someone suggest me a method in order to correctly import/build the right structure of MSR?
    Also have you any suggestion about the MDK configuration on NWDS 7.0 in terms of JDK version, ANT version and settings?
    Thanks in advance,
    GB

    GB,
    You should load the MSR_eclipse file in NWDS as that's the one which contains the source code.
    If you don't have it, check the zip file which you downloaded from Marketplace, it should be there.
    Chintan

  • SAP EHP1 FOR NetWeaver Mobile 7.1

    Hi,
    We plan to install a server for NetWeaver Mobile but wonder to install SAP EHP1 FOR NetWeaver Mobile 7.1 or SAP FOR NetWeaver Mobile 7.1. Any enhancement for the ehp1 package and limitation? Thanks,

    Hi,
    as Siva already mentioned - just to add the screen - if you enter service.sap.com/swdc and drill down to download the EHP support package for mobile, you get the following warning right at the top:
    Important Note:
    SAP enhancement package 1 for SAP NetWeaver Mobile 7.1 contains changes mainly targeted for use by the mobile applications SAP Mobile Defense & Security 1.6 and SAP Mobile Direct Store Delivery 4.0. Therefore SAP recommends to install SAP enhancement package 1 for SAP NetWeaver Mobile 7.1 only if you want to use one of the corresponding applications SAP Mobile Defense & Security 1.6 or SAP Mobile Direct Store Delivery 4.0.
    Due to that, you should go with usual MI7.1 stack.
    Hope this helps.
    Regards,
    Oliver

  • Download for SAP EHP1 FOR NetWeaver Mobile 7.1

    Hi,
    In the PAM, SAP EHP1 for NW Mobile 7.1 is available.
    We have the server up up and running.
    The developer is using NWDS EHP 7.1 and requires the 'mobile plugin'.
    I already visit download site, but download available are,
    SAP NW 04
    SAP NW 7.0
    SAP EHP1 FOR SAP NW 7.0
    SAP NW CE 7.1
    SAP EHP1 FOR SAP NW CE7.1
    SAP NW MOBILE 7.1 (already look)
    SAP NW PI 7.1
    SAP EHP1 FOR SAP NW PI7.1
    1) Where can i download 'mobile plugin' for the NWDS EHP7.1 ? Step by step install the plug in?
    Please advise. Thanks.

    Hi
    Please check here...
    Service Market Place :- Download>>SAP Software Distribution Center>>Support Package and Patches>>Support Packages and Patches - Entry by Application Group>>SAP NetWeaver>>SAP NETWEAVER>>SAP NETWEAVER MOBILE 7.1>Entry by Component
    Hope this will help you.
    Thanks
    Arun

  • Usage of SAP Event Management as backend for custom mobile applications

    Hi,
    I'm am looking for an appropriate implementation approach for custom mobile applications as complement for warehouse processes with SAP Extended Warehouse Management.
    Possible scenarios:
    i) Goods issue - loading process
    There are requirements like capturing of various data about the vehicle and load per RF handheld computer. The goal is to trace and archive them for analysis and reporting purposes.
    ii) Goods receipt -production process
    The production supply and goods receipt from production are realized in SAP EWM. The request is to collect data about the production process for quality reasons by use of RF devices.
    You can picture oneself the additional mobile data entry activities during the various processes as predefined question catalogues with answer options.
    The frontend - the additional mobile transactions can be realized with the EWM-Radio-Frequency-Framework, too. But I feel confindent that there is a better way to track, trace, store, analyse, report and archiv of the collected data to Y-TABLES.
    Would you recommend to use SAP Event Management for this purpose to complement the SAP EWM processes?
    The existing requirements as described above is in my understanding only a little fraction of the capabilities of SAP Event Management. The data collection and evaluation process is local within the warehouse. At first there is not requested any automatic system behaviour to particular events...
    There are a lot material and information about SAP Event Management. But I havent found an easy getting started for my simple business scenario to enhance the EWM processes with the EM capabilities. How I could realize a question/anwer catalogue with the EM tools?
    Thanks in advance!
    Best regards,
    Laura

    Hello Laura,
    principally the process would fit for EM. But EWM is not integrated up to now to EM i.e. you would have to do the connection from EWM to EM by your own.
    How to generally connect an application to EM is described here:
    service.sap.com/scm
    -> Event Managament
    -> Technical Information
    -> Connect SAP objects to SAP EM
    Best regards,
    Steffen

  • WebI report on SAP Mobile BI for iOS that contains a chart with element linking issue

    Hi gurus. I have the following issue:
    I have element linking based filters on my chart # 1 to filter values on chart # 2.  It worked fine on Ipad. And it worked fine on BI Launch Pad.
    But after some time I check my webi report and it stopped working on IPAD.
    Filters are not shown on the graph.
    However it still works fine on BI LaunchPad
    Have you faced this issue before?
    Using: BI mobile 5.1.12
    Before, example:
    After some time, I opened sap mobile and it is not showing up the filter anymore
    Now: We upgraded to SAP Bi Mobile 6.0.8.12 but issue persists.
    Could you do the test?
    Steps to reproduce:
    Create a simple Webi report with a table.
    Copy that table and paste it to the report.
    Turn the original table into a column chart
    Add element linking from the chart to table. (When user filters on the chart it should change the table as well)
    Test that the element link works in BI LaunchPad.
    Save the report to the Mobile category and test on iPad.
    Open report on iPad
    Tap chart bars. Yellow filters, that are supposed to show up, are not displayed.

    Hi Erika,
    Is this report element linking defined as 'All Objects' or 'Single Object' in Webi.
    I ask this that report element linking on 'All Objects' is not supported yet. This support is expected to come in later releases.
    However, if this is single object then it should be working. Can you verify this on latest app store build and confirm. If still it does not work for you, then please raise a support ticket for the same.
    Regards,
    Ashutosh

  • Error while installing the EHP 1 for SAP NetWeaver Developer Studio (NWDS)

    Dear All,
    I am trying to install the EHP 1 for SAP NetWeaver Developer Studio (NWDS) 7.1  .It got installed once but when i was trying to deploy the application i was getting an error sayind that we need to have JDK1.5 Update 14 or higher for the installation.
    Now i have JDK 1.5.0_14 installed in my system.So i Uninstalled the EHP 1 for SAP NetWeaver Developer Studio (NWDS)  and i am trying to reinstall it but i am getting the following error
    ERROR:
    Unable to complete action for feature "SAP NetWeaver Developer Studio Facades" due to errors.
        Execution failed! Commmand: "msiexec.exe /norestart /qb /i librfc32.msi /lvx C:\DOCUME1\NS46249\Local Settings\Temp\com.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log ALLUSERS=2 REBOOT=ReallySuppress". Exit value: "1639". Working directory: "D:\Program Files\SAP\IDE\CE7.1.1\eclipse\features\com.sap.netweaver.developerstudio.facades_7.1.0.081112155351". Log file: "C:\DOCUME1\NS46249\Local Settings\Temp\com.sap.netweaver.developerstudio.facades_librfc32.msi_install_standard.log".
    Can anybody please help me in resolving this issue.Please help needed as early as possible.
    Thanks in Advance:)
    Regards,
    Nishita Salver

    Dear Nishita,
    I hope you have removed the older version of jdk before installing the new version of jdk. Also after un installation of NWDS, did you delete all the temp files and also the directories created during the original installation of NWDS. Also did you restart your system after the uninstallation of NWDS EHP1 and older jdk before reinstallation of the two softwares?
    Regards,
    Veera
    P.S. The first thing you can try is restarting the PC and try resuming the installation, if it doesnt succeed, please remove all traces of NWDS and JDK, restart pc and then resinstall both of them.

  • Component Version "SAP ERP 6.0" instead of "EHP 4 for SAP ERP 6.0 /7.0"

    Hi All,
    We went to ERP Enhancement Package 4 in ours SAP Systems.
    We performed the upgrade (with the SAPehpi tool) in DEV and TEST, the weird part is that in DEV the System Data - Component Version shows "SAP ECC 6.0" and in TEST shows "EHP 4 for SAP ERP 6.0 /7.0".
    The 2 systems have the same SP level.
    Any idea ?
    Thanks,
    Juan.

    Hi,
    After EHP4 upgrade it should show ECC 6.0 only.
    check below thread:
    /thread/1432042 [original link is broken]
    Thanks
    Sunny

  • Ticket SAP Solution Manager 7.0 to SAP EHP 1 for SAP Solution Manager 7.0

    Hi,
    I want to migrate all tickets from SAP Solution Manager 7.0 to SAP EHP 1 for SAP Solution Manager 7.0 , please let me know the procedure how to migrate it.
    DB Detail
    SAP Solution Manager 7.0 - MSSQL( 9.00.4035)
    SAP EHP 1 for SAP Solution Manager 7.0 - MSSQL(10.00.2531)
    Thanks,
    Kaleel

    Dear Mohamed,
    I was reading the post and the replies and while I think your question has been answered, I just want to make sure what you are trying to achieve. Is it a migration, where you have one Solution Manager system on SAP Solution Manager 7.0 and another
    SAP Solution Manager EHP1 system and you were looking to migrate the Service Desk messages?
    If you are "Upgrading" one system from Solution Manager 7.0 to  EHP1 then all the messages are preserved.
    If you are "Migrating" to a physically different system, then transfer of Service Desk Messages is not supported.
    Please see the document [SAP Solution Manger-  Conent Transfer|https://websmp204.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000608232009E]
    Also Service Desk is a completely independent CRM Service, so the messages could always be archived, as has been suggested.
    No depending on your scenario, is the EHP1 system brand new or is it already productive? If it was brand new, you might be able to do a homogenous system copy, and then upgrade the new system to EHP1. But if it is already productive, this would not be an option.
    Hope this helps to clarify.
    Regards,
    Paul

  • SAP EHP 1 for SAP Solution Manager 7.0 configuration check

    Hi All,
    I have configured my SAP EHP 1 for SAP Solution Manager 7.0 according to the guide. Now i would like to test my configuration. Please provide me with a check list and test scenarios.

    SOLMAN_SETUP will guide you to setup SOLMAN, after you setup you gotta make sure that everything is green or resolve the errors.
    SMSY---> Ssystem Check RFC Connections,check the SLDCHECK.
    Refer to OPERATIONS GUIDE under INSTGUIDES, which is very detailed.
    Thanks
    SM

Maybe you are looking for

  • Finding row attribute data in the debugger

    Open a Row object in the debugger and you get an incredible tangle of data with non-explanatory names. What I can't find is that actual attribute data that the Row holds. Is there any kind of general rule for finding it?

  • Java script and WAD

    Hi ,   Can any one send me java script document or sample code for WAD . I want to custiomize the WAD using java script . Points will be rewarded. Please do not send 3.5 Web API Reference or link from SDN . That I have it already. Thanks, Aparna

  • PSE 6 - Copy and Paste Text

    I have a map open in PSE 6. I would like to use a simple letter "v" to indicated direction of travel on the map multiple times. I've figured out how to rotate the letter to follow the route. The process of copying and then pasting the same letter mul

  • .Shg images converted to .gifs in output, popup funcionality erratic

    Hello all, I just recently published my formerly Winhelp output to Webhelp instead and have been fairly pleased with how everything has converted. It eliminated a lot of display problems. However, I noticed that all of my .shg images using popups/jum

  • Migrate Dual Booted MBP

    I have looked around a lot and cannot seem to find an answer to this question: I have a MacBook Pro running Mountain Lion, that I have partitioned to also run Windows 8. My question is, I will be getting a Mac Mini in the next couple of days and be g