Activating Subscript For Inspection characteristic Long Text in T-code QE11

Hello All
I have maintained the inspection characteristic long text in QP01 as " H2O" where 2 is in Subscript.
No when I see the inspection characteristic long text in T-Code (QE11, QE12 & QE13) it appear as (H2O) & here "2" is not shown in the subscript.
So please tell how can we activate subscript for T-Codes (QE11,QE12 & QE13) so that it is displayed correctly.
Regards
Rahul Bhardwaj

Hello All
can anyone please help me out on this.  I am there must be a solution for the same.

Similar Messages

  • How to enter super script inspection characteris long text

    Dear All,
    our user want to enter 10 to the power of 4 ,or upto 10 to the power of 9  in inspection characteristics long text, kindly guide me for the same.
    Rgds,
    Mani

    Hello Manish,
    I think the following thread in QM forum has the solution to your question.
    Re: Subscript in long text
    Regards
    Prasad K

  • Template for O12* WBS long text

    Is it possible to create a template for O12* WBS  long text. I think SAPscripts can be used. If it can be used can anyone suggest me as how to go about doing it .
    Thanks
    Edited by: Alvaro Tejada Galindo on May 23, 2008 5:33 PM

    Hello,
    the way to find it out is that you set a breakpoint into the function module READ_TEXT ( via SE37) and then process a PSP-Element with a long text via CJ12 or CJ13.
    The transaction will stop at the breakpoint, an you get the text-id/text-name/ text-object from the input parameters on the function module.
    If i try, it says ID = 'LTXT', name = 'E'<PRPS-PSPNR>, object = 'PMS', but for a WBS text there may be other parameters.
    If you need the logic in an own programm, you could use the function READ_TEXT instead of selecting texts via STXH/STXL.
    Regards Wolfgang

  • Validation for GL Account Long Text

    Dear All,
    Is it possible to maintain validation for GL Account long text.
    Basically my requirement is to avoid duplication of GL accounts with same long text.
    Best regards,
    Inoka.

    Hi,
    I think you are talking about GL account name long text should not be reapeted when  you are creating one more GL account.
    If it is the case, It can be possible through programming. please explain the requirement to your Abaper.
    Before writing program, try to create & test the validation with any expert from your side, it may be possible with some conditions (< >, =) in Validation.
    Regards
    Kanna

  • SAVE TEXT not updating the database for Recipe Operation Long Texts

    Hi,
    We are trying to update the Recipe Operation long text using the FM SAVE_TEXT.
    The FM is not throwing any error, but the changes are not reflecting in the database.
    Text ID: PLPO
    Text Object: ROUTING
    Language: EN
    Text Name: Concatenated string of ARBPL,PLNNR,OPRATIONCOUNTER
    If someone faced similar scenarios, please share your inputs.
    Thanks in advance,
    Anand

    After some more R & D, i got to know that the Long Text indicator should be enabled to get the changes reflected in the C203 recipe operation details.
    In C202, if you pass two text lines for Operation long text, this Long text indicator is automatically enabled and its a non editable field.
    Can some one provide inputs how to enable this through program?
    Regards,
    Anand

  • Short coming in BAPI for saving Document Long Text

    Hello Experts,
    I would be thankful to you if anyone of you offer a solution to the problem below.
    I have found that the tables parameter LONGTEXTS of function BAPI_DOCUMENT_CHANGE/CHANGE2/CREATE/CREATE2 (structure BAPI_DOC_TEXT) could include the field TDFORMAT so that the user can specify how the next line should be interpreted by the editor.  This would be in accordance with the tables parameter LINES of function SAVE_TEXT which is used to save long text.  Currently only the text line is catered for in the BAPI and the TDFORMAT is therefore defaulted to u2018*u2019 in the SAVE_TEXT function which causes each line in the table to be treated as a new line. 
    What if the user wanted the lines to be treated as continuous text?
    With Best Regards,
    Mientjie Ferrie

    Hi,
       1. From se37, check for function group STXD
    2. There will be many Fm.
    3. The commonly used are
    READ_TEXT
    EDIT_TEXT
    SAVE_TEXT
    Regards

  • How to read the long text in Transaction Code : VA02 at runtime??????

    Hi,
    I am undable to find the long text in TC: VA02 at runtime. Actulally my requirement is like how to compare between the item level long text at runtime and existing long text for that item.
    If any body has soluntion, please provide me. I would really be  greatfull if any body provide the solution.
    Deepak Kumar
    E-Mail: [email protected]

    Hi Sudheer,
    Actually my requirement is to read the text at runtime. Example: If saved text is 'ABC' and it is changed by '123'. Now before saving changed text '123', I need to capture it so that I can compare it with saved text 'ABC' whether it is changed or not?
    Couuld you send me some sample code? I would appreciate if you reply at the earliest.
    Deepak Kumar.

  • Creating a long text using ABAP code.. fm SAVE_TEXT

    When you create an order via IW31 one of the options is to click on the text button and create a long text. I am basically trying to mimic this action from within my ABAP code.
    The text id details are as follows:
    Text Name       500000015000046  which is (5000000 + order number)
    Language        EN
    Text ID            KOPF         Order header text
    Text Object      AUFK       Order text
    If i manually create the text within the transaction i am then able to view and update it via function modules READ_TEXT and SAVE_TEXT. But if the text has not already been created READ_TEXT obviously returns nothing as it does not exist and SAVE_TEXT does not seem to created it!
    Anyone know how i would go about creating this text using ABAP code?
    Hope this make a bit of sense
    Thanks in advance
    Mart

    I have implemented the code as i think it should be. See below, can any see what is wrong. If i add init_text it makes no difference and adding the commit_text just makes it hang
    DATA: IT_TEXTS type standard table of TLINE,
           wa_texts like line of it_texts,
           wa_txtheader type THEAD.
    wa_txtheader-TDID     = 'KOPF'.
    wa_txtheader-TDSPRAS  = 'EN'.
    wa_txtheader-TDNAME   = '500000015000056'.
    wa_txtheader-TDOBJECT = 'AUFK'.
    wa_texts-tdformat = '*'.
    wa_texts-tdline = 'hello'.
    append wa_texts to it_texts.
    wa_texts-tdformat = '*'.
    wa_texts-tdline = 'hello'.
    append wa_texts to it_texts.
      wa_texts-tdformat = '*'.
    wa_texts-tdline = 'hello'.
    append wa_texts to it_texts.
    wa_texts-tdformat = '*'.
    wa_texts-tdline = 'hello'.
    append wa_texts to it_texts.
    wa_texts-tdformat = '*'.
    wa_texts-tdline = 'hello'.
    append wa_texts to it_texts.
      wa_texts-tdformat = '*'.
    wa_texts-tdline = 'hello'.
    append wa_texts to it_texts.
    CALL FUNCTION 'SAVE_TEXT'
      EXPORTING
        CLIENT                = SY-MANDT
        HEADER                = wa_txtheader
        INSERT                = 'X'
       SAVEMODE_DIRECT       = ' '
       OWNER_SPECIFIED       = 'X'
      LOCAL_CAT             = ' '
    IMPORTING
      FUNCTION              =
      NEWHEADER             =
      TABLES
        LINES                 = IT_TEXTS
    EXCEPTIONS
       ID                    = 1
       LANGUAGE              = 2
       NAME                  = 3
       OBJECT                = 4
       OTHERS                = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • What is the best process for adding a long text scroll into a video?

    I have an hour video and need to insert a narrated poem that will either scroll or have lines fade in / out. What is the best process to create that poem? Do I use Motion? Live Type? compose it directly in FCP? I'll have either a still image or a looping video for the background. Once I know the best starting point, then I'll refine my questions. The poem is about 4 minutes narrated. Appreciate any help to get me started.

    In the effects window try "Scrolling Text". Set it to be the length you need it (duration) and paste in your text and render and see how you like it. I think scrolling text has a nice little fade at the top and bottom too.
    Or, you can make the text an image in something like Photoshop and keyframe it to slowly move in FCP for the duration of the video.

  • Long text at inspection completion.

    Hi everyone.
    I have following scenario:
    1.- Quality certificate should get variable data when it is printing. User needs to choice from a list, what he will print for certificates, that must be done at Usage decision.
    2.- I think using UD long text at the time to save UD can solve my issue.
    3.- I just can get automatically UD long text when I force inspection completion.
    How can I get automatically UD long text without force inspection completion????
    Regards.

    Hi everyone..
    I think I wasn't clear in my initial request....this is regarding long text for UD....
    Since you force inspection completion in UD (QA11), and save your UD, system automatically show you other screen "Change long text on usage decision", and you can enter any text.
    But that only  happend when you force inspection completion....when you don't force inspection completion, long text can't be updated....
    I need that screen "Change long text on usage decision" appear every time, with or wihout forcing inspection completion...
    I'll really appreciate your support.
    Best Regards.
    Juan.

  • How to add long text in bdc for transaction fb01 ?

    IN the existing program of bdc fb01
    i have to add a long text field
    but it gets stuck while i process in sm35
    is there a fm to add the field directly
    thanks in a advance

    Hi
    You can upload the Long texts separately into the transaction using the CREATE_TEXT fun module
    Need to pass the correct parameters like OBJECT,ID, OBJECTNAME and LANGuage with the proper declarations.
    see the sample code and do accordingly
    REPORT zmm_longtext_sm
           NO STANDARD PAGE HEADING
           LINE-SIZE 255.
    Description :   This Program is used to Upload the Service Master
                 :   Long Texts using the Fun Module CREATE_TEXT
    Internal Table for Upload of Long Texts Data
    DATA: BEGIN OF itab OCCURS 0,
            asnum like asmd-asnum,    " Service No
            text  LIKE tline-tdline,  " Long Text
          END OF itab.
    To create Long Text lines for CREATE_TEXT function module
    DATA:BEGIN OF dt_lines OCCURS 0.
            INCLUDE STRUCTURE tline.   " Long Text
    DATA:END OF dt_lines.
    Variable declarations for CREATE_TEXT function module
    DATA : dl_name TYPE thead-tdname,   " Object Name
           dl_lan TYPE thead-tdspras.   " Language
    Constants
    CONSTANTS:
    Object ID for Long Text of Service Master
      c_best     TYPE thead-tdid VALUE 'LTXT',
      c_material TYPE thead-tdobject VALUE 'ASMD'. " Object
    Parameters
    PARAMETERS p_file LIKE rlgrap-filename.
    At selection-screen on Value Request for file Name
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Get the F4 Values for the File
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
        IMPORTING
          file_name     = p_file.
    Start Of Selection
    START-OF-SELECTION.
    *To Upload Flat file
      CALL FUNCTION 'UPLOAD'
        EXPORTING
          filename                = p_file
          filetype                = 'DAT'
        TABLES
          data_tab                = itab
        EXCEPTIONS
          conversion_error        = 1
          invalid_table_width     = 2
          invalid_type            = 3
          no_batch                = 4
          unknown_error           = 5
          gui_refuse_filetransfer = 6
          OTHERS                  = 7.
    Upload the Texts
      SORT itab BY asnum.
      LOOP AT itab.
        dt_lines-tdformat = 'ST'.
        dt_lines-tdline = itab-text.
        APPEND dt_lines.
        dl_lan = sy-langu.
        concatenate '00000000000' itab-asnum into dl_name.
    Call the Function Module to Create Text
        CALL FUNCTION 'CREATE_TEXT'
          EXPORTING
            fid         = c_best
            flanguage   = dl_lan
            fname       = dl_name
            fobject     = c_material
            save_direct = 'X'
            fformat     = '*'
          TABLES
            flines      = dt_lines
          EXCEPTIONS
            no_init     = 1
            no_save     = 2
            OTHERS      = 3.
        IF sy-subrc <> 0.
          WRITE:/ 'Long Text Creation failed for Service No'(001),
                 itab-asnum.
        ELSE.
          WRITE:/ 'Long Text Created Successfully for Service No'(002),
                 itab-asnum.
        ENDIF.
        AT END OF asnum.
          REFRESH dt_lines.
        ENDAT.
      ENDLOOP.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Is an Adobe Creative Cloud active subscription needed for the Adobe Photoshop streaming trial?

    Hello Adobe community,
    I am here on behalf of the Manhattan College ITS department.
    My supervisor has asked me to look into the free trial for Adobe Photoshop Streaming (APS) and we would like to try it out because it is free.
    However on the website for the APS trial, it says you need an active subscription for Adobe Creative Cloud (ACC) in order to participate.
    On the APS trial page, it states that an ACC account is needed for an individual signing up for the trial but it is not made clear for the institution.
    I'm assuming that it is required, but I would like to hear back from an Adobe rep.
    Thank you,
    Tanvir Khan
    Client Services Technician (ITS)
    Manhattan College

    Adobe Resellers http://adobedealreg.force.com/PartnerSearch?lang=en
    -http://www.adobe.com/content/dam/Adobe/en/products/creativecloud/cc/pdfs/cc-availability-m atrix.pdf

  • Long text for Messages

    Hi,
    I am trying to display warning message W899(V1).
    For this message, Long text is not maintained in SE91.
    Can we display Long text for such messages? My Long text content will be generated in program. So it will not be fixed always.
    Thanks in Advance
    Umesh

    Umesh,
    899(V1) cannot have a long text as it is dynamically assigned. It takes four text variables and displays them as the message. Because of the dynamic nature of the message, you cannot create one long text explaination for it. Look at the following to illustrate what I am talking about.
    MESSAGE W899(V1) WITH 'I am First Message'
                          'I am Second Message'
                          'I am Third Message'
                          'I am Fourth Message'.
    Your popup will be displayed as 'I am First Message I am Second Message I am Third Message I am Fourth Message'. Now what long text do you think is suitable for this vs. another message displayed as follows.
    MESSAGE W899(V1) WITH 'You have Entered wrong values.'
                          'See long text for an explanation.'
                          'Correct the value'
                          'and rerun'.
    Now here it makes sense to have some long text, but since you are using a message id, you cannot do. If you add long text based on the second message, then it will be applicable to first one also, where it will not make sense.
    Use function module HELP_OBJECT_SHOW. See program DEMO_DYNPRO_F1_HELP for the usage of this function module.

  • Displaying operation long text in results recording screen

    Hi, all!
    I am trying to understand why I cannot display the operation long text when in results recording screen (either QE51N or QE01 transaction will not support displaying of operation long text).
    I have checked all areas that I could think of in config to see if there is a display setting that will require to be activated and I could not find anything under Results recording, Inspection planning or General settings. I also tried to see if user settings may be making a difference and it did not. The SAP Help portal when talking of long texts available in results recording lists the following: Long texts for inspection lot, inspection method and inspection charcateristic. Nothing about operation long text.
    However, the text is printed on the inspection instruction standard form.
    SAP Notes has nothing on the subject that I could find.
    So, as a last resort, I would like to ask if any other Quality Management specialist came across this and spent any time in determining if this can be done and why the information would not be displayed standard in the transactions. My client would prefer not to have to print the instructions in order to see the entire text. However, I do not see any standard way to have it displayed.
    Any help would be greatly appreciated.
    Thank you in advance!

    Hi Senthil,
    Don't know it will help or not. But if your MIC is qualitative then you can use the long text of catalog code in QS42.
    Please refer below screen,
    Click on the which help to maintain the long text.
    Regards,
    Sandip

  • Database Table where modifications to message long text are stored (log)

    Hi,
    As per manual correction mentioned in SAP note 1144291,
    we have changed the long text for message XC092 by modification of the long text.
    This note 1144291 is a pre-requisite for SAP Note 1310808.
    After the notes were implemented, it is noticed that message CURTO1055 has incorrect information in its long text. This is because, the variable in the long text are not correctly defined in the long text.
    Both the messages XC-092 and CURTO1-055 are SAP standard.
    The error for CURTO1-055 can be rectified by modification of the long text and maintenance of the correct variables.
    However, my question is:
    Where do we check the log for document modifcation for a message long text.
    I have found the logs relevant to my modification in table DOKHL and DOKIL.
    But in which table do we get all of the foll. data:
    - Message class
    - Message number
    - Modification name
    - Modification created by
    - Modification done on
    - Last changed by
    - Last changed on
    Kindly help. A <removed by moderator> solution would be really helpful.
    Best Regards,
    Smruthi
    Edited by: Thomas Zloch on May 5, 2011 12:07 PM - urgency reduced

    Hi Smruthi,
    The modification changes would be in the SMODILOG table. Please note this is a core basis table and should not be changed, however to best find your changes search under the TRKORR field with the relevant tp request.
    Best regards,
    Derrick Hurley
    Development Workench

Maybe you are looking for