Need to develop a Mobile Application for Time Entry

Hi,
I need to develop a Mobile App for Time Entry details which can used as an Applicaion on Android or iOS.
Can anyone help me with the approach i need to follow to develop such an application which can be used on Android or other OS.
Thanks,
CV

Hi CV,
Oracle Application Development Framework Mobile (ADF Mobile) browser is a standards-based framework that enables the rapid development of enterprise mobile applications. Oracle Fusion Middleware 11g release 1 of ADF Mobile browser extends Oracle ADF to browsers running on mobile devices. Because ADF Mobile browser is built upon the component model of Java Server Faces (JSF), you can quickly develop applications for mobile browsers. ADF Mobile browser's mobile-specific extensions to JSF enable you to develop mobile applications using the same methodologies for developing JSF applications for the desktop.
http://docs.oracle.com/cd/E17904_01/web.1111/e10140/pda_ovrv.htm#ADFMB101
Cheers,
Vlad
Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question. If you think this is helpful, please consider giving points

Similar Messages

  • I am a beginner programmHow do I start developing mobile applications for iOS?

    I want to start building mobile applications for use on my iPhone.  I have little to no experience in software development.  What do I need to do to get started?

    Learning to program and then becoming familiar with xcode and objective-C is a long road to travel.  If you google for xcode tutorials and objective-c tutorials, you might find some.  Also, books is another way become familiar with programming for iOS and OSX.  Go to Amazon and search for xcode 4 and for objective-c and Cocoa programming - look for the books with high ratings.
    For example, one of the links at the right lead to the following helpful post:
    The three best places to start;
    Read through them in the order listed.
    Apple iOS Developer Library / This includes Frank Caggiano's sugjestion of Start Developing iOS Apps Today.
    http://developer.apple.com/library/ios/navigation/#section=Resource%20Types&topi c=Getting%20Started
    Apples, Programming with Objective-C
    http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/Programmi ngWithObjectiveC/Introduction/Introduction.html#//apple_ref/doc/uid/TP40011210
    Programming in Objective-C, By Stephen G. Kochan / I read through a tone of books until I found this one.
    http://www.informit.com/store/programming-in-objective-c-9780321887283

  • I have an iPhone application already developed and it works great ,now i need to make that same application for my iPad .can someone please tell me step by step instructions on how to make it .

    i have an iPhone application already developed and it works great ,now i need to make that same application for my iPad .can someone please tell me step by step instructions on how to make it .

    Try the developer's forum:
    https://discussions.apple.com/community/developer_forums

  • HP Pocket Playlist mobile application for windows 8 devices

    Hi,
    does someone know why there is not HP Pocket Playlist mobile application for Windows 8 phones? or when the application will be available in the app store?
    Any information is very welcome.
    Regards,
    Fer

    I am very dissappointed, I am also not able to find an app for my Windows 8.1 phone. Please tell us where we are to get it.

  • I don't want Adobe to open up and be selected immediately. I work with iPhoto and Ipages etc and preview which needs to be my main application for my work , but need adobe reader for other files... how can I do this please?

    I don't want Adobe to open up and be selected immediately. I work with iPhoto and Ipages etc and preview which needs to be my main application for my work , but need adobe reader for other files... how can I do this please?

    loopiloo1 wrote:
    I don't want Adobe to open up and be selected immediately.
    Sorry, I don't understand this - you don't want Adobe [Reader] not to open when doing what?  On what operating system?

  • Custom Fast formula for Time Entry Rule in OTL

    Hi,
    i have created custom validation for time entry rules. I need to validate where Project and task fields are null or not? If Yes, it has to fire the custom message that i have mentioned in function. Please check the below code and help me whether i am on right path:
    CREATE OR REPLACE FUNCTION NON_pto_against_projects (
    p_time_category_id NUMBER,
    p_person_id NUMBER
    RETURN VARCHAR2
    IS
    --Variables used for retrieving timecard id and ovn
    l_db_pre_period_start DATE;
    l_db_pre_period_stop DATE;
    l_time_building_block_id hxc_time_building_blocks.time_building_block_id%TYPE;
    l_object_version_number hxc_time_building_blocks.object_version_number%TYPE;
    --Variables used for loading timecard tables
    l_time_building_blocks hxc_self_service_time_deposit.timecard_info;
    l_time_app_attributes hxc_self_service_time_deposit.app_attributes_info;
    l_attributes hxc_self_service_time_deposit.building_block_attribute_info;
    --Variables used for getting exploded time details
    v_blocks_tab hxc_block_table_type;
    v_attr_tab hxc_attribute_table_type;
    l_messages_tab hxc_message_table_type;
    l_detail_blocks hxc_self_service_time_deposit.timecard_info;
    l_detail_messages hxc_self_service_time_deposit.message_table;
    CURSOR csr_category_elements (p_category_id NUMBER)
    IS
    SELECT 'ELEMENT - ' || TO_CHAR (value_id) element_type_string
    FROM hxc_time_category_comps_v
    WHERE time_category_id = p_category_id;
    l_cat_elements_string VARCHAR2 (2000);
    l_temp VARCHAR2 (1000); --Trace message
    l_success_flag CHAR (1); --Return values
    BEGIN
    --Initialize variables
    l_success_flag := 'S';
    l_time_building_blocks := hxc_self_service_time_deposit.get_building_blocks;
    l_attributes := hxc_self_service_time_deposit.get_block_attributes;
    v_blocks_tab :=
    hxc_deposit_wrapper_utilities.blocks_to_array (l_time_building_blocks);
    v_attr_tab :=
    hxc_deposit_wrapper_utilities.attributes_to_array (l_attributes);
    IF v_blocks_tab.FIRST IS NOT NULL
    THEN
    Take each ELEMENT type attribute, and search whether PROJECTS type attribute exists for the SAME BLOCK-START
    FOR index1 IN v_attr_tab.FIRST .. v_attr_tab.LAST
    LOOP
    IF v_attr_tab (index1).attribute_category = 'ELEMENT - %'
    THEN --Element attr
    FOR element_rec IN csr_category_elements (p_time_category_id)
    LOOP
    If Element Attribute matches any of the NON-TOP elements in the Time Category-START
    IF v_attr_tab (index1).attribute_category =
    element_rec.element_type_string
    THEN
    Check PROJECTS Attributes project and task belonging to ELEMENT attribute's owner block-START
    l_success_flag := 'E';
    FOR index2 IN v_attr_tab.FIRST .. v_attr_tab.LAST
    LOOP
    IF v_attr_tab (index2).attribute_category LIKE
    'PROJECT - %'
    AND v_attr_tab (index2).building_block_id =
    v_attr_tab (index1).building_block_id
    AND v_attr_tab (index2).attribute1 IS NOT NULL
    AND v_attr_tab (index2).attribute2 IS NOT NULL
    THEN
    l_success_flag := 'S';
    EXIT;
    END IF;
    END LOOP;
    IF l_success_flag = 'E'
    THEN
    RETURN 'E';
    END IF;
    Check PROJECTS Attributes project and task belonging to ELEMENT attribute's owner block-END
    END IF;
    If Element Attribute matches any of the NON-TOP elements in the Time Category-END
    END LOOP;
    END IF; --Element attr
    END LOOP;
    Take each ELEMENT type attribute, and search whether PROJECTS type attribute exists for the SAME BLOCK-END
    END IF;
    RETURN l_success_flag;
    EXCEPTION
    WHEN OTHERS
    THEN
    RAISE;
    END NON_pto_against_projects;

    INPUTS ARE resource_id (number)
    , submission_date (text)these inputs are passed in PLSQL Code and some of them in formula context
    2. While we define a new context for a time entry rule. How is the data that we enter in the time entry rule passed to the fast formula?See the time Rule entry screen and you will find the parameters window there.

  • CAT2 for Time Entry (single and multiple)

    Hello all,
    We have been using CATW for time entry and CAT2 for multiple time entry and have security set up accordingly. We're thinking of moving to CAT2 for all time entry but need to make sure we can configure to allow single time entry for those reporting only their own time, and multiple time entry for those reporting their own as well as others. I think this may be doable between a combination of security and IMG/Data Entry profile work. Does anyone have any experience using CAT2 in this way?
    Thanks,
    Doug

    First create a  data entry profile/CVR through SPRO for a time sheet,
    Then assign this profile to a user through user parameter CVR (Cats Variant for Recording) in the table USR05.
    This CVR is used in CAT2 to access the time sheet corresponding to the profile assigned to the user.
    Thanks
    Mahi

  • Authorization for Time Entry on Cost Center Level

    Hi Experts,
    Would like to know, if we can do authorisation for time entry on the base of cost center. For example, an employee worked for 8 hrs and out of that 2 hrs worked for different cost center. That 2 hrs should be approve by Manager of that cost center and 6 hrs from his current cost center.
    I thought of Structural Authorisation but not sure how it will work. I would appreciate prompt response on the same.
    Thanks,
    Aashish

    I was pointing out [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] about requesting "promptness" from what is a voluntary effort here to help each other and help those who first try to help themselves (keyword: "search").
    Actually, I noticed that you had cross-posted this thread to the HCM forum. Normally, we move threads to other forums which are more appropriate, and often lock cross-posting. This is one of those grey areas between technical and functional, so I turned a blind eye on it.
    I am hoping that there will be a functionality to mirror good questions to other related forums without having to cross-post. This would be very usefull for sure but the question would have to be good and the person who asked it would have to have a good track record of respecting [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]. Most likely moderators would be the only ones to "mirror" good questions, unless they contain words such as "urgent" or "ASAP" or "prompt" or "points will be rewarded", etc...
    Cheers,
    Julius

  • Developing Mobile Applications for Handhold Wireless Dervices

    Hello!!
    I am new in this technology and i would like someone to guide me.
    I have a project with the following requirements:
    --The first task of the application is the user can add some data, for example name, address etc and then to save them in a database which will be running on the mobile device.
    --The second step is the user to be able to send the data and save them in an other database on a server machine.
    i will use J2ME in order to build the application.
    What i would like to know is what technologies i can use for the database of the mobile device where the user will store for the first time his data.
    What kind of communication between the mobile device and the server will be the most appropriate (eg bluetooth).
    Generally i would like from someone to give me general information about the topic. To guide me.
    Please if you know any book that has most of the answers which i am looking or some semilar examples for please let me know.
    Thank you in advance!

    Hi Shubham,
    i meant with backward compatibility form "lower version to work on higher version".
    The Subject of the Thread ([Backward Compatibility from Web Dynpro-Java (Mobile7.1) to JSP (Mobile7.0)  |Re: Backward Compatibility from Web Dynpro-Java (Mobile7.1) to JSP (Mobile7.0)]) is confusing but it is already the case "lower version to work on higher version".
    I have read in the [Developeru2019s Guide|http://help.sap.com/saphelp_nwmobile71/helpdata/de/8b/0b674240449c60e10000000a1550b0/frameset.htm] about the backward compatibility for [Mobile Client for Handhelds|http://help.sap.com/saphelp_nwmobile71/helpdata/de/45/e5f9386f472e98e10000000a155369/content.htm].
    NetWeaver Mobile offers three handheld clients (based on AWT, JSP, and eSWT) that all share the same base functionality, such as synchronization, persistence, deployment, logging, security, etc. While the AWT and JSP-based clients support full backward compatibility to mobile applications running in NetWeaver '04 and NetWeaver 2004s, the eSWT-based client offers new, additional features, without providing backward compatibility:
    In my research i could not figure out whether this also applies to the laptop client.
    Therefore, i would be interested if the backward compatibility of JSP applications also applies for the laptop client.
    Thanks and Regards,
    Ismet

  • Tutorial for Developing Flex Mobile applications.

    Hello all,
                 Can anyone provide me Tutorials to devleop  Flex Mobile applications which access data from SAP Netweaver Gateway via Flash Builder Plugin?
    Thanks

    This is not a product forum... do you need the flash builder forum?
    How to Select a Forum http://forums.adobe.com/docs/DOC-1015

  • Need to develop a desktop application which can generate timetable

    Hi All,
    Below mentioned is my requirement:
    I need to create a desktop application whch can generate the time table automatically.
    Fields which we give as input are as follows:
    1.No of classess
    2.Teachers along with their subjects
    3.Work load for each teacher for a week
    4.Time intervels when a particular teacher will be available(some teachers will come to school only in afternoons)
    5.Subjects to be taught
    5.Number of periods each subject has to be taught for each class.
    Can anyone send a an algorithm related to this so that I can further develop the same and use it in my application.
    Any suggestions will be of great help to me.
    Thanks
    Muni

    Well... this is a month old not sure will this be too late. Basically I suggest you do some study and reading into relational database and combine with OO programming (if you got time, study UML too),
    if you understand how to draw a relation database tables (doesn't have to be database, you can save data into txt/xml...etc) you pretty much know how to implement your application

  • Create a mobile application for view BW reports.

    I want to create a mobile application with MDK for viewing BW reports. It is possible ?

    Hello,
    I have a similar kind of requirement here.
    I need to show BW data on wireless device...via Portal.
    This BW data is a query, which is created using WAD.
    In normal case, we just use the SAP BW Report iView, stick the Bex query in it and its all done. But in this case....how am to go about this...?
    Ive read about Mobile WebDynpro but want to know that....Mobile Web Dynpro is an oline approach, does it mean that user will be able to drill down from the Bex query??
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu

  • How can we change the field confirmed work of SAP PPM from edit to not edit mode ? I need it into non edit mode for time recording with ChaRM

    Hello everyone,
    Do someone meet this issue ? Do you know if it has a link with customization of ppm or customization of ITSM ?
    Many thanks in advance for your replies !

    It seems that I've solved this issue. To get it work:
    1. Select checkbox Time Recording and Travel Expenses via CATS for project type. Path: SPRO —> SAP Customizing Implementation Guide —> SAP Portfolio and Project Management —> Project Management —> Structure => Define Project Types
    2. Run/schedule a synchronization with the report DPR_CATS_CPR_TRANSF (Transfer of CATS Itemizations to Project Management Application).
    Time Recording from a Request for Change to a PPM ProjectTask - Working with Projects - SAP Library
    Regards,
    Alex

  • Application for time sheet in HR abap

    Hi all,
      please tell me what is the application and output type for time sheet in HR ABAP. and also tell me step by step procedure how to work on HR forms
    Regards,
    Srinivas.

    Hi,
    Regarding Time Sheet Issue....
    To fill in time sheets in SAP . Make use of CATSDB to enter data.
    Goto SE38-->Type CATS* and press f4..you would get the list of the programs..to enter and maintain timesheet data.
    I hope it helps.
    Regards,
    Suruchi

  • Need advice on new hard drive for Time Machine, and have Firewire questions

    I have an Intel iMac 2.66GHz with 500GB internal drive. I am going to buy an OWC 1TB drive to use for Time Machine.
    I also have an older 160GB external drive with Firewire 400. I'd like to continue using it for extra storage, and would like both the iMac's internal drive and the 160GB external drive to be backed up to the new drive.
    OWC's 1TB drive is available with Firewire 400 & USB 2. For an additional $30, it will also have Firewire 800. If I get the Firewire 800 drive and daisy-chain the iMac > new 1TB drive > old 160GB drive, will the iMac to 1TB drive run at 800, or will the 160GB drive's limitation of Firewire 400 pull the speed of the whole connection down to 400? (If the latter is true, then it would be a waste of money to get Firewire 800.)
    Also, will it make much difference whether I use Firewire 800 or 400 for a drive dedicated to Time Machine?
    Finally, the 1TB drive with a 32MB cache costs $20 more than one with a 16MB cache. Is a 32MB cache worth the extra expense for using with Time Machine?
    Thanks!
    Message was edited by: Patrick Houlihan

    Patrick Houlihan wrote:
    If I get the Firewire 800 drive and daisy-chain the iMac > new 1TB drive > old 160GB drive, will the iMac to 1TB drive run at 800, or will the 160GB drive's limitation of Firewire 400 pull the speed of the whole connection down to 400? (If the latter is true, then it would be a waste of money to get Firewire 800.)
    I believe it will operate the entire bus at the slowest speed, but can't say for sure.
    Finally, the 1TB drive with a 32MB cache costs $20 more than one with a 16MB cache. Is a 32MB cache worth the extra expense for using with Time Machine?
    I went with the cheaper, smaller cache OWC drives for my backups on the theory that if caches speed repeated access of the same data, and a backup is always a single-pass stream of non-repeating data, then with a backup the data that goes in the cache doesn't need to be fetched again and therefore the cache isn't much help for backups. I'd love to hear if that's true.
    I didn't answer the one about FireWire 800 for Time Machine because my Time Machine backups are over the network to Time Capsule. However, having a faster Time Machine drive interface should be faster. FireWire 800 certainly speeds things up for non-Time Machine backup software like SuperDuper which I also use.

Maybe you are looking for

  • MRP at storage location level with external requirements

    HI, We have to have reorder point planning at storage location level. Also we need to consider external requirements. When I am setting storage location MRP indicator as 2 and putting Reorder point and replenishment quantity, then after running MRP i

  • ATV not shown in devices list and firewall port 3689

    Having a nightmare with ATV. I have searched and found some help for some of the ATV problems I have had in other threads but seems that a couple of issues remain unsolved for most people. I have just purchased an ATV updated it to latest software; a

  • Can't connect to Internet after update

    I've had this issue before but I was atleast able to get on iTunes & firefox. After this update my comp can't connect to the Internet period. I called my cable company & everything was working fine on their end. My modem communicates that it's linked

  • Determining image types used in pdf

    Hi, I was sent a pdf by a client and was wondering if there was a way to determine what types of images he used in the file. For example, did he use .jpg, .tif,, .eps etc. Thanks, Andrew Hutton [signature deleted by host]

  • 200MHz FSB when I want 800MHz

    This is probably a rather simple/stupid question but I have an 800MHz FSB P4 and 2 banks of DDR400 and therefore thought I would get a FSB of 800MHz.  However, when I check CoreCentre it records an FSB speed of 203MHz, multiplier of 13 giving the CPU