Question on Document Title in SOST

Hi,
Can some one let me know how Document Ttile comes into SOST.
My scenario is;
I am sending delivery note via email. my intention is to get document title as LD00 and Delivery Number (LD00 &LIKP-VBELN&
below settings i tried but no use:
Output type i am using is LD00.
Configured Replacement of text symbols program as SAPMV50A & Form routine as TEXT_SYMBOL_REPLACE (even i tried with MAIL_TEXTS). Also In Mail title & Texts - i set my document title as LD00 &LIKP-VBELN&
Hard coded text and passed to NAST-TDCOVTITLE in driver program but no use.
After completing the process, i checked in SOST and i see different title (Program name, date, time).
I put a break point in TEXT_SYMBOL_REPLACE routine and my cursor is not stopping in the routine. i tried in update debuggging also but not stopped in the routine.
Pls let me know how can we stop in the routine or is there any other way to get custom document title.
Thanks for your help!
Regards,
Sreeni

I resolved my self

Similar Messages

  • Re: Changing document title in SOST

    Hi ,
    Does anyone can tell me how to change the document title in SOST transaction?
    after running the report in SOST, in ALV output, the document title is displaying as "RSM13000 /20100617/022445".
    The user doesnt wants  the title in that way.
    I checked the program, the data was coming from standard program.
    Anybody have faced such problem? Pls share...
    Rgs,
    Priya

    Hi,
    If you are using function module 'SO_NEW_DOCUMENT_ATT_SEND_API1'  and when you are passing
    WA_DOC_CHNG-OBJ_DESCR = 'give description'.
    DATA: WA_DOC_CHNG TYPE SODOCCHGI1.
          CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
          DOCUMENT_DATA = WA_DOC_CHNG   " here
          PUT_IN_OUTBOX = 'X'
          COMMIT_WORK = 'X'
          TABLES
          PACKING_LIST = I_OBJPACK
          OBJECT_HEADER = WA_OBJHEAD
          CONTENTS_BIN = I_OBJBIN
          CONTENTS_TXT = I_OBJTXT
          RECEIVERS = I_RECLIST
          EXCEPTIONS
          TOO_MANY_RECEIVERS = 1
          DOCUMENT_NOT_SENT = 2
          DOCUMENT_TYPE_NOT_EXIST = 3
          OPERATION_NO_AUTHORIZATION = 4
          PARAMETER_ERROR = 5
          X_ERROR = 6
          ENQUEUE_ERROR = 7
          OTHERS = 8.
    Hope this helps..
    Cheers,
    Dep

  • Set SOST Document Title

    Hello Experts!
    For my email function, I am using class CL_BCS to send any emails and attachments from my program.  Mr problem is that although the email is being sent, when you look at transaction SOST the Document Title is blank.  So, is there a method or another class that sets the Document Title?  Points for any helpful answer.
    Thanks,
    Maple

    Hi,
    i don't have a proper system available right now but you can  take a look at these two blogs, I believe they will help you a lot with your question.
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp
    /people/pavan.bayyapu/blog/2006/08/21/sending-html-email-from-sap-crmerp--2
    Kostas

  • HELP!!!!  File name / document title metadata question

    Is there any way to have the file name and the document title carry over to one another?
    I am doing a huge selection of images for our stock agency and have figured out how to add a simple bit of information to our in-house file names for example 11130-005.08D_IOTW (the _IOTW is what I have had to add for a submission) in lightroom in the file name local on the right of the screen when doing metadata....
    HOWEVER, we also need the document title/title and I don't want to have to open each seperate image and apply the simple _IOTW to each title.
    Is there anyway to instantaneously add the _IOTW to the title just like one can with the file name?
    HELP!!!???
    Erica

    Check out LR/Transporter by Timothy Armes. It has the capability of modifying metadata fields, including Title. If I understand your needs correctly, it should do what you want.
    http://www.photographers-toolbox.com/products/lrtransporter.php

  • Batch document title from file name?

    Forgive the newb question on a fairly simple matter.
    I want to create File Info: Document Titles from file names, minus the extension, for about 400 images.
    Is this possible with Batch rename, if so what am I missing?
    Thanks,

    I am unclear how a batch rename will enter data into File Info: Document Title.
    I have never used them but you might look at metadata templates.  Several sites on web on how to set them up and what they will do for you.

  • Getting Safari document title/location via Scripting Bridge fails

    I'm trying to get the URL and document title from the topmost Safari document/tab. I have an AppleScript and an objective-c version using the Scripting Bridge framework.
    Both versions work fine for most web pages, however when I open a Youtube video in full-screen mode, the Scripting Bridge based version fails (error below). The Apple Script works fine for "normal" and full-screen Safari windows.
    Can anyone see what is wrong with the Scripting Bridge code below to cause it to fail for full-screen Safari windows?
    Here the code (I omitted error checking for brevity):
    AppleScript:
    tell application "Safari"
    # Give us some time to open video in full-screen mode
    delay 10
    do JavaScript "document.title" in document 0
    end tell
    Scripting Bridge:
    SafariApplication* safari = [SBApplication applicationWithBundleIdentifier:@"com.apple.Safari"];
    SBElementArray* windows = [safari windows];
    SafariTab* currentTab = [[windows objectAtIndex: 0] currentTab];
    // This fails when in full-screen mode:
    id result = [safari doJavaScript: @"document.title" in: currentTab];
    NSLog(@"title: %@", result);
    Scripting Bridge error (with added line breaks):
    Apple event returned an error. Event = 'sfri'\'dojs'{
    '----':'utxt'("document.title"),
    'dcnm':'obj '{ 'want':'prop',
    'from':'obj '{ 'want':'cwin',
    'from':'null'(),
    'form':'indx',
    'seld':1 },
    'form':'prop',
    'seld':'cTab' }
    Error info = {
    ErrorNumber = -1728;
    ErrorOffendingObject = <SBObject @0x175c2de0:
    currentTab of SafariWindow 0 of application "Safari" (238)>;
    I could not find details about the given error code. It complains about 'currentTab' which shows that the JavaScript event at least made it all the way to Safari. I assume that the current tab receives the event, but refuses to run the JS code, because it is in full-screen mode. However, why does this work for an AppleScript? Don't they use the same code path eventually?
    Thanks!
    Rico

    1) I have not yet looked into Apple events, but have read elsewhere that it is not the most fun thing to deal with. I might give it a shot after having tried 2 + 3
    Not really, but your command isn't too complicated so it'd be quite doable using the AEBuild* functions/NSAppleEventDescriptor and AESendMessage. If you go the AEBuild* route, you can use AEDebug to sniff Apple events sent from AppleScript for clues - the AEPrint syntax is similar to that used by AEBuild* functions. Mostly it's just tedious; first learning to use the lower-level APIs, then writing the code for them.
    2) Using NSAppleScript was actually my first approach, but having to compile each script before I run it seems a waste. Maybe I can try a pre-compiled script and hand in the JavaScript as a parameter.
    That's the safe and efficient way to parameterize AppleScripts. Although unless you're doing this to support user-supplied scripts, by the time you've packed what you need into an NSAppleEventDescriptor, a bit more code and you could probably send it directly to Safari yourself.
    3) I had tried ASTranslate in the past. I have not actually compiled the generated code, but seeing this makes me wonder about the difference between the Apple Script and Scripting Bridge.
    I've written about that in various places, e.g.:
    http://stackoverflow.com/questions/1309958/avoiding-applescript-through-ruby-rb- appscript-or-rubyosa/1316563#1316563
    Basically, Apple event IPC is RPC plus first-class queries, not OO as a lot of folks assume. AppleScript's OO-like syntax is a bit of a red herring, and the AS interpreter uses various tricks (e.g. implict gets) to further this illusion. So it looks and feels like OO, but only up to a point, and beyond that folks get totally confused when it does something decidedly un-OO. Hence AppleScript's reputation amongst professional programmers as being confusing and unpredictable. (It's actually reasonably straightforward and predictable one you know how it really works; it's just that figuring it out for yourself takes a lot of time and effort, since it's completely messed with your preconceptions by then. Ugh.)
    Apple had an opportunity to learn their lessons from AS's approach, but whether due to politics, hubris or naivety they decided to dress up SB to look even more Cocoa-/OO-like. Which just means there's a bigger impedance mismatch between the SB API and the AE API hidden beneath the surface. So the abstractions are thicker and leakier, and the obfuscations more impenetrable when you do run into problems. By comparison, objc-appscript minimizes the syntactic sugar and wears much of Apple events' inherent weirdness on its sleeve. So while it takes a bit of getting used to if you're from an OO background, once you do get the hang of it it (nearly always) just works.

  • JS scripted needed to add custom text plus filename to file info in document title

    Would greatly appreciate any help with this one...
    JS script to add custom text plus filename to file info in document title
    many thanks

    Super :O)
    I have a folder of say 50 images and I want to run a JS script batch
    example in the document title :  image Nr 81205
    custom text is "image Nr" +  file name "81205"
    activeDocument.info.title =" image Nr" + decodeURI(activeDocument.name);
    would this be correct without seening the file ext
    many thanks

  • Can we add a variable in the document title of SOFM..

    Hi,
    I am trying to use a variable in the document title as below:
    Approval by: &MANAGER&  =>  &DOCUMENTTITLE&
    But this does not work, the note is getting displayed as:
    Approval by: &MANAGER&, ideally should be "Approval by: Micheal John". Please let me know about this.
    Thanks,
    Sukumar.

    Hi,
    I have the variable "Manager" in the workflow container. In the document title of SOFM. I want to display the DOCUMENTTITLE as " Manager approval by: &Manager&. How can I use the concatenate function here?
    Thanks.
    Sukumar.

  • Getting error: The document [document title was here] could not be saved."

    I am getting this error when trying to save a Numbers spreadsheet:
    "The document (document title was here) could not be saved."
    I created this spreadsheet from scratch in the numbers format, and I have been using it for several weeks now.
    When I 'get info' on the file and look at the file permissions, I see that my user has read and write access to the file. It is in the /Users/Shared directory as I share it with others on this computer. No other users are logged in, therefore the file is only open by me.
    I have already tried restarting the computer, and that didn't work.
    Any help would be greatly appreciated with this! I think others on this forum may have had a similar problem but they were blaming it on opening the file over a network. In my case as you can see, it is all local to my computer.

    Thanks for the suggestions. I tried all three and unfortunately the problems just got worse until the file would not open at all
    I had to restore from time machine from yesterday, then save as a different file. This allows me to edit the copy, but as soon as I try to edit it as a different use I go back to the same old problems again, even if the user has read & write permissions on the file and the directory the file is in.

  • How can I get iPhoto to display ONLY file numbers of pictures and not document titles when displayed as thumbnails?

    I am a pro photographer and I've never used iPhoto. I use a combination of Adobe's Bridge, Lightroom & Photoshop programmes.  I've sent a disk of images to a client and they cannot see the file numbers of the images.  Their version of iPhoto only displays the document title that I have embedded in the metadata when importing the images into Bridge.
    When I ran a test and imported the same images into my version of iPhoto(7.1.5, since you ask) some of the thumbnails displayed the file number while others displayed the document title.  Why does this happen?  Can I make it stop?  How do I make iPhoto display just the file number in thumbnail mode and not the document title?
    When I view the images in Bridge, all I see is the file number but I can't convince the client to use the programme even though they have it.  Any help/guidance will be very gratefuly received.
    Many thanks,
    Adam.

    In every version prior to iPhoto 11:
    Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File...
    In iPhoto 11:
    Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original...
    Regards
    TD

  • Acrobat Pro X Replaces Document Title with File Name

    We process many Microsoft Word Documents into PDF. Whether or not this is the correct way to process them we use the new "Action" previously a Batch Process.
    We require our documents to open "Full Width" so we run the created Action which converts the Word files to PDF and sets them to open width.
    In the previous version of Acrobat (9) this worked fine. But the current version strips the document title out of the Word document and replaces it with the file name in the PDF. eg. If the title of the document set in the properties of world.doc is "Changing the world", when the action created the PDF its stripped and replaced with "world.doc"
    This of course means that we must now take the time to change the title of each document so that the search engine on our intranet can correctly list it. As you can imagine a time consuming process, which until this update never had to be done.
    Alternatively is there a better way to convert large numbers of Word documents to PDF that will keep all of this information intact?
    Many thanks
    Murray

    Actions are not really intended for that type of work:
    Actions allow a complex, guided series of events to be applied to a single file, usually with some user interactivity. They can be run over and over but usually only process one file at a time. In the example we show based on redaction, this guided interactivity is essential as only a human can decide what to redact in each document.
    Batch processing applies a standard set of events to a series of files, usually without any user interactivity beyond selection and filename choices.
    What happens when you try and run your Acrobat 9 batch sequence in Acrobat X?

  • Changing Document Titles in Templates

    Hi all
    I know this must be something I am missing that is easy - but
    I cannot figure out how to change my Document Titles in files that
    are using a single Template. They cannot be edited in the file, as
    they are locked in the Template. How do I unlock the Title in the
    Template so I can make the Document Titles different? This must be
    an easy one - I've just been working too long today and am under a
    deadline.
    Thanks for the help -
    Q

    A properly made template will allow you to edit your child
    page document
    titles. The fact that you cannot means you have not used a
    properly made
    template. To see what I mean, do this -
    Create a new page.
    Use FILE | Save As Template..., and give it a name.
    Look at the code - see the editable region around the
    <title> tag? That's
    what yours should look like.
    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
    ==================
    "QuimbyDog" <[email protected]> wrote in
    message
    news:ejqivb$639$[email protected]..
    > Hi all
    >
    > I know this must be something I am missing that is easy
    - but I cannot
    > figure
    > out how to change my Document Titles in files that are
    using a single
    > Template.
    > They cannot be edited in the file, as they are locked in
    the Template.
    > How do
    > I unlock the Title in the Template so I can make the
    Document Titles
    > different?
    > This must be an easy one - I've just been working too
    long today and am
    > under
    > a deadline.
    >
    > Thanks for the help -
    > Q
    >

  • V/30: Include NAME1 in Document Title for Order Confirmation per Email

    We have configured a sales order output condition for forwarding order confirmation per email. Within the document title (Mail Title & Texts) there is reference to e.g.  &VBAK-VBELN& etc. Is it possible to add NAME1 within the title?

    Case resolved - can use KUAGV-NAME1

  • DW - DOCUMENT TITLE - ICON/LOGO IMAGE

    Most websites viewed in I.E. clearly display a small
    logo/icon to the left of the 'Document/Title Description'.
    See the tab for this site as an example: the viewer using
    I.E. tabbed browsing will see the 'Adobe' logo graphic situated
    next to the title: "Adobe - ....."
    How does one do this ? I have searched the internet and all
    DW books I can find, but to no avail !
    These icons are so common, I can't believe there is no
    tutorial for it ! Frustration plus !!!!
    Would someone in the know please be kind enough to explain
    how a designer incorporates these icon/logo images into the
    document title using Dreamweaver 8 ?
    Any assistance would be greatly appreciated.
    Cheers

    Favicons revealed:
    http://alt-web.com/favicons.shtml
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Slingers" <[email protected]> wrote in message
    news:g3vc9h$qek$[email protected]..
    > Most websites viewed in I.E. clearly display a small
    logo/icon to the left
    of
    > the 'Document/Title Description'.
    > See the tab for this site as an example: the viewer
    using I.E. tabbed
    > browsing will see the 'Adobe' logo graphic situated next
    to the title:
    "Adobe
    > - ....."
    >
    > How does one do this ? I have searched the internet and
    all DW books I
    can
    > find, but to no avail !
    > These icons are so common, I can't believe there is no
    tutorial for it !
    > Frustration plus !!!!
    >
    > Would someone in the know please be kind enough to
    explain how a designer
    > incorporates these icon/logo images into the document
    title using
    Dreamweaver 8
    > ?
    >
    > Any assistance would be greatly appreciated.
    >
    > Cheers
    >

  • Prompt For Document Title as well as file name

    Is there script or setting which requires the entry of document title as well as file name upon the saving a document? I understand that I can open document properties prior to saving, but I would prefer to enter the save command and be prompted to enter a doucment's title as well it file name. Thanks.

    You can use the Prefix field to include things like "Dr.", and this will appear on the label.
    I do not see any automatic way to include Job Title, but if you don't have too many to print you can do a kluge by putting the job title in the first line of the addres, then return, then the real first line.  This will print nicely.  But is work putting it in.

Maybe you are looking for

  • Form feed character

    hi all, what is the difference between carriage return(\r) and form feed(\f).

  • How do I find one string inside another?

    I've been looking through the documentation, but have yet to find what I need. While I keep looking, maybe someone here has a good idea... I have a TreeSet of Strings ts = { "foo", "bar", "green car" }, and another String s = "this is my new green ca

  • Where are the shortcuts?

    Is there a place I can go to get a comprehensive list of Windows shortcuts for Photoshop CS5?  If so where? tex

  • Nikon D300 imported files not rotated.

    When I import vertical (portrait) shots, they appear in landscape (horizontal) mode.  Does anyone know what setting in Lightroom or in the camera I need to set?  I've tried "Rotate Tall both on and off" on the camera to no avail.

  • Update JTable from a JDialog

    I'm wanting to update a JTable I have on a JFrame. This JFrame has a button on it which opens a JDialog box which populates a database. The main JFrame's JTable (ReceivedTable) holds this information. When a user inputs some more information and clos