Break line in status gui

Hi,
I need to put a brake line like: |
between some buttons of status gui toolbar. I tried some way but I miss. help
thx
mk

U say "break line",is it a seperator?
If YES,then u may assign the property of the menu item to be a seperator.It is displayed as the seperator of the WINDOWS.
Hope this can help u.

Similar Messages

  • Change line item status at table level & also in transaction.

    Hello,
        I want to change the status of line item in CRM service order at table level. This change should reflect in transaction too.
    Ex. Order X is in release state. When i run my program for line item 10 with enabling a check box in the selection screen, then the line item status shd be changed to "complete".
    Table to change status is CRM_JCDS. Kindly send sample code on how to change the status in order through pgm.
    Regards
    Devika.S

    Hi Nikhil
    Open item management tick checked in GL master as we have run the program FAGL_SWITCH_TO_OPEN_ITEM .
    Also GL shows the line item dispaly as RFSEPA01 had been executed.
    However FAGLL03 shows all the old line item as posted status -we are looking for option have the status of all the old
    line item as open item indicatior(in red) there by we can have the option to select all the item to process open item in F-03.
    Appreciate for an amicable solution on this.
    Regards
    subrata

  • Insert a break line in a content of a variable

    Hi all, my problem is:
    I want to put a break line at position 40 of a string (where exist a space), for example.
    DATA: v_string TYPE string.
    v_string = 'testline1_testline1_testline1_testline1 testline2_testline2_testline2_testline2'.
    Because i want a result like this
    testline1_testline1_testline1_testline1
    testline2_testline2_testline2_testline2.
    I tried with cl_abap_char_utilities=>cr_lf but are printing  testline1_testline1_testline1_testline1##testline2_testline2_testline2_testline2.
    I tried too with cl_abap_char_utilities=>new_line but don´t work.
    Tks to all.

    Hi sadavisa,
    follow my program:
    start----
    DATA: gv_string TYPE string,
          gv_result TYPE string,
          gv_len TYPE i,
          gv_div TYPE f,
          gv_num_lin TYPE i,
          gv_len_upd type i,
          gv_position type i,
          gv_count type i,
          gv_40(1) type c,
          gv_39(1) type c,
          gv_38(1) type c,
          gv_37(1) type c,
          gv_36(1) type c,
          gv_35(1) type c.
    gv_string = 'testline1_testline1_testline1_testline1 testline2_testline2_testline2_testline2'.
    gv_len = STRLEN( gv_string ).
    IF gv_len <= 40.
      WRITE gv_string.
    ELSE.
      gv_div = gv_len / 40.
      gv_num_lin = CEIL( gv_div ).
      gv_count = 1.
      WHILE gv_num_lin => gv_count.
        IF gv_num_lin = sy-index. "this code is executed only in the last time
          CONCATENATE gv_result gv_string INTO gv_result.
          gv_count = gv_count + 1.
          CONTINUE.
        ENDIF.
        gv_40 = gv_string+40(1).
        gv_39 = gv_string+39(1).
        gv_38 = gv_string+38(1).
        gv_37 = gv_string+37(1).
        gv_36 = gv_string+36(1).
        gv_35 = gv_string+35(1).
        IF gv_40 = space.
          gv_position = 40.
          PERFORM update_variables USING gv_position.
          continue.
        ELSEIF gv_39 = space.
          gv_position = 39.
          PERFORM update_variables USING gv_position.
          continue.
        ELSEIF gv_38 = space.
          gv_position = 38.
          PERFORM update_variables USING gv_position.
          continue.
        ELSEIF gv_37 = space.
          gv_position = 37.
          PERFORM update_variables USING gv_position.
          continue.
        ELSEIF gv_36 = space.
          gv_position = 36.
          PERFORM update_variables USING gv_position.
          continue.
        ELSEIF gv_35 = space.
          gv_position = 35.
          PERFORM update_variables USING gv_position.
          continue.
        endif.
        gv_count = gv_count + 1.
      ENDWHILE.
    ENDIF.
    write gv_result.
    *&      Form  UPDATE_VARIABLES
          Update variables
         -->P_POSITION  text
    form UPDATE_VARIABLES  using p_position type i.
      CONCATENATE gv_result gv_string(p_position) cl_abap_char_utilities=>cr_lf INTO gv_result.
      gv_len_upd = gv_len - p_position.
      gv_string = gv_string+p_position(gv_len_upd).
      CONDENSE gv_string.
      gv_count = gv_count + 1.
    endform.                    " UPDATE_VARIABLES
    end----
    So my question is why when i write CR_LF on file text go right and when i join into a variable and then write on screen go wrong.
    Tks.

  • How do I set the column content to automatic break lines

    Hello Guys,
    I have a problem with the column width and the column content of a standard report. Within the report are hugh entries which aren't interrupted by an space character. I set my column width to a special value by usingen "css style: display block; width: 300px;". Now the problem is that some of the column entries have a longer width than the column width is setted. So they overlock the entries of the column next to them.
    My question is: How do I set the column content to automatic break lines after a certain count of characters?
    After researching a couple of websites and discussion thread I found maybe a reference to the solution. I hope it help you to give me an answer.
    COLUMN LAST_NAME FORMAT A4
    regards
    wderr

    Wderr,
    PDFs are another animal entirely. Try adjusting the width of the column under the Print Attributes tab of the report.
    If that doesn't work you'll probably need to create custom XSL-FO layouts which, depending on the tools you have at your disposal, could take some time.
    Regards,
    Dan
    Blog: http://DanielMcGhan.us/
    Work: http://SkillBuilders.com/

  • Send e-mail with a file as attachment - Break line problems

    Hi
    I use the function SO_NEW_DOCUMENT_ATT_SEND_API1 to send an e-mail from ABAP program.
    With SAP4.5B, all work good, but since we have 4.6C, the attached file is malformatted.
    An automatic CRLF break line is generated all 1022 char!
    The eattachment is create from content of internal table with a line of 255 char.
    How can I avoid the automatic CRLF char or how can I to send a good file ?
    Thank

    Hi,
    look here:
    Re: How to email an attachment with more than 255 characters?
    Andreas

  • Problem Status Gui in Ecc 6.0

    Hi all,
             I have a problem in Ecc 6.0 with status gui. The status not allow to write on the help icon. This icon (help) is protected.
    In 4.6c, the status gui allows to write. The Icon isn't protected in 4.6C.
    Many thanks.

    Hi Jose,
    I would open an oss ticket in your case with BC-OP-AS4 ...
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.com http://www.4soi.de http://www.easymarketplace.de

  • How to add new price break lines to existing PO quotations?

    Hi,
    I am using a custom interface (to insert quotations data into PO headers/lines interface tables) and PO documents open interface to create PO Quotations in Oracle.
    I need to modify this interface to:
    1. Update existing price break lines for a quotation line.
    2. Add new price break lines to existing quotation line(which may/may not have exsiting price break lines).
    Please let me know:
    1. What modifications need to be done to the existing code.
    2. What values needs to be passed to the action columns in PO_HEADERS_INTERFACE and PO_LINES_INTERFACE for above scenarios?
    Any ideas/help will be appreciated.
    Thanks
    Imran

    Hi Imran,
    I have done a similar exercise for BPA price breakup.. Let me know if you need that as reference. I can share that :).. Please provide your personal mail id..
    Regards,
    S.P DASH

  • Multiple selection screens with status gui

    Hi,
    I want to make a report with two selection screens and i should create a status gui for these two.
    So, I've tried to do, the following:
    * FIRST SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK bk WITH FRAME.
    PARAMETERS: pa(200) TYPE c.
    SELECT-OPTIONS: so FOR sflight-carrid.
    SELECTION-SCREEN END OF BLOCK bk.
    * /FIRST SCREEN
    * SECOND SCREEN
    SELECTION-SCREEN BEGIN OF SCREEN 2000.
    SELECTION-SCREEN BEGIN OF BLOCK bk1 WITH FRAME.
    PARAMETERS: pa2(200) TYPE c.
    SELECTION-SCREEN END OF BLOCK bk1.
    SELECTION-SCREEN END OF SCREEN 2000.
    * /SECOND SCREEN
    AT SELECTION-SCREEN OUTPUT.
      SET PF-STATUS 'Z_STAT'.
      SET TITLEBAR 'COISO'.
    AT SELECTION-SCREEN.
      IF sy-dynnr EQ '1000'.
        CASE sy-ucomm.
          WHEN 'BACK' OR 'EXIT' OR 'CANC'.
            LEAVE TO SCREEN 0.
          WHEN 'EXECUTAR'.
            CALL SELECTION-SCREEN 2000.
            IF sy-subrc <> 0.
              LEAVE TO SCREEN 1000.
            ENDIF.
        ENDCASE.
    The problem is that on the first selection screen i have the status gui that I've created, but when i use CALL SELECTION-SCREEN 2000
    the status gui (Z_STAT) is not assigned with the screen 2000.
    Is this possible? If yes how, and how can i capture which button on status gui of screen 2000 was clicked, because the field sy-ucomm after the call selection-screen 2000 is not updated?
    Regards,
    Pedro Bessa

    harsh bhalla,
    its the same report. with two selection-screens. Can't i have status gui for both of them?
    Gurpreet Singh,
    I have a selection screen. Not a screen. Can a have a pbo for a selection-screen? or one for each selection-screen?
    The table SSCRFIELDS and the field sy-ucomm stays with the value from the first selection-screen.
    Regards,
    Pedro Bessa

  • How to break lines in JLabel?

    I can use html code to break lines for swing compoent, for example:
    JLabel label = new JLabel("<html>ABC<br>DEF</html>");The thing is that I need to read the content of JLabel from a text file. It doesn't work if I defined the text file as "<html>ABC<br>DEF</html>". How can I let the JLabel support html code which is read from text or property files?

    The origin of the string is irrelevant.
    It make no difference if you get the html from a file ot directly in your code as literal. HTML support in JLabel always works

  • Status gui, text elements and screens in Abap in Eclipse

    Hello everybody,
    Today i start using AiE, but i see that i can't create status gui, text elements and screens, the only method to achieve this is open sap gui (from eclipse) and create this directly there. I don't know if i am doing something wrong but i can't see how to create this objects in eclipse.
    Is SAP working to implement this options directly in Eclipse without having to go to sap gui?, if that's right, when are we going to see this options directly in eclipse?.
    In advance thank you very much.
    Best regards.
    Jhon Jairo Teran.

    Hi Jhon Jairo Teran,
    you are right, some development objects are currently only supported in AiE using the SAP GUI integration. However, with each release more and more features become available. For example, editing message classes was added in a recent release. The best way to keep up-to-date with the features of AiE is to follow the AiE space on SDN (ABAP in Eclipse).
    On thing to keep in mind is, that the availability of some features depends on the version of the backend system. Thomas Fiedler created a blog that contains the information which features are available with which backend version: ADT Feature Availability Matrix for AS ABAP Releases.
    Christian

  • Status GUI and change of language

    Hi!
       I need to create the staus gui for Português, English and Deutsche.
        BY SE80 Status GUI. I translate the menu bar for Potuguese and it is changed for others languages too.
      How do I do  ?
    Thanks.

    To change the language got to settings/general/international/language

  • Break line - Interactive report

    Hi,
    The interactive report does not show the ||utl_tcp.crlf||, is there a way to make this line break shown on interactive report? is there any thing I can use to break line will be shown in IR?
    thanks,
    Fadi.

    nferreri wrote:
    This good and all until you try exporting to CSV and see a bunch of <br> in your data. :(
    Going to continue searching to see if there is another option... would like to get line breaks (char 10) working so it's nice in exports but interactive report columns dont allow for CSS formatting either.See +{message:id=10404268}+
    But please: DO NOT post follow-ups to closed/ancient threads.
    Posting follow-ups to ancient threads/departed users is NOT an effective way of getting help:
    <li>Other users may ignore the thread if it is closed.
    <li>Your assumption that the questions are related may be incorrect, leading to confusion about the nature of the problem and potential solutions.
    <li>Watches on the thread will have expired, so the original participants are totally unaware of the new post. They may no longer be active on the forum.
    <li>You have no ability to mark posts as helpful or correct.
    Post your requirements as a new thread, including at least the following information:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Links to related posts and threads (using the methods in the FAQ)

  • Break line in sending mail program

    Hi All,
    I am creating sending mail program, its working fine but  for that i have problem in break line.
    my code is below:
    doc_chng-obj_descr = 'SAP test mail'.
    Mail Contents
         loop at itab..
        CONCATENATE 'sap test mail UPDATED:' ''
      INTO it_objtxt SEPARATED BY space.
      APPEND it_objtxt.
      CONCATENATE 'test1:' SPACE itab-KOKRS
      INTO it_objtxt SEPARATED BY space.
      APPEND it_objtxt.
      CONCATENATE 'test2:' SPACE itab-KSTAR
      INTO it_objtxt SEPARATED BY space.
      APPEND it_objtxt.
      if int = 16.
        CONCATENATE 'test3:' space  itab-objnr
        INTO it_objtxt SEPARATED BY space.
        APPEND it_objtxt.
      endif.
    endloop.
    output is:
    sap test mail
    test1:5000
    test2:0000600100
    test3:371040
    sap test mail
    test1:5000
    test2:0000600100
    test3:362040
    but i want blank line after 1 entry like below
    sap test mail
    test1:5000
    test2:0000600100
    test3:371040
    sap test mail
    test1:5000
    test2:0000600100
    test3:362040
    so please guide me.... i used skip and new-line statement but its not working...
    Thanks in advance
    zeni

    Add a blank line at the end of the loop.
    loop at itab..
    CONCATENATE 'sap test mail UPDATED:' ''
    INTO it_objtxt SEPARATED BY space.
    APPEND it_objtxt.
    CONCATENATE 'test1:' SPACE itab-KOKRS
    INTO it_objtxt SEPARATED BY space.
    APPEND it_objtxt.
    CONCATENATE 'test2:' SPACE itab-KSTAR
    INTO it_objtxt SEPARATED BY space.
    APPEND it_objtxt.
    if int = 16.
    CONCATENATE 'test3:' space itab-objnr
    INTO it_objtxt SEPARATED BY space.
    APPEND it_objtxt.
    endif.
    * Add a blank line
    clear lt_objtxt.
    append it_objtxt.
    endloop.
    Regards,
    Rich Heilman

  • Setting break lines

    Hi all
    I want to know how to insert a blank line between the first line of column labels and lines of column values in a group-left report . And is it also possible to break line between each result set records ?
    Thank you.

    For the blank lines between each record, you will want to modify the Vertical Spaces between Records property on the repeating frame. This will determine how much space is printed between each record. I think it goes by whatever you have in your measurement settings. I just plug in numbers and see how i like it.
    You may also want to try modifying the Horizontal Space property for the repeating frame with the column headings. This may create the space you are looking for.
    This stuff is hard to picture without seeing it, so I'm taking a stab here! And if all else fails, run the report, and when in the live-previewer, set flex mode on, and start stretching your columns/rows to the way you want it!
    Good luck!

  • Add icon in Bar Button of Status Gui

    Hi Guys,
    I'd like to add an ICON_POSITIVE of <icon> in the bar button, but when trying it in status gui it show me an error message: "The icon ICON_POSITIVE doesn't exist".
    Please, help me.
    Yours sincerely,
    Marcos.

    Hi guy,
    I've already checked it in this table and the icons ICON_POSITIVE and ICON_NEGATIVE are there, but aren't allowed to be used in Bar Button of Status Gui.
    Thanks,
    Marcos.

Maybe you are looking for

  • Connecting an Apple 12/640 to my Imac.

    I had my 12/640 connected to my iMac for some time prior to putting the printer in storage for about 9 months. When I brought it out again it wouldn't establish a connection. It would appear on my printer set up page and on my list of printers when I

  • PR / RFQ refence mandatory for PO

    Hi Experts, Please help me in setting PR or RFQ (quotation) refence mandatory for creating PO... can it be done using standard config or do I need to create transcation variant... it's urgent Krishna

  • CO (FI) Report needed

    Hello expert, our business wants to create report with following structure: Year-Period-AssetType-CostCenter-Product (Global product)-Value Is there any real relation among these fields? Is it feasible and if yes, in which tables can i find these fie

  • BID invitation URL and Portal

    Hello, Implementing ECS SRM 5.0 When you publish bid invitations, the URL in vendor e-mail points to the ITS. However, we use the portal and due to that, my request is if it is possible to change the URL to the portal URL. This should not be done in

  • IPhoto won't upgrade with iLife 11

    I recently purchased iLife 11, and found I needed to upgrade my operating system to snow leopard. Once that was complete I uploaded iLife 11 and everything seems to have worked successfully except for my iPhoto Library. I receive the prompt upon open