Re:note tab(text box) in Miro screen

Hi all
Can any one tell me in which table the Note tab (text box) of miro screen will be stored.

Hi,
Please try this.
1. Go to SE16.
2. Enter table name STXH.
3. Enter: TDOBJECT = 'RBKP', TDNAME = RBKP-BELNR + RBKP-GJAHR, TDID = '0001' and TDSPRAS = 'EN'.
4. Execute ...
5. Then go to SE37.
6. Enter function module READ_TEXT.
7. Fill parameter: ID = STXH-TDID, LANGUAGE = STXH-TDSPRAS, NAME =  STXH-TDNAME and OBJECT = STXH-TDOBJECT.
8. Execute and check return table lines.
Regards,
Ferry Lianto

Similar Messages

  • There is a text box on the screen.  How do I get rid of it?

    I have a black text box on my screen.  How do I get rid of it?

    I'm not quite sure what it is you're seeing, but if it's a Terminal window (click on the window and see if you see the "Terminal" menu at the very top left of the screen) you can close it just like any other application - go to the Terminal menu and click "Quit Terminal".
    If that's not it, it's possible you're seeing a Voiceover border - go to System Preferences, Universal Access, click Voiceover and turn it off if it's on.
    Matt

  • How to display a percentage sign ( % ) after a text box in a screen

    hi experts,
    Can anybody tell me how to display a percentage sign ( % ) after a text box in a screen.

    Hi Ajay,
    Try to use the  [Position|http://help.sap.com/saphelp_nw04/helpdata/EN/9f/dba7e235c111d1829f0000e829fbfe/frameset.htm] option of selection screen.
    By using this you can place the text as a comment at a desired position on the selection screen.
    The syntax would be like this :
    SELECTION-SCREEN POSITION <pos>.
    Regards,
    Swapna.

  • Regarding text box in selection screen

    Hi all,
    Can i know how we can implement a text with scroll bars so that user can enter a data of about 2000 characters with paragraph indent. also this needs to be done on the selection screen of PNP logical database.
    Please let me know if this can be done.
    Thanks.
    Harshad.

    Hi Harshad,
    [text box in the selection screen|Text box on selection screen]
    Thanks!

  • Diplay Text in Text Box in selection Screen

    Hi Experts i want to display text in text box in selection screen like
    Personnal Number
    Display in text box and disable................please help me
    Edited by: BFawad26 on Jun 21, 2010 9:46 AM

    Hi,
    You mean to say parameter in selection screen
    Just press F1 on parameter you will get all the option available for the parameter
    for defaulting text just give your text in DEFAULT option for the parametr
    And for disabling this checkbox you can explore the LOOP AT SCREEN concept
    In at selection screen output event you can modify the selection screen.just give one modif id for your
    paramete and use this at selection screen output event , loop at screen and modify screen with the screen input = 0
    for ur parameter.
    Thanx
    Edited by: PawanG on Jun 21, 2010 9:51 AM

  • Parallel text box in selection screen

    Hi all,
    Can anyone please tell me that how can i create parallel text boxes in selection screen?
    Exa : Company code    <Input box>                        Date       <Input box>
             Pers No.              <Input box>                    Cust No. <Input box>
    Regards.

    hi,
    Use COMMENT and POSITION statements in selcection-screen to achieve the same.

  • Disable text Box On Selection screen

    hello guys,
    I am making a selection screen report in which i want to disable the text box , when i am selecting a particular radio button.
    Kindly, let me know how to do the same.
    Thanks &  regards.
    Kirtish

    hi kirtish
    if u want to disable the text box on the screen, u need to use the screen table. 
    see. All fields of the current screen are stored in the system table SCREEN with their attributes.
    so when u click on the any element of the screen the sceen table is looped through.
    use the following code in at selection screen output .
    put the name of the text box in the
    ex:
    LOOP AT SCREEN.
    IF SCREEN-NAME = <FIRST RADIO BUTTON>
    (IF p_r1 = 'X'. say p_r1 is your radio button name)
    LOOP AT SCREEN.
    IF SCREEN-NAME = <text box>
    SCREEN-INPUT = OFF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    in case of query please reply.
    award if useful
    Varun

  • How do I delete a box (symbol, not a text box)?

    How do I delete a box (symbol, not a text box)?

    Select the pointer tool, select the box and hit delete.
    Or have I misunderstood?
    Iechyd da! John
    22:39 08/05/2009

  • Text Box in Selection Screen

    Hi All,
    Is it Possible to provide a text box in the selection screen?
    My requirement is user needs to enter a paragraph in the selection screen and this should be displayed in the form.
    Note : Individual text fields are not required.
    Thanks
    parthi.

    Hi,
    Designe a screen in SE 51 and call that screen in your report program.
    To create a textbox in module pool look at [this|Custom Container in module pool program]
    Thanks,
    Sri.

  • Creating radio buttons and text box in the screen

    Hi Guys,
    Need help asap. I am writing a report and I have to create text box for user to input GL account numbers for two types of customer. I have to make these fields required and take the data back from the screen and write it in a file. The second thing that I have to do is to make radio buttons for the user to select whether he wants the file written on the application server or the presentation server. and process the report accordingly. Now can somebody please given some code and tell me how I should do this. Both the things have to be done for the same report. Please help.
    Thanks,
    Minal

    Hi,
    TABLES: likp,
            lips.
    TYPES: Begin of ty_likp,
           vbeln like likp-vbeln,
         end of ty_likp.
    TYPES: Begin of ty_lips,
           vbeln like lips-vbeln,
           posnr like lips-posnr,
         end of ty_lips.
    DATA:  i_likp TYPE STANDARD TABLE OF ty_likp,
           i_lips TYPE STANDARD TABLE OF ty_lips,
           w_lips TYPE ty_lips,
           w_likp TYPE ty_likp.
    SELECTION-SCREEN BEGIN OF BLOCK b_0 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:  s_delno FOR likp-vbeln,
                     s_type  FOR likp-lfart,
                     s_ship  FOR likp-vstel,
                     s_date  FOR likp-erdat.
    SELECTION-SCREEN END OF BLOCK b_0.
    SELECT vbeln
             FROM likp INTO TABLE i_likp
             WHERE vbeln IN s_delno
             AND   lfart IN s_type
             AND   vstel IN s_ship
             AND   erdat IN s_date.
      IF sy-subrc <> 0.
        MESSAGE i000 WITH text-002.
        " No valid deliveries for the selection parameters entered.
        STOP.
      ENDIF.
      IF NOT i_likp[] IS INITIAL.
        SELECT vbeln
               posnr
               FROM lips INTO TABLE i_lips
               FOR ALL ENTRIES IN i_likp
               WHERE vbeln = i_likp-vbeln.
      ENDIF.
    format color 1 on intensified on.
      WRITE: /01(46) 'Following are the Hanging Deliveries/Invoices:'.
    format color off intensified off.
    skip.
    format color 1 on.
      WRITE:  SY-ULINE(27).
      WRITE: /1       SY-VLINE,
              3(12)    'Document No.',
              16      SY-VLINE,
              17(8)  'Item No.',
              27      SY-VLINE.
    write:/1 sy-ULINE(27).
    format color off.
      sort i_lips by vbeln posnr.
      LOOP AT i_lips INTO w_lips.
          Read table i_likp into w_likp with key
                            vbeln = w_lips-vbeln
                            posnn = w_lips-posnr.
          if sy-subrc <> 0.
          format color 2 on.
             WRITE: /1   sy-vline,
                    3(12)  w_lips-vbeln,
                    16  sy-vline,
                    17(8)  w_lips-posnr,
                    27  sy-vline.
            write:/1 sy-uline(27).
            format color off.
            clear w_lips.
          endif.
          ENDLOOP.
    Try this one with ur own example.
    Thanks & Regards,
    Judith.

  • Additional Tab at bottom of MIRO screen

    Hi all,
    I see that there is an additional "G/L account" tab that appears at the bottom of the MIRO screen. Can someone share with me if this is standard sap and how is it done?
    Thanks

    Hi
    This can be used to post the unplanned delivery and other cost directly to G/L aacounts.When you are receiving the material without PO/unplanned cost which are not part of PO, you can post this cost to a G/L account or Material account.
    Regards
    Ramakrishna

  • Quiz Variable Not Tracking Text Box Responses

    Hello Everyone,
         I am having a problem getting the Captivate Quiz variable to track correct responses from a text box. I am using Captivate 5 and trying to make a quiz where someone will enter in data that will be validated and branch off of their responses. I have set up several text boxes, turned on validating, checked the "Include in Quiz" box and the add to total and report answers boxes. See the pic below:
    I am trying to branch using an advanced action that checks the cpQuizInfoPointsscored variable and branches them based off their score. But the variable always shows 0! (I set up a text caption to display the variable as I went through to check.) Here is the weird part, I have the quiz results slide in the presentation, and IT accurately shows the results from the test boxes. But for some reason the Quiz Variable isn't tracking them! Any help??

    Hello and welcome to the forum,
    From your question I know that you are using CP5.0, correct? This 'bug' has been fixed in Captivate 5.5. Was one of the users who had insisted (by bug report) to have all Quizzing System variables updated after each question, and not only when the quiz was done, on the score slide; now you are bumping into this issue: the score in cpQuizInfoPointsscored will be tracked and will have the scores attached to the Text Entry Boxes or for any other scoreable object (all show up in the Advanced Interaction view - F9) but only at the score slide.
    I had a workaround in CP5 (have described it somewhere in an article or a blog post), using the Quizzing variable that IS updated after each question: cpQuizInfoLastSlidePointScored.
    If you want to have the functionality of CP5.5 you'll have to track the total score in a user variable by advanced actions. It is not really that hard, since you are already using advanced actions, step-by-step
    create a user variable v_currentscore
    on entering each question slide have this statement executed (if you do not have already an advanced action for this Enter event, and this is the only statement, better add Continue as second statement)
    Expression v_currentscore = v_currentscore + cpQuizInfoLastSlidePointScored
    now you can use this user variable for your check instead of cpQuizInfoPointsscored, you understand that it is only updated on the slide after the slide where the question is answered? Let me know if this is a problem
    Lilybiri

  • Long Text box in Selection Screen

    Hi,
    How to create a long text box in the selection screen.
    Is there any example/demo program in standard??
    Regards
    Jiku.

    erm, what do you want to achieve with this?
    should your users be able to search for long texts?
    That will probably fail since there are differences between the input and the long text you are searching for.
    Or do you have users making no faults?

  • Saving .pdf file into .jpeg - not displaying text boxes

    When I save my Adobe Acrobat Pro 8 .pdf file into .jpeg format and open it, it does not display of the text boxes, comments etc. Thanks

    Look at your other thread.

  • System dialog? black text box in the screen?

    How do I close this program, it was opened by accident. it's a black text box that is telling me everything I type, point or click on....it's REALLY annoying!

    System Preferences -> Universal Access -> Seeing tab -> turn Voiceover off

Maybe you are looking for