Inserting Rows in Reports for Unused Numbers

Post Author: scarmike67
CA Forum: General
I have a report that lists our customer numbers and names.  Each row has a 3-digit customer number in the first column with the customer name in the second column.  When the customer numbers were created, many numbers were skipped.  How can I make my report include rows for the unassigned customer numbers?  I would like the report to include rows all customer numbers 1-999, and only the assigned numbers would have customer names next to them.  This will allow us to see the unused numbers.  For example, if numbers 123, 124, 126, and 128 were assigned to customers , I would like to also have rows on the report for the skipped 125 and 127 numbers.  I'm not sure what this 'feature' is called in order to search for help.  Thanks!

Post Author: scarmike67
CA Forum: General
I have Crystal v8.5 and v10.  I could use either for this report.  It is an SQL database.  I would like to be able to handle it within the report instead of adding a new table or blank records to the existing table.  Thanks!

Similar Messages

  • Report for Material Numbers configured in KMAT Sales Order

    Hi,
    Scenario:
    We are operating with KMAT material type. (e.g. ABC)
    Material "ABC" has Characterstic Char 1 , Char2, Char3, Char 4
    Each Char has Char values.
    Sales Persons create the Sales orders by selecting approprite Char & Char Values. Via MRP, this lead to requirement generation for materials associated to the respective Char & Char Values.
    Requirement:
        For a given list of sales order numbers for the KMAT material (ABC),
            I want to get the list of Material numbers associated to the Char & Char   Values configured in these S.Os.
    Thanks
    Nitin

    For the Function Modules, you would need to go to Transaction SE37.  For  CS_BOM_EXPLOSION I use the following Paramater Values, aukmng = 1, auskz = X, capid = PP01, CUOBJ = from the VBAP Table and line Item of the Sales Document VBAP-cuobj, datuv = current date, emeng = 1, mktls = X, mtnrv = VBAP-matnr, stpst = 0, svwvo = X, werks = VBAP-werks, vbeln = VBAP-vbeln, vbpos = VBAK-posnr, vrsvo = X.
    For the Function Module VC_I_GET_CONFIGURATION use the following Parameter Value, instance = VBAP-cuobj.

  • Sales Analysis Report for Batch Numbers

    I am currently having an issue with Batch numbers and sales analysis report item wise. If the goods are delivered it does not show the quantity in the report. is there a way to make the quantites show. Open delivery notes show the quantity in the report. Could the reason be that once the delivery note is closed the quantity does not show in the report.????

    Dear Mr Shah,
    If I understood correctly, you are saying that there is no issue in adding the document with the batch but it is not shown in the Sales Analysis report?
    The Sales Analysis report does not show information regarding the quantity because it focuses on the value of the document.
    In order to have an overview on the trasactions related to the batches please use the Batch Number Transaction Report under Inventory - Inventory report.
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • Report for batch numbers and delivery

    Dear gurus,
    Is there a report that
    I can see batch numbers and delivery at the same time?

    Use t.code VL06 and click on List outbound deliveries button.
    In the selection screen, enter details like sales org, distribution channel, division, shipping point and actual or planned goods movement date (per your requirement) and execute.
    In the next result display click on item view button. To get the batch data, click on change layout button. From the list of fields available (hidden field list) on the right hand side, select on batch and click on left arrow button.
    Then click on copy button. You can see the batch details with delivery line items.
    This report is useful, where in you can select addtional fields from layout button.
    Regards

  • What is the shortcut to insert rows in Numbers?

    I know I can use the arrow on the row number to insert rows, but I need to insert a bunch of rows.  What is the keyboard shortcut to insert rows?  I don't understand what the screen tip says is the shortcut. Thanks for your help

    Hi angneld,
    The keyboard shortcut for Add Row(s) is option-arrow, where 'arrow' is one of the four arrow keys.
    To add one row above the current row:
    Select any cell in the current row.
    Press option-up arrow.
    To add four rows:
    Select a stack of four cells, ending with the one after which you want the new rows inserted:
    Press option-down arrow:
    Done.
    As you've probably guessed, using the left or right arrow (with option) inserts column(s) left or right of the selected cell(s).
    This was done in Numbers '09, a Mac application. I don't know if this process is supported on Numbers iCloud.
    Regards,
    Barry

  • I am trying to insert rows for alert_id 22 with diff abc_id and xyz_id

    I am trying to insert rows for alert_id 22 with diff abc_id and xyz_id
    these inserts will store in two tables that I have to join in the cursor.
    I have written cursor without passing cursor parameters. but here i need to pass acb_id and xyz_id along with alert_id.
    then if these are saticified with alert_id 22 then I want to stop the loop run, else i need to continue the loop. bcause the abc_id and xyz_id are diff for alert_id 22
    This is the issue I am facing!
    Please let me know if you have any idea. Let me know how to use cursor parameters here and in loop.
    Sample proc like this::
    Declare
    main_cursor
    another_cur
    alert_cur
    begin
    need to check first abc_id,xyz_id is already exist with alert_id 22
    if this set of records already exists then
    exit from the loop
    else
    continue with
    loop
    here coming the insert statements with different condition getting from first two cursors.(this part is ok for me)
    end loop
    end if
    Please write the logic if any idea on this.
    -LRK

    I want to stop if already alert_id is exist!

  • Report for a selection of items+batch numbers that I would have had on hand

    I would like to run a report for a selection of items and batch numbers that I would have had on hand (only) for September 30th.  I have run the batch numbers report but this gives me all transactions from August 1/09 to September 30/09.

    Hi
    If you need to know quantity onhand ,probably you need to run query against OINM tables but If you are lloking for information then I guess this batch and serial number would be handy ....
    Hope this helps
    Bishal

  • BI Report showing NULL for decimal numbers

    Oracle Business Intelligence 11.1.1.7.0
    In an earlier version of BI we had an issue with our Reports where any numbers with digits after the decimal would return a blank result in the report (the correct numbers would still show up in the Data Model's sample data), but only when viewed as an Interactive report (PDF views were fine).  However, after an upgrade it happened with any report views, not just the Interactive Report view.  I found a work-around for this were I CAST each number column to Double Precision, and then it would show up fine.  That worked for a few months, only now it doesn't work at all.  After speaking with the system admin, I do no think any upgrades happened between when the CAST solution started working and when it stopped working.
    Has anyone else witnessed this issue?

    Okay, apparently the CAST solution is still working, just not when I use a SUM (have not tested other aggregates).  Creating a sub-query like below, however, works:
    SELECT CAST(result AS DOUBLE PRECISION)
    FROM
    SELECT SUM(col_1) AS result
    FROM table_1

  • Highligh current row not working for classic report in 4.1

    Hello experts,
    One of our customers is migrating applications from APEX 3.0 to 4.1.
    All their applications use classic reports because interactive reports didn't exist in 3.0.
    The end users of the applications like the row color changing when they hover there mouse over the rows (highlight current row) and they insist on keeping this "functionality" in the applications.
    For some reason, this "functionality" doesn't work anymore after the migration to APEX 4.1.
    I thought it was something theme related so I created a new application with a classic report, tried some APEX built-in themes, and with none of them, I manage to get the highlight current row working.
    For interactive reports it is not an issue.
    Is this an undocumented no-longer-available feature of APEX 4.x or has there changed something which caused this functionality to stop working??
    Regards,
    Bart

    Hi,
    I created a service request for this issue, and the support analyst that helped me confirmed that this is a bug:
    "I have created the bug :
    Bug 13584762 - ROW HIGHLIGHTING NO MORE WORKS IN CLASSIC REPORT IN APEX 4.1
    While working on the problem , I have found the following solution in order to make the Row HighLightng work in APEX 4.1
    In the apex_4_1.min.js (file located in images\javascript ) , Search for :
    function setRowHighlight(a){apex.jQuery("#report_"+a+" .highlight-row").live("hover",function(b)
    and replace "hover" by "mouseover mouseout" :
    After the modification :
    function setRowHighlight(a){apex.jQuery("#report_"+a+" .highlight-row").live("mouseover mouseout",function(b)
    A refresh in the browser may be necessary in order to "reload" the file apex_4_1.min.js"
    I implemented the suggested workaround and this solved the problem!
    HTH,
    Matthias Hoys

  • How to activate a different sub-report for each row in the data set as main report page breaks on each row of data in the main dataset

    I am going to try asking this same question a different way as I have yet to find a working solution to my problem.  I have a main report and then 8 sub reports.  My main report has one data set and returns one row of data per account number.  One
    of the fields in the main data set is called AccountProf.  My main report displays one page per Account number and then calls a different sub report based on that account's AccountProf value.  The sub reports take in the account number as a parameter
    and get multiple rows of data to display that accounts usage formatted differntly for each AccountProf (hence the 8 different sub report.  
    So far I can figure out how to do everything but setting the visibility property of each sub-reports when I have multiple accounts.  If I use the following expression for the visibility property on each sub report, it makes all the applicable sub report
    for all the accounts requested visible at once:
    =IIF(Fields!AccountProf.Value= "USE_PLUS_DMD",False,True)
    *The value in bold USE_PLUS_DMD  is different for each sub report.
    Here is a look at what the main report look like:
    Here is the main reports data set:

    Hi JasonDWilson77,
    According to your description, there is a main report and 8 sub reports in the report, you want to set visibility of sub reports, if no value is passed to the parameter of sub report, the sub report will not be displayed. If that is the case, please refer
    to the following steps:
      1. Create a new parameter named NewAccountNumber, set its data type the same as @AccountNumber, select Allow multiple values, set Visibility to be hidden, then set all available values to default values.
      2. Right-click the first sub report and open Subreport Properties dialog box, click Parameters in left pane, set name to AccountNumber, then click (fx) button, type the expression like below:
    =Parameters! NewAccountNumber(0)
      3. Click Visibility in left pane, select Show or hide based on an expression, then click (fx) button and type the expression like below:
    =IIF(InStr(Join(Parameters! AccountNumber.Value), Parameters!NewAccountNumber.Value(0))>0 , false,true)
      4. Modify parameter of other sub reports like step2.
      5. Set visibility of other sub reports like step3.
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • How to hide edit link for  some rows in report? (according to value of col)

    Helo,
    How to hide edit link for some rows in report? (according to value of column)
    regards
    siyavuş

    Hi siyavuş
    You can do this by taking the edit link off the report and putting it into your report SQL.
    Use something like Select CASE WHEN (condition)  THEN
    'Put your edit link in here as an html Anchor like<a href="(target)">Edit</a>'
    ELSE
    tt.value
    END edit_link
    FROM test_table tthope it helps,
    Gus..
    You can reward this reply (and those of other helpers) by marking it as either Helpful or Correct.
    This allows forum users to quickly find the correct answer.
    ;-)

  • How to develop a report for display unused materials

    how to develop a report for display unused materials? where can i find them?

    Hi Phani,
    I didnt get what u acually mean by unsued material. These are some sample materail types which u can find in table 'Mara'  field 'Mtart'.
    ABF  Waste                   
    AEM  Samples                 
    BLG  BLG Empties  External   
    BLGA BLGAEmpties  Fixed assets
    CH00 CH Contract Handling    
    COMP Prod. alloc., purchased 
    CONT KANBAN Container        
    COUP Coupons                 
    DIEN Service                 
    DOCU documentary batch       
    ERSA Spare parts             
    FERT Finished product(fert)  
    FGTR Drinks                  
    FHMI Prod. resources/tools   
    FOOD Foods (excl. perishables)
    FRIP Perishables             
    GR01 material type 01        
    GR02 material type 02        
    HALB Semi-finished product   
    HAWA Trading goods           
    HERS Manufacturer parts      
    HIBE Operating supplies      
    IBAU Maintenance assembly    
    INTR Intra material          
    KMAT Configurable material   
    LEER Empties                 
    LEIH Returnable packaging    
    LGUT Empties (retail)        
    MODE Apparel (seasonal)      
    NLAG Non-stock material      
    NOF1 Nonfoods                
    PIPE Pipeline material       
    PLAN Trading goods (planned) 
    etc.
    ex:
    select * from mara where mtart = 'ABF'.
    Regards,
    Kiran B

  • Scripting for different numbers of table rows in cs3

    As always thank you for the help.
    My question: is there a simple newbie way to script for stroke placements when the numbers of rows in the category between the stroke will vary. I have not even attempted to script this style, as frankly I don't know where to start, but here is an explanation of what I need:
    The table foodstuff contains:
    animal, vegetable, fruit
    Under animal there is:
    beef, lamb, pork, poultry
    Under vegetable there is:
    potato, pepper, onion
    Under fruit there is:
    orange
    If wanted a line under each category, ie after poultry, after onion, and after orange how would I go about it.
    Thank you to all who have helped me so far, either by reading answers to other people's queries, or by responding directly to my own

    Interesting ... I don't think there is a newbie-level answer to this challenge. It comes down to finding the first (left-to-right) cell that contains text, and adding a line on top of it all the way to the last cell in that row.
    Here's a first attempt:
    table = app.selection[0];
    if (table.hasOwnProperty("baseline"))
    table = table.parent;
    if (table instanceof Cell)
    table = table.parent;
    if (table instanceof Column)
    table = table.parent;
    if (table instanceof Row)
    table = table.parent;
    if (table instanceof Table)
    table.cells.everyItem().properties = {topEdgeStrokeWeight:0, bottomEdgeStrokeWeight:0, leftEdgeStrokeWeight:0, rightEdgeStrokeWeight:0};
    table.rows.lastItem().bottomEdgeStrokeWeight = 1;
    for (r=0; r<table.rows.length; r++)
      for (c=0; c<table.rows[r].cells.length; c++)
       if (table.rows[r].cells[c].contents)
        for (; c<table.rows[r].cells.length; c++)
         table.rows[r].cells[c].topEdgeStrokeWeight = 1;
        break;
    } else
    alert ("You were supposed to be somewhere inside a Table");

  • Alv report for multiple record insertion

    hi,
    i'm new to abap. i'm using alv report for record display and insertion. how can i insert multiple records from alv to my table??

    well that can be achieved only by running BDC inside alv report to enter the entries.and in that too you can append or edit single entries only
    reward if useful
    regards
    vivek

  • Handling Conditions for Add/Copy/Insert Rows

    Insert Row, Copy Row Contents etc. get trapped in the "Data Change" Event.
    My requirement is as follows,
    When the user clicks on Add Row (from the toolbar). I have to display a Pop up, and accept an input. If the the input at the Pop up screen is valid, according to standard ALV functionality, a new row is inserted into the displayed table. BUT if the user input at the pop up is invalid, I need to exit the event WITHOUT inserting a new row.
    I have been able to display the pop up, accept user input and validate it, within the Data Change event. But I am unable to exit the event without a new row being added.
    I have tried manipulating the imported attributes (example clearing them etc) of the Data Change event, like good_cells, mod_cells etc. But even then a new row gets inserted into the display table.
    Can you please give me a solution?

    Hi Prasanjit,
    sorry that i couldn't get abck to you soon.
    see in general the ON_DATA_CHANGED event will get fired for the following conditions :
    1) when you double click on a particluar row
    2) when press F4 and choose a value
    3) when you enter a value and DBLclick on the same.
    In your case if you click on ADD rows and if you find that it triggers this event then you shoe your POP-up screen and ask the user for the accept or reject. based on his answer you set a flag(global) which will be used to add rows. once if this flag is set then call your screen used for ALV(OO-ALV).
    Now in the PBO of this screen you check this flag as whether it is set or not, if set then add a blank row to your output internal table passing to ALV and clear this flag.
    following changes to the code needs to be made :
      METHOD on_data_changed.
        DATA: is_cells TYPE lvc_s_modi.
    do your necessary pop-up application and set the flag *** based on the  user's approval.
        if user apporves then
        ws_flg_add = 'X'.
        endif.
        if ws_flg_add eq 'X'.
        call screen 200.
        endif.
      endmethod.
    Now in the PBO of the screen 200 do the necessary changes:
      if my_container is initial.
    called when the screen is called for the first time
        create object my_container exporting container_name =      'CONTAINER'.
        create object my_application.
        SET HANDLER lcl_event=>on_f4 FOR ALL INSTANCES.
        SET HANDLER lcl_event=>on_data_changed FOR ALL
        INSTANCES.
        call method my_application->display.
        else.
    called when the event gets trigerred.
        call method my_application->display.
      endif.
    inside the method display i have checked the field and added a new row to the output table.
      method display.
    prepare fieldcatalog
        CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
             EXPORTING
                  i_structure_name = 'EGERH'
             CHANGING
                  ct_fieldcat      = gt_fieldcat.
         CALL METHOD my_grid->set_ready_for_input
               EXPORTING
                 i_ready_for_input = 1.
    added a extra row.
        if ws_flg_add eq 'X'.
          clear gs_outtab.
          append gs_outtab to gt_outtab.
          clear ws_flg_add.
        endif.
    set table for first display
        CALL METHOD my_grid->set_table_for_first_display
          EXPORTING
           i_structure_name = 'EGERH'
            is_layout        = gs_layout
          CHANGING
            it_outtab        = gt_outtab[]
            it_fieldcatalog  = gt_fieldcat.
      endmethod.
    this was a simple way and there are some other options.
    Regards,
    Jagath.

Maybe you are looking for

  • Unable to save lookup field data in SharePoint 2013 online list

    Dear Support, I had successfully created provider hosted app and deployed on SharePoint 2013 online site, in my project I created orderservice.asmx.cs web service and write a code for save record on SharePoint 2013 online list as I mentioned below an

  • Optical drive troubleshoot

    Hello, I have a 15 inch late 2011 mac book pro with mac os x 10.7.3. It seems my optical drive is no longer coopreating, any suggestions how I can restore it? Many thanks, Caroline Eriksson

  • Check for Greivence

    Hi all, I have to put a check on infotype 0102 - Grevience, on fields, Grevience number and stage ( p0102-GRNUM and p0102-GRSTG) as mentioned below . 1) If a user copies any existing record, and changes any field other than the grevience number and s

  • Standard form name for QM01 and QM02 ?

    Hi, Can someone tell me the standard form form name (print program) for transaction QM01 ? How do I find standard form name for any transaction ? Prompt replies will be awarded. Tushar.

  • Premiere Pro CS5.5 and H.264/AVC video import issues

    Hello! I'm on Windows 7 Ultimate x64 and using Premiere Pro CS5.5. I record HD videos using a Canon EOS 7D in .mov format. I don't have any issues importing these files to Premiere, but I do have problems with the convered equivalents. I'm currently