FM to display full header text in a pop up window

1 . I have a ALV report which displays first line of a headr text for a perticular sales doc.
if i click on a header text  i should see the complete header text for that particular sales doc. in a pop up window.
is there any FM to do so .
please repond quickly . its urgent
i will award full points to all attempters.

Hi,
For your reference-
Re: How to create POPUP windows (from ALV report)
You can have a look at a standard program where pop-up functionality is used.
BCALV_GRID_AND_POPUP
<b>Reward Points if Helpful!!</b>

Similar Messages

  • Mail doesn't display full email text, only displays the subject line

    Mail doesn't display full email text, only displays the subject line.
    My preview shows first three lines of email, but when I chose the email specifically mail doesn't display any lines of text.  Been this way for about ten days.  Please help.  Ben

    Awesome.  Rebooting the phone worked.  I had never turned the phone off before (for the next guy - you hold down the "sleep" button for longer than you'd think and that'll do a full shutdown).  thank you for your help.

  • I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content)

    I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content) is there a fix to this problem? using 8.1, Monitor is a high res.2560x1440.

    Another View.
    the GUI is so hard to read (so small) I enlarge my Ps UI by the instructions below...which helped a lot.

  • Can you enter text into "info" pop-up window for TV Shows?

    It's not a big deal, but I was just wondering if there is a way (a script perhaps) of entering text into the little "info" pop-up window for TV Shows in iTunes? (You know the one...it pops-up when you click on the little "i" in the description box on the TV Shows main playlist)
    The show files I made myself have blank info windows of course and it would be nice to be able to enter a decent length description of the episode (the character limit in the "Description" box is so short).
    Like I said, it's not a big deal, but it would be nice to be able to enter info in there...so if anybody knows how...please let me know.
    Yhanx a lot!

    Thank you very much for your reply! I will definitely pass this along to the IT department! Smiling now!

  • Adding text to javascript pop up window

    I am opening a pop up windows with javascript from my Flash
    movie that works fine. Each opening window has a video in it. Now
    what I'd like to do is add text under/above the quick time movie
    inside the pop up windows. I'm not very savvy with programming and
    I've tried to look all over but can't find a simple direct answer,
    so any help would be greatly appreciated.
    Thanks!
    Here's the code I have inside the Flash movie:
    btn_rebecca.onRelease = function() {
    getURL("javascript:openNewWindow('Videos/rebecca.mov','thewin','width=500,height=400,toolb ar=no,scrollbars=no')");
    And here's the code I have in the html:
    <script language="JavaScript">
    function openNewWindow(URLtoOpen, windowName, windowFeatures)
    newWindow=window.open(URLtoOpen, windowName, windowFeatures);
    </script>

    An html document is an html document. If you create a
    document that has a line of text, then the QT movie, and then
    another line of text, you have the basic layout of the movie. If
    you just open this document in a browser, it will work as a normal
    html document. If you open that same page using the window.open()
    JS method, then you can define the chrome and size of the window.
    If you don't want to create all 20 pages and load then on
    your server, then you could write a JS function to write the
    content to an html document on the fly. You might do this by:
    1. Use window.open() to open up a blank html document,
    2. Use document.write() to write the html content that you
    want in that document.
    That way you can create as many custom windows with unique
    content as you want.
    If all of the content is static, then it really is a whole
    lot less work to just make the html documents and open them as
    needed.

  • To display long header text than 40 characters in ALV_GRID_DISPLAY method??

    Hi all,
    I have a requirement to display a very large text(more than 40 characters) in header column of ALV grid.
    Is there any way out.
    Regards,
    Anurodh

    Hi Lakshmi,
    Use this code while defining field catalogs for ALV:-
    wa_field-outputlen = 60.
    append wa_field to it_field.
    Use link:-
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/learn%252bto%252bdisplay%252bdata%252bin%252balv%252bgrid
    Hope this helps you.
    Thanks & Regards,
    Tarun

  • Displaying Header Text in ALV report.

    HI Gurus,
    I have one sales order which has header Text.
    I am displaying that Header Text in my ALV report.
    But while displaying in the ALV grid, the text is not coming full.
    I have taken the datatype of the column of the ALV grid is string, Still the Header text is not come full.
    Please help me.
    Thanks in advance.

    Hi,
        If the header text is morethan 60 characters, you can't print with REUSE_ALV_COMMENTARY_WRITE. To overcome above limit we can use dynamic document, which can be implemented through the class CL_DD_DOCUMENT. As dynamic documents use HTML viewer control so instead of triggering the TOP_OF_PAGE event we should trigger event of HTML TOP_OF_PAGE.
    First create a subroutine for top of page in HTML format and send that name in I_CALLBACK_HTML_TOP_OF_PAGE parameter of ALV function module. The input parameter for this subroutine will be a variable of class CL_DD_DOCUMENT.
    *       FORM html_top_of_page                                     *
    FORM html_top_of_page USING top TYPE REF TO cl_dd_document.
      data: l_text(255) type c.
    l_text = '*******************************Hellooooooooooooooooooo************************'.
      CALL METHOD top->add_text EXPORTING text = 'Hello world '
                                          sap_style = 'heading' .
      CALL METHOD top->add_gap EXPORTING width = 200.
      CALL METHOD top->add_picture EXPORTING picture_id = 'ENJOYSAP_LOGO'.
      CALL METHOD top->NEW_LINE( ).
      CALL METHOD top->add_text EXPORTING
      text = l_text.
    ENDFORM.
    * Display ALV grid
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         EXPORTING
              i_callback_html_top_of_page = 'HTML_TOP_OF_PAGE'     " Use this event
              i_callback_program          = g_repid
              i_structure_name            = 'STRUCTURE'
         TABLES
              t_outtab                    = gt_outtab.
    Regards
    Bala Krishna

  • How to display field value in header text?

    Hi Experts,
    In va03, the client wants some number in the header text which is stored in vbak. Please tell me:
    1. Which method should I use in BADI?
    2. How to display in header text?
    Regards
    Mani

    Hi Kiran,
    Thanks for the prompt reply. How can I display some hard code like 'Test' in the header text in va03.
    Text name = 0000001252
    Language = EN
    Text ID = Z001
    Text object = VBBK
    READ_TEXT is used to get the values from the header text, but how to set the values?
    Regards
    Mani

  • Extract PO header text in PO work flow item description

    Hi,
    I'm trying to display PO header text using standard PO workflow.
    I managed to retrieve the PO header text information at the business object(SWO1). Now it is only displaying the last line of the PO header text. I define object &_WI_OBJECT_ID.POTEXT& in the work item text. POTEXT is of type VIRTUAL and with reference to table tline and field tdline.
    How to make this field POTEXT multiline in the workflow work item?
    For example PO header text contains:
    Header testing1
    Header testing2
    Header testing3.
    Currently, it is showing only Header testing 3. I'm not sure how to do coding in business objects for this case.
    I am using 'READ_TEXT' function module, but how to display the text information in this field POTEXT?
    Please advise. Thanks.

    Hi Dev,
    Thank you for your quick & prompt response.
    The program that you have given is showing the text details but it is not showing complete text details, it is only showing 1st line of text. Please see screen shot for your reference, please suggest how to get complete text details.

  • Header Text of Invoice

    Hi All,
    I need to retireve the Header text of Sales orders.
    I am able to fetch the Text using READ_TEXT  Function module with proper import parameters.
    My requirement is to display such header texts against each sales order. If a particular sales order is not having any header texts, the ALV report should display blank column.
    But now, if a sales Order is not maintained with header text, the report is displaying the Function Module's error.
    How to avoid Function Module's error in such scenarios...???
    Its very much urgent.......... Your help is sinceerely apprciated....
    Regards
    Pavan

    Hi Pavan,
    normaly your can catch the error by check the  field sy-subrc after function call. You must activate the Exeptions if you call the function. After returning from the FM you check the field sy-subrc <> 0. In this case you clear the ALV-Grid field in the other case you fill the header text in the ALV-Grid field.
    Regards
    Dirk

  • Header Text from VF01 into Line layout of F-30

    Good day..
    i Need help on this
    I need to display the header text from VF01 into F-30 line layout
    or
    display the text field from fbl5n into line layout of F-30 Process Open Items.
    thank you in advance

    Hi,
    As per your requirement is possible through by develop the Z tcode that means Zf-30, why because you didnt post the only acounting documents in this particular Tcode
    Is this ok for you means, talk with the abper they will the changes as per your reuirement
    Regards,
    Kanike

  • How to align Hgrid column(messagestyledtext) header text to right justified

    Hi All,
    I have a Hgrid table and i am using five columns in hgrid table.. I need to display column header text right justified. but by default it is left justified.
    Can any one tell me how to do it..
    Its very urgent.. Please help me out..
    Regards,
    Babu

    Use
    OAHGridBean GeneralHgrid=(OAHGridBean)webBean.findChildRecursive("<hgrid item name>");
    GeneralHgrid.prepareForRendering(pageContext);
    DataObjectList tableColumnFormats =GeneralHgrid.getColumnFormats();
    DictionaryData tableColumnFormat = (oracle.cabo.ui.data.DictionaryData)tableColumnFormats.getItem(pageContext.findChildIndex(GeneralHgrid, "<item id of item attached in hgrid column>"));
    tableColumnFormat.put(COLUMN_DATA_FORMAT_KEY, <enter format>);
    see below:
    �� TEXT_FORMAT (textFormat)- column content is Start justified.
    �� NUMBER_FORMAT (numberFormat)- column content is Right justified.
    �� ICON_BUTTON_FORMAT (iconButtonFormat)- column content is center justified.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Delivery Header Text in SAP Query SQ01

    Hi Friends,
    My requirement is that I need to display the Header Text contents in Outbound delivery in a Query report using SQ01.
    As far as I know, we can pull only table fields in SQ01.
    Is it possible to include Text contents in SAP Query? Can we develop or enhance it?
    Regards,
    AK

    You can add structure and code in a dataset using SQ02, then it will be available to use in SQ01, but a long text can consist of many lines, and so you may require to truncate the text - read [SAP Query|http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/d2/cb3efb455611d189710000e8322d00/frameset.htm] documentation
    - [Creating Additional Structures|http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/d9/9958d4c50a11d396f80000e82de14a/frameset.htm]
    - [Further Code|http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/d2/cb4504455611d189710000e8322d00/frameset.htm] (I suggest record processing or after the query get the table with the text id)
    So create a structure with some text fields, and fill it for every record read in futher code part.
    Regards,
    Raymond

  • Header text problem

    Hi,
    Im trying to display the header text of PO order in the last page of my form. But the text may be unlimited, so in that case i have kept the text-element printing that text in the main window of the last page instead of keeping it in a separate window.
    Now, since its in main window the data is getting printed in other pages also (data is getting overlapped). I tried protect,endprotect but still the problem persists. I also tried to keep the other window as the main window. Its not printing the text.
    Any suggestions?

    HI Sudharsana,
    Call this text element in the driver program...
    at last
         call function 'WRITE_FORM'
           exporting
           element                          = 'PO_TEXT'
    Regards,
    Sravanthi

  • Displaying Error message in a pop-up window

    Hi,
    I need to validate the entry in a field on the selection screen and display the error message if the entry does not exists in the corresponding table.  <b>But the error message should be displayed in a pop-up such  that on continuing , the selection screen re-appears.</b>
    How can i  display the error message in a pop-up window  with a single continue button?
    <b>( i dont want to display the yes and no options as in case of fm popup_to_confirm etc.)</b>
    thanks,
    vartika

    Hi,
    Try this:
    tables : BSIS.
    parameter : bukrs like bsis-bukrs.
    at selection-screen.
    if bukrs eq '1000'.
       message 'Co. Code is not allowed' type 'I'.
    endif.
    Thanks,
    Sri.

Maybe you are looking for

  • Table usage in forms

    Hi, Is there a simple way to find out the tables used in a particular form (6i)? I have to make a list of the table usage per form (about 200 forms). The forms info is not stored in a database or in designer. Regards

  • Beginner: Animating individual nodes in a Group?

    I've a class extending Group, and I'm trying to do the following: for (Node node : nodeGroup.getChildren()) {             RotateTransition rotateTransition = new RotateTransition(Duration.seconds(4), node);             rotateTransition.setFromAngle(0

  • Now able to go Managed system in BPM when i  Double Click on counter field

    Hi all Step: call DSWP u2022 choose your solution u2022 choose Operations Setup -> Business Process Monitoring u2022 choose u2018Setup Business Process Monitoringu2019 Local RFC Destination for Data Collection -statu is green u2022u2018Load Monitors

  • Complete Apple TV Resync when upgrading my server?  Is there a better way?

    We recently replaced our old imac that served are the ITunes library with a new one. We have two Apple TVs. I configured the new server using a time machine backup from my old. I de-authorized my old computer and re-authorized the new one. All of my

  • CC desktop will not update apps to 2014

    Hello, i am having an issue updating my current apps to 2014. CC desktop will open and show that the updates are available but when i click update it goes to a blank screen. i have a laptop that i also use and know that after the first app you want t