Dynamic 'Include Text' syntax not working in Send mail task.

Hi all,
I want to send some dynamic text via send mail task to agents.
I tried creating a standard text in SO10. In send mail task in Descriiption tab added the below syntax to call inculde text.
"INCLUDE ZTEST OBJECT TEXT ID ST LANGUAGE EN". This works and i can see the text in mail  in my sap inbox.
Now when I try to add text using a variable as below it simply display the sytax and not the text in ZTEST.
"INCLUDE  &VAR1& OBJECT TEXT ID ST LANGUAGE EN"  *Where VAR1 = ZTEST.
Please let meknow if i am missing something.
Thanks
Edited by: Sunny80 on Oct 20, 2009 11:02 AM
Edited by: Sunny80 on Oct 20, 2009 11:04 AM

Hello ,
Please provide the details as how it is resolved so that others can follow.
thanks
srinivas.

Similar Messages

  • TouchUp Text Tool not working?

    I have Max OS X 10.4, Acrobat 8.1.2 and cannot get the TouchUp Text Tool to work? Can select text and delete/copy/paste etc but cannot add/change/modify any text from the keyboard? All keyboard text keys not working or changing data?
    Was using Acrobat 7 and it worked great, however this version is just not cooperating.
    Any suggestions would be greatly appreciated...
    Thanks,
    Ron

    I talked to a very helpful person at Adobe Acrobat Tech support yesterday (Tony) and I *think* I have the problem resolved. [BTW, I don't see any definite mentions to this here: during this problem I was able to delete (using either of the delete keys) text and I was able to hit 'return' to get to a new line - while using the touch-up text tool. Also, I was able to create a new blank document and type in next fine too.]
    After troubleshooting all the possible causes with Tech support (including manually trashing all the /user/library/preferences/acrobat (folder) and all the com.adobe.acrobat ..(8) preferences in the /user/library/preferences folder - and after reinstalling Acrobat 8 - the issue still wasn't fixed. I called back Tech Support and got the same person (Tony) and with him still on phone, I created a new user on my Mac -- recreated the text touch-up tool problem and Acrobat 8 worked just like it was supposed to do. -- so ... the problem was in my 'old' user account & probably a font problem.
    Tony the Tech transfered me over to a Font Tech at Adobe (who was a rude, nasty s-o-b who barely spent 2 minutes with the problem, but that's IMHO) who told me the only resolution, since in his opinion I had a corrupted User account, was to trash my current User account on my system and start fresh -- no alternative! Since that wasn't acceptable to me, and since the Font Tech could or would not give me a straight answer about transferring fonts from my User/Library/Fonts to the computer (root, not system) /Library/Fonts and working on Acrobat that way .... or fixing any font problems in my current /user/fonts -- ..... I hung up the phone and resolved to track this down myself (with the help that was already given to me by Tony the Acrobat Tech.
    The first thing I tried this morning was to see if the Acrobat 8 text touch-up 'bug' was still happening -- and it was.
    So I spent the rest of this morning validating fonts and deleting duplicates -- (you know how those nasty duplicate fonts just appear even though you think you have them all removed a month or so ago). I also moved all my Adobe otf fonts over to my /Library/Fonts and deleted those same fonts from my /User/Library/Fonts.
    I just fired up Acrobat 8 and tried the text touch-up tool --- and it works fine! No problem at all.
    Final answer (at least for me) is --> validate all your fonts. I used Font Book (Mac OS) to do this. Delete any major errors on fonts you can live without. Some of the warnings you get (on the critical errors and caution warning both are confusing: 'name' table warning, for example. I did find an Apple Developer document that explains (to a small degree) what these mean: http://developer.apple.com/textfonts/TTRefMan/index.html
    Definitely delete every duplicate font you find. I kept some non-duplicated fonts with minor warnings, but these fonts wouldn't be used in Acrobat anyway.
    I don't know if moving the Adobe otf fonts to my root /Library/Fonts helped or not since I didn't do a test of this prior to any validation on my user/font file. It was just one step in my bug fix.
    Let me know if this works for you all too.
    -- Susan

  • TEXT-INDENT NOT WORKING

    Hi!
    Please see the below CSS code, why isn't the text-indent not
    working? everything else is?
    a.quick_link_buttons:link {
    color : #004489;
    font-family : Myriad, Arial, Helvetica, Verdana, sans-serif;
    font-size : 12px;
    text-indent : 10px;
    line-height : 20px;
    text-decoration : none;
    font-style : normal;
    font-weight : normal;
    a.quick_link_buttons:hover {
    color : #004489;
    font-family : Myriad, Arial, Helvetica, Verdana, sans-serif;
    font-size : 12px;
    text-indent : 10px;
    line-height : 20px;
    text-decoration : underline;
    font-style : normal;
    font-weight : normal;
    Many Thanks!

    You don't need to respecify styles that will inherit or
    default styles. You
    could achieve the same styles with the following -
    a.quick_link_buttons {
    color : #004489;
    font-family : Myriad, Arial, Helvetica, Verdana, sans-serif;
    font-size : 12px;
    text-indent : 10px;
    line-height : 20px;
    text-decoration : none;
    a.quick_link_buttons:hover {
    text-decoration : underline;
    As for why the indent isn't working, try 'padding-left:10px;'
    instead, when
    applied to the inline element. Or, you can have a rule that
    will apply to
    the container for these links, e.g.,
    <div style="text-indent:10px;">
    <a class="quick_link_buttons">whatever</a>
    </div>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jinxed" <[email protected]> wrote in
    message
    news:eur929$gro$[email protected]..
    > Hi!
    >
    > Please see the below CSS code, why isn't the text-indent
    not working?
    > everything else is?
    >
    > a.quick_link_buttons:link {
    > color : #004489;
    > font-family : Myriad, Arial, Helvetica, Verdana,
    sans-serif;
    > font-size : 12px;
    > text-indent : 10px;
    > line-height : 20px;
    > text-decoration : none;
    > font-style : normal;
    > font-weight : normal;
    > }
    > a.quick_link_buttons:hover {
    > color : #004489;
    > font-family : Myriad, Arial, Helvetica, Verdana,
    sans-serif;
    > font-size : 12px;
    > text-indent : 10px;
    > line-height : 20px;
    > text-decoration : underline;
    > font-style : normal;
    > font-weight : normal;
    > }
    >
    > Many Thanks!
    >

  • TS3276 My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    Sorry for the delay...
    I did what you've told me, new account and manually copied my files from Time Machine. I had lots of permissions problems, but at the end, almost everything is in order... It seems it had to be with some of the Apple Preferences, but I can't be sure, as most of them were dumped to the trash can.
    I still don't have my Mail Rules back, unfortunately, although I did goggled some. It is a pity, as I had around 30 or 40 of them, getting my mail in order to each of its mailboxes, but it is a small price as the rest doesn't show the before syntoms.
    Thanks for the help, anyway!!

  • IWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    iWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    There's no reason you can't go on using iWeb for this - with iWeb '08 you have to publish to a local folder (i.e. on your Mac) and then upload the contents of the folder (not the folder itself) to your hosting service: and you have to make sure you enter the new URL in the Publish information or the feed won't work properly; this done, an iWeb podcast should work fine.
    Of course there is still the problem that iWeb is not supported and sooner or later a system upgrade may break it. You could look at RapidWeaver: you can make podcasts with that, though the last time I looked into that - which was admittedly some time back - I didn't feel it was ideal for this. There are lots of other podcast creation programs or services around. WordPress is OK but it may be a bit of a steep learning curve: Libsyn is an online service that seems to work reliably. Blogger writes messy feeds but does usually work. Podcast Maker used to work well - I used it myself a few years back - but it rather looks as if it's gone moribund and it may not be reliable with Lion/Mountain Lion, so you would want to check into that.

  • I am using i pad mini. I am going through a issue in which i am not able to send mails to my work email add wherein i am able to receive emails from same email id.

    i am using i pad mini. I am going through a issue in which i am not able to send mails to my work email add wherein i am able to receive emails from same email id.

    With one mailbox server in the production site and one in the DR site, you do not have high availability.  If the main site goes down, the cluster loses quorum and all databases dismount.  You must then force quorum or move the file share
    witness to restore quorum.
    I can't tell you why what you observed happened.  At the time of the problem I would have been looking at the transport queues to see what's queued and to where.
    I recommend you look at the configuration of your send connectors to ensure that none of them are dependent upon the DR site server.
    To send mail outside, you must allow relay.  To do this, I recommend you create a new receive connector that's configured to allow relay and restrict access to the application server to keep anyone else from using it to relay.  There are plenty
    of articles on the Internet that describe how to configure a relay connector.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Dynamic drill link is not working when i substitute some parameters in Plus

    Hi Gurus,
    Dynamic drill link is not working when i substitute some parameters in Discoverer plus(Tools--->Manage Links--->Edit links--->Parameters options), when i substitute some parameters it working when i click on drill value the link is popping up to go another worksheet.For some parameters link is not popping up. Could you please give any ideas.
    Thanks & Regards
    Vikram

    Hi Vikram
    Oh gosh, me and my big mouth!
    Patch 5381032 has two references to issues with links. You might want to discuss your scenario with Oracle and ask them if this patch would resolve your issue.
    Another solution would be to upgrade to 10.1.2.2 (available as a patch on MetaLink) which has most of the fixes from all of the patches applied. Again I would advise you speak with Oracle Support as they are the only one who can actually confirm whether this particular issue was fixed in this release.
    Are you by any chance seeing zero numbers display as 00 and are you seeing any graying out of icons? If so, then patch 5345595 (sometimes referred to as 5345528) fixes this and is a good patch to apply if you haven't already done so.
    All of these patches require a password which can only be obtained from Oracle by raising a service request to Support and stating the issues that you have.
    Hope this helps
    Regards
    Michael

  • TS2755 My voice to text is not working. How can I fix it? I have an iPhone 5. Thx!

    My voice to text is not working? How can I fix it? I have an iPhone 5. Thx!!

    The microphone icon is not available- it's there but a pale grey. I could use it now to type this but not when texting. Siri is enabled and working fine.

  • I bought an Iphone in USA and when i arrived at my home i realise that the dock conector is not working, Apple send me a new one?

      I bought an Iphone in USA and when i arrived at my home i realise that the dock conector is not working, Apple send me a new one?

    renatasantos wrote:
    Roaminggnome but i don't live at US.
    That does not have anything to do with it.
    The warranty is only good in the U.S.

  • Adobe XI - Hightlight text tool not working

    Just downloaded adobe XI and the hightlight text tool not working.  How can I get this to work.

    I guess you can always use the box tool in drawing markups to draw a box around the text then play with the colors until you get close to what you want.
    The only thing I don't like about that (besides it being a PITA) is that it covers the text with color as well where the highlight tool does not.

  • I can not download the last Iphoto update, and in the actual version 9.4.3 it does not work the sending photos by e-mail.

    I can not download the last Iphoto update that I already purchased it by app store, and in the actual version 9.4.3 it does not work the sending photos by e-mail.

    Thanks for your replay,
    Finally the Iphoto 9.5 was installed...any way ..I had to go to app store to purchase it because the previous version did not updated autimatically... only shoed me that there is a new version ...but it guided me to the app store to purchase it.... and I did it because I did not know that the up date was free...and the sistem did not adviced me about that...
    I have the last up date of os x 10.9 already...
    in this new version I have no problem to send the photos by e-mail... but in the previous one it allways showed me an error message like ¨I should try later because the server does not work¨  but I tryed with 4 differents e-mail account that worked perfectly in the app Mail.
    any way, this new version is ok..
    thenks a lot
    Damian from Buenos Aires

  • Texting is not working on new iphone 4s.  Any suggestions?

    Texting is not working on new iphone 4s.  Any suggestions?

    Att just told us to delete all txt conversations they are getting lots of complains about this.
    it seems to work so far

  • My predictive text does not work since the new update

    The "predictive text" does not work on y IPod 4g since the new software update.  How do I fix it?

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?
    Post back with the result.

  • I Installed Lion and now my USB modem will not work to send a PDF fax? Do I need a new USB modem to send faxes or is there a software update that I need?

    I Installed Lion and now my USB modem will not work to send a PDF fax? Do I need a new USB modem to send faxes or is there a software update that I need? Also can I change the picture of the login screen? That grey mat looks ugly!

    As posted by Ham on July 29 @ 9pm on this thread <https://discussions.apple.com/message/15786976#15786976>.
    Official statement from Apple:
    http://support.apple.com/kb/ht3152

  • No Mail. I can not get or send mail from my iPhone,iCloud, or mail  on the desktop. Password is correct i can get into iCloud but not able to get mail.

    I can not get or send mail from my iPhone, iCloud, and desktop mail.  All are the same account, password is right and working. When the problem first happened I updated to a new  password.
    The Mail and the phone are telling me ( "The iCloud IMAP server “p99-imap.mail.me.com” rejected the password for user “k****n******2”}
    From the iCloud account i get a message saying  mail could not be loaded and the details. Which i have copyed below.
    Any thoughts or anyone I can ring ? This was a paid for mobile me account.
    Thanks
    Running 10.72
    ORIGIN
    server
    TYPE
    error
    BUILDNUMBER
    1FCS29.34215
    TIME
    Sun Dec 11 2011 10:49:50 GMT+0000 (GMT)        (1323600590380)
    HOST
    www.icloud.com
    USERAGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7
    PRSID
    217870346
    RECENTLOGMESSAGES
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: MAIL in main()
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: -->  Request 1:   POST to https://p99-mailws.icloud.com:443/wm/preference,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: Request out: /wm/preference-list-->1323600562085/1
              params: {"locale":"en-us","timeZone":"Europe/Dublin"}
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: SC.Object:sc1074:dispatch('load content')
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: SC.Module: Attempting to load 'addresses'
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: SC.Module: Module 'addresses' is not loaded, loading now.
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'addresses' -> '/applications/mail/frameworks/addresses/en-us/1FCS29/javascript.js'
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: SC.Object:sc3099:initStatechart()
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: -> entering "9 Address List Not Visible"
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: -->  Request 2:   GET to https://p03-contactsws.icloud.com:443/co/addressbook/?order=first,last&locale=en _US,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: SC.Module: Module 'addresses' finished loading.
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'addresses'.
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: SC.Module: Module 'addresses' has completed loading, invoking callbacks.
    Sun, 11 Dec 2011 10:49:22 GMT:  DEBUG: APPLICATION: Received applicationWillBecomeActive
    Sun, 11 Dec 2011 10:49:23 GMT:  WARN:  APPLICATION: Received applicationDidBecomeActive
    Sun, 11 Dec 2011 10:49:23 GMT:  DEBUG: <--  Response 2:  200  (1257ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 11 Dec 2011 10:49:25 GMT:  DEBUG: willReceive: Status:500, Request:/wm/preference
    Sun, 11 Dec 2011 10:49:25 GMT:  DEBUG: Got HTTP 500 : Redirecting request: /wm/preference : Redirect count:1
    Sun, 11 Dec 2011 10:49:25 GMT:  DEBUG: -->  Request 3:   POST to https://p99-mailws.icloud.com:443/wm/preference,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 11 Dec 2011 10:49:25 GMT:  DEBUG: Request out: /wm/preference-list-->1323600562085/1
              params: {"locale":"en-us","timeZone":"Europe/Dublin"}
    Sun, 11 Dec 2011 10:49:29 GMT:  DEBUG: willReceive: Status:500, Request:/wm/preference
    Sun, 11 Dec 2011 10:49:29 GMT:  DEBUG: Got HTTP 500 : Redirecting request: /wm/preference : Redirect count:2
    Sun, 11 Dec 2011 10:49:29 GMT:  DEBUG: -->  Request 4:   POST to https://p99-mailws.icloud.com:443/wm/preference,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 11 Dec 2011 10:49:29 GMT:  DEBUG: Request out: /wm/preference-list-->1323600562085/1
              params: {"locale":"en-us","timeZone":"Europe/Dublin"}
    Sun, 11 Dec 2011 10:49:33 GMT:  DEBUG: willReceive: Status:500, Request:/wm/preference
    Sun, 11 Dec 2011 10:49:33 GMT:  DEBUG: Got HTTP 500 : Redirecting request: /wm/preference : Redirect count:3
    Sun, 11 Dec 2011 10:49:33 GMT:  DEBUG: -->  Request 5:   POST to https://p99-mailws.icloud.com:443/wm/preference,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 11 Dec 2011 10:49:33 GMT:  DEBUG: Request out: /wm/preference-list-->1323600562085/1
              params: {"locale":"en-us","timeZone":"Europe/Dublin"}
    Sun, 11 Dec 2011 10:49:37 GMT:  DEBUG: willReceive: Status:500, Request:/wm/preference
    Sun, 11 Dec 2011 10:49:37 GMT:  DEBUG: Got HTTP 500 : Redirecting request: /wm/preference : Redirect count:4
    Sun, 11 Dec 2011 10:49:37 GMT:  DEBUG: -->  Request 6:   POST to https://p99-mailws.icloud.com:443/wm/preference,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 11 Dec 2011 10:49:37 GMT:  DEBUG: Request out: /wm/preference-list-->1323600562085/1
              params: {"locale":"en-us","timeZone":"Europe/Dublin"}
    Sun, 11 Dec 2011 10:49:40 GMT:  DEBUG: willReceive: Status:500, Request:/wm/preference
    Sun, 11 Dec 2011 10:49:40 GMT:  DEBUG: Got HTTP 500 : Redirecting request: /wm/preference : Redirect count:5
    Sun, 11 Dec 2011 10:49:40 GMT:  DEBUG: -->  Request 7:   POST to https://p99-mailws.icloud.com:443/wm/preference,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 11 Dec 2011 10:49:40 GMT:  DEBUG: Request out: /wm/preference-list-->1323600562085/1
              params: {"locale":"en-us","timeZone":"Europe/Dublin"}
    Sun, 11 Dec 2011 10:49:44 GMT:  DEBUG: willReceive: Status:500, Request:/wm/preference
    Sun, 11 Dec 2011 10:49:44 GMT:  DEBUG: <--  Response 7:  500  (4248ms),  headers: Content-Type=text/html  body: (empty)
    Sun, 11 Dec 2011 10:49:44 GMT:  DEBUG: Request in: /wm/preference-list-->1323600562085/1,500,4249ms
    Sun, 11 Dec 2011 10:49:44 GMT:  DEBUG: ServerPreferencesDataSource.retrieveResponse error = -1/500/guid=serverPrefsGuid
    Sun, 11 Dec 2011 10:49:44 GMT:  ERROR: CoreMail handled error 13002 before exiting Mail

    Spent at least 40 min talking to apple support, to sort it out. luckly not at my cost. After trying lots of things and speaking to a higher grade support person I was given a temp password which did the trick. I then was able to reset that with my own password. 
    The impression i got was no one knowns  what the problem is and resetting the password at the apple end works. Not sure if you would be able to self fix.

Maybe you are looking for

  • Error in installing Experience Manager.

    Hi all, I have installed - 1)MDEX 2)Platform Services 3)CAS 4)Document Converter. 5)Deployment Template. 6)Oracle Endeca Guided Search 2.1.2 for Microsoft Windows x64 (64-bit)      V31161-01 Everything is installed in a single local machine.The Endec

  • SSRS Reporting Issue

    HI All,         I had a custom requirement in SSRS which has three Roles in the Databases.         Example          Roles :  Role1, Role2,Role3         Folders : Folder1,Folder2,Folder3         Role1 Should be able to see all the Folders Considering

  • Sql code with php code

    for example: create table testtable ( sales_area varchar2(30), sales_comp varchar2(40), sales_market varchar2(30), order_number number(20), order_date varchar2(20), item_id number(15), quantity number(20), item_desc varchar2(50) insert into testtable

  • Accounting documents not released

    Hi Guru's When saving the billing document the accouting documents were not released ,wat may b the probable reason.I have checked the sd configuration,It was ok .Pls let me know wat may be the missed link . Thanks in advance rgds

  • Borders around .png links only in firefox

    I just put together a website and when I view it in Safari the menu bar (in the lower left corner) lines up where it should without any borders.  The problem is when I view it in firefox it doesn't line up right and there is a white border around it.