Formula Functions - A basic question

Hi,
This must be very basic. Please bare with me.
What is the difference in defining a formula function as 'External' and 'User Defined Function' and 'Formula' class?
I read some where that you can use contexts in class 'External' and cannot in user defined. But when I see the seeded formula functions both the types have contexts. Is this classification insignificant? Can somebody clarify this.
Thanks in advance.

http://www.google.com.au/url?sa=t&rct=j&q=oracle%20cost%20group&source=web&cd=1&sqi=2&ved=0CGAQFjAA&url=http%3A%2F%2Fdocs.oracle.com%2Fcd%2FE18727_01%2Fdoc.121%2Fe13434%2FT210618T210754.htm&ei=tR4yUPzyFMmwiQe59YHoDw&usg=AFQjCNFzy3rZkjxtgiMF3FsZXKlUxVIUGw&sig2=RKE5PF-wrc_5q_Jeo2tOFg

Similar Messages

  • Function module - basic questions

    Hi Experts ,
    I wanted to know some basic concepts of the function module :
    My question is :
    1) What is the "Type ref " in a function module import or export ?
    2) An example of a standard function module where type ref is used.
    3) What is the use of changing tab ? what do we use this tab for ?
    4) An example of a standard function module where a parameter is declared in Changing tab.
    5) what is the use of a Exception tab ? is it any thing similar to exceptions in java ?? can you throw the excetion and write a common code in a catch to handle the exception ?
    Can anyone help me ?
    Regards,
    Ashish Shah

    Hi
    Hi,
    Function Modules;
    Check this matter.
    Function Modules are Glopbal ABAP programs created by SAP for reusable purpose.they have IMPORT,EXPORT and TABLE parameters, and EXCEPTIONS to through when error occurs.
    You can create them from TCode SE37.
    Go through the following doc:
    Function modules are cross-program, reusable procedures that are organized into function groups, and whose functions are implemented between the statements FUNCTION and ENDFUNCTION. Function modules and their interfaces are created in the Function Builder.
    Function Module Interfaces
    The parameter interface of a function module is defined in the Function Builder. It includes the definition of interface parameters and the specification of exceptions that can be triggered by a function module. The Function Builder automatically generates comment lines below the FUNCTION statement in the source code of the function module, which represent the interface of the function module with the following syntax:
    Syntax
    ... [IMPORTING parameters]
    [EXPORTING parameters]
    [CHANGING parameters]
    [TABLES table_parameters]
    [{RAISING|EXCEPTIONS} exc1 exc2 ...]
    The syntax and semantics of IMPORTING, EXPORTING, CHANGING, RAISING, and EXCEPTIONS mainly correspond to the definition of method interfaces with [CLASS-]METHODS. The additional option of defining table parameters using TABLES is obsolete.
    Interface parameters
    The interface parameters are defined on the relevant tab pages in the Function Builder.
    IMPORTING parameters are input parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input parameter. The content of the actual parameter is passed to the input parameter when the call is made. The content of an input parameter for which 'pass by reference' is defined cannot be changed in the function module.
    EXPORTING parameters are output parameters. When the function module is called, a suitable actual parameter can be specified for every output parameter. The content of an output parameter that is defined for 'pass by value' is transferred to the actual parameter if the function module is completed without errors. An output parameter that is defined for pass by reference is not initialized when the function module is called.
    CHANGING parameters are input and output parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input or output parameter. When the function module is called, the content of the actual parameter is passed to the input/output parameter, and when the function module is completed, the content of the input/output parameter is passed to the actual parameter.
    TABLES parameters are table parameters. Table parameters are obsolete CHANGING parameters that are typed as standard tables with a header line. If an internal table without a header line or a table body is passed as an actual parameter to a formal parameter of this type, an empty local header line is generated in the function module. If an internal table with a header line is used as an actual parameter, both the table body and the header line are passed to the function module. Pass by value is not possible in formal parameters defined using TABLES. Formal parameters defined with TABLES can be replaced by formal parameters defined with CHANGING. A local work area can be created for the internal table in the function module by using the addition LIKE LINE OF itab of the DATA statement.
    Exceptions
    The exception of a function module are defined on the Exceptions tab page in the Function Builder. Here you can select exception classes to define whether class-based exceptions are declared or non-class-based exception are defined. Class-based exceptions are represented in the above syntax by RAISING, and non-class-based exceptions are represented by EXCEPTIONS.
    The addition RAISING is used to declare class-based exceptions that can be propagated from the function module to the caller. Exceptions in the categories CX_STATIC_CHECK and CX_DYNAMIC_CHECK must be explicitly declared, otherwise a propagation can lead to an interface violation. A violation of the interface leads to the treatable exception CX_SY_NO_HANDLER. Exceptions of the category CX_NO_CHECK are implicitly always declared. The declaration of exceptions of the category CX_STATIC_CHECK is statically checked in the syntax check. For exceptions of the category CX_DYNAMIC_CHECK, the check is not performed until runtime. In a function module in which class-based exceptions are declared with the RAISING addition, the statement CATCH SYSTEM-EXCEPTIONS cannot be used. Instead, the relevant treatable exceptions should be handled in a TRY control structure.
    The addition EXCEPTIONS is used to define a list of non-class-based exceptions that can be triggered in the function module using the statements RAISE or MESSAGE RAISING. Exceptions defined in this way - as with formal parameters - are bound to the function module and cannot be propagated. If an exception of this type is triggered in a function module, and no return value has been assigned to it with the homonymous addition EXCEPTIONS of the CALL FUNCTION statement when the call was made, this leads to a runtime error.
    Note
    For new developments after release 6.10, SAP recommends that you work with class-based exceptions that are independent of the function module.
    RFC is a technology which is used to access a functions (Modules) from
    the remote systems.
    If a function module is set as remote enabled which can be access from
    the remote system via RFC.Eg: U can access the Remote enabled function modules in ur VB,Webdynpro,Java,Visual composer program.
    A function module can be set as remote enabled by SE37->Go to ur FM->click the option Button "remote enabled".
    But Normal function modules can not accessd from the remote system.
    Good Example for RFC enabled function module is : BAPI(Business Application Programming Interface)
    Note: All BAPIs are Remote enabled but not all remote enabled function modules are BAPI.
    CALLING A FUNCTION MODULE:
    1)In U ABAP Editor --> Click "Patter" ---> Selection Option Button "Call Function"
    --> Write the Corresponding FM name --> Hit Enter
    2)The appropriate import ,export Parameters will be displayed in ur editor
    3)Pass the Values Here.
    Also check these links.
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    See the following links:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    Regards,
    Sree

  • Possibly a very basic question but I have set up a spread sheet in Numbers and have viewed help videos but I can't get it to give me sums for the columns I highlight.  Keeps coming up with the figure zero.  I have version 09 2.3(554). Can anyone help

    Possibly a very basic question but I am going nowhere without a solution.  I have set up a spreadsheet in Numbers but it won't give me sums for chosen columns. I  have viewed the run through videos and used the formula but nothing happens apart from giving a figure of zero or a red arrow.  The sum icon in the bottom left hand section of the window does not highlight or show any total as I understand from the video that you can drag whatever total is here onto the relevent position on your spreadsheet.  I have Numbers 09 version 2.3 (554). Can anyone advise. Thanks.

    Hi Sohojools,
    To sum a column, use a formula such as this one in Cell A6
    Type this in a cell below your data:
    =SUM(A2:A4) or whatever range of cells you want to sum. The easy way is to type:
    =SUM(
    and then drag or shift-click to select the range of cells. Close the formula with a final bracket ")".
    The sum icon in the bottom left hand section of the window does not highlight or show any total
    To see the sum (and other simple statistics) in the bottom left, select a range of cells. That tells Numbers which cells you are refering to.
    The videos are good, but the Numbers'09 User guide, and the Formulas and Functions User Guide are better. Download them from the Help Menu in Numbers.
    Regards,
    Ian.

  • Basic questions from a new mozaic owner

    I have some very basic questions about how to use the new mozaic 2G mp3 player. I bought the Mozaic because it has a speaker and sleep timer, but I'm finding it to be much harder to use than other mp3 players that I have had (Ipod shuffle, clix etc). This may reflect my failure to look in the right place but I have to say the "help" section isn't much help.
    Here goes:
    . I download podcasts to listen to during my morning run. WMP provides an easy to find place in its program, "recently added," which allows the user to just work with those files. As near as I can tell, Creative makes you wade through all of your tracks. Is there some way to create a file to which "recently added" tracks, or specific tracks, can be dumped? How about automatic tagging of these added files?
    2. I have several thousand pictures on this hard dri've. Apparently, the Mozaic Centrale
    Is going to copy all of them, which strikes me as a waste of space. Is there a way to shut this function off? I couldn't care less if a single photo was added to the centrale program (or whatever it's called). Is it really going to duplicate all of the jpg files?
    3. I have the Zen Stone plus speaker which has served me very well. I had similar problems working with whatever Zen was calling its media player and wound up using WMP instead. I"d like to take a run at using the dedicated Zen media player....
    I apologize for the basic nature of these questions, but the answers weren't obvious to me from the materials I was able to locate.
    gba

    sineadholly wrote:
    Problem with speaker. I read you need to do a firmware update to get the speaker option on your product's menu so i've completely updated it, but still no option to switch speaker on, and won't just come on when i unplug the headphones, any ideas?
    what exactly is the model of your Mozaic? Is it EZ 00, EZ 300 or plane ZEN Mozaic?

  • How can we find formula function in Payroll Formula

    Guys,
    As far as concern regarding oracle functionality is very vast in particularly in payroll process, mostly functions are built-in to avoid user to create any custom code, but it is not fully covered business requirement. Therefore we need to create our custom function to cover/validate our business need and for this purpose we register this function in formula function, that is the easiest way to add any condition in payroll formula by calling this. Now my requirement is that to find formula name where this function has been used.
    Let's suppose any of user is created “X” formula through this functionality and called in payroll formula’s how can we find formula name wherever this function has been called.
    Please suggestion

    That's a good question. Fast Formula text is stored as a LONG data type which is now a deprecated data type. You can write a PL/SQL utility function to convert the text to a VARCHAR2 and search that but that has two problems:
    1) It assumes you have permission to create a function, which isn't something you'll likely have on a production database
    2) It'll barf for any formula in excess of 32760 bytes
    You can also use the to_lob function to copy the contents of ff_formulas_f into a new table (with a CLOB data type) and then create an Oracle text index to quickly search the CLOB. But again that assumes you have write access.
    If you're patient then you can also run this hideous piece of SQL:
    SELECT ff.formula_name
    ,ft.formula_type_name
    ,src.text source_plsql
    FROM ff_formulas_f ff
    ,ff_formula_types ft
    ,ff_functions fff
    ,all_source src
    WHERE ff.business_group_id IS NOT NULL
    AND ff.formula_type_id = ft.formula_type_id
    AND src.name = 'FFP' || to_char(ff.formula_id) || '_' || to_char(ff.effective_start_date, 'DDMMYYYY')
    AND src.type = 'PACKAGE BODY'
    AND lower(text) like '%' || lower(fff.definition) || '%'
    AND trunc(sysdate) BETWEEN
    ff.effective_start_date AND ff.effective_end_date
    AND upper(nvl(fff.alias_name, fff.name)) = upper('XXC_MY_FFFUNC');
    (replacing 'XXC_MY_FFFUNC' with the name of the Fast Formula Function you wish to search). Don't expect it to be fast. What this does is search the generated PLSQL rather than the source formula text. This only looks for customer-defined Fast Formula (those with business_group_id set).

  • GRC - BASIC QUESTION

    Dear All
    I would to get the clarification on general question as below:
    1. Who will be the part of the GRC (functional or Technical) ? What is best practice ?
    2. What will be the role and responsibilities of GRC consultant ?
    3. What are best practices say about the GRC Deployment ?
    4. What is the best landscape with GRC ?
    5. When GRC - ERM will be 100% bug free ?
    Regards
    Vimal

    Hi Vimal ,
       Almost all the questions you posed are very generic ( As you rightly said,  these are the BASIC QUESTIONS) and really need a lots of explanation to understand the product , here I have just given a few reference sites try to visit , it may be helpful in  answering few of your queries 
    1. Who will be the part of the GRC (functional or Technical) ? What is best practice ? 
    Ans: Both ( also include many other teams like  Business Process Owners  etc etc )
    2. What will be the role and responsibilities of GRC consultant ?
    Ans: Quite a Lot Depends on the area where the consultant is working
    3. What are best practices say about the GRC Deployment ? 
    Ans: These are the few customer feed back try to visit   http://www.sap.com/solutions/sapbusinessobjects/customers/testimonials/index.epx
    4. What is the best landscape with GRC ?
    Ans : Lots of documents available , but its always depends on your requirement , However try to visit http://www.sap.com/solutions/sapbusinessobjects/governance-risk-compliance/index.epx   You will get the better understanding of the GRC , then based on the requirement , the landscape will change.
    5. When GRC - ERM will be 100% bug free
    Ans: I feel,  we canu2019t not say any software is 100 % Bug free , As you know that people always try to improve the quality of product by minimize the Bugs , and as and when a customer/ Consultant found a bug , SAP is always address in very less time and they release the patch/Note to address these issues.
    Thanks & Regards
    Umashankar T ekumudi

  • Basic Questions related EHPs for SEM

    Hi Guys,
    I've some basic questions related to EHPs: -
    1. If we don't mean to implement any of the new functionalities does it make any sense to implement EHP? In other words do EHPs also have some general improments other than the functionalities which can be specifically activated?
    2. If we just activate a functionality and don't implement/ use it can there be any negative impact?
    3. In case of a pure technical upgrade from SEM 4.0 to SEM 6.0 which EHP would be recommended?
    4. Is there a quick way to find all relevant notes in EHPn which are related to corrections for EHPn-1?
    Thanks in advance,
    -SSC

    HI,
    If you see some of my older posts I have had many issues with certain features of the EHP2 functionality but that doesn't mean I would recommned against it.
    BCS 6 EHPs 3 & 4  (BCS 6.03 / 6.04) - enhancement packs worth implementing?
    BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack
    My recommendation is to implement the EHPs but not necesarrily activate the functions (in SFW5) unless you need them - this means that you will only have to test once after EHP implementation and will have the ability to activate the other features as and when required (although testing is required after activation of course) whereas it might be difficult to persuade your client/basis team to implement EHP4 later if you don't do it now.
    In the features of EHP2 (activate FIN_ACC_GROUP_CLOSE) it states that there is a general performance improvement - although I have yet to experience it! From OSS note 1171344 "The functionality which is available in EHP2 consists of...
    ... Performance improvements of status management, reporting and initial start-up of consolidation workbench and monitor.
    Since activating FIN_ACC_GROUP_CLOSE I have had many OSS notes requiring application but i discovered that when the technical team implemented the EHPs (before i joined this client) they somehow forgot the latest SP (support packs) and didn't upgrade to the current level - so make sure that you get the right SPs too (see the links in Greg's link above) to avoid the many OSS notes.
    As for your question - "is there a list of OSS notes to specific to EHP upgrades? - the answer is most definietly "NO" - I already asked OSS in desperation!
    however, you can see the OSS notes that i have applied listed in the above link ( BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack )

  • Basic Questions from Prospective Lion Server Switcher

    I have five servers I am running right now using Windows 2003 Server and various 3rd party packages.     Several years ago I became a Mac fan, moved all of my client based stuff to Mac, and now want to start moving my server based equipment to the OSX platform.
    I stopped by my local Apple Store, and they had a version of OSX Lion Server running on a MacMini, but couldn't seem to answer the most basic of questions because as their business people stated "We are not Server Certified" ... they recommended I talk to an outside consultant to get these basic questions answered which seems a little extreme.
    So I'm hoping the group can help.
    (1) I read through most of the Lion Server Advanced Administrative manual.    Lion server appears from the manual to do most of what I need.   However, when I tried doing some of the functions in the manual on the demo Lion Server at the Apple Store, many of the functions I wanted to do did not seemed to either be installed, or their were buttons missing in the Server App.     I do not know if this was a permission level problem, because the account I setup for myself had administrative rights.
    (2) In the mail app, it only appeared you could setup one mail domain.    It appeared you could setup virtual domains and users through the user app, but not through the mail domain itself?
    (3) I could not find any where to enable DNS services.    The manual seems pretty straight forward in turning on DNS, but the Lion Server I saw had no DNS services running, or any way to enable them?
    (4) Same for mailman listserv type function ... manual seems to be straight forward on enabling under the mail server, but again, no signs of the settings or enabling under the mail service.
    (5) Under the mail app, didn't find any way to setup alternative SMTP ports  ( I allow now Port 26 besides the standard Port 25 and SSL ports for my users.) ... I find port 26 gets past most firewalls at hotels etc.      Didn't see any way to control SMTP authentification too.
    (6) Under the Lion Server tech description, it talk about a built in web editor, saw nothing of the kind.
    So did the apple store have a limited install or am I missing something that the lion server manual does not match the capabilities of lion server.
    Love to get a straight answer before purchasing hardware to replace 5 present machines.
    Thank you.
    David

    Thanks for quick response.   Indeed, in hindsight, it appears that they had only installed the Server App, but not the Server Admin tools.
    Unfortunately, I am not a system admin, but I played one on TV <grin>
    All kidding aside ... I'm willing to learn, but would need most of the basics controlled through the GUI ... and then feel comfortable reading up and editting configuration files and running commands from the Terminal.
    On this line, is there good documentation of this, or is this something that you know because you are familiar with Unix?    ie something like the alternate port issue ... is this something in the GUI, or something I would have to edit via Terminal?
    Just trying to make an informed decision before jumping platforms.
    Thanks
    David

  • Basic questions of structure Alchmy inside the AVM ans corePlayer ? Help!

    Hello community:)
    Flash Player 10 has been amended in order to run the new code from the compilation Alchemy! Is this correct?
    The new ABC Alchemy is for new features such as memory pointer, asynchronous functions? is that correct? and what else?
    This amendment consists of a small AVM separated from the Tamarin ? where everything is in Tamarin?
    The memory allocated to code from Alchemy is separated from the memory area allocated to the AVM and PlayerCore? it is like that?
    The CorePlayer flashRuntime and had to be changed?
    The ABC from Alchemy is intended only as to the AVM? or also to CorePlayer?
    Alchemy can access the BIOS? especially for 33h the mouse? if not, is it possible to control the mouse in one way or another with Alchemy?
    Immagine it would create a code C to produce sound from a bytesArray to replaceSampleData AS3 class, it's possible? If not, why? a restriction of the sandbox?
    Can be added directly to the assembler code using Alchemy? or it's prohibited because of the respect of cross platefrom?
    Thank you for maximum responses! although one can easily imagine some answers, I have confirmation:)
    Too many people claim things on forums, affirmative behave as if it was the system programmers themselves FlashPlayer! Outside, people sometimes give wrong answers! Two days ago, I had a guy who claimed that the AVM does not compile ABC! The ABC was executed directly .  It's sad and a shame to read such things. He obviously did not read and do not know the JIT
    This post is aimed at people on what they say and who were able to verify the information. Alchemy or programmers themselves.
    Thank you all!

    In order to understand things and not waste our time trying to code without knowing ifthey are not working because of am or even if it is because it is not impossible or not the player, I'm posted this on the forum Player. But my post is not answered .. Adobe programmers never come on this forum? Nobodyknows exactly how it works?
    Hello everyone
    I have some basic questions about the Flash player and  AVM2..
    I made this little flow chart for Player 9 and above >
    Can  anyone tell me if it is consistent and fair to me or to report a possible error?
    AVM2 the only accessing the CPU and Ram? and in no event in the device or OS API, right?
    The AVM2 in our current players is always a Tamarin?
    The next step is to replace the JIT by the nanoJIT spiderMonckey?
    The byteCode from Alchemy is well executed in the AVM and not elsewhere?
    The memory area codes assigned to Alchemy is the same as that of the AVM or is it different andseparate?
    Thank  you for your answers.
    Gordially,  Alain.

  • VERY Basic Questions about Oracle eBusiness - what "languages" are used?

    Please forgive the very basic nature of this post- (I have been in systems (IT) for over 20 years, so I do have lots of systems experience, but no exposure to this particular software.)
    So here are the basic questions - I assume that much of the data base logic is written in PL/SQL, but what other tools / languages are the applications written in?
    (Oracle Forms, Oracle Reports, Java, C, something else?)
    With over 20 years and experience with a number of other packages, I can learn a great deal about an application by 1. Looking at the DB structures (charts), 2. looking into DB code (Packages, triggers, procedure, functions) and 3. Seeing the screen shots.
    None of my customers have had Oracle eBusiness - that have had home grown applications or other COTS/packages.
    can anyone suggest a place where an independent person can inexpensively get some exposure?
    My sincere thanks for any answers/suggestions. 

    Hi,
    Please refer to the following links for details about the different database releases and Oracle tools.
    Oracle Timeline
    http://www.oracle.com/timeline/index.html
    http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
    Oracle Corporation - Oracle FAQ
    http://www.orafaq.com/wiki/Oracle_Corporation
    Oracle E-Business Suite consists of Application/Database/Client tiers, you can find more details in [Oracle Applications Concepts|http://www.oracle.com/technology/documentation/applications.html] manual.
    Oracle Forms
    http://en.wikipedia.org/wiki/Oracle_Forms
    Regards,
    Hussein

  • Assorted basic questions

    Hello,
    I have recently bought an iPhone, and after reading the User Guide I have many small basic questions. I'm using an iPhone 3GS together with Windows Vista. I wouldn't like to clog this forum with multiple topics about small things, hence everything being here:
    1) Is it possible to save .pdf files to the iPhone? I have limites web access, and I often use a few pdf files. I would rather use storage space for them than downloading them all the time (even with cache). If this isn't possible without external applications, which reliable application can save documents such as pdfs and docs to the iPhone?
    2) The iTunes Store is not available in my country for buying movies. Given how I'm using Windows, is there any way to transfer movies to my iPhone? Whenever I try dragging a movie to iTunes on my computer, nothing happens.
    3) In order to access my work's network from outside computers, we need to set our browsers with specific proxy configurations. Is it possible to set a proxy with Safari? Is there any way of doing that at all with the iPhone?
    4) I have began using iTunes in order to move my music to the iPhone, but iTunes and the iPhone automatically organize everything based on song title, while I have organized everything based on filename. Is it possible to make the iPhone and/or iTunes display and order songs by filename? I could manually rename everything, but with nearly 1000 songs...
    5) Is there a Find command on Safari, corresponding to control F on other browsers? When reading long pages, I miss being instantly able to locate a specific word.
    6) Is it possible to use the recorder built withon the iPhone to record a phone call? Is there any application capable of doing so?
    7) I have set my Gmail account to the e-mail function, but I have noticed that, unlike the Gmail website, the e-mail application doesn't keep conversations together (like what the iPhone does with messages, keeping a message and its replies together). Is there any of setting the Mail application to do that?
    Thank you.

    1. For your pdf and other files I recommend the application Files. Files light is free and has a 300mb limit I think. The paid version is limited by your free space on the phone. It views Excel, Word, PDF, JPG, music, and other files. The transfer is by wireless.
    2. Files might work with your movies, but they must be in a format the iPhone supports.
    Video formats supported: H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 frames per second, Low-Complexity version of the H.264 Baseline Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; H.264 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Baseline Profile up to Level 3.0 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    6. No, the recording of a phone call is not supported nativly by the iPhone.

  • MapViewer - A team of newbies and definitely basic questions...

    Dear All,
    We are a team of programmers who are very new to MapViewer. We are an experienced team of GIS programmers, however, we find difficulty in applying known functions to MapViewer. It's a great application, but a lot of unknowns.
    We have very basic questions, as well as advanced ones. I would like to summarize them as follows:
    1. How can I let the map to be zoomed into a specific feature?
    2. How can I execute a query to find a specific feature?
    3. How can I execute network analysis query to find the shortest path or paths between two or more nodes?
    4. How can I find out the nearest node to the location when user clicks on an arbitrary location on the map?
    5. How can I execute generic queries, without (this is important) need to send/receive XML queries?
    6. The bottomline is: we just want to use ready made functions to make it as easy as possible.
    Anyhelp is greatly appreciated. We are stuck with the basics of MapViewer (Oracle Maps).
    Please help us find the light :)
    Best regards.
    Desperate MapViewer Team!

    Here are some quick answers, hopefully they are not too late.
    1. You will construct a theme (mostly a dynamic one) that contains the specific feature, then call the theme's setBoundingTheme(true). Typically what we see people do is: a) create a dynamic theme with a query that selects a set of features; b) create a FOI layer based on the theme (MVThemeBasedFOI); c) call the setBoundingTheme(true) on the FOI layer. The end result, is that MapViewer will process your query and return the FOI data to the Oracle Maps JavaScript client, which will zoom the map to include the set of features in the FOI layer. Check out Oracle Maps tutorial #35 for an example.
    2. This is partly answered above. Basically you will construct a theme with a dynamic query string. You may want to check out tutorial #37 which finds out and displays the buffers around a set of points; the buffers are constructed via a SQL query at run time.
    3. This is not really a MapViewer question; rather, you may need to consult the Oracle Spatial routing engine XML API; the gist is you send the XML route request to the routing server, which returns a set of coordinates for your directions, which you can construct (MapViewer) FOI objects out of and display them on the map.
    4. I'm not sure our routing engine or network data model API has such a function ready for use; what you can do is if you can formulate the SQL query string (with the current location represented as a binding variable), then you can create a theme out of this query condition, and simply supply the location at run time to get the set of nodes.
    5. Can you please elaborate on what do you mean by generic queries? A simple usage scenario will help.
    6. We understand; there are quite a lot of things that can be made easier out of the box and we are working towards that. in the mean time, just ask questions if you have them; and always check out the Oracle maps tutorials first (actually reading the MapViewer primer article should be the absolute first step :) ).
    thanks
    LJ

  • What todo with those who keep on answering basic questions - Your thoughts?

    Hi Experts,
    I have been active in ABAP Development Forum and usually hit the abuse button around 50 times a day.
    And most of the cases is for posting queries which are very basic and can be searched in SCN or in any Search engine.
    Example: The specified item was not found.
    Subject : BAPI
    Question :
    >
    muralireddy manyam wrote:
    > whats the  difference between normal function module and bapi function module?
    Although this is the mistake of the poster, i can see around 5 - 10 replies for such posts in a few seconds. Most of the replies are posted with Copy + paste content from SAP documentation/ other sites, some link farms etc.
    What i feel is this type of replies only encourages other people to post such basic questions again and again.
    So i think a little amendment need to be added to the Forum guidelines prompting members not to post replies/links to basic questions which can be easily searched.
    What you people think of it? Your thoughts are welcome and i hope some moderator would be in a better position to answer this.
    Regards
    Karthik D

    Hi Karthik,
    Your BAPI example took a whack together with all it's answers and the other questions by the same lazy bones fresher.
    There is no real answer to your question, because more usable expert forums and keeping the quality up to standard is a constant thing. Each new batch of freshers brings new challenges with them, and new types of points-gaming, etc. So it is the journey which counts
    At other times some tollerance is also appropriate - for example when the person has language problems and is using a translator.
    But for the lazy bones who don't even have common sense, there is no SDN medication available. No amount of waiving the rules at them helps. The only think which can be done is to delete it on sight and try to catch them as early as possible.
    For this the folks who use the Abuse Reports button are the true heros of the forums, as it is impossible for moderators to be everywhere all the time.
    Cheers and thank again!
    Julius

  • Basic question on Adobe document services

    Hi
       We have a ECC50 instance - the basis component of which has been given to us from our headquarters that has stripped off the J2EE server ( i.e given a WAS640 with just the ABAP runtime installed ).
    Now, we are planning to use Adobe Interactive forms - for simple applications - like our field sales able to create a sales order by entering data -offline and submitting it to our ECC50 box. 
    Now, question is - the ADS - that provides runtime services - does it need a J2EE server - or can I assume that this version of our ECC50 has ADS installed on the ABAP stack - and we still go ahead and plan using Adobe Interactive Services assuming that ADS ( PDF document object )would be available to our ABAP environment to process a PDF form that comes in from field sales ?
    Thanks in advance for answering this very basic question.

    Hello Karthik,
    the ADS only runs on the Java stack, so yes you will need to have SAP Web AS Java installed to deploy and run Interactive Forms.
    The functionality of ADS can then be accessed both from Java and ABAP applications.
    Cheers,
    Matthias

  • Some basic question about SCM Installation

    Hi Folks,
    Could you please advice me about some basic questions about SCM and its installation -
    Q1. Do I need to have an R/3 System to be able to practice OR demo the SCM system?
    Q2. If, yes, which version of SCM is compatible with the ECC 5.0?
    Q3. What are the basic requirements to install SCM (version compatible with ECC 5.0) and ECC on a oracle db and windows OS?
    Q4. Does SCM have APO and BI as an inbuilt functionality OR does the user need to purchase these as an Add-On?
    I know these are some basic questions, but these will help me give me a direction.
    With best wishes,
    Krishna

    Hello Krishna -
    Q1. Do I need to have an R/3 System to be able to practice OR demo the SCM system?
    ---> There are various Modules in SCM Like APO (Sub Modules  DP (stand alone), SNP Needs Master data from R/3 and has to pass on transactional Data to R/3, PPDS same as SNP, GATP same as SNP), ICH needs Data from R/3 to work with. Core Interface (CIF) connects R/3 to APO for transferring data.
    Q2. If, yes, which version of SCM is compatible with the ECC 5.0?
    -->For thorough understanding explore the following links
    http://help.sap.com/saphelp_scm41/helpdata/en/9b/954d3baf755b67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_scm50/helpdata/en/9b/954d3baf755b67e10000000a114084/frameset.htm
    Q3. What are the basic requirements to install SCM (version compatible with ECC 5.0) and ECC on a oracle db and windows OS?
    -->Refer Above
    Q4. Does SCM have APO and BI as an inbuilt functionality OR does the user need to purchase these as an Add-On?
    --> APO comes with a small BI inbuilt functionality. you can only perform certain functions using that BI.
    Hope this helps.
    Regards,
    Suresh Garg

Maybe you are looking for

  • Can't update anything from CC on any of my machines

    Process:         Creative Cloud [275] Path:            /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud Identifier:      com.adobe.acc.AdobeCreativeCloud Version:         1.5.0.367 (???) Code Type:      

  • CSS Help! Inserting flash into a div has caused layout change

    Hi, I am trying to insert flash into a div. I'm new to CSS so I think I must be doing something wrong. As soon as I insert the flash the layout goes wrong and all divs below it are pushed down out of my "main" div. I've now taken the flash.swf out an

  • How to open a song file

    Hello all! I want to open a file in its original software using my software like by entering the file name and path in textfield and pressing the jbutton, the file should open in its original software like if I open song file, it should open in winam

  • Forms 11G and OLAF Colours

    I haven't managed to install forms 11G as yet, but I was wondering if the same oracle colour schemes were still available and if you could still use the OLAF colours such as: OLAFLight, OLAFDark, OLAFVeryDark,OLAFVeryLight, OLAF1, OLAF2, OLAF3 etc. F

  • Uable to see Administrator link after importing Security Group

    Currently our project is using defaultLDAP . We created the users and groups in weblogic taken the export of the Groups by going into Migration tab in weblogic console > secuirty rleam > myrelam > migration tab > export --when we click we get set of