Add new virtual characteristic in report writer

Dear gurus,
I would like to add a new virtual characteristic 'ZZWKDT' (work done date) so that I can filter my report with this selection criteria. This field has been added to structure "CI_CCR1S". But I don't have any idea on where should I code my program in order to tell the system to fill the "Work done date" from the data I retreived and filter tthose record which not meet with user selection from being displayed.
Pls guided me accordingly asap.
Thanks & regards,
LOI

Dear gurus,
I would like to add a new virtual characteristic 'ZZWKDT' (work done date) so that I can filter my report with this selection criteria. This field has been added to structure "CI_CCR1S". But I don't have any idea on where should I code my program in order to tell the system to fill the "Work done date" from the data I retreived and filter tthose record which not meet with user selection from being displayed.
Pls guided me accordingly asap.
Thanks & regards,
LOI

Similar Messages

  • Add New Column in ALV Report of Standard SAP ME28.

    Hi anybody,
    I want add new column in alv report of standard SAP Program ME28 Screen.
    Add Last PO Price column inside ALV Report ME28 Screen.
    Can u please anybody tell me how to add new column in ME28 Screen.
    Thanks
    S.Muthu.

    Try to find any BADI for the same
    Follow the below steps to find out what all BADI's are called when you press any button in any transaction.
    1) Goto se24 (Display class cl_exithandler)
    2) Double click on the method GET_INSTANCE.
    3) Put a break point at Line no.25 (CASE sy-subrc).
    Now
    4) Execute SAP standard transaction
    5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.
    6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.
    7) This way you will find all the BADIs called on click of any button in any transaction.
    OR
    Also one more option is to copy ME28 and, make modifications to the copied program.

  • Reg:HOw to add new charactersitics in standard report

    hi all
    HOw to add new charactersitics in standard report
    regards
    JK Rao

    You need to copy the std report and make necessary changes in the copied report. SAP does not allow changes to std report. The technical details of the report can be seen by selecting from the menu Extras - technical information. Select the library and Report name. Copy the same using t code GRR1. Carry out necessary changes and SAVE. Before execution, you will have to specify the report group in which report needs to be attached. You can choose and existing group or specify a new one.
    Regards
    Rakesh Pawaskar

  • Add new column to System report

    Hi experts!
    Can i add new column  to System Report ( Ex: Inventory Status, Agent Report which new Column as "Test") by SDK.)
    Please give me ideas.
    Thanks!

    Tien,
    Using SDK its not possible to add a new column to the existing system reports. As a work around what u can do is use the PLD to design a layout with the new column.
    Hope it helps,
    Vasu Natari.

  • Get error when add new object in crystal report

    hi
    i have this error "You are attempting to use functionality that falls under the Crystal Decisions Report Creation API license. This system does not have a valid license, or the evaluation copy of the license has expired. Please contact Crystal Decisions to obtain a Report Creation API license."
    when i add new object in crystal report with vb.net
    ""CRReport.Sections.Item(ii).AddTextObject("new text", 1000, 0)
    i do same program for 3 months ago but i lost it work without error
    ihave a license key for crystal report
    use cr10 with vb.net 2005
    can help me
    thanks

    Also, check out the blog [Use of the Report Designer Component (RDC) in VS .NET|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414700)ID0468837450DB00359707053703393347End?blog=/pub/wlg/15939].
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Add new table in pricing report

    Hello,
    how is it possible to add a new pricing condition table to the pricing report? In transaction V/LB, the option ''Add table'' is not available.
    Thanks.

    you cannot add tables to the pricing report V/LB. you will have to delete the existing report and create a new one , and then you can add this new table.
    Regards
    Sai

  • Add new column to the report

    how can I add a new column to a report ?

    this the code for the trigger
    function BeforePForm return boolean is
    begin
    --     insert into test_java values(:p_order_by);
    --      commit;     
    --return true;
    IF Check_Access_For_Token(:p_Token, :p_Appmod_Code) THEN
         return (TRUE);
    ELSE
         srw.message(1, 'You do not have access to the report!');
         return (FALSE);
    END IF;
    end;
    please help I need this for today

  • How to add new field at standard report,?

    Hi expert,
    How do i find an easy way to add new field using this tcode  s_alr_87012332 ?

    Hi,
    In order to add a custom fields , please chech the enhancement MM06E005.
    Here, you can get includes in which you can place ur field.
    Hope this helps.

  • How to add new fields to standard reports

    hi friends,
                 im into ABAP and working across all modules..the basic thing is users and functional people are not satisfied with the standard reports..they need some logic change or to add some more fieldsinb the standard reports.For logic change we have to copy the standard to zprogram and can do or create a new program itself..but in many cases they ask for extra fields.how to achive it ..
    for example my requirement now is adding vendor name field to the report FAGGL03 ....i found a badi and have make changes to it ...now the vendor name will be coming in sgtxt over writing the text ...but they need text also...now what shall i do???
    append structure vendor name field in faglposx table ....???how to find out the final internal table from where the output is coming ????
    ?when we check the standard rewport codes...there are lot of include statements perform statements etc  ...how to find out the final structure or internal table which has the output values..???

    hi
    it would be better if u giv full name of the report
    if ur displaying the data in alv then search for the
    word REUSE_ALV_LIST_DISPLAY REUSE_ALV_GRID_DISPLAY from which u can get the final table name
    then check the data that is comming into
    try using implicit enhancement or any other exit in the declaration and declare a new structure with the field and append it to the field catalog
    if ur displaying the data using write statement
    then create a zprogram and add a write statement
    fi ur unable to find here the final table then after displayign the report start the debugging and double click on any row to find out more easily
    shiva

  • Add new line in ALV report on click of button...

    Dear All,
    How to add a new line for input in ALV report at runtime, on click of a button.
    Waiting for early and favorable reply.
    Regards,
    Dharmesh Vyas

    Hi,
    First of all u have to Create ur own PF-status and Assign Fcode e.g 'INSERTROW'.
    So, whenevr you will click Insertrow button it will be triggered in your User Command and then just Append the blank line in your Final Internal Table.
    And Refresh Icon will be there by default...
    To Trigger it You have to write rs_selfield-refresh = 'X'
    You can also follow the below link...
    Try it.
    Link:[http://wiki.sdn.sap.com/wiki/display/ABAP/ALVeasytutorial].
    Regards
    Arbind

  • Add new line in ALV report and Refresh button

    How to add a new line in a ALV report?
    How to add a refresh button in a report?

    Hi,
    First of all u have to Create ur own PF-status and Assign Fcode e.g 'INSERTROW'.
    So, whenevr you will click Insertrow button it will be triggered in your User Command and then just Append the blank line in your Final Internal Table.
    And Refresh Icon will be there by default...
    To Trigger it You have to write rs_selfield-refresh = 'X'
    You can also follow the below link...
    Try it.
    Link:[http://wiki.sdn.sap.com/wiki/display/ABAP/ALVeasytutorial].
    Regards
    Arbind

  • Add new field in the report VL06O - List outbound deliveries

    Hi,
    In the report VL06O -> List outbound deliveries, we have to add a new column that will show the INCOTERM (KNVV-INCO1). How can I do that please? using User Exit or a BADI? Which one?
    Thanks in advance.
    Saida.

    Hi,
    Exactly, this is the solution. Thanks a lot.
    In fact, we have to add this field to the structure LIPOV, use the user exit EXIT_SAPLV50Q_001 to get this field. But we must also execute the program BALVBUFDEL to set the system Buffers. Then the field will appear in the list of Hidden fields in the transaction VL06O.
    Saida.

  • Add New Virtual Network Interface to RRAS

    In the past (W2k3), adding an interface to the OS would also cause that interface to be added to RRAS.  I have a server running RRAS and it has multiple VMs running in Hyper-V.  I want to add an isolated VM that has a single port available from the Internet to that VM.  I have added an Internal Virtual Network and configured it with a static IP (in the host OS) (same configuration (except IP address) as my other virtual network interfaces).  The new interface does not show up in RRAS even after restart.  In W2k3, you could add an interface in the Network Interfaces area.  In W2k8, the only interface you can add is a demand-dial interface.
    In the past, I had to delete the RRAS server and reinstall it to see the new interface.  This is ugly as it removes, for an extended time, all of the mappings, filters, etc. that I have in place.
    Any ideas on how to manually add a new interface to RRAS either by registry, powershell, script, etc.?Pete

    I found a new way around this which should work for everyone, a twist on the existing registry solution:
    Open RegEdit.exe.
    Go to "HKLM\System\CurrentControlSet\Services\Tcpip\Parameters\Interfaces" where each of your network adapters (physical or virtual) has a GUID named sub-key. Identify which one is your network adapter (look at the IP or DHCP settings in the child key=values
    or configure a temporary address so you can find it). Now you have discovered the GUID. Click the GUID key then hit F2 to goto rename mode and highlight the whole key, hit CTRL+C to copy to the clipboard.
    Go to "HKLM\System\CurrentControlSet\Services\RemoteAccess\Interfaces". Add a new sub-key which is the next in sequence, for example I had 1...6 so I added "7". This is key add the following...
    A DWORD32 (32bit integer) called "Enabled" set to 1.
    A REG_SZ (string) called "InterfaceName" then paste your interface GUID, e.g. set to "{XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}".
    A DWORD32 called "Stamp" set to 0.
    A DWORD32 called "Type" set to 3 (LAN).
    Restart RRAS, the interface will appear!
    Right click each protocol, e.g. IPv4, IPv6 then you can right click "General" to add a "New Interface..." and your interface will then be enabled for that protocol.
    I'm happy I played around a bit more to find that now. But MS even though we have a solution which does not require us to lose our configuration, please fix the source of this problem!
    Key Artefacts

  • To add new characterstics to a report group

    Hi,
    We have created a report group under 601 library. Structure used is CCSS. But we need the field currency type to be added as a characterstic. Since it is not avialable in CCSS we are unable to do that.Please suggest a way.
    Thanks,
    Seema.

    Hi Shamia,
    Check these Tcode for Report painter,
    Report painter....
    GRR1, grr2, grr3
    GS11, 12, 13 for variable
    GS01, 01, 03 for sets
    GR51, 52, 53 for report group
    GR21, 22, 23 for library
    for export-import:
    -Any new variables (GS17 - Export ,GS18 - Import )
    -new sets (GS07 - Export ,GS08 - Import )
    -new report (GR37 - Export ,GR38 - Import )
    -new report group (GR57 - Export , GR58 - Import )
    -new library (GR27 - Export , GR28 - Import )
    [Report Painter|http://www.virtuosollc.com/PDF/Get_Reporter.pdf]
    Hope your problem solves.
    Thanks & regards,
    Dileep .C

  • Add new fields in customised report

    Hii
    I need custom report ZMPPORPT - List of Purchase Orders modify, I need two fields added to this report: KTMNG from table EKPO,  and WEMNG from EKET table.
    One is the target qty for a PO and the total receipts per line.They can be added to the end of the report.How should i go about it.

    Subhash,
    The nature of a customized report is that it was coded only for your company.  Although there are dozens of ways that the report could have been built, we don't know which way your report was written.  Furthermore, forum members are generally not inclined to manage your reports, even if we did technically understand their structure.
    I expect the report is written in ABAP (the programming language developed for SAP).  The standard ABAP object code editor is SE38, where you can make the appropriate changes required.  It is beyond the scope of this forum to teach you ABAP.  For that, I suggest you take a class, or perhaps buy one of the many ABAP books that exist.
    To fix your report today, though, I suggest you consult with your local ABAP resource.  If one is not available, then your company should engage the services of an external ABAP consultant, who should be able to serve your needs for a fee.  There are thousands of ABAP consultants out there looking for work.
    You might try posting your question on one of the more Techie forums. such as ABAP Development Maybe you will find someone there who is willing to teach you ABAP coding....
    Best Regards,
    DB49

Maybe you are looking for

  • Google Tasks Script

    I was looking for a way to access my Google Tasks, eventually to put into a widget for Awesome WM, so I created this script. it's based on http://privacylog.blogspot.com/2010/07/ - tasks.html but has some changes. That script created an e-mail that g

  • IPhoto Library folder in C:/...

    hi, can i change the iPhoto Library, which default install to C:\ to another Drive (D:\ E:\) thnx v

  • Query of multiple counts with conditions or multiple querys

    I have this demo table create table qtyrtu rtunam varchar2(10) not null, entity varchar2(10) not null, linked number(3) not null Insert into qtyrtu values ('02vh1', 'zdvh', 100); Insert into qtyrtu values ('02vh2', 'zdvh', 0); Insert into qtyrtu valu

  • Prepayment Invoices

    Hi Experts, Plz explain about Prepayment Invoices and how is it differ from 4.7 E to ECC 6.0 Regards Pratap

  • How to use example of directory 'JTA'

              Hi, I want to know how to use the example of the directory 'JTA'           uinder the directory of 'JTA' under tthe directory $WL/samples/example/jta           in order to test the JTA serveice of webloig server ( Futhermore,           Can