Move negative sign (minus) to left side of value in gui_download

Hi,
While downloading data using gui_download I want to bring the negative sign to the left side of the value. Is this possible?
Regrads,
Madhu

Hi,
Use FM
CALL FUNCTION  'CLOI_PUT_SIGN_IN_FRONT'
Regards.
Eshwar.

Similar Messages

  • How to display NEGATIVE sign on the left side of a number in SMARTFORMS

    Hi,
         In smartforms I'm trying to print some negative values, but the negative sign is displayed on the right hand side of the number.
    How can I display the '-' sign on the left hand side of a number. I tried the logic &value(<), it works well in sap scripts. Why is it not working in smartforms ?
    Eg :   I'm getting  the output  as  126.75 -
             I want :  - 126.75

    see this wiki which gives details for restrictions of formatting options (I guess you didn't declare the variable correctly, i.e. with the right data element): http://wiki.sdn.sap.com/wiki/display/ABAP/SAPscript#SAPscript-WhatarethevarioustextformattingoptionsinSAPscript%3F

  • Can't see any folder of music/movie/tv show on the left side under decive department

    Hi, why I can't see the Music/Movie/Tv show on the left side under the devicedepart ment when I connect my Ipad with the PC? Even though I still see the ipad under the device, but I can't click on it to see the other folders (music/movie/Tv show)

    Gail Burt wrote:
    that grey, glass-tv-screen-looking icon
    Do you mean like this?
    I'm not an expert on this but I get these files now and again with my job where clients upload fonts to our FTP from a PC. These are files that OS X doesn't recognize or doesn't have the software to open it. It's probably because your drive was formatted for PC. Do the iPod video files have a file extension at the end of the filenames such as .mp4 or .mpeg (or whatever the correct extension is for iPod video, mp4 I think)? If not and in my experience, adding the correct extension to the file usually enables OS X to recognise and open the file. Try it with one of your files and see if it opens.

  • IMovie9: How to stop old movie from showing on upper left side of screen? I only want to see current project. Go away, old movie...

    iMovie9: How to stop an old movie from showing on the upper left side of screen? I only want to see current project. Go away, old movie... I am making a video from imported images now  visible to right and partially at bottom...), and do not want to see the older video that demands my attention on the upper left, that will not seem to give me a "close this project" option. What obvious thing am I missing here? Thanks, Lena

    Nevermind. It finally let me make it stop...

  • Move the "X" from the left side to the right side in the Document Name Tab

    I just installed CS5 MC for MAC and realized that the "X" to close the file is by default located to the left side of the Document  Name in the Tab or Bar rather than to the right when multiple files are open in an application.  I haven't checked all the Adobe Apps yet, but found this to be the case so far in AI, PS, ID.
    Where do I go in the master or individual app settings to reconfigure the file name/document name tab or bar so the little "X" that closes the file is to the right of the name rather than the left?
    I did notice that in many of Deke's Lynda training videos, the "X" was on the left in a few sessions, but most were on the right.  Really hope this isn't a MAC/PC centric thing or that it is mandatory to download Deke's custom settings for the fix.
    Thanks to anyone with the magic answer!!!
    Cheers!

    Bob --- Thank you for that very quick response.
    Bugger for the unfortunate answer, but thank you for advising/confirming the sad reality.
    Sure wish some code would fall from the sky and do a fix or workaround on this so users have the option.  I may be one of the few hung up on this, but it sure would be nice.
    Seems this is yet another "...centric" reason to use a PC in lieu of a MAC when working with Adobe products these days.
    Flip/Flop go the platforms!
    Cheers!

  • I would like to move all toolbars to the left side of the window. My monitor is really wide so that would give me more "real estate."

    I have 4 toolbars I would like to have display on the LEFT side of the window. How do I do it?

    Just saw your posting from yesterday - https://support.mozilla.com/en-US/questions/876195
    https://addons.mozilla.org/en-US/firefox/addon/checkplaces/ <br />
    '''Checks your bookmarks are valid and the pages still exist, checks for duplicates ...'''

  • '-' minus sign on the left side of the value

    Hi all,
    My requirement is to put the minus sign appearing the amount field
    on the left hand side instead of right as it appears in the database fields.
    Is there any direct functionality for the same instaed of using concatenation .

    use an edit mask
    edit: Didn't read well. Where are you trying to put the sign? a database table? ALV? others?
    TYPE-POOLS: SLIS.
    types: begin of this_Type,
    one type p,
    two type p,
    end of this_Type.
    data itab type table of this_type with header line.
    data: field_cat type sLIS_T_FIELDCAT_ALV,
         wa_fcat like line of field_cat.
    itab-one = '-1'.
    itab-two = '-2'.
    append itab.
    wa_fcat-fieldname = 'ONE'.
    wa_fcat-edit_mask = 'V_______'.
    append wa_fcat to field_cat.
    wa_fcat-fieldname = 'TWO'.
    wa_fcat-edit_mask = 'V_______'.
    append wa_fcat to field_cat.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    *   I_INTERFACE_CHECK              = ' '
    *   I_BYPASSING_BUFFER             =
    *   I_BUFFER_ACTIVE                = ' '
    *   I_CALLBACK_PROGRAM             = ' '
    *   I_CALLBACK_PF_STATUS_SET       = ' '
    *   I_CALLBACK_USER_COMMAND        = ' '
    *   I_STRUCTURE_NAME               =
    *   IS_LAYOUT                      =
       IT_FIELDCAT                    = field_cat
    *   IT_EXCLUDING                   =
    *   IT_SPECIAL_GROUPS              =
    *   IT_SORT                        =
    *   IT_FILTER                      =
    *   IS_SEL_HIDE                    =
    *   I_DEFAULT                      = 'X'
    *   I_SAVE                         = ' '
    *   IS_VARIANT                     =
    *   IT_EVENTS                      =
    *   IT_EVENT_EXIT                  =
    *   IS_PRINT                       =
    *   IS_REPREP_ID                   =
    *   I_SCREEN_START_COLUMN          = 0
    *   I_SCREEN_START_LINE            = 0
    *   I_SCREEN_END_COLUMN            = 0
    *   I_SCREEN_END_LINE              = 0
    * IMPORTING
    *   E_EXIT_CAUSED_BY_CALLER        =
    *   ES_EXIT_CAUSED_BY_USER         =
      TABLES
        t_outtab                       = itab
    * 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.
    Edited by: Ramiro Escamilla on Jan 8, 2009 11:49 AM

  • How can I move ALL Tools to the left side of the Acrobat XI interface?

    Hi, all:
    I really tried to find this in assorted Adobe 'resources'. I looked in 'Workspace'. I'm burnin' work time here.
    ALL Tools, Fill & Sign, Comments, the whole schmear.
    HELP!
    I really didn't want to be fenced in to just the "Acrobat Feature Requests" 'community', but I'm dyin' here. I just have to get this thing posted.
    Thanks!

    First, THANK YOU, try67.
    That's really inadequate on Adobe's part. This is a real thing that keeps me from working efficiently without choosing between neck pain and eye-strain.
    I'm rusty at using forums. Any advice on bringing this to their attention? I do believe I'm in 'Feature Requests'. Is this the best I can do?

  • Why is my movie only playing on the left side of the theme screen, and not in the entire window?

    Also, when I add my movie, it doesn't add a menu button...am I doing something wrong?

    Make sure you're not adding the movie to a drop zone in the menu window.
    OT

  • Negative sign display for CURR field in ALV grid report

    I have a field BETRG defined as CURR field of length 15, decimal places 2. The value may be negative or positive. In case of negative values I am using EDIT_MSK option in the field catalog to bring the negative sign to the left of the value as shown below.
    Quote
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = sy-repid
          i_internal_tabname     = 'LT_FINAL'
          i_inclname             = sy-repid
        CHANGING
          ct_fieldcat            = fieldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
    LOOP AT fieldcat.
        CASE fieldcat-fieldname.
            WHEN 'BETRG'.
            fieldcat-ctabname = ' '.
            fieldcat-cfieldname = ' '.
            fieldcat-edit_mask = 'RRV_______________.__'.
        ENDCASE.
        MODIFY fieldcat.
      ENDLOOP.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_buffer_active    = 'X'
          i_callback_program = sy-repid
          i_grid_title       = 'ABCD'
          is_layout          = gs_layout
          it_fieldcat        = fieldcat[]
          i_save             = 'A'
          is_variant         = gs_save
          it_events          = gs_events
        TABLES
          t_outtab           = lt_final
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
    Unquote
    On displaying the report using 'REUSE_ALV_GRID_DISPLAY' as shown above, when the value of BETRG is a smaller number like say 624, then the ALV output appears as '-            624.00' instead of '-624.00'.
    Is there any way that I can remove the space in between the negative sign and the number before displaying the ALV output using 'REUSE_ALV_GRID_DISPLAY'?

    Hi Deepak,
    I tried this and found that this doesn't work in case of currency field. Once you move back the char field (with negative sign to the left and condensed)  to the currency field, the negative sign again moves back to the right.
    I think that the only way a negative sign can be brought to the left of the currenct field is by using edit_mask of field catalog as I have shown above.
    Regards,
    Shayeree.

  • How to shift Negative sign from Right to left

    Hi friends,
    please tell me How to shift Negative sign from Right to left for quan data type i am getting on right side but i want to display it on left exactly preceding my output number display.

    hi yogesh
    check this function module..
    <u><i><b>CLOI_PUT_SIGN_IN_FRONT</b></i></u>
    this will move the negative sign from the left hand side of a number, to the right hand side of the number. Note that The result will be left justified (like all character fields), not right justifed as numbers normally are.
    chck this example..
    data: a1 type i value 56 ,
    a2 type i value 60,
    res type i.
    res = a1 - a2.
    data: res1(10).
    res1 = res.
    CALL FUNCTION 'CLOI_PUT_SIGN_IN_FRONT'
    CHANGING
    VALUE = res1
    write res1.
    I<u><i><b>MPORTANT</b></i></u>
    You can use this FM CLOI_PUT_SIGN_IN_FRONT.
    But you need to declare the amount field as char.
    Or you can code like this
    data int type i.
    data char(10).
    int = -4.
    int = int * -1.
    write int to char.
    concatenate '-' char into char.
    reward if useful..
    Message was edited by:
            navjot sharma

  • Shifting -ve sign from right side of a value to left side in an alv report

    HI GURUS,
    i'm doing an alv report which displays grand totals of numeric fields as well.
    tab-othercost = itab-netwr - itab-wavwr - itab-kzwi2 - itab-kzwi5.
    when othercost value is -ve, the -ve sign is cuming right to the value.
    i'm using fm 'CLOI_PUT_SIGN_IN_FRONT' and shifting the -ve sign frm right to left of value.
    L_FIELDCAT-FIELDNAME = 'OTHERCOST'.
      L_FIELDCAT-TABNAME = 'TAB'.
      L_FIELDCAT-SELTEXT_M = 'OTHER COST'.
      L_FIELDCAT-COL_POS = 9.
      L_FIELDCAT-DO_SUM = 'X'.
      L_FIELDCAT-DATATYPE = 'CURR'.
      APPEND L_FIELDCAT TO L_FIELDCAT.
      CLEAR L_FIELDCAT.
    but in the grandtotal value i'm getting -ve sign in the right side of value.
    plz let me wht to do to change the sign in grnadtotal value as well...

    Hi,
    do all the calculations in a currency variable...and then finally move it to the character variable..
    Also try commenting this line.
    *L_FIELDCAT-DATATYPE = 'CURR'. "Commented
    Ex..
    DATA: v_netwr TYPE netwr.
    DATA: v_netwr_c TYPE char20.
    v_netwr = 100 - 200.
    WRITE: v_netwr TO v_netwr_c CURRENCY 'USD'.
    CALL FUNCTION 'CLOI_PUT_SIGN_IN_FRONT'
      CHANGING
        value = v_netwr_c.
    WRITE: / v_netwr_c.
    Thanks
    Naren

  • Numbers with negative sign

    Hi,
    SAP send value to XI as 100.00-
    In XI, I send this to standard subtract function where it expect this as -100.00
    Which is the good way to move the negative sign to the left ?
    Please do note there coould be situation where this value can come as positive so I have to take care of both situations.
    Thanks in advance.

    Hi,
    Check with the below mapping
    src--------------\
      Constant[-]-----| replaceString-----neg------
      Constant[]----/                             |
                                                  |
                                                 then
    src---------------\endswith-------------->if         --------->tgt
    Constant[-]-------/                          else  <---------src

  • Negative sign for DMBTR field in ALV output

    Hi Experts,
    Before posting I have searched for more than 3 hours in the forums to get a solution for this.
    I did not get any solution so I am posting this problem which I need to resolve.
    I have to display the DMBTR field in ALV output for which a grand total will have to be displayed.
    Here for all the values in DMBTR which are negative are getting displayed as '-        6673.56','-       289956.23' as I am using the edit mask 'V_____________.__'.
    I have to get the value shown as '-6673.56', '-289956.23'.
    I tried to use convert this DMBTR to String and have successfully displayed the negative sign correctly in front of the value but I am not getting the totals which I need to have
    PLease check and suggest for a solution.
    Regards
    Kishore

    Hi,
      If this is the case, then you can use character field to display the sign on the left. Sum up the total and use the event end of list to display the same. Remember to set the TECH and NO_OUT in the field catalog.
    Hope this helps.
    Regards,
    Siva

  • Scrollbar on left side of Datagrid

    I was able to move the scrollbar to the left side in a datagrid using the following:
            protected override function updateDisplayList( unscaledWidth:Number, unscaledHeight:Number ):void
                super.updateDisplayList( unscaledWidth, unscaledHeight );
                if( verticalScrollBar && verticalScrollBar.visible ){
                    verticalScrollBar.x = 0;
    This only moved the scrollbar and not the header for the scrollbar. It also does not move the columns over.
    Is there a way to do this? There doesn't seem to be any examples for moving a scrollbar to the left side of
    a datagrid except for the code that i've listed above.

    I have tried this
    verticalScrollBar is created only when displayed, so the rigth way is update it's position in updateDisplayList, but listContents displayed with errors.

Maybe you are looking for

  • Error While Debugging the Application

    Hello, I am developing applications using WebDynpro  for JAVA. I am using NWDI 7.0. I am getting an error while debugging the application. When I click on debug mode in debug perspective, I am getting error message as : "Failed to connect to remote V

  • Cannot install drivers prope

    I recently bought a second hand SB 5. li've! Digital off someone, whenever i download and run the install i recieve the message that it cannot find my sound card. I however was able to install a driver which comes with windows XP which has worked, bu

  • Generic object services - Object services toolbox not visible in ECC 6

    We recently upgraded from SAP 4.6 C to ECC 6 and are encountering problems in the generic object services in Plant maintenance. We use this feature extensively in SAP 4.6 C to attach URL links, documents etc. In ECC6 , In Transaction IL02, IE02, IW32

  • Facing issues in standby database

    standby database is in sync but when we say archive log list "Current log sequence " and "Oldest online log sequence" are not geting updated even though archives are getting applied. Solution :- We can create new standby controlfile in order to get t

  • Retrieve names of all page items / item types on the current page - how to?

    Is there a PL/SQL function that does this?