Printing row wise in a list.

Hi,
I have a list in the following format.
head1 head2  head3         head5     head6
                     orate
                     TLA
                     AvgRent
                     No.
I have            orate
                     TLA
                     AvgRent
                     No.
in an internal table...Now insted of clumnwise I want to print them rowwise
in an ALV List like the first mentioned format..How to do it??
Thanks .

Please explain your question more.

Similar Messages

  • Labels Printing Row Wise

    Hi experts,
    can some body tell me how can i print ssrs lables row by row rather then column by column
    what i mean is i have a ssrs label report having 5 columns whose width is 1.25x1.25 inches
    now when i have to print 7 Labels it prints them in 1st column below on another
    rather i want it to print side by side that is in 1st row 5
    in 2nd row 2 out of all 7
    can some body please help me how this could be done

    Hi Sushil,
    Per my understanding that you have design an label print report with 5 columns and now when you increase to 7 columns the extra 2 columns will break to the second page but not display together with the first 5 columns, right?
    Currently, it is not support to create label priint report row by row, as
    PrajapatiNeha mentioned you can consider add page break to do the row to row.
    In your scenario, I suggest you to change the page size from "Portrait" to "Landscape" to increase the width, thus you may keep the 7 columns in the same page.
    If I have some misunderstanding, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • How to print column wise istead of row wise

    Hi,
    please help on this..
    i want to print coloumn wise Employee data instead of row wise.
    Keeping Employee name constant i want to print month wise salary..
    Like this..
    Employee name|Jan-2010-Wages paid|Feb-2010-Wages paid
    soon...
    Plez help me..
    Edited by: user651567 on Feb 28, 2010 5:30 AM

    Please post CREATE TABLE and a few INSERT statements as well as your desired output and your database version.
    Always put the tag before and after your examples to keep it formatted.
    See the FAQ regarding tags: http://forums.oracle.com/forums/help.jspa (scroll a bit down).
    You might want to search this forum first (search box is on right side of screen), since your question has been asked and explained before.
    Also, regarding string aggregation. see this link explaining various techniques (depending on database version):
    http://www.oracle-base.com/articles/misc/StringAggregationTechniques.php                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Printing the salary certificate in row wise

    hi gurus,
    i have developed a custom report for printing the salary details( basic,pf,hra ) as column wise how to do this as row wise..
    like this..
    basic  ---
    pf   ......
    hra .....
    how to do this ..

    Hi,
    You can create two boxes in adobe form setting properties of one as Bold and other box as non-bold.
    Then based on the value you can hide the box and make visible the other one.
    You have to choose the right event like change or exit ( if the value is got from user ) or
    during form load event if the value is passed dynamically to form.
    regards

  • Adding new row to the reports list page

    How can I add a new report row in the reports list of the reports tab.
    Ex: a new row to the report "users by Date of Join report" is to be added
    How can we add Please help me out in this

    I am facing the same problem!
    camickr wrote:
    Try adding an empty row containing a null value for the String instead of the empty String.camickr, it will not help, the DefaultRowSorter in the "*+compare(int model1, int model2)+*" method return -1 if the first value is null and 1 if the sacond value is null. and incase of DESCENDING it mult by -1.
                    // Treat nulls as < then non-null
                    if (v1 == null) {
                        if (v2 == null) {
                            result = 0;
                        } else {
                            result = -1;
                    } else if (v2 == null) {
                        result = 1;
                    } else {
                        result = sortComparators[counter].compare(v1, v2);
                    if (sortOrder == SortOrder.DESCENDING) {
                        result *= -1;
                    }And this is the real problem!
    The empty line is sorted as the smallest value and incase of DESCENDING it will be the first line (because of the mult by -1).
    We could have overide it and incase of the empty row(usualy the last row) do not mult by -1 in DESCENDING mode.
    But the problem is that the "+*compare*+" method and it's caller "*+Row+*" inner class are private :-(
    It is not wise to do it but we can do like kmp83 wrote:
    kmp83  wrote:
    copy/duplicate "private" code from DefaultRowSorter into my extended class.Anyone have another suggestion?

  • Printing issue of report output list display

    Dear All,
    I need to print the report output display list. So, for this I have used the following code. But it's not printing.
    Will you please check the below code and kindly let me where should I change/modify in the code.
    START-OF-SELECTION.
      SET PF-STATUS 'ZGUI_STATUS1'.
    END-OF-SELECTION.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'PRNT'.
         DATA: l_params TYPE pri_params,
               l_valid TYPE c,
               l_arc_params TYPE arc_params.
         CALL FUNCTION 'GET_PRINT_PARAMETERS'
           EXPORTING
             destination            = l_v_usr01-spld
             copies                 = 1
             list_name              = 'TEST'
             list_text              = 'Test NEW-PAGE PRINT ON'
             immediately            = 'X'
             line_size              = 220
             release                = 'X'
             mode                   = 'CURRENT'
             no_dialog              = 'X'
           IMPORTING
             out_archive_parameters = l_arc_params
             out_parameters         = l_params
             valid                  = l_valid
           EXCEPTIONS
             archive_info_not_found = 1
             invalid_print_params   = 2
             invalid_archive_params = 3
             OTHERS                 = 4.
    NEW-PAGE PRINT ON PARAMETERS l_params ARCHIVE PARAMETERS
                              l_arc_params NO DIALOG.
          PERFORM display_data.
          NEW-PAGE PRINT OFF.
      ENDCASE.
    Many Thanks,
    Ranjan

    Dear Amit,
    The font size is not increasing, in-fact, if I use the code like the below, it's not even printing, I am checking different ways,
    DATA: lay   TYPE pri_params-paart,
          lines TYPE pri_params-linct,
          rows  TYPE pri_params-linsz.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'PRNT'.
          lay = 'X_60_85'.
          lines = 60.
          rows  = 85.
          DATA: l_params TYPE pri_params,
                l_valid TYPE c,
                l_arc_params TYPE arc_params.
          CALL FUNCTION 'GET_PRINT_PARAMETERS'
            EXPORTING
             destination            = l_v_usr01-spld
              destination            = 'LPIN'
              copies                 = 1
              list_name              = 'TEST'
              list_text              = 'Test NEW-PAGE PRINT ON'
              immediately            = 'X'
              layout                 = lay
              line_count             = lines
              line_size              = rows
             line_size              = 220
              release                = 'X'
              mode                   = 'CURRENT'
              no_dialog              = 'X'
            IMPORTING
             out_archive_parameters = l_arc_params
              out_parameters         = l_params
              valid                  = l_valid
            EXCEPTIONS
              archive_info_not_found = 1
              invalid_print_params   = 2
              invalid_archive_params = 3
              OTHERS                 = 4.
          NEW-PAGE PRINT ON   PARAMETERS l_params NO DIALOG.
          PERFORM display_data.
          NEW-PAGE PRINT OFF.
      ENDCASE.
    Kindly let me know if you have some new answer?
    Kind Regards,
    Ranjan

  • Row-Wise Variable not populating in Filter

    Hi,
    I have a row-wise variable that gets a list of units that an employee belongs to (parent/child units).
    In answers, I want a prompt with a drop down that shows all of the units the user should be able to access. This works if the user only belongs to one unit. However, if a user is in multiple units, it only shows his "Current" unit in the drop down (just one value).
    My prompt query is like this:
    SELECT "- Dim_Emp".unit FROM PRS WHERE "- Dim_Emp".unit = VALUEOF(NQ_SESSION.Units)
    From what I understand, the where equals clause should evaluate to a where IN clause in the physical statement, but it doesn't appear to be doing that.
    I would really appreciate some help on this. Thanks!
    Kevin

    Kevin,
    In prompts, the drop-down can only contain 1 value. You should use the multi-select option in prompt.
    Try that and see if you get a list of all parent/child units

  • Use row wise session variable in IN CLAUSE

    Hi,
    I' have a question. Suppose I have a row wise session variable named Users setted in an initialization block with following SQL query:
    SELECT 'NAMES', names from NAMES_TABLE where GROUP='Administrators'
    Suppose it returns value list 'JOHN, MARIE'.
    Can I set another row wise session variable named COUNTRY in initialization block with following SQL query:
    SELECT 'COUNTRY', country from COUNTRY_TABLE where names IN (VALUEOF(NQ_SESSION.Users))?
    so that COUNTRY variable returns for example list 'CANADA','OHIO'?
    or OBIEE returns error?
    If it's not possible can you give me a solution?
    Thanks

    Hi,
    I've resolved, but now I have another problem.
    I have a row-wise session variable called COMPANY_FILTER
    In Dashboard Prompt "Show" Section I have following query:
    SELECT Country."Company Description" from Prototype where Country."ID" = VALUEOF(NQ_SESSION.COMPANY_FILTER).
    When COMPANY_FILTER has at least one value it works fine. But COMPANY_FILTER can be even empty.
    In the latter case query fails.
    Now, when COMPANY_FILTER is null I must execute following query:
    SELECT Country."Company Description" from Prototype
    otherwise when it is filled i must execute following query:
    SELECT Country."Company Description" from Prototype where Country."ID" = VALUEOF(NQ_SESSION.COMPANY_FILTER).
    I have tried with CASE WHEN, but i don't know the exact syntax. Can you suggest me a correct query for my goals?
    Thanks

  • Row wise initialized variable in WHERE clause of other initialization block

    Hi,
    i've following problem.
    I've created a initialization block (called A) that initializes a row wise session variable.
    Ex: SELECT X,Y from Z
    Select statement returns 3 rows (it's a row wise initialization block!!!)
    Then i want to create another initialization block that uses in its WHERE cluase the previous row wise variable
    Ex: SELECT W,T from R where F = VALUEOF(NQ_SESSION.A)
    I have following error: DB2-UDB: SQL10104 Token ; was not valid, valid tokens: ....
    I believe that this error is caused by the fact that VALUEOF(NQ_SESSION.A) is translated by OBIEE in IN (a list of values separated by ; and not by ,).
    Can you suggest me a solution?
    Thanks
    Giancarlo
    P.S. I'm using OBIEE 10G

    You could avoid this by rewriting it as
    select w, t
    from r
    where f in (select y from z where x = 'A')
    Regards,
    Robert

  • Accessing Row-Wise Initialization variable in OBIEE Answers 11g

    Hi All,
    I need to access row-wise initialized session variable in answers fx section, i came to know from following blog
    http://carpediemconsulting.wordpress.com/
    that i can use VALUELISTOF(NQ_SESSION.ROW-WISE-VAR)) function to get the list of values in answers, but i m getting syntax error in obiee 11.1.1.3
    Any work arounds for this. Please help!!
    Thanks,
    Sreekanth

    You can't, it's only intended for use in the RPD initblocks, it's mainly used to restrict data acces:
    http://www.orastudy.com/oradoc/selfstu/fusion/doc.1111/e16816/biapps_security.htm
    regards
    John
    http://obiee101.blogspot.com/
    http://obiee11g.com/

  • Row wise Initialization - Huge LOV

    We use External table for Authentication & uses row wise Initialization. It is working perfectly fine, but the issue is the list of values (output) from row wise initialization is pretty large (the output SQL will be at least 30 pages). This is alarming the management and mainly the DBA's and atleast once in a week we are experiencing issues with these SQL's. And in near future, the SQL will be extending drastically as the company has acquired another 2 companies and once the integration is completed, the LOV's from row wise initialization will easily go upto 90 to 100 pages. Let me explain you what I did... We have around 10 Init blocks used for Authentication, but I am mainly concerned about 2 (cf_visibility & sc_visibility) as these are used in Security/Group/Permissions/Report Filters. Each report will for sure have these filters attached. Here cf_visibility Init SQL is (SELECT DISTINCT 'cf_list', CHILD_COMPANY_ID FROM COMPANY_VISIBILITY CV, CLIENT_FACILITY CF WHERE CV.ANCESTOR_COMPANY_ID=(SELECT SUBSTR(':USER', 0, (INSTR(':USER', '.')) - 1) FROM DUAL) AND CV.CHILD_COMPANY_ID=CF.CLIENT_FACILITY_ID AND CV.DW_DELETE_DATE IS NULL UNION SELECT DISTINCT 'cf_list', 0 FROM DUAL) and
    sc_visibility Init SQL is (SELECT DISTINCT 'sc_list', CHILD_COMPANY_ID FROM COMPANY_VISIBILITY CV,SERVICE_CENTER SC WHERE CV.ANCESTOR_COMPANY_ID= (SELECT SUBSTR(':USER', 0, (INSTR(':USER', '.')) - 1) FROM DUAL) AND CV.CHILD_COMPANY_ID=SC.SERVICE_CENTER_ID AND CV.DW_DELETE_DATE IS NULL
    UNION SELECT DISTINCT 'sc_list', 0 FROM DUAL)
    and both are row wise initialization blocks. The filter used for all the Groups is [(DEP.Jobs."Client Facility ID" =  VALUEOF(NQ_SESSION."cf_list")) AND (DEP.Jobs."Service Center ID" =  VALUEOF(NQ_SESSION."sc_list"))]. This output LOV for this filter is huge as I said earlier.
    My main goal here is to reduce the size of the SQL to 1 page, I am planning to do that by replacing the LOV list by SQL (Kind of sub query). I started experimenting with only cf_visibility for now. I replaced the existing SQL with (select 'cf_list',
    'SELECT DISTINCT CHILD_COMPANY_ID FROM COMPANY_VISIBILITY CV, CLIENT_FACILITY CF WHERE CV.ANCESTOR_COMPANY_ID=(SELECT SUBSTR('':USER'', 0, (INSTR('':USER'', ''.'')) - 1) FROM DUAL) AND CV.CHILD_COMPANY_ID=CF.CLIENT_FACILITY_ID AND CV.DW_DELETE_DATE IS NULL UNION SELECT DISTINCT 0 FROM DUAL'
    from dual)
    this returns only 1 row, with 1column as cf_list and the next column with the ('SELECT DISTINCT CHILD_COMPANY_ID FROM COMPANY_VISIBILITY CV, CLIENT_FACILITY CF WHERE CV.ANCESTOR_COMPANY_ID=(SELECT SUBSTR('':USER'', 0, (INSTR('':USER'', ''.'')) - 1) FROM DUAL) AND CV.CHILD_COMPANY_ID=CF.CLIENT_FACILITY_ID AND CV.DW_DELETE_DATE IS NULL UNION SELECT DISTINCT 0 FROM DUAL') Note: USER will be replaced with actual User Name.
    But when I run a report in Answers, it throws me an error [nQSError: 17001] Oracle Error code: 1722, message: ORA-01722: invalid number at OCI call OCIStmtExecute. I understand the error as it is clearly mentioned, but my question is "Is there any way not to get that huge list in the SQL"
    Let me show you the SQL generated along with the error. As this is a Report filter I am only attaching the where clause of the Query. (where ( T38857.CLIENT_FACILITY_ID in ('SELECT DISTINCT ''cf_list'', CHILD_COMPANY_ID FROM COMPANY_VISIBILITY CV, CLIENT_FACILITY CF WHERE CV.ANCESTOR_COMPANY_ID=(SELECT SUBSTR(''5700.abcde'', 0, (INSTR(''5700.abcde'', ''.'')) - 1) FROM DUAL) AND CV.CHILD_COMPANY_ID=CF.CLIENT_FACILITY_ID AND CV.DW_DELETE_DATE IS NULL UNION SELECT DISTINCT ''cf_list'', 0 FROM DUAL') ).
    So I also thought if I use REPLACE function and replace 'Single Quote' before and after the SQL statement with 'Space', it may work. So I edited one of the Group's report filter ((DEP.Jobs."Client Facility ID" = Replace('VALUEOF(NQ_SESSION."cf_list")', ''', ' ') but it is throwing an error in the expression builder itself.
    Now I ran out of ideas and seeking any help/guidance from you folks.
    I know this is a very lengthy post as I tried to explain the situation as clearly as possible. I hope someone can assist me in resolving this. Thanks for your Time...
    -Dinee

    can't you make a custom table in the DWH? or use a VPD? Maybe a parameterised database view? What I mean is try to push your logic to the database.
    regards
    John
    http://obiee101.blogspot.com

  • How to print column wise records

    Hi,
    I am very sorry.
    Actually i have searched many pages but i didn't find my solution.
    plez any body halp me out from this problem..
    Actually my table structure is this..
    Employe_payroll:-
    Empid|Salary|Month|Year
    So record stores in row wise in each month salary processing..
    so i can easly get these each month records in row wise.
    but i need to get these records like this.
    Empid should be constant and it will print each month records in column wise..
    plez kindely help me..

    just a concept. You may need to fine tune the query as per your columns
    SELECT          empid,
                    SUM(jan) "jan", SUM(feb) "feb", SUM(mar) "mar"
    FROM
    (SELECT   empid,
            DECODE(month,'01',sal,0) jan,
            DECODE(month,'02',sal,0) feb,
            DECODE(month,'03',sal,0) mar
      FROM    emp
    GROUP BY   empid;Edited by: hard_stone on Mar 1, 2010 12:13 PM

  • Row wise Sum

    How to Calculate the row wise sum in pivot table to get the total value
    Product AAA BBB CCC Total
    Printer 23 35 11 69
    Book 2 4 3 9
    Regards

    792011 wrote:
    Kranthi,
    I already did those steps. I am able to see only the total if there are values for three rows. Here is the example. The report show show even there any no value in one of the rows
    Product AAA BBB CCC Total
    Printer 23 35 11 69
    Book 2 4 3 9
    Pencil 5 200 205
    Pen 159 159
    Bottle -30 -30
    Appreicate Your Help
    RegardsI'm going to take a shot and guess that you meant a total shows up only if there are values for each column. I am further going to guess that the example you gave is what you'd like to see, not what is actually going on. If so, then you need to modify your measure like this:
    IFNULL(measurecolumn, 0)
    Then you will get a sum even if one of you columns is null.

  • Serial Number in OUT Going Excise Invoice Row wise

    HI all,
    Client need Serial numbers to be printed in out going excise invoice PLD in Row wise.
    This is a clients major requirement.
    waiting for solutions. Points will be rewarded
    Thanks

    Hi Sashi,
    Create Database Field in PLD repetitive area
    Select Table Name
    OEI1 - outgoing excise invoice rows
    Select Field Name
    Serial Number
    Hope the above solution will solve y'r problem.
    Jeyakanthan

  • Display Row number in ALV List

    Hi All,
          I have 50 records in Internal table . I  am displaying this internal table data in ALV List display. I want to print row number in ALV . Could you please help me how to print.
    Thanks,
    PRSN.

    HI,
      take one more field in the internal table and fill it up with the number when you are filling it with data .
    loop at itab.
    it_final-seqno = sy-tabix.
    append it_final.
    endloop.

Maybe you are looking for

  • SAP CRM Free goods determination

    Hi Experts, I am working on SAP CRM Free goods . Basically i have a Scenario where  i want to give Quantity based Discounts , in which if a Customer purchases a goods of 3 quantity i want him to give 1 qty as Free good thru the sales order . The free

  • How to split Large file into Multiple small files..

    Hi,    My source file is simple  XML structure...and target side also i need to send in XML files  .. but in the source file I'm getting all the data at a time.. so source file  is more than 1000 records.. but i want to process  50 records at a time.

  • Getting error message when uploading book on iTunes

    I am uploading a book in urdu language in picture format and I am getting this message: Language ur for type main is only supported in epub 3 content." at book (MZItmspBookPackage). Does anyone know what does this mean? Thank you so much!

  • Wrt54g, no wired connection, vista? update goblin?

    Hi, I have linksys router WRT54G version 6.....its wired into my desktop and i have a wireless link to my laptop, and even though I got a new computer with windows vista home premiun a week ago, its been working fine for that week......until today,no

  • Quicktime X issues

    I recently upgraded to Snow Leopard, and since then iTunes and all of my iWork programs are crashing at launch. I finally figured out last night that my Quicktime is faulty, as well. I'm sure this is why iTunes won't open, but not sure if that also h