How to search a SO10 - Standard text by Content

Hi experts,
I have a standard text content. need to know how to identify the standard text object it is contained in.
Example: I have a form output which has Terms and Condition printed. The content has a word like URL:
texst.test.com. There are lot of standard text objects available in that form and many other forms. We are not able to find the corresponding standard text object.
So like to know whether it is possibel to search and find a standard text object by contect say URL:
texst.test.com?
Let me know whether this is possible to do in SAP?
thx
Ganu

It is not possible to get the standard text header by searching the contents. The tables for standard texts are STXH and STXL. Data is stored in raw clustered format.
As Raveesh metioned, manually looking into the smartform (Windows/Templates) and then using FM READ_TEXT to confirm the contents.
Thats the best possible way to get the standard text details from the contents.

Similar Messages

  • How to declare variables in standard text  - so10 t.code

    Hello Friends,
             How to declare variables in standard text  - so10 t.code? Your response will be appreciated much.
    Thanks
    Sri

    For Script & Smartform  Text - &VAR&

  • Using text elements in so10 standard texts

    How to use text elements in so10 standard texts.

    HI,
    In DDIC we have two structures :
    1. THEAD  - Text Header
    2. TLINE    - Text Lines
    SO10 is the tcode..for standard text...
    We have a FM to read the text ... read_text...
    and save_text is for create text..
    this text is are used in SAP scripts...
    the standard text is identified by three parameters :
    1. Text Name
    2. Text ID ( ST  for standard text )
    3. Language
    hope helpfull
    Raghunath.S

  • To read a SO10 Standard text

    Hi,
    I have created an SO10 Standard text (ZTEXT), now from a report program i have to Read it's text and use further.
    How can I read an SO10 Text from a report Program?
    Pls provide some sample code.
    Thanks in advance,
    Pankaj.

    To whom?
    please close your thread without showing any consolations(Thanks a lot!) towards people if you don't want to assign the poitns.These points are not giving us food but surly these would be enough feed for needed person.
    just read below link carefully specially step 4
    [Forum Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]

  • How can I have a standard text block appear on the last page of my documents?

    How can I have a standard text block appear on the last page of my documents without having to type it in all the time? I have a terms statement with a line for a customer’s signature which I want on the last page of my invoices and right now I have to type it in each time or cut and paste it from a previous invoice. I already have a Master Page that includes the customer information and my company information at the top of each page and I am using data merge to fill each page with the items ordered and their pictures etc. I would just like to have this standard terms block automatically show up on the last page after the last item in the data merge.
    Thank you all in advance for your help.

    Thank you Peter. This works. I have the text block now at the bottom of a second master page which I apply to the last page. For aesthetics I can modify the position of the text block in the new master page to bring it up from the bottom under the last item ordered when there is less than 4 items on the page. (my data merge fits up to 4 items with their images on a page).  If the last page is full I’ll insert a final page using the second master and also bring it up to the top of the page.

  • How do you delete a standard text created in SO10?

    I have searched the forum and the web and can not find any answers to this question.
    I created a standard text in SO10 - i.e. called ZSTDTEST.
    i can not find anyway to delete this.
    I see once you are in SO10 under change mode - there is a delete in the drop down under "text" but i believe this is used for delting LINES in the actual text.
    I must be missing something here - or perhaps once you create a text - that's it - you can not delete it.
    Thanks.
    Scott

    Well,
    If you want delete them in your current system use FM u201CDELETE_TEXTu201D, but if you need to delete the standard texts across the systems basically, you have 2 options:
    1-create an ABAP program and use FM u201CDELETE_TEXTu201D and pass all the text you want to this FM for deletion, you can do masking with an asterisk too i.e u201CZ_MY_TEXT_*u201D
    2-I personally prefer this one, First, create a blank transport and write down the task id, and then take a list of all your standard texts which you want to delete and go to se38 and execute the ABAP program RSTXTRAN. This program will require the transport task id and the list of your standard texts to enter them in the transport. Once your transport has the unwanted standard texts go to FM u201CDELETE_TEXTu201D and delete these standard texts in your current environment.
    Now, release the transport to go to other SAP environments.
    This technique takes the deleted text ids and will delete the standard texts in any subsequent environments because you deleted them before releasing your transport.
    I hope this is sufficient
    Cyrus Arjomandi
    Edited by: Cyrus Arjomandi on Jun 11, 2010 10:10 PM

  • How to Change behavior of standard text object&text ID (SE75)?

    Hello there!!
    I'm struggling with this:
    For standard text object C_SHES_ACH & ID 0001 (EHS: IHS Safety Measures) wichs is used as a description for safety measures (CBIH82/CBIH02..) need that when the user create or edit the text, already appears a "Fill in the blanks"  form.
    For example, in CBIH82, editing an accident log, I go to Safety measures Button, then create a safety meassure, and when i click for long text description something like this should appear:
    TEXT 1 (1st Title)
    user line
    user line
    user line
    user line
    (free amount of user lines)
    TEXT 2 (2nd Title)
    user line
    user line
    user line
    user line
    (free amount of user lines)
    Thanks a lot for your feedback!
    Rgds!!

    Hii,
    I am unable to understand exactly wat you want.
    But for free amount of lines : Keep that text under LOOP. Right click on template or window and create a loop and under that loop keep the text ,you can get many lines. or the given below point plzz follow.
    1,Use SO10 Tcode to write standard text in Smartform.
    2.For long text
    method1
    Create TEXT node- general attributes change text type to include text
    then you can input text name/text object/text id/language
    method2
    create PROGRAM LINE node - use FM READ_TEXT to read it to a internal table
    then use LOOP or TABLE node to display it
    For TEXT module(For foreign language)
    Tr-code:smartforms -- choose Text module(not choose form)--create a text module object
    then enter smartform Create TEXT node- general attributes change text type to text module
    input the text module name which created by above
    3.
    1. take function module name of the smartform.
    2. goto se37 and type that fm name.
    3. goto attributes tab
    4. double click on either program or include .
    5. There u can find all the subroutines used inside smartform.
    6. search for "perform %move using %textkey-name".
    4.Standard Texts are created in SO10 Tcode and stored in STXH table with OBject ,ID and NAME parameters. We can use Read_Text FM to read the text.
    check the tables STXH & STXL.
    5.
    How to CAll Standard Text in Smart Forms
    In SFs you can insert the standard tests using the TEXT node. Create a TEXT NODE. Then in the GENERAL ATTRIBUTES of this TEXT node select INCLUDE TEXT in the TYPE option. Then you have to enter the text name, object , ID and language in the provided fields. Then if you dont want any error if there is no text in the corresponding text then CHECK the check box "No errors if no text available.

  • How to use table in standard text

    Hi,
    I created one standard text using SO10 and I need to populate my internal table data values in the standard text. Below is the standard text i created.
    XXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXX
    &GV_ASSIGNMENT&   &COSTCENTER&    &ORGUNIT&
    &GV_ASSIGNMENT&   &COSTCENTER&    &ORGUNIT&
    &GV_ASSIGNMENT&   &COSTCENTER&    &ORGUNIT&
    Thanks,
    XXXXXXXXX
    If an employee have multiple assignments, I have to send a mail to org unit head with the above format.
    I created the above format in standard text (SO10). Now how to populate the values in the standard text.
    Thanks,
    Ram

    Hi Ram,
    A standard text like this does not have the concept of looping through data (which is what you'll have to do if there you have a table of data).
    What are you using to generate the mail?  If is is comning from smartform or SAPscript you should use the form to define the layout and the loop, meaning you'll need to split your standard text into smaller texts.
    Regards,
    Nick

  • Printing text in text area in so10(standard text)

    Dear all,
    I need to print a text in text area.i mean i need a box in which i can fill text in standard text (tcode-so10).Using box command we will be doing in script.
    But is there any possibility that i can solve the issue in so10 itself as i am generating offer letter in pb60 it takes my standard text there itself.So is there any solution for this issue?
    This issue is very urgent.
    Thank you,
    bhavani.

    Hi
    KEEP a BREAK-POINT and debug the internal table lines how it is coming
    some overlap must be happening ..check.
    Also check the code where you are getting this text into internal table.
    1) One way to debug smartform is to debug the Function Module of that smartforms.
    If you want to debug particular smartform node that the solution would be,
    insert a "Program Line" just above the node you want to debug and this program line write a normal abap breakpoint.
    So whenever you call the smartforms, it will stop at this breakpoint and you can debug onwards.
    2) SFTRACE can be used for debugging SMARTFORMS.
    Read More here.
    http://help.sap.com/saphelp_erp2004/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    Reward points for useful Answers
    Regards
    Anji

  • Import R/3 SO10 Standard Text to BW Documents

    Hi
    Please let me know
    1. How can Import the Standard Text (SO10) from R/3 to BW Documents?
    2. Is there any Function Module to extract the text?
    Please let me know since it has become priortized task. Thanks!!
    ~ Vaishnav

    Ok this is easy and not that tough as expected...
    I'll write a program that calls the function module READ_TEXT and export the output to the application server and then I'll retrieve the data into BW documents  after changing the respective InfoObject as Characteristic is Document Attribute.
    ~ Vaishnav

  • Smart forms. How to setup logic for standard text usage.

    Hi All!
    Could you advise please is there a way, except abap programming, to setup in smart forms that different standard texts values (tcode so10) to be used based on different selected parameters (e.g. customers, vendors etc... ).
    e.g.
    For picking list smart form:
    for customer A- standard text A to be used.
    for customer B- standard text B....
    Thanks,
    Best Regards,
    Andrey
    Edited by: Andrey Kruglov on Mar 16, 2009 1:30 PM
    Edited by: Andrey Kruglov on Mar 16, 2009 1:30 PM

    HI,
    Refer this thread:
    Re: how to display symbols in smartforms
    There is a standard smartform for invoice.
    LB_BIL_INVOICE.
    Refer this thread:
    Re: Can anybody plz give me Smartforms print prog for Invoice/PackList
    Regards,
    Gayathri
    Message was edited by: Gayathri Hariharan

  • How do we identify the standard texts used in a sap script?

    Hi,
    Is there any way that i can identify the standard texts used in SAP scripts?
    Not manually going to each window in the script and checking.
    Will there be any table where I can look ?
    Thanks,
    krishna.

    Hi,
    GO to the forminfo of the sapscript in SE71..and then search for INCLUDE
    after displaying the form...utilities->form info..
    hope this works..
    Thanks
    Naren

  • How to search a photo by text?

    I think my problem is I can't find the oval shaped search field that is supposed to be located above the "photo size slider" in the lower right hand window! (for searching by text)
    can someone tell me what to do?

    It is not possible to get the standard text header by searching the contents. The tables for standard texts are STXH and STXL. Data is stored in raw clustered format.
    As Raveesh metioned, manually looking into the smartform (Windows/Templates) and then using FM READ_TEXT to confirm the contents.
    Thats the best possible way to get the standard text details from the contents.

  • How to search for a standard sap error message

    Hi all,
        I want to know where exactly we need to search for a standard sap error message ( For example like STACK_NO_ROLL_MEMORY).
        I am searching the same in sap market place/oss note search...but don't see what I am looking for ...
       Could you please help on the same ?
    Thanks,

    Hi Shravan,
    Normally system throws up an error when it reaches the threshold point. Normally the threshold / critical points are arrived at by considering the SAP recommended values and what is the sytem configuration you have got.
    In true project scenario because of budget constraints we might not be able to have ideal system configuration which SAP recommends , in that case we have to tune to the system perform at an optimum level considering various aspects
    In yr case memory parameters should have been set at level , but for yr job it needed more memory which it could not allocate and throwed an error.
    hope i have answered yr question .
    Regards
    Balaji

  • How to search for the selected text with a non-default search engine?

    Hi,
    Before the recent update of the search bar, you could select your "current" search engine, and a search for the selected text (right-click on selection) would use that engine.
    Now, it seems that you can only search for the selected text using the default engine. If that's correct, this is a major step backwards for me. For instance, I can't have Google as my default search engine, and search for a selected text on eBay!
    Or am I missing something?
    Thanks!
    R.

    I find this extension very useful for items selected on web pages. It offers all your search engines with select>right click.
    https://addons.mozilla.org/en-US/firefox/addon/context-search/?src=search

Maybe you are looking for

  • Can I delete an account without loosing all the emails?

    I now haw 2 accounts in MacMail, each with their own handfull of mail. One account is for a now obsolete email address. I'd like to delete it, leaving me with only the current and active email account / address. However, I can't loose all of the emai

  • HT1766 How do I get my music from my iphone to itunes after computer crash and lost previous itunes library?

    My computer crashed and I lost iTunes library and all playlists from computer.  Now I have a lot of music that I want to save to iTunes and cannot.  Additionally, I cannot add new songs without erasing the entire library from my phone.  HELP!!!

  • Problem with Elements 11

    I have installed Elements 11 and it worked OK for about 3 days. When I try to open the editor now it starts to load, then freezes. My PC uses Windows 7, the program is registered & everything else works normally.

  • FCP quits when DV deck turned on

    Dear all, Out of the blue, my FCP has begun to quit on me repeatedly. I think I have narrowed the circumstances down to it happening once I swtich on my DV deck (Sony M15 attached by Firewire). The FCP/deck combination has worked fine for the 4 month

  • Use of Entitlement system

    Hi    When we are configuring SAP Authentication, we create an Entitlement System in BOBJ Server. While creating this Entitlement System we need to supply the username and password. What is the specific use of this usename and password? Why is that w