Reg: C/o need to display on the address window

Hi Abapers,
In my requirement I need to display the C/O address in address window. But the problem is address is coming from SADR table. But in that I donu2019t have the field for C/o.
/:   ADDRESS LINES 5 DELIVERY LINES 5                    
/:     TITLE    &SADR-ANRED&                             
/:     NAME     &SADR-NAME1&, &SADR-NAME2&, &SADR-NAME3&,
/:              &SADR-NAME4&              
I need to populate the C/O address here.                            
/:     STREET   &SADR-STRAS&                             
So how i need to do..

HI all,
In my pogram already C/o is available. i.e ADDR1_VAL-NAME_CO. but i have used like below.
/: ADDRESS LINES 5 DELIVERY LINES 5
/: TITLE &SADR-ANRED&
/: NAME &SADR-NAME1&, &SADR-NAME2&, &SADR-NAME3&,
/: &SADR-NAME4&
/: &ADDR1_VAL-NAME_CO.&
/: STREET &SADR-STRAS&
but even tough when i run the script. this C/o is not displaying... but in ruy  time i have checked this table ADDR1_VAL. it is having C/o addres..
what to do..

Similar Messages

  • I need to display all the previous months sales.

    Hi Gurus,
    I have a requirement were i need to display all the previous months sales.
    i.e if a user enters sept 2011, then in report it should display from April 2011(which is the first month of fiscal year).h
    and also it should display total sales in another column till that month.
    Regards
    Arun

    Hi,
    Part 2 and Part 3 of the document.
    Link: [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f002c608-2533-2c10-25a1-d0e7f7b5b662?QuickLink=index&overridelayout=true]
    Link: [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10fc4382-afa6-2c10-1380-fa224fe4324f?QuickLink=index&overridelayout=true]
    Documents by 'Surendra Kumar Reddy Koduru' are always useful. Try to go through all of them.
    All the best!!!

  • Urgent - HTML help merged projects - displaying in the same window

    Hi All,
    Following some recent windows updates I'm experiencing all sorts of problems. My most urgent problems is as follows:
    First off this is all in RH8 and yes I have upgraded to 8.0.2 and project is set to re-build cpd each time.
    So I have a merges project as follows:
    Parent project
         child project 1
         chils project 2 etc
    when I compile an html help project with TOC, and single source window settings on default if I click on a child project it is diaplyued in a separate window. If I then select a different project in the parent project TOC this is also displayed in a different window but the window still has the caption of the previously opened file.
    What I need as  the end result is for my HTML help project output to al display in the same window whether I click on a parent project item, or a child project item.
    Please can somebody advise mne how to do this as I am VERY close to a deadline and as usual it seems RH8 has let me down again.....
    Thanks
    Author Care

    Hi there
    Methinks Colum needs more coffee, because the options he cited have nothing to do with other windows. They have to do with whether the displayed topic synchronizes with the TOC and whether the TOC entry is highlighted.
    I'm thinking it has to do with creating a "Global" window. You change the names of the windows so they include Global.
    The link below has more:
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Operate C# to modify PPT's hyperlink, while configuring the hyperlink's text to display attribute, the address value will be assigned as null. Anyone know this issue? Any solution?

    operate C# to modify PPT's hyperlink, while configuring the hyperlink's text to display attribute, the address value will be assigned as null.  Anyone know this issue? Any solution?
    How to reproduce the issue:
    1.Create a new PPT slide in Office2010.
    2. Insert a certain text/characters, such as Mircosoft blablabla,
    3. Insert an URL right after the text part , TextToDisplay is the “Test”,Address is the "Url".
    4. The content in the ppt is ”Microsoft Test“,here "Test" is the hyperlink which we would like to convert. Please execute the code we list below.
    5. The problem will be reproduced by the above steps.
    PPT.Application ap = new PPT.Application();
    PPT.Presentation pre = null;
    pre = ap.Presentations.Open(mFileName, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse);
    foreach (PPT.Slide mSlide in pre.Slides)
    PPT.Hyperlinks links = mSlide.Hyperlinks;
    for (int i = 1; i <= links.Count; i++)
    PPT.Hyperlink mLink = links[i];
    mLink.TextToDisplay = mLink.TextToDisplay.Replace(mLink.TextToDisplay,"url");
    mLink.Address = mLink.Address.Replace(mLink.Address, "url");
    Modify texttodisplay, the address vaule will be assigned as null. Anyone knows how to solve it?
    Does it caused by a PPT API's Limitation?

    I've tried the below code and it works, you can refer this article:
    https://msdn.microsoft.com/en-us/library/office/ff745021.aspx
    to find that the hyperlink needs to be associated with a text range, and thats what I did in the code below with the help of the link sent by Tony.
    Microsoft.Office.Interop.PowerPoint.Application ap = new Application();
    Microsoft.Office.Interop.PowerPoint.Presentation pre = null;
    pre = ap.Presentations.Open(@"C:\Users\Fouad\Desktop\abcc.pptx", Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse);
    foreach (Microsoft.Office.Interop.PowerPoint.Slide mSlide in pre.Slides)
    Microsoft.Office.Interop.PowerPoint.Hyperlinks links = mSlide.Hyperlinks;
    Microsoft.Office.Interop.PowerPoint.Shape textShape = mSlide.Shapes[1];
    for (int i = 1; i <= links.Count; i++)
    Microsoft.Office.Interop.PowerPoint.Hyperlink mLink = links[i];
    Microsoft.Office.Interop.PowerPoint.TextRange range1 = textShape.TextFrame.TextRange;
    TextRange oTxtRng = range1.Find(((Microsoft.Office.Interop.PowerPoint.Hyperlink)mLink).TextToDisplay,After:range1.Start,WholeWords:Microsoft.Office.Core.MsoTriState.msoTrue);
    oTxtRng.Replace(((Microsoft.Office.Interop.PowerPoint.Hyperlink)mLink).TextToDisplay, "url");
    oTxtRng.ActionSettings[Microsoft.Office.Interop.PowerPoint.PpMouseActivation.ppMouseClick].Hyperlink.Address = "http://www.microsoft.com";
    Fouad Roumieh

  • I need to open up the same web site in two separate tabs. Since I upgraded to Firefox 6 when I try to open the web page in a new tab from the list in the drop down in the address window it only gives be the option to switch to the tab already have open.

    When I go the drop down from the address window, rather than showing the URL of the website I want open in a second tab it says "Switch to tab." But I don't want to switch to the tab - I want to open a second tab on the same URL. If I want to open it a second time I have to manually key in the address. Is there some way to turn this off so I can open up the second tab using the same address from the drop down? I have always been able to do this with previous versions of Firefox.

    '''''"Is there some way to turn this off so I can open up the second tab using the same address from the drop down?"'''''
    You can install this Add-on: https://addons.mozilla.org/en-US/firefox/addon/switch-to-tab-no-more/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • I would change the language displayed in the login window from u.s. to german

    I would change the language displayed in the login window from u.s. to german in Lion (Mac OS X 10.7.2).
    I use
    sudo "/System/Library/CoreServises/Language Chooser.app/Contens/MacOS/Language Chooser"
    Then I enter my admin password and choose german. It doesn't work
    Then I use
    sudo languagesetup
    Then I enter my admin password and type 4 for german. It doesn't work
    Still I habe the language u.s. at the login windows.
    In the terminal appears following message:
    System Language set to: German
    2012-01-06 16:18:43.401 languagesetup[311:707] Warning: NSBundle NSBundle </System/Library/CoreServices/Language Chooser.app> (not yet loaded) was released too many times. For compatibility, it will not be deallocated, but this may change in the future. Set a breakpoint on __NSBundleOverreleased() to debug
    What shell I do? Can you help me??

    I found the solution!
    One of the User in my MacBookPro was saved with an old version of FileVault. I deaktivated this old FileVault and aktivate the new FileVault and the language of the login Windows is sudenly german!

  • CRM 5.2 - Account address not displayed under the address tab.

    Hi -
    For some accounts, addresses do not show in address tab or on contacts. Account does have an address that is displayed in the account overview section (BP_HEAD -> CorpDetailsEF) but it doesn't show in the address tab, or on any contacts created for this account.
    This seems to happen randomly as I have found no connection between the accounts that do not have the address displayed on the address tab of the account overview page.
    Thanks for your help!
    -Jonathan

    Thanks for the reply. That's what I thought. The strange thing is every place I look it is correct. The mail account on my Mac is correct and functioning properly. The entries in the MobileMe System Preference is correct as well.
    Is there anyway to force iTunes to update the mail accounts listed or would i have to backup and then deleted the mail account on my Mac and redefine it. Would that work?
    The reason I am trying to get the sync to work is to try and get another problem resolved. My MobileMe Calendar and Contacts are not syncing wirelessly to my iPhone (although mail works fine). I've read in some cases syncing through iTunes will sometimes resolve this issue.
    Thanks again

  • The address window has shrunk. How can I make it longer so I can see the address (or most of it at least)?

    I have updated to Firefox 3.6.23 for Mac. I have OS 10.4.11. Immediately I noticed that the address window has been reduced to about half an inch. The search window is long, like the address window used to be. This is not good for me. I usually use the address window to make changes and move to a new page. I cannot do this now. How can I make the address window long again? Can I go back to 3.6.22? I need that long window.
    Sincerely,
    Gerald E. Strickland
    Bradenton, Florida

    You can place the mouse between the location bar and the search bar and it will become a resize icon.<br />
    Press the left mouse button and drag it to the right to make the location bar wider.
    You can also reset the relative wides by deleting localstore.rdf in the Firefox Profile Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/localstore.rdf

  • I used to be able to copy or drag and drop links from the address window. Now with the update, only the address is copied or dragged not the link. (Says something about not giving site information). I want to be able to drag and drop or copy links.

    Question
    I used to be able to copy or drag and drop links from the address window. Now with the update, only the address is copied or dragged not the link. (Says something about not giving site information). I want to be able to drag and drop or copy links.

    To be more precise, you can setup a JComponent or JPanel on top of your JavaFX nodes that has a TransferHandler that can convert the (AWT/Swing) images dragged to the app to JavaFX image and then insert it into the underlying node.
    As for the file chooser itselft: ListView and the JavaFX composer can allow you to create one quite easily. TreeView can aslso be used to a lesser extend (still a big buggy). For both of these, there are small bugs in the Cell API that may (or may not) prevent from displaying a proper thumbnail in the cells.
    You can also use a regular JFileChooser if you do not mind the dialog box having a different LnF from the rest of your application.

  • I no longer have an internet address window - only a search window. How to I get the address window back?

    I no longer have an internet address window on my Mozilla browser -- only a (Yahoo, Google, etc.) search window.
    How to I get the address window back?

    This link shows how to restore missing toolbar items such as the address bar - https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • My email messages are now not displaying in the open window - just on the side. Headers appear but nothing in the window. Any thoughts?

    My

    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Or Quit the mail app completely and then launch it again. Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button. Launch mail.

  • Need help asap regarding the query windowing

    Dear friends,
    The database i'm using (mvdemo - mapviewer demo DB that comes along with Oracle 10g), has only data about united states. Say if i have my query window like this, -180, 0, 180 , 90 (which is the upper half of the earth), i am getting the desired result. ie., Here is that query,
    SELECT count(s.geom) FROM states s WHERE
    SDO_FILTER(s.geom,
    SDO_GEOMETRY(
         2003,
         8265,
         NULL,
         SDO_ELEM_INFO_ARRAY(1,1003,3),
         SDO_ORDINATE_ARRAY(-180, 0 , 180, 90))
    ) = 'TRUE';
    Returns 55
    I'm currently having a problem with my rectangular window query. When i query with a window value of -180, -90, 180, 90 (which covers the whole earth), the number of spatial objects (SDO_GEOM) that is returned is 0. It is not throwing any ORA error. But the expected result is as usual 55.
    SELECT count(s.geom) FROM states s WHERE
    SDO_FILTER(s.geom,
    SDO_GEOMETRY(
         2003,
         8265,
         NULL,
         SDO_ELEM_INFO_ARRAY(1,1003,3),
         SDO_ORDINATE_ARRAY(-180, 0 , 180, 90))
    ) = 'TRUE';
    Returns 0
    Could anyone please help me out with this issue??
    thank you in advance,
    Bragadeesh

    hi all,
    i found the solution to my problem.
    actually the query given here works just fine.
    wat i was doing was using the sdo_intersection(<some geom>, <query window>). The query window am using here is the whole earth. But according to spatial rule, there cant be any geometry greater than half the surface of the earth.
    Thank you all..

  • Mail compose window jumps to back when adding address. As soon as I add a single character to the address window of a new mail message, it pops  under all other existing windows. If I have others open...and who doesn't? I have to then close them all.

    So.....deeply....disappointed by Lion...
    It honestly gets in the way of getting things done.
    When was the last time you had an upgrade, in any program or  OS that caused an immediate productivity drop?
    Mail windows, when adding a new address, pop under to become the lowest window in the stack...before you are done composing...
    no extra clicks..just adding ONE character to the actual address bar does it.
    Trying to add files to an online content management system is hard...it's hard because when you attempt to add the file, it disappears from
    the list, so a search must be conducted...oh not a search of your hard drive...no...it has to include ALL FILES and that takes a while, showing
    files totally unrelated to what you need or in whatever that view is, showing everything from movies to documents, to a whole range of other stuff
    that is irrelevant to what is being sought.
    I can get used to the disappearing icon tool bar...but the message threading in Mail is so strangely bad it's hard to describe. So you send out an email,
    and it had 5 points...but that was 3 emails before...A reply comes in addressing those 5 points but saying something like ..."I disagree with point number 4"
    Unless you have total recall the thread shows you only incoming mail and the LAST most recent folded up message you sent. You are forced to go digging
    into sent mail to see what that point you made 8 days eariler actually was...
    I am pleased that I don't have to have Launchpad (honestly the silliest 'feature' I've ever seen on a computer) in the dock and see no point in the juvenile Mission Control (the naming scheme is odd and reminiscent of Junior Spaceman...how ironic that we end America's manned launch capability at the same time as Launch Pad and Mission Control, both throwbacks to the 60's are added to an OS). In any case both are virtually useless tools. One, replacing the mildly useful Spaces and the other just genuinely useless.
    I'm going to give Apple until the second bug fix...but I can tell right now that Snow Leopard was a far more robust OS. The thousands of posts about this may rise to the level of AntennaGate...I hope so...It seems the only way to get Steve (for whom I have now honestly lost respect for the FIRST TIME) to address the issues is to embarrass the company publicly. Lion is a broken system, poorly conceived...and proof that the Apple methodology of no widespread user testing can and does fail. This needs to get fixed. Soon.

    It seems to have something to do with profile manager.
    I get stack traces in the "system messages" logs for the "Server" application, grrrr.
    I'll get that info and attempt to submit a but report tonight.

  • I am having problems opening pages in safari. the rotating wheel at the right end of the address window doesn't stop even after the page has filled up. then if i try to open other pages it gets stuck and won't open them.

    I started having problems opening pages today. When first open a page it seems to download the page OK, but the rotating wheel on the right-hand end of the address field keeps rotating after the page is completely filled up. Then if I try to open other pages it becomes slower and eventually stops filling-in the pages, while the rotating wheel keeps rotating.
    I wonder whether junk is being downloaded into my mac, or what is going on. Help will be geatly appreciated.

    When was the last time you emptied the Safari cache?
    From your Safari menu bar click Safari > Empty Cache
    If that didn't make a difference, go back to the menu bar click Safari > Reset Safari. Select the top 5 boxes then click Reset.
    And how much free space on the startup disk?
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure you always have a minimum of 15% free disk space. Freeing Up Hard Disk Space - Mac Guides
    If emptying cache or resetting didn't help and there's enough free space on the startup disk, login to another user account, launch Safari. Same problems there indicates a system wide problem. Log back into your admin account so you can check the startup disk.
    Launch Disk Utility. /Applications/Utilities
    Select MacintoshHD in the panel on the left then select the First Aid tab.
    Click: Verify Disk (not Verify Disk Permissions)
    If the startup disk needs repairing, follow the instructions for Using Disk Utility to verify or repair disks
    I wonder whether junk is being downloaded into my mac
    Nothing should "download" to your Mac unless you initiate the download yourself. You can check the Downloads folder from the Safari > Window menu or your Downloads folder in the Finder.

  • When I open Firefox there is always a long useless address in the address window?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    There is a long, useless URL already entered in the address box everytime I open Firefox. It's nuisance to get rid of it. How can I get a blank space instead?
    == This happened
    ==
    Every time Firefox opened
    == always
    ==
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-Default Plug-in
    *Shockwave Flash 10.0 r45
    *Picasa plugin
    *Google Updater pluginhttp://pack.google.com/
    *Adobe Acrobat Plug-In Version 7.00 for Netscape
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object

    Which URL do you see in the location bar?
    Do a malware check with a few malware scan programs.
    You need to use all programs because each detects different malware.
    http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    http://www.superantispyware.com/ - SuperAntispyware
    http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    If you can't fix it with the above listed scanners then you need to ask advise on one of the forums that specialize in malware removal mentioned in the ''Popups_not_blocked'' article.

Maybe you are looking for

  • How to dynamically set connection string for report in C# code?

    Hi, I have installed CRVS2010. I have created new Crystal Report WPF Application and new report. I would like to set connection string for report in code dynamically. Is this possible? Thanks Ivana

  • Can a shuffle be connected to an iPad

    Bought an iPad mini to replace my computer, is there a way to connect to an iPad ?

  • Balance sheet for 15 days

    Hi guru’s Is there any chance to see the report up 6 months and 15 days… regards ss.

  • How to enable color printing setting in R/3

    Hi, We have configured HP COLOR Laster jet 2650DN printer at r/3 level. but users are not getting print in color, when they give non sap print, then it prints in colors. I tried to enabled the color printer option in spad -> output attribute, but it

  • Naming convention best practice for PDB pluggable

    In OEM, the auto discovery for a PDB produces a name using the cluster as the prefix and the database name suffix, such as: odexad_d_alpcolddb_alpcolddb-scan_PDBODEXAD If that PDB is moved to another cluster, I imagine that name will not change but t