Hi currency text display in seperate column

Hi All,
1)   I want to display currency text in seperate column in report output.
ex: 1000$, (present value )............1000     USD    ( Need to display currency text USD in seperate column ).
2) i have AP ageing report where i will display amount values based on the due dates in different buckets as shown below using offsets.
Vendor      From 1 to 31                From 31 to 61                                         From 61 to 91
500000006                1000$           
500000015                                            1000$
500000016               
Now  User wants to give bucket in selection screen .I need to display vendors who fall into that bucket.How can i do this? please suggest this,,,soon.
    eg:due ranges  1- 31.
  Vendor      From 1 to 31
     500000006             1000$      
Thanks in advance,
Joseph

Hi Joseph,
Your First query.
Create a calculated key figure using the key figure you are using with NODIM. This will remove any unit after the Key Figure.
In the second column, drag and drop 0CURRENCY from Unit dimension of the InfoCube.
Second Query.
You can create a structure on Vendor on the reporting level and assign a range of vendor for each bucket in the structure. The user will be able to filter out any bucket which he wants.
Hope that helps
Roy

Similar Messages

  • Currency and Price in Seperate Columns

    Hi All,
    the default is to see Price along with currency - Eg : 10$.
    Now I want to split these into 2 adjacent columns - can't change this placement ; Currency has to be right next to the Price column.
    The query designer has KF = Columns and  Chars = Rows. I need to add the currency besides the KFs - adding it to the rows will not help. How can I achieve this ?
    Regards,
    Shweta

    Hello,
    Not possible in case of multiple currency.
    If a constant currency is used then i can suggest a workaround only if you are on 7.0.
    Create a local formula KF with formula placed as 1 * 0 or constant as 0.
    now in the properties of the queries, in display tab (or it might be some other tab, sorry no system access now to confirm) you would see an option display zero as here give the text as $ or USD.
    Regards,
    Shashank

  • Read from text file and seperate column

    hello,
    I have a problem reading my text file. This text file is downloaded from weather link. All data will be changed upon the selection of user. my problem is I can read the data column by column but i cannot retrive the right column header for each data. I also attached the test file. Can somebody help me? Thanks in advance..
    Attachments:
    download.txt ‏8 KB
    read text file.JPG ‏11 KB
    read data.JPG ‏43 KB

    Hi
    Sorry, I missed that one. The file formatting is strange though. It uses spaces to separate columns but also within columns. I attached a modified VI that tries to take care of that, but it fails at the columns "Solar Energy" and "Hi Solar Rad.". This is very difficult to read programmatically as there's one space each between "Solar", "Hi", and "Solar" again. So how do we distinguish between column separator and space within column?
    Is download.txt the original file? Or was it probably modified by an editor that would replace tabs by space characters?
    Attachments:
    test-mod-2.vi ‏11 KB

  • How to customize blob column text displayed in a report

    Hi All,
    I have a table with column File_name (varchar2) and file_content (blob).
    Report generated by the APEX allows me to show report with two different column
    File Name || File Content
    aaaa Download (link)
    bbbb Download (link)
    I would like to show the report in such a way the File name column is hyperlinked to download the blob content.
    I tried to change the link using the BLOB format mask, but seems it only takes up text value and not column name as #FIELD_NAME#
    Any idea how to achieve this ?
    I am using Application Express 3.1.2.00.02
    Thanks
    bala
    Edited by: Balamurugan Natarajan on Jun 3, 2009 2:16 AM

    I got this online:
    create or replace PROCEDURE  download_my_file_sp(p_file in number) AS
            v_mime  VARCHAR2(48);
            v_length  NUMBER;
            v_file_name VARCHAR2(2000);
            Lob_loc  BLOB;
    BEGIN
    -- Assuming your application's numeric ID is 100, set g_flow_id to
    --     that value, otherwise change the value as required.
    --***APEX_APPLICATION.G_FLOW_ID := 100;
    --***IF NOT wwv_flow_custom_auth_std.is_session_valid then
        -- display this message or a custom message.
    --***htp.p('Unauthorized access - file will not be retrieved.');
        -- You can do whatever else you need to here to log the
        --     unauthorized access attempt, get the requestor's
        --     IP address, send email, etc.
      --***  RETURN;
    --***END IF;
            SELECT MIME_TYPE, BLOB_CONTENT, name,DBMS_LOB.GETLENGTH(blob_content)
                    INTO v_mime,lob_loc,v_file_name,v_length
                    FROM document_tb
                    WHERE id = p_file;
                  -- set up HTTP header
                        -- use an NVL around the mime type and
                        -- if it is a null set it to application/octect
                        -- application/octect may launch a download window from windows
                        owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
                    -- set the size so the browser knows how much to download
                    htp.p('Content-length: ' || v_length);
                    -- the filename will be used by the browser if the users does a save as
                    htp.p('Content-Disposition:  attachment; filename="'||replace(replace(substr(v_file_name,instr(v_file_name,'/')+1),chr(10),null),chr(13),null)|| '"');
                    -- close the headers           
                    owa_util.http_header_close;
                    -- download the BLOB
                    wpg_docload.download_file( Lob_loc );
    end download_my_file_sp;Change the link of the PK: Page 3, Item 1: P3_ID, Value: #ID#
    create a branch on a different page: Branch to PL/SQL Procedure, Onload Before Header, and Branch Action: download_my_file_sp(:P3_ID)

  • How to display member name and Alias in seperate columns

    Hi,
    We have a report in HFR which has Employee dimension. We set that member display both Member name and alias. But the report showing both in one column with a - seperator. Is there a way to display them in seperate columns.
    Thanks,
    DD

    Thanks Mehmet. But whenever I try to insert a column, it throws this error: You can't insert a column here.
    I have the grid like this.
    Account
    Children of Employee
    I need to display the member name and alias of Employee dimension inseperate columns. Could you Please help me how to do it?
    Thanks,
    Ram.

  • Report "Display Text (Based on LOV)" columns don't like colons - Bug?

    This is a bit hard to explain in text, so I've built a sample app: http://apex.oracle.com/pls/otn/f?p=9608:1
    The app has two pages, which demonstrate two related bugs in the handling of Report "Display as Text (based on LOV)" columns.
    Basically, if the LOV query returns a string that contains colon characters (":") in the display column, the values are matched up correctly, but the colons are stripped from the display.
    If the LOV query returns a string that contains colon characters in the return value column, then the matching fails entirely.
    Removing the colon characters eliminates the problem.
    We actually ran into this in a production environment, after an upgrade from Apex 3.0.0 to 3.2.1. The behavior definitely did not occur in Apex 3.0, but was added at some point between the two versions.

    The colon is actually part of our data (the field in question is a URN namespace).
    And yes, I understand the function of the colon in Apex URL parameter passing. However, I wouldn't expect that sort of parsing to be used against the results returned from an LOV query.
    Also, the LOV is fine in of itself -- a select list based on the LOV displays & returns the expected values. It's only when I use a report column based on an LOV that this behavior creeps in.
    We've found a (fairly painful) workaround -- altering both the report query and the LOV query to to do something like replace(column, ':', '_') -- but that's a manual change to a large number of pages for us.
    This behavior is new to version 3.2.1. It didn't happen in version 3.0.

  • Posting Period text display

    Hi Gurus,
    I have a report where i have my GL account hierarchy on my rows and my key figure in column. i have posting period on top of my key figure and my client wants to display the report as
    jan, feb, mar etc till dec. the problem is when i run it through posting period it shows me 1, 2, 3 ...12 instead of text.
    my key figure is populating value based on user exit and i cannot use other time fields like fiscal year/period. i cannot create 12 restricted key figures as my key figure is getting value from exit variable.
    how do i change the text display for 1,2,3 .....12 to jan, feb, mar....dec. is there any sap exit text variable?
    please help
    thanks
    surya

    i cannot create 12 restricted key figures as my key figure is getting value from exit variable.
    why cannot u create restricted key figures ?
    i didnot understand this....
    second question - are u maintaining texts of 0FISCPER3
    if yes then enter RSD1
    enter 0FISCPER3
    edit it
    go to business explorer tab
    over there display as text only and not key
    this way it iwll display just text
    if u rnot maintaitng texts for it
    u have refer above solutions as mentioned by xperts so that u can load texts for 0FISCPER3
    then follow the busines explorer tab changes i suggested...
    if u can create restricted key figure ur problem will solve  easily..

  • Item Texts in a Table column

    Hi All,
      I am working on a Purchase Order Adobe Form. We have a requirement to display multiple item level texts i.e. material text, item text and delivery instructions in one of the table column. How can i add all these three item texts in one of the column. For every item, i have to display all these item texts in the same column. Please suggest me how to do this.
    Thanks,
    Kumar

    Hi Kumar,
    Using nested tables you can do something like this.
    for that particular column have a subform (type flowed top to bottom) instead of anyother UI element , with in this subform have your 3 tables for the 3 table type fields. and do data binding as usual.
    If it's with nested subforms.
    1) the main table in a nested subform of flowed western text, so all the individual fields will become coulmn here.
    2) for this specific column of 3 tables have a subform instead.
    3) in this subform have your 3 tables for the texts.
    do the binding as usual.
    in all the cases the context should be similarly nested.
    let me know if you need any more help.
    Cheers,
    Sai.

  • Subtotal text in the 3rd column of the alv list

    Hi Guru,
    Can anyone know or have some codes on how to implement a subtotal text in the 3rd column of the ALV list. Im using FM REUSE_ALV_HIERSEQ_LIST_DISPLAY to display the report.
    Please give some advise or help.
    Thanks and rewards is given.

    Hi my friend,
    Insted Using FM REUSE_ALV_HIERSEQ_LIST_DISPLAY
    better use REUSE_ALV_GRID_DISPLAY.
    in that 
            it_sort            = i_sort[]
      constants :     c_x       type char1 value 'X'.
        l_rec_fieldcat_wa-do_sum    = c_x.
      endif.

  • How to get the Text variables in the Columns Headings

    Hi,
         My requirement is I need to get data for weekly wise and for the last 10 weeks also. For this purpose I used the restricted KF based on the variables (customer exit) and offset. Also used the text variable for displaying from and to days in the column headings. I am getting the right text for the first column only. But the text offset is not considering.
    Ex 07/04/2007 to 07/10/2007      06/27/2007 to 07/03/2007 like that.
    I used the two text variables one for from data and other for to date using the customer exit. I am getting the same text as of the first column for the subsequent columns also. Please help me for getting the right text in the columns.
    Thanks,
    visu

    Hello ,
               The quite simple way is to create a text variable with replacement path , as it replaces the value of customer exit used in the report.
    create two text variables
    First variable:
    1 Replace variable with -
    external characteristic key value
    For interval use ---from value
    2.Secod text variable
    Replace variable with -
    external characteristic key value
    For interval use ---To value
    offset start -0000 offset length0000
    use these variables in the column headings.
    hope it is clear,
    assign points if useful

  • Report Painter Long Text Display and fiscal year

    Hi Gurus'
    Could you pls let me know, how do I get Long text in the report.  Usually we get medium text.
    And in the selection screen if i have like:
    Company code
    Fiscal year
    Period
    How do I get the text along with the Fiscal year.
    Like Revenue 2008
    Regards,
    SK

    Hi,
    For displaying long text in rows or column,
    go to menu bar>Formatting>Rows/column texts. Under this tab, you can select shot, medium, long as required for both rows and columns.
    Further, to display fiscal year along with text in column, you must have asisgned variable for fiscal year in column. Go to text of the column and mention &variable of fiscal year assigned for the column after the text.
    Reward points if useful.
    Regards,
    Harish

  • Report question - $ sign in a seperate column

    Hi all,
    We have a query that reports on each branch plan's quantities. Somehow there one branch plant has the $ displayed on a sepeated column. Please see the example data as follow:
    (Branch plan)        (new column without any title)        Month/Year
    BranchPlanA                                                              $900,000
    BranchPlanB                                                              $100,000
    BranchPlanC                       $                                       789,000
    BranchPlanD                                                              $888,888
    Does anyone know why and how to fix it? Thanks!

    Unfortunately I've got the same problem:
    How is it possible to change the the placement of the units (in seperate column or in same cell of the value)? I can't find any options in the Query Designer BI 7.0
    [ key figure1 [  $    [   1.000,00   [
    [ key figure2 [.... [ $ 1.000,00   [
    Has anyone a solution for it?
    best regards
    Jan-Christian Treusch

  • NS 9 and Text Display Properties (AFC)

    Text Display Properties not working in newScale 9
    Has anyone tested the newScale 9 in dev yet? We have an issue where the display properties of a text field is not taking effect when configuring the column length. It will just remain the default length no matter what the value is set at. We have exported the service from nS 9 back to 2008.3 and the text display changes work as expected. Is there a work around for this or is this a known bug?

    Hi Craig,
    Good news -- there is a hotfix for this already available. If you are going to be installing SP1 for newScale 9, the hotfix is included in the service pack. If you are not planning to install SP1, please contact customer care and ask them for 2009.1_HotFix_FormDataTypeTransform.

  • Displaying dates as column headers for BEx Query

    Hi all,
    I have to display dates in sequence as descriptions for 15 columns based on the keyed in date in Bex Query Analyser. I'm able to display date as column heading for one column using text variable with replacement path.I could not able to increment date for other descriptions.Could you please help me to solve this issue.
    Ex: Input Date 05/09/2007 then in the out put column headers should be 0509 0609    0709   ............ 1909
    These are only column headers, values for the columns are quantities calculated using formulas.
    It is urgent.
    Thanks in advance.
    Regards,
    Mandadi.

    hi mandadi,
    if u want dates as headers only then u should use a text variable .
    as a rule u can not set off set for text variable so u create restricted key figure with date restricted and set off set.
    now u use this rkf to populate the text variable using replacement path.
    text variable can use replacement path for replacing from any variable and characteristics.
    bye

  • Currency & Amount Concatenated into One Column after SPS Upgrade

    Hi BI Community
    We have recently upgraded to SPS17 (BW SP19) for our production system and we have one issue where the currency and amount are concatenated into one column (Annual Salary). Previously the currency and amount are displayed in separate columns.  An example below.
    Before SPS Upgrade
    Annual Salary
    100000
    723200
    20122
    After SPS Upgrade
    Annual Salary
    USD 100000
    723200 TWD
    20122 CNY

    Hi Karthik,
    Its working fine but if duplicate values found in column which we want to concat it should take its occurrence only once
    for eg:
    ID     COMPLETED_BY     RISK_EVALUATION
    532     [email protected]     Low/Low/Medium/High/Medium/Medium/High/Medium/High/High/Medium/Low/Medium
    this should be like below
    ID     COMPLETED_BY     RISK_EVALUATION
    532     [email protected]     Low/Medium/High
    Thanks in advance

Maybe you are looking for

  • Sap script '' how to create table frame in sap script"""

    i have some problem in sap script''  how to create table frame in sap script"""

  • Running java program on 1.4.2 but has a 1.5 command

    Hi, I am programming using Java 1.5 so I used java.lang.String.contains but all my lab computers only have 1.4.2. That is the only function I am using from 1.5, is there any way to extract the code and maybe just add it as a procedure to my Java file

  • E-mail Folders for Organization?

    Is there anyway to have folders like we do in Outlook.  So if I wanted to make a folder for Business, one for Personal, etc and sort my email that way?

  • Outbound INVOIC idoc to partner type LS

    Hello, We are trying to issue outbound invoices( Message type INVOIC / basic type INVOIC02)  to a 3rd party who will be doing the billing on our behalf.  We are trying to issue an ALE output type to a LS (logical system) partner type and we are recei

  • Getting Drafty

    When I am typing an email and it saves automatically as a draft sometimes it will save it several times with each version having the changes instead of just re-saving to the already saved version. Then when I send the email those multiple drafts don'