Replacing an alphabet letter with '&'

Hello,
Was wondering if there is any provision in Financial reports to replace an alphabet letter example 'n',which comes in our entity description;client wants 'n' to replace the same with '&'.
Please note that our database is HFM.We are calling the entity description using <<MemberDescription("Grid1","Entity")>>
As HFM doesnt provide the option to use '&' in its metadata member description column,same concept we are not able to utilize in FR reports.
Kindly advise,Thanks.

if your metadata doesn't change you can use costume heading instead of pulling the member description ,,,
Also check the conditional formatting ,,, there might be an option,, not sure about that.
Regards
Ram
Edited by: Ram on Nov 30, 2010 4:51 PM

Similar Messages

  • How to replace a rowman letter a filed with space

    Hi All,
    please let me know. how can i repalce a rowman letter in a field.
    In one of the HR field  ( for job descriptiuon ) i have to replace the rowman letter with space.
    example:  Sr Develoiper I.   i have to replace I with  space.
    Regards,
    kishan

    Try with this,
    *-reverse string
        CALL FUNCTION 'STRING_REVERSE'
          EXPORTING
            string  = maktx
            lang    = 'E'
          IMPORTING
            rstring = temp_str.
    But I have a doubt, for Roman char, which are anywhere in String, this will work.
    If you have limited Numbers - like may be I, II, III or may be upto X.
    Write REPLACE statement no. of times.  (Generally not suggested, but for Roman letter fetch I don't find other option)
    REPLACE ALL OCCURRENCES OF 'I' IN maktx WITH ' '
                 REPLACEMENT COUNT cnt .
      IF cnt > 0.

  • Messages has replaced all my text with a load of letter A's in boxes. What is that all about. When I type a new one it is fine until I hit enter then the same thing applies. Has anyone a fix for this?

    Messages has replaced all my text with a load of letter A's in boxes. What is that all about. When I type a new one it is fine until I hit enter then the same thing applies. Has anyone a fix for this?
    Picture below, many thanks for your help.
    Jason

    Back up all data before proceeding.
    Launch the Font Book application and validate all fonts. You must select the fonts in order to validate them. See the built-in help and this support article for instructions. If Font Book finds any issues, resolve them.
    Start up in safe mode to rebuild the font caches. Restart as usual and test.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t start in safe mode. In that case, ask for instructions.
    If you still have problems, then from the Font Book menu bar, select
              File ▹ Restore Standard Fonts...
    You'll be prompted to confirm, and then to enter your administrator login password.
    Also note that if you deactivate or remove any built-in fonts, for instance by using a third-party font manager, the system may become unstable.

  • HT4889 Replacing System hard drive with a new one. How to get everything over to the new boot drive?

    Replacing System hard drive with a new one. How to get everything over to the new boot drive? Should I use Carbon Copy or does apple have a better untility to do this?
    I can't get my current system drive (OSX 10.8.3) to start on the first try. I always have to shut down and restart again to finally see the Apple logo.
    Have used disc utility to repair the disc and permissions several times and that works. The next time I boot up, it works fine and I get the apple logo, but then the second time I boot up, it's back to the blank screen again and it only boots after the second try.  I have tried this repair three different times now always with the same result. Works right the first try (after the repair) then from the second time on it doesn't work. I just get the white screen until I reboot a second time.
    Thinking I should change drives but what's the easist and best way to move everything over to the new drive so it will boot correctly with all my data on it. This is the system drive for a Pro Tools 10HD setup. MacPro 3,1 with 16 gigs ram and OSX10.8.3 on it.
    Thanks for any help!

    If you have a time machine back up of your current drive you can do this
    Shut down your computer, install the new drive. While the computer is off plug in the external hard drive that you have your time machine back up on. Hold Option key while the computer turnes on, let go of the option key once you get a grey screen. Shortly after you'll see  a list of bootable drives, select the one that has your time machine back up on it and boot into that drive.
    From there go into disk utility, format your new drive too, osx extended journaled ( I think, double check that, its been awhile since ive had to do this), hit format
    Exit disk utility and then you can use time machine to copy all your exisit data to the new hhd and then your pretty much done.
    There is also a program called Carbon Cloner that will do esentially the same thing however I've never uesed it.

  • Susbtitution Variables in rules file to replace a member name with another

    Hi everybody,
    Can I use substitution variables to replace a member name with another name in rules file?
    Please let me know if we can use substitution vars.
    Essbase version :11.1.2
    Thanks,
    K.as

    Are you the same guy?
    http://www.network54.com/Forum/58296/thread/1287447433/Susbtitution+Variables+in+rules+file+to+replace+a+member+name+with+another+name
    The answer is still, "No".
    Regards,
    Cameron Lackpour

  • Replacing a inner join with for all entries

    Hi Team,
       In a already developed program I am replacing a inner join with select query follow up with for-all-entris and passing the data to final internal table but in both the case the result should be same then only my replacement will be correct. But my no records in both cases differs. This happening because when i am selecting data from first data base table is 32 lines. then I am doing fo-all-entries moving all the duplicate entries then the no records are four. but in final internal table i am looping the first internal table. So in final internal table the no of records are 32. But in inner join query the records are 16.So please let me know how resolve this issue?
    Thanks and REgards
    Deepa

    Hi Thomas,
      Thanks for ur suggestion.
    The solved that in below.
    In select query I did not change anything The way I had written the code was correct.
    I think many of us know how to write that how to make the performance better in that way.
    I made the change when I transfered the to final internal table.
    The original Inner join code:
    select a~field1 a~field2 a~field3 b~field2 b~field3 b~field4
               from dbtab1 as a  inner join dbtab2 as b
              on a~field1 = b~field1 into it_final where
              a~field1 in s_field1. [Field1  in both the table are key field]
    Before code:
    Sort itab1 by key-fields.
    sort itab2 by keyfields.
    loop at itab1 into wa1.
    move: wa1-field1 to wa_final-field1,
               wa1-field2 to wa_final-field2,
               wa1-field3 to wa_final-field3.
    read table itab2 into wa2 witk key field1 = wa1-field1 binary search.
      if sy-subrc = 0.
      move : wa2-field2 to wa_final-field4,
                 wa2-field3 to wa_final-field5,
                 wa2-field4 to wa_final-field6.
    append wa_final to it_final.
    endif.
    Clear : wa1, wa2, wa_final.
    endloop.
    In this case if the one key fieild value is not present there in second internal table but its there in first internal table still it will read that row with 2nd internal values having zeroes. Normally what does not happen in inner join case if the key field value will same in both the case ,then that will fetch only those rows.
    Changed Code
    loop at itab1 into wa1.
    read table itab2 into wa2 witk key field1 = wa1-field1 binary search.
      if sy-subrc = 0.
    move: wa1-field1 to wa_final-field1,
               wa1-field2 to wa_final-field2,
               wa1-field3 to wa_final-field3.
      move : wa2-field2 to wa_final-field4,
                 wa2-field3 to wa_final-field5,
                 wa2-field4 to wa_final-field6.
    append wa_final to it_final.
    endif.
    Clear : wa1, wa2, wa_final.
    endloop.
    In this case the values will read to final internal table if both key field matches.
    With Regards
    Deepa

  • Mail Merge script to replace any blank fields with specific text

    In InDesign Mail Merge I would like to replace any blank fields with specific text. For example if we have four fields (A, B, C & D) to merge, and field A is blank, it would insert field C.
    In essence leaving no blank fields but replacing a blank field with another specific field.
    I have read that inDesign does have Mail Merge limitations but if there is a script that we could run that would solve our problem.
    Please let me know if you can help?

    I take from the lack of response it is not possible to do this in InDesign.

  • Running 3.6.17, try to install 4.01, Mac says replace 3.6.17 with older version of firefox 4.01. Whats up... Mac PPC 10.5.8 THX

    Using Firefox 3.6.17 on PPC 10.5.8. Try and install 4.01 Firefox and it tells me it is a older version and to replace 3.6.17 with it. Just different is all so please let me know what will happen if I install 4.01 over 3.6.17.

    It is most likely caused by the timestamps of the files. Firefox 3.6.17 was probably build at a later time than Firefox 4.0.1 and that makes the OS think that 3.6.17 is a more recent version. You can ignore that warning.

  • Replace MacBook Pro fan with asymetrical rMBP fan

    Hello, I have an early 2011 MacBook Pro. I was thinking of replacing my current fan with the asymetrical one found in the retina MacBook Pro. I know that the fans have different connections, so I thought of opening the fan case and replacing the blades (putting the asymetrical blades into my current fan case). Do you think this is possible? I know it's a bit of an awkward hack, but the fans get kind of annoying when working with Final Cut.
    Thanks in advance everyone.

    Update.  I downloaded a nice free program called "Macs Fan Control" from MacUpdate. It shows me that I have two fans "Left Side" and "Right Side" and they are both running at the minimum RPM; the window shows Min RPMs as 2160 and 2000 (left/right), and the 'current' is 2161/2005 (changes all the time but very close to the minimum). Max RPM shows 5940/5499 (left/right).  "Control" is auto, meaning the program is not trying to control the speed.
    I tried setting the minimum below the values above (eg, I tried changing the minimum to 1,500) but it would not let me. I tried setting the minimums above the values shown, and it allowed me. There is obviously a 'safety' feature in the fan program to prevent slowing down the fans to a value below what is considered safe.
    I then installed the same program on my MacBook air.  I cannot hear any fan on my MacBook air, but - Macs Fan Control shows a single 'Exhaust' fan running at minimum value of 1200. If I press my ear hard against the bottom of the MacBook air, I can just about hear a faint, faint noise.
    So my theory now is - the fans are always running on every MacBook (Air, Pro, etc) - the issue is, how fast they run.  And, it would appear (from my MacBook Air experience) that the fans are generally quiet.
    I then used the program to speed up the left side fan; the noise grew significantly and was unpleasant. At 4,000 RPM it was a deep, throaty sound.  I then slowed it back down, and did the same to the right side fan; at 4,000 RPM it was a gentle 'whoosh' sound. SO ... this tells me the left side fan is messed up (bad bearings, etc).  I PRESUME the two fans are the same, and should sound 'similar'.  Would others agree with my assessment?

  • Replacing the glossy screen with a 3rd party anti-glare or matte

    I had my credit card ready to purchase 2 iMacs (finally rplacing our two G5's), until I realized that the anti-glare option with the 15" and 17" MBP would not be carried over to the iMacs. So I was wondering if anyone know of a third party with an option to replace the glossy screen with either a matte or an anti-glare screen. Would this void any warranty?

    Open letter to Apple:
    Let me first say, I'm a long-time, loyal Mac user (and defender). My first experience with Apple was in elementary school - on the Apple IIE. I created a game using DOS code in grade 5.
    My father was a high school teacher and brought home a Mac Plus when I was in high school. The "Paint" program that it came installed with initiated my humble beginnings as digital designer - even on the small black and white screen, with it's limited capabilities, I could see the potential. We were always a Mac family. When my mother finally retired, I talked her into getting the same 24" white IMac I currently have, because that way I could walk her through the setting up and use of it, and now we can skype each other and it's like she's here in the room with me, not a whole province away.
    I even had a Mac as a single mom struggling as a full time Communication Design student at Emily Carr University of Art and Design. My young daughter and I lived off my student loans, but they weren't enough to buy a Mac, so I asked my dad to co-sign a student line of credit so I could get a Mac to be compatible with the computers at school. This was the only way I could take my homework home and work while my daughter slept. I sacrificed a lot to have a Mac. We sacrificed.
    Skip ahead about a decade, I have my own small graphic design business, I currently have 3 Mac computers: I have a 24" white Imac as my main business tool; I have a titanium laptop for meetings and presentations, and a white Macbook laptop that my high school-aged daughter uses for school and socializing.
    I am now at the point in my growing business that it is finally time to upgrade all of my equipment. I've been excitedly holding out for the newest Imac release. I went in to our local BestBuy a few weeks ago to buy my new 27" fully loaded Imac (hey I've worked hard, why not splurge a little?) As I walked up to the Mac display and finally laid eyes on my long awaited dream machine, all I could see was the shocked and betrayed look on my face reflected in the shiny surface of the screen. I nearly cried, I was so disappointed. All I could think was "How could you? "
    What is the point of having the shiny screen? I feel so betrayed, so foolish, for sticking with Apple through thick and thin for nearly a quarter of a century. I have invested thousands and thousands and thousands of dollars in Apple products, peripherals, and MAC compatible software for all of my Macs. Adobe CS3, Microsoft Office, 3rd party applications, Mac compatible fonts, and even games. I have purchased protection plans, extra RAM, home insurance and back-up devices for my Macs. I was invested in you, Apple. So what now? Will my hard earned savings now go toward buying the new PC software needed to convert my business to PCs?
    The graphics industry, for a large part, has kept Apple going all these years. We have paid the premium for our Apples, and we have just been stabbed in the back by Apple. On behalf of the entire graphic design community in North America, Apple, please offer us a matte screen option on all your new computers.

  • I wanted to know if i were to come into an Apple store, would you be able to replace my home button with the new one that i bring in?

    I wanted to know if i were to come into an Apple store, would you be able to replace my home button with the new one that i bring in?

    Nope, since no one here works for Apple I doubt they would let us behind the counter or use their tools.
    Do a google search to locate your local store and get a phone number-then call and ask.

  • Replacing an Airport Extreme with Time Capsule

    I have had my wireless network setup and working for a few years.
    I've decided to replace my Airport Extreme with a Time Capsule.
    Can I simply disconnect the Airport Extreme, connect the Time Capsule and configure it with the same SSID & Password? or is there a procedure for accomplishing this that I'm not aware of?
    Rick

    rickinlv wrote:
    I have had my wireless network setup and working for a few years.
    I've decided to replace my Airport Extreme with a Time Capsule.
    Can I simply disconnect the Airport Extreme, connect the Time Capsule and configure it with the same SSID & Password? or is there a procedure for accomplishing this that I'm not aware of?
    Welcome to Apple's discussion groups.
    What you describe should work, but first you might want to try this approach: Use AirPort Utility to put the Extreme into "manual setup" mode. Use the menu option File -> Export Configuration File to write the configuration to a file. Replace the Extreme with the Time Capsule, put it into "manual setup" mode, and use the menu option File -> Import Configuration File to read the Extreme configuration into the Time Capsule.
    Full disclosure: I haven't tried this. If it works, you'll have saved yourself several minutes of configuring. If it doesn't work, then proceed as you originally planned. And let the rest of us know how things went.

  • Lenovo replaced my i7 processor with i3

    Hello, my lenovo Z50-Z70 laptop recently broke due to some manufacture problem, I took it to the shop that I bought it in and they sent it off to lenovo to be repaired under the warrenty. However when I got the laptop back it didn't have its original specifications. Instead of Intel Core i7-4510U it now has Intel Core i3-4030U. i7 processor is one of the reasons I bought the laptop and now it's considerably slower, I am really unsure about my options here. 

    Wearetheborg,
    I've researched your case - your original FRU is 92P6753 which subs now to 42T0356 which is also an IPS display.
    I believe you received one that is off spec.  I'm told stock as been checked and is good, so I would advise you to place another call with service and re-order the part.
    I believe the next replacement should meet your expectations of quality.
    Lenovo would not knowingly replace an IPS display with a non-IPS without customer knowledge and consent.  All parts must be equivalent or better.
    Your photos are dramatic, and assuming the brightness levels on both machines were set to the same level, and both were running on AC, certainly the unit on the right is not as bright or vivid.
    Thanks for letting us know - it is important that we service your system properly.
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Dunning letter with smartform

    Hi experts,
    I have to create a form for dunning letter with (smartforms) for the transaction F150
    and really I don't know how I will do it.
    I don't know how to pass the fields run on, identification customer to the formulaire for getting data for display?
    notice in this moment I have letter displayed with the form sapscript Y_F150_DUNN_01, that I have to change the letter to a form with smartforms?

    Hi Mohamed,
    because I did not believe SAP doesn't provide smartforms dunning I checked it.
    In Customizing Financial Accounting->Accounts Receivable and Accounts Payable->Business Transactions->Dunning->Printout the documentation says "Note that you can define dunning forms using either SAPScript or SAP     
    Smart Forms."
    The Docu for "Define Dunning Forms (with SAP Smart Forms)" explains how-to:
    Requirements                                                                               
    The standard settings allow for creating dunning notices using              
    SAPScript. If you wish to print your dunning notices using SAP Smart         
    Forms, you must first define the corresponding function module.              
         1. In Customizing for Financial Accounting, choose Financial             
         Accounting Global Settings ->  Business Transaction Events.              
         The SAP Business Framework screen appears.                               
         2. Choose Settings -> P/S function modules -> ... of an SAP appl. .      
         3. Under the Business Transaction Event (BTE) "1720" with                
         application indicator FI-FI, change the function module in               
         FI_PRINT_DUNNING_NOTICE_SMARTF and save your entries.                                                                               
    SAP provides a predefined example form for dunning notices:                                                                               
    o   F150_DUNN_SF                                                                               
    Activities                                                                               
    1.  Make sure the function module FI_PRINT_DUNNING_NOTICE_SMARTF has       
        been defined (see above).                                                                               
    2.  Create a dunning form or change the example form to meet your          
        requirements for the various dunning notices.                                                                               
    I checked it and it looks really easy!
    Any quetsions? Feel free to ask.
    Regards,
    Clemens
    P.S.: If you don't expect more answers, please close the thread.

  • Dunning letter with multi currency

    Hi
    How to set dunning letter with multi currency.I have this customer that have multi currency transaction.How do i set the dunning letter to show multi currency value.Thanks

    hi mohd rizal,
    in dunning note configuration itself set the currency as USD. then it takes the local currency depending on the application. then it works for multiple currency's. bcoz it automatically takes the local currency.
    hope u get what im saying. still u have any doubts, get me back.

Maybe you are looking for

  • Dynamic File Name in a Read File

    Hello there. I have a need and I don't know if there is possible in Oracle BPEL 10.1.3. I need to read a different file, based on the name of it. So, I need that the file name defined in the adapter is defined dynamically in run time, based in the na

  • Data corruption with Airport Disk file sharing

    There is another long thread on the Airport Disk, and I am not sure if this is the same problem. My situation is that my file server died recently, and I am looking for its replacement. Airport Disk with my new base station appears ideal because I ha

  • Screen saver broken

    I set the screen saver to the iTunes artwork one, set it to change a picture every .5 seconds, and set it to 2 rows. It immediately crashed and since then, I cannot access the screen saver settings in System Preferences and whenever it goes to screen

  • WRT300N support for multiple XBOX 360's

    Hi! I need to go pre-N for greater wireless speeds, and went for the Belkin Pre-N v2000; however it's uPNP implementation isn't that great, meaning I need to rely on DMZ to allow my XBOX 360 to work on LIVE. What I would like to know is does the WRT3

  • How to forward message to two different queue using jms proxy service

    Hi all, In my project I need to listen to one jms queue then forward the messages to two different queue. Now I already made one proxy for listening to the queue then pass it to another queue using business service, It works. But how to forward the m