Regarding the radio function.

Anyone know if there is there a way to switch from fm to am?
Solved!
Go to Solution.

26-Sep-2008 09:24 AM
mccbleue wrote:
In many countries, AM radio is not used so often any more anyway.
Totally agree with you there.
I haven't need to use AM for at least 5 years now.
AM RIP

Similar Messages

  • Regarding the Remote Function Module

    hi,
            Can any body can provide the brief information regarding the Remote Function Module.
    1)How to create the remote function module
    2)how it differ from the normal function module
    3)any special features about this.
    Thanks in advance

    Hi
    RFC (Remote Function Call) is similar to the general SAP fun module: except that in the attributes you click the radio button: RFC enabled;
    and you will be passing an Import parameter DESTINATION to it.
    Other code and usage will be similar to any fun module;
    Have a look at any fun module in SE37 to understand better about the different components of Fun modules;
    Refer this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/22/042518488911d189490000e829fbbd/frameset.htm
    check out the following link it might help you
    http://help.sap.com/printdocu/core/Print46c/de/data/pdf/BCFESDE2/BCFESDE2.pdf
    Function Modules;
    Check this matter.
    Function Modules are Global 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.
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    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
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • I cannot activate the radio function, no connection is possible, any tipps?

    Hey you, can somebody help me to activate the radio function ?
    i bought a nano but there is no connection possible between nano and headphones
    / radio. after claiming that I got a new one but there is still the same problem.
    what is wrong ? Any idea ?

    The first thing you'll want to do is double check to make sure the headset is plugged all the way in. The white part of the headset should be flush with the body of the Nano.
    Next, reset the iPod by pressing and holding both the Sleep/Wake and Volume Down buttons together long enough for the Apple logo to appear.
    B-rock

  • WHY does the radio function rely on a wired headse...

    I know this is a feature common to many phones but I'm sick and %&&(%&% tired of it, and just don't understand why.
    Picking up my Lumia 900 a couple of days ago it simply annoys me that the radio function cannot operate when connected to a BT headset.
    I had a 'tansistor radio' 40yrs ago that did not require an external antenna.
    The internal antennae of such devices are good for WIFI, BT, 3/4G. Just WHY THE HEY can they not be used for FM radio?

    Hi SuperGumby,
    Thanks for posting and welcome to the forum,
    You can use the radio without wired headset. You can find this and much more information here (specifically here);
    To switch between speaker and headset modes
    While playing a station, press and hold the station number.
    Press Switch to speaker or Switch to headset to switch between the two options.
    Hope this helps,
    Kosh
    Press the 'Accept As Solution' icon if I have solved your problem, click on the Star Icon below if my advice has helped you!

  • Regarding the obsolute function modules

    Hi All,
    below function module are obsolute in 4.6c ,what are the new function modules in ECC 6.0.
    1.GRAPH_RECEIVE
    2.GRAPH_SET_CUA_STATUS
    already i search in sdn but i didnt get exact answer................
    plz help me.....
    Regards,
    Madhu

    Hi
    Though these function modules are set to obsolete,they are still maintained and supported by SAP and can be used in your application further.  They are set as obsolete in order to avoid the usage in new development projects.       When starting new developments it is recommended to use class 'cl_gui_chart_engine' .
    Hope this is helpful.

  • Regarding the basic function of  the *_LEXERs

    We are using Oracle Text to index XML documents that contain an "abstracts" group element. Each document can contain one or more abstracts written in a different language (primarily English, French and German). Thus a single document can contain multiple languages.
    We are wondering if we need to use any of the various LEXER types to deal with the different languages. My understanding of the documentation is that MULTI_LEXER or WORLD_LEXER would not be appropriate, since they work on the document level. AUTO_LEXER documentation seems vague, however... would AUTO_LEXER be able to sense language changes within a document?
    http://download.oracle.com/docs/cd/B28359_01/text.111/b28304/cdatadic.htm#i1007538
    Or, perhaps I needn't be concerned at all, since English, French and German are all "whitespace deliimited languages"-- If the sole function of the lexer is to parse tokens, then is there really any difference between the English lexer and the French/German lexers?
    Thanks.

    Dear Nathand,
    Thanks for your answer, I tried the change and you are right. That shows that this not a standard PID, since that means (and actually I can see it now by checking inside the vi) that it is not using the derivative of the error but the derivative of the process variable. I know that this is used sometimes to prevent the effect of fast changing set-points, but it is a shame that they do not comment on it in the help, and that this is not a selectable feature. Do you know if there is a way to edit these pre-packaged vi's? 
    One more question, about the labview style. I included the sequences just to group terms and make the code more readable to separate the integrator from the derivator and not have a knot of entangled signals. Specially when I run the clean-up diagram, it gets very entangled. I have been looking for another way to do that (container boxes, groups). It would be nice if you could suggest me something I can do for it.
    Thanks again,
    Pablo 

  • Regarding the email function in Iphoto

    When I email ordinary through mail, I add a attachment in the email, then it is shown inline and as a attachment.
    But when I use the email function in iphoto it only inlines the picture, it doesnt add the file as regular attachment, is there anyway I can change that?

    the reason why I need this so you understand me.
    is that I use to blog from email.
    if I email regular no problem at all with my attachment, but if I email through iphoto my blog doesnt recognize the picture in the email so it dont get added.

  • Regarding the RFC Function Module call from PI

    Hi All,
    I am working on one File to RFC interface, in which File adapter picks the file, this file data has to goto  2 function modules in SAP system. For this i added 2 Inbound interfaces in INTERFACE DETERMINATION and I developed 2 RECEIVER AGREEMENTS. In 2 RECEIVER AGREEMENTS i added single receiver RFC Communication Channel.
    Now i want assurance that once 1 st function module will execute completely, then only my second function module should be called. Is there any setting that i can do to make this sync?????.
    what is the use of  Send 'Confirm Transaction' in receiver RFC Communication Channel under Adavanced Mode.
    Thanks,
    Balu

    Hi,
    As per you requirement I would suggest to change your scenario as File To Proxy. It will much more easier and 100% sure to process second BAPI only after first gets successful inside the proxy.
    Pass the data from file adapter to inbound proxy and then inside proxy code you first call the first BAPI and use commit wrok. Once commit work is successful then you call the second BAPI otherwise rollback the changes.
    Example:
    Call First_BAPI
    <pass the data to it's import export parameters>
    Commit work.
    if sy-subrc =0.
    Call Second_BAPI.
    <pass the data to it's import export parameters>
    Commit work.
    endif.
    Note: If you are not very much comfortable with ABAP the discuss this with your ABAP team mate.
    Regards,
    Sarvesh

  • Why is iTunes version 10.6 not letting us use the radio function

    From version 10.5 which had lots of problems to version 10.6 where we can't access ther radio Apple ghas succeded to screw up a once liked software.
    I am using windows 7 professional 64 bit . iTunes ver 10.6 will play my song albums but if I try to get the radion to find any type of music I get "contactingt Tuning Service Refreshging Category list and it stays ther refreshing away. I have checked my firewall and iTunes is ok to operate. I can't use an earlier version of iTunes because I get an error that the music library is for an newer version of iTunes. Any ideas as Apple doesn't seem to be interested in problems

    You probably just need to upgrade your MacBook to Mac OS X 10.6.8, which will then support iTunes 10.7. Mac OS X 10.6 is available from the online Apple Store in most countries.
    Regards.

  • Regarding the GR functionality..

    Hi,
    I had a peculiar requirement, Can any once help me out how this functionality can be achived.
    Requirement:
    Both the User who had raised the shopping cart with the help of 'Shop on behalf' functionality & the User for whome the shopping cart was raised should be allowed to perform GR for this Shopping Cart in SRM system.
    We are using SRM 5 (SRM Server 5.5) system.
    Thanks in advance.
    Best Regards,
    Mahesh

    Hi Mahesh,
    You can very well do that.
    In the root org maintain the attribute "Requisitioner" for both the users.
    Suppose take the case of manager and purchaser. If the purchaser wants to shop on behalf of a manager, maintain manager's user ID in the Requisitioner attribute of purchaser and viceversa.
    If you maintain only this, the purchaser can shop and create P.O on behalf of manager but not confirmation.
    If you want the purchaser to create confirmation on behalf of manager maintain the user ID of the purchaser in the "Requisitioner" attribute of Manager.
    Also while creating SC on behalf of manager, in the Basic Data tab change the Goods Recipient from Manager to Purchaser.
    Now both the manager as well as purchaser can create confirmation (GR)
    Note : While maintaining user ID in the Requisitioner attribute the user ID should be prefixed with US i.e if 1037085 is the user ID then you have to maintain US1037085 in the Requisitioner attribute.
    Hope this will solve the problem.
    Please feel free to ask in case any clarification is needed.
    Award points for suitable answers.
    Rgds,
    Teja

  • Regarding the Webutil function

    I have downloaded the Webutil and on trying to run the demo i am getting the error WUC-015.. staing that bean is not found..So that I am not able to go forward from this...And Also I am Working in Forms 9i.... I have heard that Webutil works only from the Form10g..Is it true..Pls help..It is urgent

    Please read the webutil FAQ for debugging this error. Strictly speaking it is not certified to work with 9i FOrms although it does in most cases.
    Regards
    Grant Ronald
    Forms Product Management
    http://www.groundside.com/blog/content/GrantRonald/

  • Small help in SQl regarding the distinct function

    could some one tell me how to get a distinct column rows from a table ..
    select distinct(xyz), sales from dept
    which is giving the duplicate rows for the column xyz...
    could some one give me the right syntex for this
    Thanks in advance ..

    Thanks for this... But i am just wondering why distinct(xyz) is not giving the distinct values for the column xyz is there any change in the sql ...which i need to do

  • Video Freeze on Version 1.1.  No Radio Function on 1.0

    I've been reading a lot of notice boards and i'm just getting more and more confused!
    I have just bought a 60GB video Ipod and am experiencing the common video freeze problem. Ok so i restore the Ipod back to Version 1.0 and videos dont freeze, problem solved?
    No with my new iPod i also bought the radio remote. Now when i plug it in i have no radio function.
    So am i right in thinking if i want to watch videos i can only do so on version 1.0 and if i want to listen to radio i can only do so on version 1.1????????????????
    Can somebody please help me? I think i'm going mad!!!!

    The common fix for this video freezing problem does indeed seem to be reverting to the earlier version of the software, so yes, you lose the radio function. It also seems to depend on what software you use to convert the video and what model iPod you have (the 30GB seems to be less prone to this than the 60GB). It also doesn't affect everyone's iPod (mine included).
    I think it's a matter of "either/or" until Apple addresses the matter with another updater.

  • Launch radio function in Spotify through applescript?

    Hi all,
    I'm trying to make a script that will start the radio function in spotify of the track that is currently playing
    I'm gonna use it for a prototype in school project in interaction design, so it just have to work. Doesn't have to be elegant :-)
    I've tried using accessibility inspector and looked at some GUI scripting tutorials for applescript, but it's still a bit above my coding skills
    I tried to make it with automator as well, but the recording function doesn't seem to work with it
    I've unlocked applescript, automator, finder and system events in system preferences so that they have permission to control the GUI, but can't get it to work
    Any ideas? Struggling with the syntax here.
    Tried this code, but i don't know how to access the context menu that appears when you right click on the track that is played:
    tell application "Spotify"
      activate
    end tell
    tell application "System Events"
      tell process "Spotify"
      click menu item "Start Radio" in menu bar
      end tell
    end tell

    Hm, not sure what happened with the formatting. It looks like this:
    tell application "Spotify"
      activate
    end tell
    tell application "System Events"
      tell process "Spotify"
      click menu item "Start Radio" in menu bar
      end tell
    end tell

  • Zen Micro - Radio function has disappear

    I recently upgraded the Firmware on my Zen Micro 5gb. Now the radio function is missing from the menu. ?

    I've also experienced exactly the same problem with my Zen Micro. I have been emailing Creative support to see if they can help finding a solution or fix in getting it back but everything they suggested don't seem to work =(
    Here my thread that your welcomed to read:
    [url="http://forums.creative.com/creativelabs/board/message?board.id=dap&message.id=2654#M265">Missing FM radio on Zen Micro?[/url]
    Message Edited by Frubin on 03-0-2008 09:5 AM

Maybe you are looking for