ABAP on iPad 2

Hi all ...
Has anyone tried installing a SAP Logon Pad on iPad 2 and do ABAP on it?
If you do how does it feel?
I just finish my project... nothing to do... drank my coffee... and all sort of ideas creeping out of my mind... don't know if i am suffering from post go live project syndrome - the sudden of nothing to do... and thinking a lot of weird stuffs thereafter... and my basis is looking at me with a weird look...
Wilstroth...
Edited by: william wilstroth on Jun 1, 2011 5:06 PM

william wilstroth wrote:
> post go live project syndrome - the sudden of nothing to do... and thinking a lot of weird stuffs thereafter... and my basis is looking at me with a weird look...
No Vacations ?

Similar Messages

  • WD ABAP on IPAD - drop down not working on IPADA / TABLETS

    Hi Experts
    We are on NW 7.0 and EHP2 for E-recruitment system. We have a candidate registration WD ABAP application.
    Application sccessfully opens on IPAD but drop down not working even we can not select any value from the drop down.
    Pleas can you suggest some fix for this.
    If we can acheieve this functionality fo IPADS and TABLETS.
    Much appreciated inputs in this direction.

    Hi,
    There are known restrictions for browser support in web dynpro abap. You may have to implement the "Unified rendering corrections " SAP Notes for your netweaver version which has constant updates for browser support, UI element enhancements and other corrections Or import the relevant support packs.
    For ex: SAP Notes: 1677729 and 1672454
    hope this helps,
    Regards,
    Kiran

  • EREC external user registration - WD ABAP on IPAD - drop down not working on IPADA / TABLETS

    Hi Experts
    We are on NW 7.0 and EHP2 for E-recruitment system. We have a candidate registration WD ABAP application.
    Application sccessfully opens on IPAD but drop down not working even we can not select any value from the drop down.
    Pleas can you suggest some fix for this.
    If we can acheieve this functionality fo IPADS and TABLETS.
    Much appreciated inputs in this direction.

    Using http://service.sap.com/pam you can check which browsers are supported for which application/version. This is for apple safari:
    Product Version
    Release Category
    Product Instance
    Web-Browser
    Web-Browser maintained until
    Operating System
    Operating System maintained until
    Scope
    Scope maintained until
    Status
    Valid from
    Additional Information
    Link to SAP Service Marketplace. Disclaimer: Please note that the online information on SAP Service Marketplace is the most recent information.
    SAP EHP2 FOR SAP NETWEAVER 7.0
    Web Browser Platforms
    Application Server ABAP
    APPLE SAFARI 6
    OS X 10.8 (MOUNTAIN LION)
    SAP BASIS 7.02 [>= SAPKB70212]
    31.12.2020
    Released
    03.12.2012
    https://service.sap.com/sap/support/pam?hash=pvnr%3D01200615320900003225%26pt%3Dt%257CWBRPFM%26ainstnr%3D01200615324900006401
    SAP EHP2 FOR SAP NETWEAVER 7.0
    Web Browser Platforms
    Application Server ABAP
    APPLE SAFARI 7
    OS X 10.9 (MAVERICKS)
    SAP BASIS 7.02 [>= SAPKB70215]
    31.12.2020
    Released
    06.02.2014
    https://service.sap.com/sap/support/pam?hash=pvnr%3D01200615320900003225%26pt%3Dt%257CWBRPFM%26ainstnr%3D01200615324900006401

  • Error while opening Fiori app on iPad

    I keep getting "Service XXXX failed. Contact your system administrator. Cannot call service with URL: /sap/opu/....." error on the iPad - both in the browser and the Fiori client. I am able to login to the launch pad and also see the apps, the error is triggered if I click one of the apps / tile.
    I believe this would be triggered if the service wasn't activated. In our case, the service is active and the application works well on the laptop browser via the launch pad. Strange that the same app isn't working on the iPad browser and gives this error. 
    Note - I have given the Fiori Launchpad URL in my laptop browser, iPad browser (tried with Chrome and Safari) and Fiori mobile client.
    Any tips on how to troubleshoot ?
    Regards,
    Parag.

    Both Gateway and ERP are Unicode. Dump details below:
    Category               Internal Kernel Error
    Runtime Errors         CALL_FUNCTION_SEND_ERROR
    Application Component  BC-ABA-LA
    Short text
        " " (I/O error)
    What happened?
        "CPIC-CALL: 'ThCMSEND' : cmRc=18 thRc=0#Statistics not active "
        An error occurred when executing a Remote Function Call.
    Error analysis
        An error occurred when executing a Remote Function Call.
        "CPIC-CALL: 'ThCMSEND' : cmRc=18 thRc=0#Statistics not active "
        Status of connection.... "CODE=CM_DEALLOCATED_NORMAL CM_SEND_RECEIVED
         CM_COMPLETE_DATA_RECEIVED SAPCODE=0 CONV=52753777"
        Internal error code.... "RFC_IO5"
        There is an error in the communication system. To clarify
        and resolve the error, contact your system administrator.
    Information on where terminated
        Termination occurred in the ABAP program "/IWBEP/SAPLFGR_MGW_CLIENT_IF" - in
         "/IWBEP/FM_MGW_MED_LOAD".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 1
        of the (Include) program "/IWBEP/LFGR_MGW_CLIENT_IFU03".

  • Sha256 - how to do this javascript in ABAP. Is it possible?

    Hello,
    I would like to use the amazon product advertising api. For this my requests need to be "signed". In an example I found the following javaScript for signing requests:
         function sign(secret, message) {
           var messageBytes = str2binb(message);
           var secretBytes = str2binb(secret);
           if (secretBytes.length > 16) {
               secretBytes = core_sha256(secretBytes, secret.length * chrsz);
           var ipad = Array(16), opad = Array(16);
           for (var i = 0; i < 16; i++) {
               ipad<i> = secretBytes<i> ^ 0x36363636;
               opad<i> = secretBytes<i> ^ 0x5C5C5C5C;
           var imsg = ipad.concat(messageBytes);
           var ihash = core_sha256(imsg, 512 + message.length * chrsz);
           var omsg = opad.concat(ihash);
           var ohash = core_sha256(omsg, 512 + 256);
           var b64hash = binb2b64(ohash);
           var urlhash = encodeURIComponent(b64hash);
           return urlhash;
    Could someone please tell me if this is also possible with ABAP and if yes, how?
    Thanks a lot in advance. Unfortunatley I don't get it done by myself.
    bye, Vanessa

    Hi
    You can code JavaScript directly in your ABAP code.
    data: l_JS_PROCESSOR type ref to CL_JAVA_SCRIPT,
          l_RETURN_VALUE type STRING,
          l_SOURCE       type STRING.
    Create a new javaScript
    l_JS_PROCESSOR = CL_JAVA_SCRIPT=>CREATE( ).
    Your Javascript code
    concatenate
       'var l_source = "Hello,"; '
       'l_source += " World"; '
        into l_SOURCE separated by CL_ABAP_CHAR_UTILITIES=>CR_LF.
    compile the code
    l_JS_PROCESSOR->COMPILE( SCRIPT_NAME = 'MYSCRIPT.JS' SCRIPT = L_SOURCE ).
    syntax errors ?
    if l_JS_PROCESSOR->LAST_CONDITION_CODE <> 0.
       write: / 'Error', l_JS_PROCESSOR->LAST_ERROR_MESSAGE.
       exit.
    else.
       write / 'compiled'.
    endif.
    execute
    l_JS_PROCESSOR->EXECUTE( SCRIPT_NAME = 'MYSCRIPT.JS' ).
    Errors ?
    if l_JS_PROCESSOR->LAST_CONDITION_CODE <> 0.
       write: / 'Error in execution',l_JS_PROCESSOR->LAST_ERROR_MESSAGE.
       exit.
    else.
       write / 'Script was executed'.
    endif.
    return the output variable
    l_RETURN_VALUE = l_JS_PROCESSOR->EVALUATE( JAVA_SCRIPT = 'l_source;' ).
    write : / l_RETURN_VALUE.

  • IPads: Does MY_WDA works as usual in iPads?

    Hello
    We developed a custom web dynpro ABAP (WDA) app, say, MY_WDA, working well, but now our company gave iPads to some users, hence pls. suggest us
    (Pls. note in MY_WDA we have different kind of UI elements, input fields, drop downs, Adobe Interactive Form, Buttons, Link to Action, table)
    1) Does these users can launch & use the MY_WDA as usual on their iPads? or
    2) Do I need to make any changes in MY_WDA so that it will be compatible to iPads
    3) Does users has to change their iPads settings in their iPads?
    4) Any other suggestions / tips?
    Thank you

    Webdynpro ABAP is not responsive so the users experience will probably be a bit on the "bad" side.
    It should work, since Safari is webkit based, but don't expect them to like it much.
    I doubt the Adobe Forms will work though.
    For mobile devices SAPUI5 is the better (more complex) option.
    As a final tip, you really need to test it before telling your users they can use it. Only you will be able to evaluate if the experience is good enough and if it still achieves the business requirement.

  • Is there a way of getting a "schedule view" in iCal on a mac and on iPad in the same way you can get one on iPhone?

    IS there a way to get a schedule view of events on a busy day in iCal on the iPad 2 Air and on the Macbook Pro?  I can get this view on an iPhone.

    I am paranoid that some untrusted technician is going to make a copy of my music (11,000 tracks) or share some of my personal information (scanned copies of my birth certificate, passport, certificates, photos, etc.) on the web.
    If you put your info into the computer and hand it to another, you have to assume they will copy everything.
    Why are you putting scanned copies of valuable identity information into a computer than can be hacked, stolen, lost or compromised by a dirty tech?
    Have you lost your mind?
    Is there a way of finding out what activity has taken place whilst they've had it in their possession?
    No. The tech would just deny it if he did, or tell the truth which the answer would be "NO" in either case.
    The employer won't ask that sort of questions without solid proof, less they make a enemy of the employee and/or risk being sued for defamation of character.
    It's not like they bother to have a team of people watching over his shoulder that he doesn't stick a USB thumb drive of your data into his pocket to take home.
    I am paranoid that some untrusted technician is going to make a copy of my music (11,000 tracks)
    If it's iTunes music, it has your personal ID embedded into the song files. Most IT techs know this though.
    I appreciate any advice you guys can offer.
    Too late now, all you can do is not worry about it.
    Take your personal info out of the machine and if you need it, burn cd/dvd copies, a few USB thumb drives, Iron Keys or self encrypting external storage drives with key and/or keypad.

  • How can a family share an iPad, specifically, using email? Seperate account

    I know, you can have multiple email accounts. i have 3 on my iphone 4. But if my wife, daughter, and I all use the ipad. Can you set up email to ask for what account to load?
    Again, i know you can switch after the fact. I am trying to avoid the scenario where I may see my daughter email, or my wife may see mine. Not that we have anything to hide. But if i order flowers or something, i wouldn't want here to inadvertently see the conf email because ipad defaulted to my account.

    Perhaps consider setting your family up with Gmail accounts. Gmail (Google's email service, even though you probably already knew that) is totally free and has an awesome web interface, especially on the iPad. Then each member of your family could log in/out of their Gmail accounts using mobile Safari.

  • How can I setup a mail-specific passcode/restriction on iPad used by multiple family members?

    How can I setup a mail-specific passcode/restriction on iPad used by multiple family members?
    Have an Exchange mail account setup and accessible in my mail on iPad... however my kids use it and i would like to restrict them from accessing this specific portion of the device.  I tried viewing restriction options and do not see that i can apply a restriction specifically to Mail.  Thanks for your help.

    Not a feature of iOS. Check the AppStore to see if there are other
    mail apps that allow passcode protection.
    Or use Safari to log onto your email via a web-based interface and
    enter your credentials each time. A bit slower, but the kids will
    not know the details to login.

  • How can I use multiple ipad's on one account without sharing individuals personal email accounts?

    Is it possible to have multiple ipads on one account and share info, but also allow the individual users to have personal email that is not seen on the other ipad's? We have all ipads on same icloud account because we all need to see the same ical. It seems like that's the problem. If it IS related to icloud then if we have separate icloud accounts, how would we share the main ical otherwise? Sharing the ical is very important for this business so everyone can access the daily schedule. Of course each user still wants to have private email.
    Hope this wasn't too confusing!
    Thanks!
    Doreen

    you could set up the main icloud itunes acount for ical and not have in setup on the devices
    and share the calandar with the other itunes accounts on the devices
    or only have it on one device
    devices have the users indervidual itunes icloud setup
    they should be able to access the shared "main" itunes icloud ical account once it's shared
    http://howto.cnet.com/8301-11310_39-57542557-285/three-methods-for-sharing-an-ic loud-calendar/
    if the devices are company owned you could go futher and setup find my iphone on the main itunes account
    and not on the user icloud accounts

  • Issue in Creation of XML file from ABAP data

    Hi,
    I need to create a XML file, but am not facing some issues in creation of XML file, the in the required format.
    The required format is
    -<Header1 1st field= u201CValueu201D 2nd field= u201CValueu201D>
       - <Header2 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 10 fields>
              <Header3 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
              <Header4  1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 4 fields/.>
               <Header5 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
          </Header2>
       </Header1>
    Iu2019m using the call transformation to convert ABAP data to XML file.
    So please anybody can help how to define XML structure in transaction XSLT_TOOL.
    And one more thing, here I need to put the condition to display the Header 3, Header 4, Header 5 values. If there is no record for a particular line item in header 3, 4 & 5, I donu2019t want to display full line items; this is only for Header 3, 4 & 5.
    Please help me in this to get it resolved.

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

  • Logical command in ABAP.....Urgent

    Hi,
      i am pretty new using ABAP program so i neeed help urgently. i am trying to move a file on the application server from one directory to the other and i was using the open dataset function to do that. but the file i am trying to move is pretty big and because i am using internal table to store, it is causing problems with the space.
      i have consulted the basis guys and they have managed to create a logical file for copying from one directory to the other on the application server. to help you furthter. i am enclosing the mail sent to me.
    I have created a logical command which should copy the file from one location to the other but you need to pass it the source dir and file name and the destination dir and file name.
    The logical command is ZCOPY and uses cmd /c copy
    Copies one or more files to another location.
    COPY [/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]
         [+ source [/A | /B] [+ ...]] [destination [/A | /B]]
      source       Specifies the file or files to be copied.
      /A           Indicates an ASCII text file.
      /B           Indicates a binary file.
      destination  Specifies the directory and/or filename for the new file(s).
      /V           Verifies that new files are written correctly.
      /N           Uses short filename, if available, when copying a file with a
                   non-8dot3 name.
      /Y           Suppresses prompting to confirm you want to overwrite an
                   existing destination file.
      /-Y          Causes prompting to confirm you want to overwrite an
                   existing destination file.
      /Z           Copies networked files in restartable mode.
    The switch /Y may be preset in the COPYCMD environment variable.
    This may be overridden with /-Y on the command line.  Default is
    to prompt on overwrites unless COPY command is being executed from
    within a batch script.
    the problem now is i have no idea about how to use the logical command. can any one help me.
    Thank you,
    Ravi.

    If memory is not an issue, then there should be no reason why this should not work.
    report zrich_0001.
    parameters: d1 type localfile default '/usr/sap/TST/SYS/Data1.txt',
                d2 type localfile default '/usr/sap/TST/SYS/Data2.txt'.
    data: itab type table of string with header line.
    start-of-selection.
    * Read old file
      open dataset d1 for input in text mode.
      if sy-subrc = 0.
        do.
          read dataset d1 into itab.
          if sy-subrc <> 0.
            exit.
          endif.
          append itab.
        enddo.
      endif.
      close dataset d1.
    * Write to new file
      open dataset d2 for output in text mode.
      loop at itab.
        transfer itab to d2.
      endloop.
      close dataset d2.
    * Delete the old file
      delete dataset d1.
    Regards,
    Rich Heilman

  • Logical Database in Abap Objects

    Hi to All
    I want do it a program report using a Logical Database.
    Is this possible ??? But when I make a GET <node>, occurs the following error:
             "" Statement "ENDMETHOD" missing.  ""
    I'm doing the following:
    CLASS MONFIN IMPLEMENTATION.
           METHOD TRAER_DATOS.
                   GET VBRK.
           ENDMETHOD.
    ENDCLASS.
    Please, somebody tell me how I use the logical database in Abap Objects.
    Thank you very much
    Regards
    Dario R.

    Hi there
    Logical databases whilst of "some use" are not really part of OO.
    If you want to use a logical database in an abap OO program I would create a special class which just does the get data from your DB and pass this either at record or table level.
    Techniques such as GET XXXX LATE aren't really part of any OO type of application since at Object Instantiation time you should be able to access ALL the attributes of that object.
    As far as OO is concerned Logical databases are a throwback to "Dinosaur Technology".
    Since however modules such as SD and FI are still heavily reliant on relational structures (i.e linked tables etc)  then there is still some limited life in this stuff but for OO try and solve it by another method.
    If you really must use this stuff in OO then do it via a FMOD call and save the data in a table which your method will pass back to your application program.
    You can't issue a GET command directly in a method.
    Cheers
    Jimbo

  • LOGICAL DATABASE IN HR ABAP PRPGRAMMING

    Hi Friends,
    what is use of LOGICAL DATABASE IN HR ABAP PROGRAMMING
    AND END-OF-SELECTION EVENT IN HR PROGRAMMING PROGRAMMING???
    regards,
    vijay.

    hi
    HR Logical Databases
    In Human Resources (HR), the following logical databases can be used as a data source for HR InfoSets:
    PNP (PNPCE)
    PAP
    PCH
    By selecting a logical database, you determine the HR data that can be reported on using an InfoSet.
    Logical Database PCH
    This logical database generally enables you to report on all HR infotypes. However, you are advised not to use this logical database unless you want to report on Personnel Planning data.
    Logical Database PNP (or PNPCE)
    Use logical database PNP to report on HR master data. It is possible to use logical database PCH to access this data, but PNP meets such reporting requirements more quickly because it is best suited to the task of selecting persons.
    Logical database PNP enables you to access HR master data and infotypes from Personnel Planning. For example, you have the following options:
    Reporting on the costs, number of attendees booked, and instructor for a business event on which an employee is booked
    Reporting on working time and planned compensation for a position that an employee occupies
    Reporting on the validity and proficiency of a qualification that an employee fulfils
    From a technical perspective, this means you can use PNP to report on all of the infotypes that exist for objects (infotype 1000) that have a direct relationship (infotype 1001) with the Person object.
    The ability to access infotypes from Personnel Planning using logical database PNP is a special feature that you can only use in the context of SAP Query and Ad Hoc Query. You cannot use this functionality for ABAP reports you programmed yourself.
    You can also use logical database PNP to report on data from Personnel Time Management (infotypes 2000 to 2999) and Payroll (special payroll infotypes for the USA and customer infotypes; for more information, access Customizing for the Human Resources Information System and see Payroll Results).
    Logical Database PAP
    Logical database PAP enables you to access data from Recruitment.
    regards
    navjot
    reward if helpfull

  • FileName in ABAP XSLT Mapping

    Dear SDN,
    In an integration scenario we are using sender File Adapter and a  ABAP XSLT Mapping.
    Is there any way to get the source FileName from such mapping.  Im trying to use the adapter-specific message attributes, but it doesn't work, and I didn´t find an example, probably I and doing somthing wrong.
    regards,
    GP

    Thank you for your help,
    I just try to access the adapter-specific attibutes using:
    <xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:key="java:com.sap.aii.mapping.api.DynamicConfigurationKey">
    <xsl:variable name="filename"  select="key:create('http://sap.com/xi/XI/System/File', 'Directory')" />
    </xsl:stylesheet>
    but the following error raised:
    <SAP:Stack>Error while calling mapping program YXSLT_TEST (type Abap-XSLT, kernel error ID CX_XSLT_RUNTIME_ERROR) Call of unknown function</SAP:Stack>
    have you had this situation?

Maybe you are looking for