Display the arabic total value in reuse_alv_grid_display

Hi,
how to display the arabic total value using reuse_alv_grid_display in sap abap . Plz help me in this matter.
Regards,
SA.

Hi,
how to display the arabic total value using reuse_alv_grid_display in sap abap . Plz help me in this matter.
Regards,
SA.

Similar Messages

  • Need to display the first 5 values of a Multi value parameter in SSRS report

    Hi All,
    I have SSRS report with multi value parameter. I need to display the parameter selection values in a text box. I've more than 50 records in the multi value parameter list. I've included the code to display "All" if I choose "select
    all" option otherwise it will show the selected values. But, I need to change the logic. I have to show only the 1st 5 records if I choose more than 5 records.
    How can I implement this?
    I have used the below code
    =iif(
    Parameters!Country.Count = Count(Fields!Country.Value,
    "Country")
    ,"All"
    ,iif(Parameters!Country.Count>5
    ,"Display the 1st 5 values"
    ,Join(Parameters!Country.Value,",")
    Regards,
    Julie

    Hi Julie,
    Per my understanding that you want to always show the first values from the param country to a textbox when you have select more then five values from the dropdown list, if you checked "select all", textbox will display "All", if
    you select <=5 amount of values. it will display the selected values, right?
    I have tested on my local environment and that you can create an hide parameter(Param2) to display just the first five values from the Country and when you select more then five values from country you will get the Join(Parameters!Param2.Value,",")
    to display.
    Details information below for your reference:
    Create an new DataSet2 which the Param2 will get the values from:
    SELECT     TOP (5) Country
    FROM        tablename
    Create an new param2 and hide this parameter, Set the "Available values" and "Default values" by select the "Get the values from a query"(DataSet2)
    You can also Specify first five value for the "Available values" and "Default values", thus you will not need to follow the step1 to create the dataset2
    Modify the expression you have provided as below:
    =iif(Parameters!Country.Count = Count(Fields!Country.Value, "DataSet1"),"All" ,iif(Parameters!Country.Count>5 ,Join(Parameters!Param2.Value,","),Join(Parameters!Country.Value,",")))
    Preview like below
    If you still have any problem, please feel free to ask.
    Thanks, 
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • My iphone 4 music player doesn't display the arabic songs names ?

    My iphone 4 music player doesn't display the ARABIC songs names ?

    ok i found the solution here by deleting the corrupted library
    http://portablevideo.blogspot.com/2008/12/music-player-database-problems.html 
    now one of these below is for the music and one for the photos and i didnt have a problem with the photos but did it anyways and now the player can see my music:
    these are the files that need deleting in order to get rid of the corrupted library.
    Storage Drives: (Mass storage E, Memory Card F)
    \private\101ffca9\harvesterdbvx_x.dat
    \private\10281e17\[string]mpxvx_x.db
    \private\10281e17\[string]pcvx_x.db 
    TIP: Connect the device in USB mass storage mode (File Transfer), to locate the private folder from the PC.
    TIP: STRING and x_x will change depending on your phone. (my files had slightly different names than above on the n97)

  • Display the 3rd hieghest value without using rowid

    HI All,
    Can any one help me how to display the 3rd hieghest valuer without using a ROWID..
    Thanks
    Basava

    Frank, using ROWNUM = 1 instead of DISTINCT could be a bit faster:
    SQL> SET LINESIZE 132
    SQL> EXPLAIN PLAN FOR
      2  WITH got_r_num AS (
      3                     SELECT  DISTINCT sal,
      4                                      DENSE_RANK() OVER(ORDER BY sal DESC NULLS LAST) AS r_num
      5                       FROM  scott.emp
      6                    )
      7  SELECT  sal
      8    FROM  got_r_num
      9    WHERE r_num = 3
    10  /
    Explained.
    SQL> @?\RDBMS\ADMIN\UTLXPLS
    PLAN_TABLE_OUTPUT
    Plan hash value: 436395657
    | Id  | Operation                 | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT          |      |     9 |   234 |     5  (40)| 00:00:01 |
    |*  1 |  VIEW                     |      |     9 |   234 |     5  (40)| 00:00:01 |
    |   2 |   HASH UNIQUE             |      |     9 |    36 |     5  (40)| 00:00:01 |
    |*  3 |    WINDOW SORT PUSHED RANK|      |     9 |    36 |     5  (40)| 00:00:01 |
    |   4 |     TABLE ACCESS FULL     | EMP  |    14 |    56 |     3   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       1 - filter("R_NUM"=3)
       3 - filter(DENSE_RANK() OVER ( ORDER BY INTERNAL_FUNCTION("SAL") DESC
                  NULLS LAST)<=3)
    18 rows selected.
    SQL> EXPLAIN PLAN FOR
      2  WITH got_r_num AS (
      3                     SELECT  sal,
      4                             DENSE_RANK() OVER(ORDER BY sal DESC NULLS LAST) AS r_num
      5                       FROM  scott.emp
      6                    )
      7  SELECT  sal
      8    FROM  got_r_num
      9    WHERE r_num = 3
    10      AND ROWNUM = 1
    11  /
    Explained.
    SQL> @?\RDBMS\ADMIN\UTLXPLS
    PLAN_TABLE_OUTPUT
    Plan hash value: 21859616
    | Id  | Operation                 | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT          |      |     1 |    26 |     4  (25)| 00:00:01 |
    |*  1 |  COUNT STOPKEY            |      |       |       |            |          |
    |*  2 |   VIEW                    |      |    14 |   364 |     4  (25)| 00:00:01 |
    |*  3 |    WINDOW SORT PUSHED RANK|      |    14 |    56 |     4  (25)| 00:00:01 |
    |   4 |     TABLE ACCESS FULL     | EMP  |    14 |    56 |     3   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       1 - filter(ROWNUM=1)
       2 - filter("R_NUM"=3)
       3 - filter(DENSE_RANK() OVER ( ORDER BY INTERNAL_FUNCTION("SAL") DESC
                  NULLS LAST)<=3)
    19 rows selected.
    SQL> SY.

  • How to display the Overall result value at the top of work book

    Hi,
      How can i display the value of  Overall result(Sum of the Total) column at the top of the work book in Text field.
    Thanks
    Sreadhar

    Go to Query Global properties in Query designer and you can find a setting to show result rows on top. This setting will show overall result as first row in the report. But I don't think you can show it in Text field in WB.

  • How To use the page total value for conditional formatting

    Hi
    I am very new to xml publisher report.. I have calculated the report total like this--
    <?add-page-total:pt;'ENT_AMT'?> now i display it in a table colomn by using the syntax
    <?show-page-total:pt;'#,##0.00'?>
    Now what i want to do is if the value of the page total is greater than 1000 the color of that coloumn in the table will change. But by any means i cannot access the value and do the condition checking..
    Plz help..
    Thanks and Regards
    Joydeep Mitra

    Hi Mitra,
    You can use this if you want to change the color of a cell:
    <?if:total>1000?><xsl:attribute xdofo:ctx="block" name="background-color">red
    </xsl:attribute><?end if?>
    Regards,
    Marius

  • How to display the current day value in Numbers app?

    In Numbers 3.2.2, where the current date and time happens to be 17 Dec. 2014 11:46am:
    What formula will display the current date's numeral value?
    What formula will display the current month's short name as text?
    What formula will display the current year in four digits?
    What formula will display the current time in the style "11:46am"?
    Appreciated.

    I've taken the liberty of tweaking that handy script to format the date as requested by the OP:
    on run {}
      set right_now to (current date)
      set short_month to text 1 thru 3 of (month of right_now as string)
      set the_year to year of right_now as string
      set the_day to day of right_now as string
      set short_time to text 1 thru 5 of time string of right_now
      set the_secs to time of right_now
      if (the_secs / 2 as integer) < 21600 then
      set am_pm to "am"
      else
      set am_pm to "pm"
      end if
      set s to space
      set text_date to the_day & s & short_month & ". " & the_year & s & short_time & am_pm
      set the clipboard to text_date
      my paste_date()
    end run
    on paste_date()
      tell application "Numbers"
      activate
      tell application "System Events"
      keystroke "v" using {command down}
      end tell
      end tell
    end paste_date
    This considers 11:59:59 to be "am" and 12:00:00 to be "pm". (Edited after further consideration.) It has to be run either as an Automator service, or saved in ~/Library/Scripts/Applications/Numbers/ and run from Numbers' script menu. If run from Script Editor, it pastes the date into the end of the script itself.
    Hope it helps,
    H

  • My iphone 6 doesn't display the battery duration values

    My iphone 6 doesn't display the battery duration and standby in battery settings, and replaces the values with - even if I completely charged my battery last time. Can someone help me?

    Try these two:
    Restore from backup
    Restore as new
    http://support.apple.com/en-us/HT201252

  • How to display the max channel value on the report automatially?

    Hi all,
    I have 2 text boxes start and target ready on my report. I need one of my channel minimum value and the other channels max value to dispaly automatically in start and target box respectively.
    How do i go about it?
    Rsh
    Solved!
    Go to Solution.

    Hello Jason,
    There is an easy way to do this, and there is a more involved way to do this. I am hoping the "easy" way will solve your question, so I don't have to think about the solution that involves a little more effort:
    Starting with DIAdem 2010 there is a way to add properties to the legend (see image below) of any axis system. What I did for this example was to simply add the legend for the 2D graph (that's a simple check box in the "Curve and Axis definition" dialog, and then dragged the maximum value of any channel onto the legend. It will automatically add a new column to the legend table and display the maximum (or any other channel property) in the legend. This of course works separately for each axis system on a page.
    Starting with DIAdem 2011 there is a new "Curve Snippet" function that allows to create tables such as the one shown in the image below. Please have a look at the DIAdem 2011 example called "2D Tables as Legend and Legend for Axis System Labeling" to see how this was done, it's a little more effort, but it also adds extra flexibility:
    Do either of these look like a workable solution for you?
    Best regards,
         Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • A problem in displaying the arabic subtitles of video files

    greetings;
    kindly i need a solution for the following problem:
    the arabic subtitles of all my video files cannot be displayed in the video players.
    i tried these solutions: 
    1- installing K-lite codec full pack & mega pack.
    2- installing subRT player from windows store.
    3- installing VLC media player.
    4- having the choice (Lyrics, captions and subtitles) in windows media player options turned on.
    but i failed to show the subtitles, when i installed the k-lite codec and i played the videos by Media Player Classic the subtitles appeared in western language.
    My operating system is: windows 8  64 bit
    My computer is HP.
    thanks so much for attention.

    Hi Fouad El.Razzaz,
    “having the choice (Lyrics, captions and subtitles) in windows media player options turned on.”" the arabic subtitles of all my video files cannot be displayed in the video players"
     Are you using a .sub or .srt file ?Have you tried to open them in the notepad to have a check? The video file and the .sub or .srt file should be put in the same folder and make sure they have the same name.
    If you're playing a Windows Media file or DVD that has captions or subtitles in a different language, you can change the language in which the captions or subtitles are displayed .
     Windows Media Player language settings: frequently asked questions
    http://windows.microsoft.com/en-in/windows/media-player-language-settings-faq#1TC=windows-7
    Here is a similar issue may be helpful:
    shown the Arabic subtitle in windows media player in windows 7
    http://answers.microsoft.com/en-us/windows/forum/windows_7-pictures/shown-the-arabic-subtitle-in-windows-media-player/57648ac7-8547-4809-8244-9f3eb62f4947
    Best regards 

  • How to display the dataset field values in my ssrs bar chart report ?

    HI i have a Bar Chart report in that i want to display the dataset one  field values in my x-axis of my ssrs report? so how should i display those values into my bar chart report?
    consider i want to display the Every Qtrly details in my x-axis so how should i ?
    can you pls help me out for this 

    I have added the Category Group into my Report area with required field ,now i will get my required output.

  • How to display the Arabic language

    Hi all,
    I have been developed the driver and generated the driver for the multiple language. But I have a difficulty to work in the Arabic.
    I generated the RC file with the notepad application on the Arabic OS and build with that RC file in the Visual studio 2008(English version). After installing the driver, Arabic characters is generally displayed with the right-to-left reading order except
    two cases. Two cases are as belows.
    1. Case #1
        - If symbols and English characters are included in the line, the text order is wrong.
    2. Case #2
        - The period(.) is located in the right-end of the line.
    I'm first to work for the Arabic driver and the current display error. How can I fix this error?
    Could anyone give me the information for fixing this error?
    Please check for me.

    Hello Hayesung,
    Welcome to MSDN forum.
    Your issue is out of support range of VS General Question forum which mainly discusses the usage issue of Visual Studio IDE such as
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    I am moving your question to the moderator forum ("Where is the forum for..?"). The owner of the forum will direct you to a right forum.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Displaying the last row value + 1

    Hi, I am sure the answer is out there, I just can't find despite hunting around. So a point in the right direction would be great if possible:
    I am trying to display the 'future' number from an auto update primary key in an access d/base. I am getting the current number with the code below which obviously means that I just need to add 1 to it; if only it would let me have the result as an integer, but I can't seem to achieve that (can only get a string) therefore tried to make the string an integer, update, change it back & then display in textField, but I can't achieve that either...please help?
      public void findCurrentRow()
        try
          query = "SELECT (customerID) from Professional";
          stmt = myConnection.createStatement();
          rs = stmt.executeQuery(query);
          int i = 1;
          while(rs.next())
            rowNumber = rs.getString(i);
          id.setText(rowNumber);
          id.setEditable(false);
          rs.close();
        catch (SQLException ex)
          fatalError(ex);
      }

    I meant to ask why this did not work for you below ?
    int rowNumber = rs.getInt(1);//returns an int type
    the resultset method getInt() is not returning a integer?
    I guessed that you were getting a non numerical return so you decided to return the value to a string getString() and see what was happening like the record value being returned was a float or other non-int type.
    int rowNumber = Integer.parseInt(rs.getString(1));
    A little off topic you could write your query to be
    SELECT (WHATEVER) +1 FROM TABLE; //adds 1 to value
    or if the DB has a nextVal func for sequences use that.
    Ray

  • Displaying the list of values in the Report

    Hi All,
    Is there any possibility to include the scrollable list on the face of report(Not in the left side i.e as input control)
    For example If I have a country with different counties.
    Based on the country selection in the block it should display the list of counties as scrollable list.
    Would it be possible.
    Please help
    thanks
    Edited by: VP S on Sep 1, 2010 2:45 PM

    Not sure if you are looking for the same..
    Have you tried applying the filter at the filter pane..i.e.
    Click on the the show\hide filter pane (filter icon is present nearby the drill icon)
    Now drag the required object on this pane.
    It will create the dropdown filters on top of the report.
    Regards,
    Rohit

  • Display the procedure OUT value.

    CREATE OR REPLACE PROCEDURE test_xyz (p_acc_id IN NUMBER) IS
    p_status varchar2(20);
    begin
    if p_acc_id = 123
    DBMS_OUTPUT.PUT_LINE('STOP');
    end if;
    end test_xyz;
    this will display 'STOP' when i passed p_acc_id as 123.
    similarly...
    CREATE OR REPLACE PROCEDURE test_abc (
    p_acc_id IN NUMBER, p_status out varchar2) is
    begin
    if p_acc_id = 123
    p_status := 'STOP';
    end if;
    end test_abc;
    if i am using OUT in my procedure how i have to display the p_status vlaue.
    Thnak you....

    CREATE OR REPLACE PROCEDURE test_abc (
    p_acc_id IN NUMBER, p_status out varchar2) is
    begin
    if p_acc_id = 123
    p_status := 'STOP';
    end if;
    end test_abc;
    if i am using OUT in my procedure how i have to
    display the p_status vlaue.
    Thnak you....you forgot THEN after IF
    declare
    p_acc_id NUMBER := 123;
    p_status VARCHAR2(30);
    begin
    test_abc (p_acc_id, p_status );
    dbms_output.put_line(p_status);
    end;
    /** NOT TESTED ***
    Regards
    Dmytro
    Message was edited by:
    Dmytro Dekhtyaryuk

Maybe you are looking for