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.

Similar Messages

  • Add icon on spark button skin

    Hello all I am trying to add different icon on different buttons. I have my skin file ready but not sure if I have to create different skin class for different button. It sounds inefficient. Any suggestions? Thanks for the reply...
    <s:Button id="pass"
          width="110"
          height="35"
          fontWeight="bold"
              fontSize="12"
          fontFamily="arial"
          label="Past Track"
         click="pass_clickHandler(event)" skinClass="skins.CustomSkin"/>      
    <s:Button id="future"
          width="110"
          height="20"
          fontWeight="bold"
          fontSize="12"
          fontFamily="arial"
          label="Future Plan"
              click="future_clickHandler(event)"
              skinClass="skins.CustomSkin"/>
    Skin.....
       <!-- layer 2: fill -->
        <!--- @private -->
        <s:Rect id="fill" left="1" right="1" top="1" bottom="1" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="90">
                    <s:GradientEntry color="#304fd7"
                                 color.over="#4b6bf6"
                                 color.down="0xAAAAAA"
                                 alpha="0.85" />
                <s:GradientEntry color="#1f38a3"
                                 color.over="#3653cf"
                                 color.down="0x929496"
                                 alpha="0.85" />
            </s:LinearGradient>
        </s:fill>
    </s:Rect>
    <!-- icon --> // I could add my icon here but that would make me to create 
                      //different icon image for different button

    so you could do something like this even though it doesn't have to be a required item.
        public class ImageButton extends Button
             *  The skin part that defines the area where
             *  the user may drag to resize the window.
            [SkinPart(required="true")]
            public var buttonImage:Object
    Then , in your skin you would have an mxml image with the same name ( buttonImage ) that you would position in the skin.  In the mxml where you use the class you could just do
    <custom:ImageButton id="ib" buttonImage="assets/myButton.jpg" />
    I must warn you though , skinning is not my specialty.
    If this post was helpful please mark it as such.
    Sincerely ,
      Ubu

  • Custom icon for bar button item on iPhone?

    Hey all,
    I'm trying to set a custom image as a bar button item in my iPhone app and can't figure it out. I don't want the image inside a button, I want the image to be the button itself. If I use initWithCustomView the area isn't clickable anymore (unless I'm missing something).
    Does anyone know how to do this?
    Thanks,
    Mike O.

    I am having the exact same problem, but I cannot figure out the solution. I tried initWithCustomView: with a UIImageView, and then with a UIButton. If I set the UIBarButtonItem's target and action, that method does NOT get called in either scenario, and when i set the UIButton's target and action in the latter scenario, it STILL does not get called. Could you post your working sample code? Here is an example of my code which DOES NOT WORK!
    UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
    [button setImage:[UIImage imageNamed:@"NowPlaying.png"] forState:UIControlStateNormal];
    [button addTarget:self action:@selector(nowPlayingButtonClicked) forControlEvents:UIControlEventTouchUpInside];
    nowPlaying = [[UIBarButtonItem alloc] initWithCustomView:button];
    nowPlaying.action = @selector(nowPlayingButtonClicked);
    nowPlaying.target = self;
    Thanks for your help.
    Message was edited by: Ben Sussman

  • How do I add a tool bar button?

    I would like to create a button on the Acrobat X Standard tool bar ribbon on the top of the page that saves the document I'm viewing to a specific directory TIFF format.  I have to do this MANY times per day, a script of this nature would save me MANY key strokes. Note I don't want the button on a form or burried in the "tools" menu, but rather along side the Save, Open, and other buttons.
    Do I need to upgrade to a more expensive Acrobat to get this functionality?
    Thanks
    Jim

    It should be possible with Standard. For more information, read the following:
    http://acrobatusers.com/tutorials/how-save-pdf-acrobat-javascript
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.524.html
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.134.html
    When you use the app.addToolButton method in a folder-level JavaScript in Acrobat 10, it adds the button in the "Tools > Add-on Tools" panel, but you can drag it up to the Quick Tools toolbar.

  • Hide a Status Gui button in SM30

    Hi people!
    Anyone knows how I can hide a button in status gui in a sm30???? I've already done the sm30!
    When I say 'sm30'  i mean -> go se11 create a Ztable and acess Utilities > Maintenance table generator!
    Can you help me???
    Regards,
    Gabriel
    Edited by: Gabriel Petrini on Jan 21, 2008 4:15 PM

    have you tried going into SE93 and creating a Z transaction code?  You might be able to go into that transaction... 
    To have the create entries button hidden, you can go and set the default values for the screen to SHOW and it corresponding value to X.

  • 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

  • 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.

  • Creating a cascading menu button an a GUI status

    I have a GUI status on a normal screen (NOT on an ALV grid).  On this status I have added 3 function buttons (SEARCH, CREATE, MANAGE).  I want to add a 4th button that appears and acts like a cascading menu button. An example of what I want the button to look like is similar to what you would see on the standard 'Change Layout' button on an ALV Grid.  I am not using an ALV grid, though - but I'm trying to get a button on the GUI status to act like that - where you click on it and you see multiple options such as Display, Edit, Copy.
    I don't want to add this to my MENU bar.  I'm trying to add it to my APPLICATION bar.  If anyone has ever done this, please let me know how you did it.
    Thank you for any helpful information.
    -P. Foley

    I think that is done with the "toolbar" control so it will be in the screen, not on the application bar... have a look at SAPTOOLBAR_DEMO1, and the CTMENU_* programs, plus
    http://help.sap.com/saphelp_sm32/helpdata/en/8f/bcc23657ad0730e10000009b38f839/frameset.htm
    for more info on this, if it is the style you want.
    Or perhaps look at Generic Object Services to add a button between the application bar and below the menu (as in ME23N, FB03 etc)
    Jonathan

  • How to grey out Allication tool bar button of PF-status for a selection-scr

    Hi All,
    I have an urgent requirement to grey out(not to exclude) an application tool bar button in normal selection-screen PF-STATUS.
    Please let me know if any one has done something like this before.

    Hi,
    This code[mentioned in the suggested link] will deactivate the button.
    DATA itab TYPE TABLE OF sy-ucomm.
    PARAMETERS test(10) TYPE c.
    AT SELECTION-SCREEN OUTPUT.
      APPEND:
               'PRIN' TO itab,
              'SPOS' TO itab.
      CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
           EXPORTING
                p_status  = sy-pfkey
           TABLES
                p_exclude = itab.
    You can deactivate Print and Save button.

  • Crystal report Viewer Not Showing Control Bar Button Icons

    Hi
    I am using Crystal report along with .net 2003 in web application.
    While executing, the report  its not showing any errors,but the control bar buttons(print, export, next page last page, previous page, first page, etc ) are showing without there icons.
    These invisible buttons can be found by placing the mouse over the specified area, then it shows the tool tip like print etc.
    Please give me solution.

    Would you like to have a look at these:
    [1.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303336333633373339%7D.do]
    [2.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133383333333933313333%7D.do]
    [3.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303332333533323337%7D.do]
    [4.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333733363334%7D.do]
    [5.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313336333333303335%7D.do]
    [6.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393338333833393338%7D.do]
    Hope this helps!
    AG.

  • How make delete and add buttons as default apex icons(delete , add icons)

    Hi,
    I am new to Oracle apex , Please help me from below issue.
    I am having buttons called Add, Delete whic needs to be display as default apex delete, add icons.
    I have refered below link, even though i didn't get how to apply this.
    http://apex.oracle.com/pls/otn/f?p=45958:21:0:::::
    Please help me how add this icons and where can i see this icons in workspace.
    Thanks and regards,
    Ibrahim Sayyed.

    To call an image, you need to enter something like this in a HTML Region Body, Footer or Header:
    &lt;img src="#IMAGE_PREFIX#alert_error.gif" title="delete" onclick="apex.submit('DELETE')" style="cursor:pointer">What are "default apex delete, add icons"?
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Add icons to menu bar in Elements 13

    Just watched a video by "Ask Bob" and noticed his PSE 13 window had icons along the menu bar, presumably his most-often used. It's a feature that was lacking in PSE 11 (at least I couldn't find it!), and one I had hoped would be made available in PSE 13, as it is in almost every other program I use. I can't see how to do this, and I couldn't find a reference in the user manual. Can someone tell me how to accomplish this customization - add icons to the menu bar (or somewhere) to accomplish often-used tasks without having to open the drop-down menus.
    Thank you.

    Hi,
    Are these the icons you are talking about?
    If so, I think they are MAC icons and not anything related to PSE - like the Windows 8.1 task bar.  A MAC user might like to confirm that.
    Brian

  • ADD ICON

    IN alv I NEED TO ADD ICON THAT WHEN I CLICK ON IT
    IT PRINT SMARTFORM LAYOUT
    DO TOU KNOW ?
    THANKS

    Hi Liat,
    For ALV grid function module. Below is the code i have written to display list of contacts. the user has able to select mutliple contacts displayed in the screen and select the Button 'PRINT CONTRACT' to print smartform.
    If need complete code give me your mail id, i will send you.
    My code works for Tcode VA42.
    You have to create GUI status in SE41 to display button on tool bar.
    Display output in a ALV Grid
       CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
           I_CALLBACK_PROGRAM                = gs_repid
           I_CALLBACK_PF_STATUS_SET          = 'ALV_STATUS'
           I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
           IS_LAYOUT                         = gs_layout
           IT_FIELDCAT                       = gt_fieldcat
           IT_SORT                           = gs_sort
           I_SAVE                            = 'A'
         TABLES
           T_OUTTAB                          = it_cntrt
         EXCEPTIONS
           PROGRAM_ERROR                     = 1
           OTHERS                            = 2
       IF SY-SUBRC <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    FORM user_command USING l_ucomm      LIKE sy-ucomm
                            l_selfield   TYPE slis_selfield.
      RANGES: r_kappl FOR nast-kappl,
              r_objky FOR nast-objky,
              r_kschl FOR nast-kschl,
              r_nacha FOR nast-nacha.
      DATA: l_jobname  TYPE TBTCJOB-JOBNAME,
            l_jobcount TYPE TBTCJOB-JOBCOUNT,
            l_repid    TYPE sy-repid,
            l_print_params TYPE PRI_PARAMS,
            l_arc_params   TYPE ARC_PARAMS,
            l_valid        TYPE c,
            l_retcode      TYPE sy-subrc,
            l_blines       TYPE i.
      CASE l_ucomm.
      Process button seleted
        WHEN c_sform.
        process selected records.
          LOOP AT it_cntrt INTO wa_cntrt.
             IF wa_cntrt-box = 'X'.
              place output type in the contract
                PERFORM bdc_output USING wa_cntrt
                                   CHANGING l_retcode.
                IF l_retcode = 0.
                add record for jobground job
                  r_objky-sign   = 'I'.
                  r_objky-option = 'EQ'.
                  r_objky-low    = wa_cntrt-vbeln.
                  APPEND r_objky.
                ENDIF.
                CLEAR: wa_cntrt, l_retcode, r_objky.
             ENDIF.
          ENDLOOP.
        WHEN c_dclick.
        set contract number id with the selected contract
          SET PARAMETER ID 'AUN' FIELD l_selfield-value.
          SET PARAMETER ID 'KTN' FIELD l_selfield-value.
        call va42 tcode when double click on contract
          CALL TRANSACTION c_tcode AND SKIP FIRST SCREEN.
      ENDCASE.
      DESCRIBE TABLE r_objky LINES l_blines.
    IF NOT r_objky[] IS INITIAL.
      IF l_blines > 0.
        Background job name.
          CONCATENATE 'XCM_INDEXATION' sy-uname '_' sy-uzeit
                 INTO l_jobname.
        Application
          r_kappl-sign   = 'I'.
          r_kappl-option = 'EQ'.
          r_kappl-low    = 'V1'.
          APPEND r_kappl.
        Message Type
          r_kschl-sign   = 'I'.
          r_kschl-option = 'EQ'.
          r_kschl-low    = c_kschl.
          APPEND r_kschl.
        Message transmission medium
          r_nacha-sign   = 'I'.
          r_nacha-option = 'EQ'.
          r_nacha-low    = '1'.
          APPEND r_nacha.
          l_repid = sy-repid.
        Print Parameters
          CALL FUNCTION 'GET_PRINT_PARAMETERS'
            EXPORTING
              DESTINATION                  = p_print
              MODE                         = c_batch
              NO_DIALOG                    = 'X'
              REPORT                       = l_repid
              EXPIRATION                   = 2
              IMMEDIATELY                  = 'X'
              NEW_LIST_ID                  = 'X'
            IMPORTING
              OUT_ARCHIVE_PARAMETERS       = l_arc_params
              OUT_PARAMETERS               = l_print_params
              VALID                        = l_valid
            EXCEPTIONS
              ARCHIVE_INFO_NOT_FOUND       = 1
              INVALID_PRINT_PARAMS         = 2
              INVALID_ARCHIVE_PARAMS       = 3
              OTHERS                       = 4.
          IF SY-SUBRC <> 0.
             MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
        opening the job
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME                = l_jobname
            IMPORTING
              JOBCOUNT               = l_jobcount
           EXCEPTIONS
             CANT_CREATE_JOB        = 1
             INVALID_JOB_DATA       = 2
             JOBNAME_MISSING        = 3
             OTHERS                 = 4.
          IF SY-SUBRC <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
        Job submit
          SUBMIT rsnast00 TO SAP-SPOOL
                          USER sy-uname
                          WITH s_kappl IN r_kappl
                          WITH s_objky IN r_objky
                          WITH s_kschl IN r_kschl
                          WITH s_nacha IN r_nacha
                          WITH p_print  EQ p_print
             VIA JOB l_jobname NUMBER l_jobcount
             SPOOL PARAMETERS l_print_params
             WITHOUT SPOOL DYNPRO
             AND RETURN.
          IF sy-subrc <> 0.
          display message when error in scheduling background job
            MESSAGE E016 WITH 'Error scheduling Job'.
          ENDIF.
        Job close
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT                          = l_jobcount
              JOBNAME                           = l_jobname
              STRTIMMED                         = 'X'
           EXCEPTIONS
             CANT_START_IMMEDIATE              = 1
             INVALID_STARTDATE                 = 2
             JOBNAME_MISSING                   = 3
             JOB_CLOSE_FAILED                  = 4
             JOB_NOSTEPS                       = 5
             JOB_NOTEX                         = 6
             LOCK_FAILED                       = 7
             OTHERS                            = 8.
          IF SY-SUBRC <> 0.
             MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
      ENDIF.
    ENDFORM.
    FORM bdc_output USING    wa_cntrt  TYPE ty_cntrt
                    CHANGING l_retcode TYPE sy-subrc.
    DATA: l_nast TYPE TABLE OF nast,
           it_nast TYPE TABLE OF nast,
           w_nast TYPE nast,
           l_cellno(2) TYPE n,
           l_vbelv TYPE vbfa-vbelv,
           l_vbpa  TYPE vbpa,
           l_yes(1),
           l_temp(40) TYPE c,
           l_lines    TYPE i,
           l_lesscnt  TYPE i,
           l_less(1),
           l_lines1(2) TYPE n.
        REFRESH: it_nast, l_nast, it_bdc.
        CLEAR: l_nast, w_nast, l_yes, l_cellno,
               it_nast, l_nast, it_bdc.
        PERFORM dyn_scr USING 'SAPMV45A' '0102' 'X'.
          PERFORM dyn_fld USING 'VBAK-VBELN' wa_cntrt-vbeln.
          PERFORM dyn_fld USING 'BDC_OKCODE' '/00'.
        PERFORM dyn_scr USING 'SAPMV45A' '4001' 'X'.
          PERFORM dyn_fld USING 'BDC_OKCODE' '=HEAD'.
        PERFORM dyn_scr USING 'SAPMV45A' '4002' 'X'.
          PERFORM dyn_fld USING 'BDC_OKCODE' '=KDOK'.
        SELECT *
          FROM nast
          INTO CORRESPONDING FIELDS OF TABLE l_nast
         WHERE kappl = c_kappl
           AND objky = wa_cntrt-vbeln.
        IF sy-subrc = 0.
            SORT l_nast BY kschl vstat.
            DESCRIBE TABLE l_nast LINES l_lines.
            LOOP AT l_nast INTO w_nast.
                l_cellno = sy-tabix.
                IF w_nast-kschl = c_kschl AND w_nast-vstat = 0.
                  EXIT.
                ENDIF.
                IF w_nast-kschl > c_kschl OR
                   ( w_nast-kschl = c_kschl AND w_nast-vstat <> 0 ).
                   IF l_less = space.
                     l_cellno = l_cellno - 1.
                   ENDIF.
                   CLEAR l_less.
                  IF l_cellno = 0.
                     l_cellno = 1.
                  ENDIF.
                  l_lines = l_lines + 1.
                  l_lines1 = l_lines.
                  PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
                    CONCATENATE 'DNAST-KSCHL(' l_lines1 ')' INTO l_temp.
                    CONDENSE l_temp.
                    PERFORM dyn_fld USING l_temp 'Y6C4'.
                    CLEAR: l_temp, l_lines, l_lines1.
                    PERFORM dyn_fld USING 'BDC_OKCODE' '/00'.
                  EXIT.
                ELSEIF w_nast-kschl < c_kschl.
                  l_less = 'X'.
                  l_lesscnt = l_lesscnt + 1.
                ENDIF.
            ENDLOOP.
        ELSE.
            l_cellno = '01'.
            PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
              CONCATENATE 'DNAST-KSCHL(' l_cellno ')' INTO l_temp.
              CONDENSE l_temp.
              PERFORM dyn_fld USING l_temp 'Y6C4'.
              CLEAR l_temp.
              PERFORM dyn_fld USING 'BDC_OKCODE' '/00'.
        ENDIF.
        IF l_less = 'X'.
            l_lesscnt = l_lesscnt + 1.
                  l_cellno = l_lesscnt.
                  l_lines = l_lines + 1.
                  l_lines1 = l_lines.
                  PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
                    CONCATENATE 'DNAST-KSCHL(' l_lines1 ')' INTO l_temp.
                    CONDENSE l_temp.
                    PERFORM dyn_fld USING l_temp 'Y6C4'.
                    CLEAR: l_temp, l_lines, l_lines1.
                    PERFORM dyn_fld USING 'BDC_OKCODE' '/00'.
        ENDIF.
        PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
          CONCATENATE 'DV70A-SELKZ(' l_cellno ')' INTO l_temp.
          CONDENSE l_temp.
          PERFORM dyn_fld USING l_temp 'X'.
          CLEAR l_temp.
          PERFORM dyn_fld USING 'BDC_OKCODE' '=V70P'.
        PERFORM dyn_scr USING 'SAPDV70A' '0101' 'X'.
          PERFORM dyn_fld USING 'NAST-LDEST' p_print.
          PERFORM dyn_fld USING 'NAST-DIMME' 'X'.
          PERFORM dyn_fld USING 'NAST-TDARMOD' '1'.
          PERFORM dyn_fld USING 'BDC_OKCODE' '=V70B'.
        PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
          CONCATENATE 'DV70A-SELKZ(' l_cellno ')' INTO l_temp.
          CONDENSE l_temp.
          PERFORM dyn_fld USING l_temp 'X'.
          CLEAR l_temp.
          PERFORM dyn_fld USING 'BDC_OKCODE' '=V70I'.
        PERFORM dyn_scr USING 'SAPDV70A' '0102' 'X'.
          PERFORM dyn_fld USING 'NAST-VSZTP' '1'.
          PERFORM dyn_fld USING 'BDC_OKCODE' '=V70B'.
        PERFORM dyn_scr USING 'SAPDV70A' '0100' 'X'.
          PERFORM dyn_fld USING 'BDC_OKCODE' '=V70S'.
        CALL TRANSACTION c_tcode USING it_bdc
                                 MODE c_mode     "'N'
                                 UPDATE c_updat  "'A'
                                 MESSAGES INTO it_mesg.
        IF sy-subrc = 0.
          l_retcode = 0.
        ENDIF.
    ENDFORM.                    " bdc_output
    *&      Form  dyn_scr
          text
         -->P_0642   text
         -->P_0643   text
         -->P_0644   text
    FORM dyn_scr USING    P_0642
                          P_0643
                          P_0644.
        MOVE:  p_0642 TO wa_bdc-program,
               p_0643 TO wa_bdc-dynpro,
               p_0644 TO wa_bdc-dynbegin.
        APPEND wa_bdc TO it_bdc.
        CLEAR wa_bdc.
    ENDFORM.                    " dyn_scr
    *&      Form  dyn_fld
          text
         -->P_0654   text
         -->P_0655  text
    FORM dyn_fld USING    P_0654
                          P_0655.
       MOVE: p_0654 TO wa_bdc-fnam,
             p_0655 TO wa_bdc-fval.
       APPEND wa_bdc TO it_bdc.
       CLEAR wa_bdc.
    ENDFORM.                    " dyn_fld
    FORM alv_sort.
      DATA: wa_sortcat  TYPE slis_sortinfo_alv.
      WA_SORTCAT-SPOS      = 1.
      WA_SORTCAT-FIELDNAME = 'KUNNR'.
      WA_SORTCAT-UP        = 'X'.
      WA_SORTCAT-EXPA      = 'X'.
    Appending gd_sortcat-tabname
      APPEND WA_SORTCAT TO gs_sort.
      CLEAR wa_sortcat.
      WA_SORTCAT-SPOS      = 2.
      WA_SORTCAT-FIELDNAME = 'VBELN'.
      WA_SORTCAT-UP        = 'X'.
      WA_SORTCAT-EXPA      = 'X'.
    Appending gd_sortcat-tabname
      APPEND WA_SORTCAT TO gs_sort.
      WA_SORTCAT-SPOS      = 3.
      WA_SORTCAT-FIELDNAME = 'VUNTDAT'.
      WA_SORTCAT-UP        = 'X'.
      WA_SORTCAT-EXPA      = 'X'.
    Appending gd_sortcat-tabname
      APPEND WA_SORTCAT TO gs_sort.
    ENDFORM.                    " alv_sort

  • Status GUI items ME51N

    How can I add a button in the status of the items table control in ME51N?
    In program SAPLMEGUI I do not see any STATUS GUI that corresponds.
    Thanks.

    I have solved it.
    In the include LMEGUICJM, in the METHOD toolbar_init.
    Putting the following thing:
        L_quick = ' My button '.
        CALL METHOD cl_gui_toolbar=>fill_buttons_data_table
           EXPORTING
             fcode            = '&MYCODE'
             icon             = icon_select_detail
           DISABLED         =
             butn_type        = cntb_btype_button
            TEXT             =
             quickinfo        = l_quick
           CHECKED          =
           CHANGING
             data_table       = lt_my_buttons
           EXCEPTIONS
             cntb_btype_error = 1
             OTHERS           = 2.
    The code of this button in the include LMEGUICJL, METHOD if_command_mm~execute.

  • Howoto remove the "goto the adres in location bar" button. and how to restiore firefox 2 theme like before.

    Ok. trying FF30 again. after FF28 things wend in a terrible direction and technical mozila devs pinned you on FF28. sofar after a few versions later there's still no improvemnet. the firefox 2 theme is wrong now (wrong icons , contrast and color), the new ones look tgerrible and blurred. want the old sharp buttons back
    also the "goto the adres in location bar" button is stil;l blend into the search bar box.
    to get a bit working interface you need to install the following add-ons
    https://addons.mozilla.org/firefox/addon/firefox-2-theme-for-firefox-3x/
    https://addons.mozilla.org//firefox/addon/classicthemerestorer/
    problem is i need both add-ons because the first one dont let yopu move the refresh, arrow stop buttons etc. not found any option to change or move then with firefox-2-theme-for-firefox-3x
    lassicthemerestorer let you move and place the buttons back,
    but corrupt the layout and also place wrong icons back.
    I need the "firefox-2-theme-for-firefox-3x" theme like it where before, its the only best good and userfriendly one. waiting for fix.... until then rename FF30 and copy back FF28

    I just thought I would mention I have just tried the addon '' Firefox 2, the theme, reloaded 1.0.7 ''
    * At least on my setup the icons look fine and are not blurry
    * On Firefox 29 and later the location bar buttons can not at present be split off.
    ** http://www.varesano.net/contents/projects/firefox%202%20theme%20firefox%203x#comment-23582 <br />Possibly that will be added back later as an enhancement to the addon.
    * I believe the classic theme restorer is still able to split buttons off from the location bar.
    ** Recurring questions/issues http://forums.mozillazine.org/viewtopic.php?f=48&t=2827985
    ''Combined STOP-RELOAD button issue <br/> Move stop and reload buttons from customizing area to a toolbar and place them like this: <br /> [stop] followed by [reload] <br /> Enable the combined option on CTRs preference window and you will get the combined stop/reload button. ''
    Note we can only try to give general advice and tips about addons.
    If you need detailed help and support you need to contact the addon's own support sites.

Maybe you are looking for

  • Problem in Sys. Status for Delivery creation.

    Dear All, I am getting a massage at the time of delivery thru VL01. "Create delivery" not allowed (SYSTEM STATUS EXLS OBJECT VB0000008800010) Massage no.BS051 Diagnosis the status check for the status object VB000000818800010 indicated that the proce

  • HT201342 E-mail questions please help

    When sending e-mails.   My full name automatically shows up to the receiver in the FROM column.     How can I change this.   To either just show up from my e mail address.  Or just first name?  

  • I can't access iTunes store

    So I have recently got a Macbook Pro (weeee! My first one) However when it came to setting up my itunes, whilst it shows all the music that was on my iphone, it cannot play a single song. Every time I click on a song it says it is downloading from iT

  • Apache and JServ interaction

    Hi, I am trying to understand how Apache handles the requests and its process architecture, etc, etc... My doubt is, when a user types/clicks URL in the browser and if that is a servlet request how Apache comes to know that it should go to mod_jserv

  • Sorting Application list in iTunes by rating

    folks.. is there anyway to sort apps in iTunes by rating? Most popular is a function of most purchased instead of highest rating.. i tend to look at 'ratings by the masses' as one indicator of quality of program (stability and usability). Thx ..Wayne