More than 1 records in one cell

Hi all,
I once came across someone's apex site whereby they've a form and one column contains more than one record.
for e.g.
customer1 ordered prducts abc, xyz, def, etc
customer2 ordered one product xyz
The form:
Name  |Address |Product
      |        |def
      |        |---------------------
Cust1 |34289   |xyz
      |        |---------------------
      |        |abc
cust2 |43418   |xyz
-------------------------------------instead of
Name  |Address |Product
Cust1 |34289   |xyz
Cust1 |34289   |def
Cust1 |34289   |abc
cust2 |43418   |xyz
-------------------------------------If anyone have come across this, pls guide me.
Kind regards
Mel
Edited by: daygocks on Jun 4, 2009 5:26 PM

ok, now its clear what exactly you need. In apex term it is called as Break Formatting for columns. Create a normal report
SELECT Name,Address ,product
FROM TABLE_TNow go to the Report attribute and make sure that the NAME and ADDRESS columns are the first and second column in the report. You can change the order of the column by using the up down arrow key on the right. Scroll down to the section "Break Formatting" and select "First and Second Columns" under the Breaks. In the "Identify how you would like your breaks to be displayed" select Default break Formating.
e.g. http://apex.oracle.com/pls/otn/f?p=50942:22
Thats all, you should be all set.
Thanks,
Manish

Similar Messages

  • How to save more than 2 records at a time in tabular form?

    I have a table name SAMPLE_TABLE, which has SNO,NAME items and one sequence name is SEQ_SAMPLE.
    i have one form based on SAMPLE_TABLE. my form is in tabular format, which has 5 records.
    in the layout wizard only NAME is displayed. SNO doesnot displayed.
    in the layout wizard, there is one push button named as SAVE.
    the code of SAVE button(When_Button_Pressed) is
    insert into sample_table values(seq_sample.nextval,:sample_table.name);
    clear_record;
    commit;
    my problem is :
    when ever i want to save one record at a time there is no problem.
    if i want to save more than 2 records at a time then sequence number is alloted for last record. other records have no sequence numbers.
    for example i want to insert 2 names as XYZ,PQR then
    the table look like this:
    sno name
    1 PQR
    XYZ
    if SNO is primary key then it doesnot work because of null value.
    can any one solve my problem?
    Thanks
    Meegada

    Is the block a database block or a control block,
    1. if database block, assign the primary key on a
    trigger like new record instance for each record
    enteredour's is a control block, ididnt get your point clearly
    could you make it clear how to assign a primary key on a trigger
    our criteria is we are having two block as lov_values and lov_name
    lov_values:
    lov_values_id (sequence generated)
    lov_id will be same for the all the values for a particular lov_name
    lov_values will be which we enter in the form which will be the only visuble colums on the form
    lov_name block:
    lov_name
    lov_id(sequence generated)
    could you help me with the code
    thanks
    prasad

  • Not able to display more than 65k records in Bex report.

    Hi Experts,
    I have requirement for the Bex report to display more than 65k records..
    Please help me on this.. i am feed up of get proper update for this..
    Its urgent.. pls help on this

    Hi,
    The Excel 2007 have a limit of 1,048,576 rows, unfortunately SAP cannot export more than 65.536 rows that is an exiting limitation exporting to Excel files.
    The note 700206 explains the MAX Size Limit for XXL Export, and it's
    not possible to increase this limit. XXL Export is generic export
    utility to export the list object from SAP to Excel and it cannot
    work differently for different Excel releases.
    I would emphasizes the purpose of BEx Analyzer: it is not a tool for the
    mass extraction of data, but it is a viewer/navigator tool for data.
    For huge exports like the one mentioned SAP offers Open Hub as a 3rd
    party tool. You can have more details in the url below:
      https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.
      docs/library/icc/BW-OHS%20Open%20Hub%20Service%2c%20Third-party%20
      Integration.pdf
    Thanks,
    Venkat

  • Fetch more than 1000 records

    Hi,
    I am using APEX_ITEM.SELECT_LIST_FROM_QUERY_XL(). When I try to fetch more than 1000 records in PL/SQL block .It throws character string buffer too small. I donot know how much records it will fetch because it is dynamically generated.
    could you please anyone help me out.

    Hi
    I agree that a popup LOV would be better, for two reasons:
    1 - Even if you could construct a select list with over 1,000 items, users may find it awkward to use as they would have to scroll to find the item they want - at best they could type in the first character of an item but they'd have to scroll from then on or keep pressing the same character to move down one item at a time.
    2 - The fact that you're using that function to generate the list implies that you are using a tabular form and, therefore, that there will be several instances of the list on your page. If so, the time taken to generate the page and download it may slow page load time considerably.
    If you do need to have select lists, there are techniques that you can use to do this - typically, this would involve creating small lists in the form, a hidden select list created as a normal page item and then using javascript to copy the hidden list items into the tabular form fields.
    Andy

  • Add row not working if more than 5 records are displayed on the screen

    Hello all,
    Does anyone know why the add row button on an sql updateable report would stop inserting a blank row for data entry when more than 5 records have been entered into the form? I can insert up to 5 records. After that, a blank row is no longer supplied by the button. Odd. Have any ideas?
    Any assistance would be greatly appreciated!!!
    Michelle

    You're welcome, Michelle!
    The "Maximum Row Count" setting determines the maximum number of rows Apex will, or could, retrieve for a report. In your original settings, this was only 15, so matched the numbers of rows on a page - therefore, you would (A) only have one page of records and (B) never see a "New Row" as that would be record number 16 (or something higher than 15), which Apex would ignore!
    One thing to note, though, is that some of the pagination schemes (the ones with a "Z" in the description) will count the full number of records available every time the report is loaded - for small tables, this is not an issue but for large tables, you may want to use one of the other schemes.
    Andy

  • Internal table more than 1million record

    Hi
      I have one internal table. I want to fetch more than 1million records in internal table. But it gives error like storage error. Is there anyother way possible to fetch such high records from databse. Also I Came to know from my friend that it is easy to use Internal table for upto 10000 records.

    use the OPEN CURSOR, FETCH and CLOSE_CURSOR statements and make sure you
    specify the package size.
    Here is an example code.
    PACKAGE_SIZE = 2000.
    OPEN CURSOR WITH HOLD CURS FOR
    SELECT *
    FROM MARA
    WHERE MATNR <> SPACE.
    DO.
    FETCH NEXT CURSOR CURS
    INTO TABLE I_MARA PACKAGE SIZE PACKAGE_SIZE.
    IF SY-SUBRC <> 0.
    EXIT.
    ENDIF.
    ENDDO.
    CLOSE CURSOR CURS.
    refer ...
    Inserting Millions of records-Please Help!
    copy from 1 table to anaother
    Rgds,
    Jothi.
    Mark useful answers.

  • Checking if block has more than 1 record?

    Hi guys,
    I have a form with mutiple data bocks on it and I want to check if one of my datablocks has more than 1 record in it, if so I dont want to do anything, if it does only have 1 I want to do a procedure, what im wanting to know is there anyway i can check if a particular block has more than 1 record in it?
    Any help would be greatly appreciated.
    Thanks

    create a calculated item of type summary with summary-function COUNT. This will give you the number of records in the block.

  • Can I authorize more than five computers on one iTunes account?

    Can I authorize more than five computers on one iTunes account?  I have several PC's being used as HTPC's and I'd like to use iTunes on all of them.  My three iPhones and three PC's have taken up all of my authorizations.  If I need to create a second iTunes account, can it be linked to my existing account?

    Todd, some suggested reading, none of which looks to me as requiring authorization as an iTunes device for Apple TV:
    Over view
    AirPlay Mirroring
    Troubleshooting

  • ITunes will not allow me 2 add more than 3 songs at one time in2 my library

    iTunes won't allow me to add more than 3 songs at one time into my library. I just want to select a number of songs in 'My Music' folder on my pc and then add them in one go. I used to be able to on older versions of iTunes, but now it will only let me add 3 songs (using the 'add file to library' option), and no more then one (using the 'import' option). It's just very annoying as it takes aaages to add songs into my library, when it shouldn't. if anyone knows how to overcome this, please let me know! Thanks
    Message was edited by: 5Gmel

    how did u do it i've being trying for a long itme now and it takes forever to add music please share

  • More than 3 AR for one Sales Order in relationship map

    Hello,
    i would need some advice on the following: If you have more than 3 Invoice for one Sales order these are not shown seperately in the relationship map. SAP could reproduce the issue and refers to it as normal system procedure at the moment. They adviced me to post a thread here.Is there any way you could make the invoices be seen one by one.
    SAP Version 8.81 PL 5
    Thanks a lot for any advices on this topic
    Vanessa
    Edited by: Vanessa Schürer on Jan 16, 2012 2:45 PM

    Welcome to the forum.
    If you have any suggestions you post them on sap's new idea collaboration page. You do bring up a good point and hopefully in 8.82 it will be resolved as the relationship map was not originally on the road map. Hopefully they can develop this feature.

  • More than 1 record by line in reports

    Hello everybody.
    Can anybody tell me How I can display more than 1 record in same line of a report?
    Thanks in advanced.
    Regards everybody.

    Selzeus,
    Is this what you are searching for:
    http://daust.blogspot.com/2007/03/apex-nested-reports.html
    Denes Kubicek

  • Assigning more than 1000 orders in one WBS

    Hi Experts,
    I have a requirement of assigning more than 1000 Orders to one WBS element. As per SAP note, a maximum of 1000 Orders can be asssigned to one WBS otherwise system performance may get affected. But as per the client requirement, either I should allow more than 1000 Orders or System should give an error message when the assignment crosses this limit... I checked for User exits (for Orders) and could not find any for this... any experience / suggestions ?
    Thanks
    Bala

    Hi,
    If more than 1000 orders has been assigned under one WBS then the system performance will get slow.Whenever you are retriving some data or reports for that WBS the system response will be slow.
    If the client requirement is like that then you can create more than 1000 orders,
    orelse you can break the WBS in SUb WBS & create many orders under different head.
    You can cretae more than 1000 orders under one WBS.The system wont give any error message.
    Regards,
    Raj

  • Can we upload more than 1000 records with BPS file upload pf

    We are using file upload functionality in BPS. Can we use this function to upload around 80,000 records at a time.
    We are unable to upload more than 1000 records because throws a time out error. Is there a setting that we can change to resolve this?

    Hi,
    Can you check the following note  about BW system parameters :
    [https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=192658]
    Check the work Process time set for your BW system
    Is your application web based ?
    Pratyush

  • MRP, more than planned order in one purchase ru00E9quisition.

    Hello, friends
    I have a problem with the MRP system that, we want to collect or convert more than planned order into one purchase requisition.
    Regards.

    Lamier,
    Purchase requisitions typically are never seen by Suppliers.  They are internal documents to be managed by people in your  own company.
    There are several ways to manage your business requirement.  Many companies use purchasing scheduling agreements, and some companies will automatically send the schedules to the Vendor.   Refer to  http://help.sap.com/saphelp_erp60_sp/helpdata/en/75/ee0f7455c811d189900000e8322d00/frameset.htm  Other companies will select all of the approved/released purchase requisitions and copy them into a single Purchase order, which is then transmitted to the vendor using standard methods.  Review this and other tips in http://help.sap.com/saphelp_erp60_sp/helpdata/en/75/ee11d955c811d189900000e8322d00/frameset.htm
    For businesses where standard ERP functionality is inadequate, It is also possible to create custom development that will meet any business requirement.
    If you are unsatisfied with the standard functionality offerings available in SAP ERP, you should contact Walldorf.  Alternatively, SAP generally listens to the larger user groups, such as ASUG here in the US. I imagine that Algeria also is covered by a similar group.  If enough people in the user groups ask for the same functionality, SAP is more likely to place it into future offerings.
    http://www.asug.com/
    Best Regards,
    DB49

  • Upload more than 300 record by Standard Batch / Direc input 'Financial documents'

    Dears Experts ,
    i have a problem to upload more than  300 record by lsmw i have created  Standard Batch / Direc input
    with object 0100Financial documents
    program name RFBIBL00
    when upload more than 300 record it will display " no batch input data " and didn't save the document .

    Hi,
    Please let us know what Data Transfer Type you are using. Kindly try to run program RFBIBL00 with "Call Transaction" or  "Direct Input" for Data Transfer Type as suggested in the program documentation.
    Regards,
    Anand Raichura

Maybe you are looking for