We received a request to add one field in report

we received a request to add one field in report
Requirement given: ZINVB4P_UOP - Acct Payable Rpt - Blocked for Paymt note:  add the scheduled due date near the invoice date. This report is a little different then in legacy and has way too much data so if you could create an new radio button to make it match legacy for standadizaiton that would be great. 
In the above requirement i under should that one field need to added and the other one " This report is a little different then in legacy and has way too much data so if you could create an new radio button to make it match legacy for standadizaiton that would be great." which i cannot understand the requirement. can you explain me what need to be done. based on that i will work.

Hi Priya,
I can not modify the query in code as it asks for the access key.
Thanks,
VIMAL

Similar Messages

  • Add one field on the screen.

    hi ,everybody.
    i want to add one field on the progam SAPMV10A,it is VD05,The screen number is 300.the field name is TVLV-ABRVW.How can i do,thank you.

    Check here:
    SPRO --> Financial Accounting --> Accounts Receivable and Accounts Payab;e --> Customer Accounts -> Master data --> Preparations for creating customer master data --> Adoption of Customer's own master data fields --> Businees Add-in:....

  • Add one field in standard report

    Hi all,
    I want to add one field in the standard report WS_MONITOR_OUTB_DEL_FREE.
    For this I didn't find any User exit or BADI? What is the procedure to add the field in the standard report
    regards,
    Rama

    Hi Ram,
    it would be very difficult for you to find an enhancement for such a requirement.
    Though i can suggest you to do following analysis and then decide.
    See which version you are using if you are using ECC5.0 or above you can use implicit enhancement to append field to the final structure of your report as using implicit enhancement you can add fields to structures.
    then find another implicit enhancement to populate this field in your structure.
    thanks

  • How can i add one field in the container for the standard task-90310004?

    Hi,
    Please let me know thw steps to add one field in the container for the standard task-90310004.
    Usefull suggestions will be rewarded.
    Regards,
    Neslin.

    <b>Hi,
    Containers are used for holding Application data for Workflow purposes.
    Event container
    Task container
    Workflow container
    Role container
    Binding is the linking of data from one container to the other for making data available all across the workflow.
    But you can get values from one container to another container like this
    Container(Con)
    1. WF Con to Role, Wf con to task con, Wf con to event
    and
    2. Event con to wf con, task con to wof con
    and
    3. Method con to task con
    and
    4. Task con to method con
    So, we don't have direct possible binding from task con to task con.
    Thanks and Regards,
    Prabhakar Dharmala</b>
    Message was edited by:
            Prabhakar Dharmala
        But you can do pass values from first task con to wf con and again from wf con to another task con

  • Add one field in LM51 ( while LM51) system should ask Material Scan

    HI gurus ,
    I  am carring out WM inventory through RF device for that,
    1.     I want to add one field in LM51 ( while LM51) system should ask Material Scan.
    2.     In LM51 system ask SUT twice this time,
          if i enter the SUT ones & save the entry then system pick direct system quantity .
    i want one check over here.
    CAN any body guide me ,
    Answer of any problem is helpful for me.
    dev

    Have you searched in SCN / Google how to add a new field in field catelogue?  Since you have recently joined SCN, you may not be aware of SCN rules which you better go through to your right screen where it has been very clearly indicated that posting any basic or repeated query is not allowed.
    G. Lakshmipathi

  • Need to add one field in MM02

    Hi ,
    I need to add one field in MM02 screen.
    Can u help me in this please.
    I need to do this by using screen exit ,how to do this?
    can u......
    Regards,
    Kalidas

    Hi Kalidas,
    Selection Text: P_TCODE: Transaction Code to Search
    Text Symbols: 001 - Enter the Transaction Code that you want to search through for a User Exit
    REPORT z_find_userexit NO STANDARD PAGE HEADING.
    *&  Enter the transaction code that you want to search through in order
    *&  to find which Standard SAP User Exits exists.
    *& Tables
    TABLES : tstc,     "SAP Transaction Codes
             tadir,    "Directory of Repository Objects
             modsapt,  "SAP Enhancements - Short Texts
             modact,   "Modifications
             trdir,    "System table TRDIR
             tfdir,    "Function Module
             enlfdir,  "Additional Attributes for Function Modules
             tstct.    "Transaction Code Texts
    *& Variables
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    *& Selection Screen Parameters
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    *& Start of main program
    START-OF-SELECTION.
    Validate Transaction Code
      SELECT SINGLE * FROM tstc
        WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
      IF sy-subrc EQ 0.
        SELECT SINGLE * FROM tadir
           WHERE pgmid    = 'R3TR'
             AND object   = 'PROG'
             AND obj_name = tstc-pgmna.
        MOVE : tadir-devclass TO v_devclass.
        IF sy-subrc NE 0.
          SELECT SINGLE * FROM trdir
             WHERE name = tstc-pgmna.
          IF trdir-subc EQ 'F'.
            SELECT SINGLE * FROM tfdir
              WHERE pname = tstc-pgmna.
            SELECT SINGLE * FROM enlfdir
              WHERE funcname = tfdir-funcname.
            SELECT SINGLE * FROM tadir
              WHERE pgmid    = 'R3TR'
                AND object   = 'FUGR'
                AND obj_name = enlfdir-area.
            MOVE : tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
    Find SAP Modifactions
        SELECT * FROM tadir
          INTO TABLE jtab
          WHERE pgmid    = 'R3TR'
            AND object   = 'SMOD'
            AND devclass = v_devclass.
        SELECT SINGLE * FROM tstct
          WHERE sprsl EQ sy-langu
            AND tcode EQ p_tcode.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
        20(20) p_tcode,
        45(50) tstct-ttext.
        SKIP.
        IF NOT jtab[] IS INITIAL.
          WRITE:/(95) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
          WRITE:/1 sy-vline,
          2 'Exit Name',
          21 sy-vline ,
          22 'Description',
          95 sy-vline.
          WRITE:/(95) sy-uline.
          LOOP AT jtab.
            SELECT SINGLE * FROM modsapt
            WHERE sprsl = sy-langu AND
            name = jtab-obj_name.
            FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
            WRITE:/1 sy-vline,
            2 jtab-obj_name HOTSPOT ON,
            21 sy-vline ,
            22 modsapt-modtext,
            95 sy-vline.
          ENDLOOP.
          WRITE:/(95) sy-uline.
          DESCRIBE TABLE jtab.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No of Exits:' , sy-tfill.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'No User Exit exists'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'Transaction Code Does Not Exist'.
      ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    Kindly Reward Points If You Found The Reply Helpful,
    Cheers,
    Chaitanya.

  • Add one field in ME2L T-code (program RM06EL00)

    hello all,
    I am new in sap.
    I want to add one field in program RM06EL00 ,tcode is ME2L and field name is zzstatus at last in report.
    i have check everything in program but i not able to find.
    please help me in which place(internal table) i have to add this field.
    Thanks
    SV

    Can anybody help me....
    Thanks
    SV

  • How to add new fields in report painter without library

    Hi,.
    I have to add new fields in report painter(std one) which is not in any library and so I am not able to add the fields in characteristics. Though I have added zfields in CCR1S but I am not able to add these fileds in characteristics in report painter(say - CJe3 t-code)
    How to procedd for this.
    Thanks,
    MOhan

    hi,
    first i copied the report 12KST1G in my Y12KST1G with form. In CJE2 when i Click this report then in the whatever fields coming in the characteristics we can put it in 'variables' tab and these will be the fields which is displayed on the selecton screen. So after doing the wbove changes in the exit , I am not able to get the fields in characteristics vale so that I can put it in variable. or do we have to do some chnages in the screen for this z report which is like std. one.
    FYI..The display of the fields was done in z-report with library but this is like a report without library and we did some chnages in the exit.
    Pls Suggest

  • Adding one field in report display-T-Code COIO

    Hi All,
             I want to add one field in display o/p.
    Current o/p is
    Order        MRP PrS Plnt Type    System Status Order quantity        Basic star Basic fin. System Status
    100135344    804 001 0003 ZP01    REL  PCNF DLV  PRC  APG  APGS APRS BASC*          289.691 
    + Items
    +Operat./phases
    I need to add Bacth no b/w system status and order quantity field.Batch no can have muliple entries.
    You can refer from T-Code - COIO .It's hierarichal Report.
                Please let me know how to go ahead.
    Rgds,
    Raghav

    Hi,
       In this report,
    1. find out the final table for display.
    2. add ur custom fields in that table using appending structure.
    3. find out correct enchance spot or BADI,...etc...before diaply(befor calling FM REUSE_GRID_DISPLAY or method  SET_TABLE_for_display or..etc).
    4. in that enchance spot or badi u can write ur logic.
    Regards,
    Ramesh.

  • Need to add one field in standard structure???

    Hi Experts,
    I wanted to add one Z-field in standard structure. Anybody will suggest me how to do that step by step??

    open the table in se11 and press append structure in application tool bar
    press create button on pop up window.
    give the append name and include the fields u required.
    Yes, you can add the extra fields to the standard table.
    Create Z-Structure with the fields needed and append the structure to the standard table by using the option append structure within table display
    we can enhance the standard tables by using Append structures and customizing includes.
    Append structures allow you to attach fields to a table without actually having to modify the table itself. Table enhancements using append structures therefore do not have to be planned by SAP developers. An append structure can only belong to exactly one table.
    In contrast, CI_includes allow you to use the same structure in multiple tables. The include statement must already exist in the SAP table or structure. Table enhancements using CI_includes do, however, have to be planned by SAP developers
    regards.
    Rahul
    reward if useful

  • I need to add one field Pers. sub area for Actions screen

    Normally, we will have Position, Pers. area, Emp group and Emp sub group in Actions screen. Now I want to add one more field to that screen, what is the navigation?
    Can anybody help me please.
    Regards,
    Pavani.

    hi,
    pavani. If i understood right, you need to add a field which is not listed in the module pool related to the screen you have to create a new field, here you can hide or make optional or intialize the field for the info types the table no T588M.
    let me know whether this is correctly answered or not
    regards,
    madhu

  • Add new fields in report of MCSI - User Defined Analysis

    I have an info structure for SIS, which will display the statiscal key figures of sales documents (orders, billing, credit memo etc) drilldown by Customer, Sales Organization, and Material. Currently the user requested to add some materials information, Size/ Dimension for example, in this report. How can I do this? Any idea?

    thanks Eduardo So mush .
    but u asked for any enhancement or exit to add customized field 
    thanks for your help .
    Edited by: mohamed medhat on Oct 17, 2011 8:44 PM

  • Add Custom fields in Report Incident Screen in EHSM

    Hello experts,
    I want to add custom fields like Notification No. and division in Report Incident screen in EHSM.
    I have added two fields.
    Business Object: EHHSS_INCIDENT
    Node: BASIC_INFO_ALL
    Structure: INCL_EEW_EHHSS_INC_BINFA_D (added two fields using append structure)
    Now how can i link with my screen and how to fetch notification data (standard F4 help)?
    and when i save data, where it will save?
    Can you guide me with proper steps for it as i am new in it.
    Thanks in advance.

    Hi Jayvin,
    To add the above fields on the screen, open the component configuration of the required screen.
    Enhance the same and add the fields from the respective Node.
    You did not worry about saving the data, once the fields are placed on the screen it will get save on click of save/ on event of save.
    Regards,
    Sanket.

  • How To Add new fields in report ( S_ALR_87012026 ) output

    Dear All Experts , ..
    I want to add  Asset  text description in the out but layout of report   S_ALR_87012026
    please um really need a help
    thanks for advance .

    thanks Eduardo So mush .
    but u asked for any enhancement or exit to add customized field 
    thanks for your help .
    Edited by: mohamed medhat on Oct 17, 2011 8:44 PM

  • Want to add 2 fields in report ARXAGMW.rdf

    Hi,
    I want to add to fields in the report ARXAGMW.rdf.
    The fields are:
    - ps.trx_date transactiedatum, --transactiondate
    - ps.amount_due_original factuurbedrag, --transactionamount
    I changed the function below. I pasted not the whole code.
    But when i run the report i get the error:
    MSG-01001: after build_invoice_select
    ORA-01789: query block has incorrect number of result columns
    ==> select rpad ( 'a' , 50 , '-' ) cust_name_inv , rpad ( 'a' , 30 , '-' ) cust_no_inv , rpad ( 'a' , 4000 , '-' ) sort_field1_inv , rpad ( 'a' , 4000 , '-' ) sort_field2_inv , 0 inv_tid_inv , 0 contact_site_id_inv , rpad ( 'a' , 60 , '-' ) cust_state_i
    FUNCTION BUILD_INVOICE_SELECT
    RETURN LONG IS
    l_inv_sel LONG;
    l_inv_sel1 LONG;
    l_inv_sel2 LONG;
    l_inv_sel3 LONG;
    l_inv_sel4 LONG;
    l_inv_sel5 LONG;
    new_line VARCHAR2(10) := '
    BEGIN
    -- BUILD FIRST SELECT STATEMENT
    srw.message('1000','inside build_invoice_select');
    srw.message('1001','*** BUILDING SELECT #1 All outstanding transactions ***');
    l_inv_sel1 :=
    'select substrb(party.party_name,1,50) cust_name_inv,
    cust_acct.account_number cust_no_inv,';
    l_inv_sel1 := l_inv_sel1 || new_line;
    if (:p_rep_type = 'ARXAGS') then
    l_inv_sel1 := l_inv_sel1 || 'decode(upper(:p_in_sortoption),''CUSTOMER'',NULL,
    arpt_sql_func_util.get_org_trx_type_details(ps.cust_trx_type_id,ps.org_id))';
    elsif (:p_rep_type = 'ARXAGL') then
    l_inv_sel1 := l_inv_sel1 || 'col.name';
    elsif(:p_rep_type = 'ARXAGR') then
    l_inv_sel1 := l_inv_sel1 || 'sales.name';
    elsif(:p_rep_type = 'ARXAGF') then
    l_inv_sel1 := l_inv_sel1 || :lp_accounting_flexfield;
    end if;
    l_inv_sel1 := l_inv_sel1 ||
    ' sort_field1_inv,' || new_line;
    l_inv_sel1 := l_inv_sel1 ||
    'arpt_sql_func_util.get_org_trx_type_details(ps.cust_trx_type_id,ps.org_id) sort_field2_inv,' || new_line;
    if (:p_rep_type = 'ARXAGS') then
    l_inv_sel1 := l_inv_sel1 ||
    'decode(upper(:p_in_sortoption),''CUSTOMER'',-999,ps.cust_trx_type_id)';
    elsif (:p_rep_type = 'ARXAGL') then
    l_inv_sel1 := l_inv_sel1 || 'col.collector_id';
    elsif(:p_rep_type = 'ARXAGR') then
    l_inv_sel1 := l_inv_sel1 || 'nvl(sales.salesrep_id, -3)';
    elsif(:p_rep_type = 'ARXAGF') then
    l_inv_sel1 := l_inv_sel1 || 'c.code_combination_id';
    end if;
    l_inv_sel1 := l_inv_sel1 || ' inv_tid_inv, ';
    l_inv_sel1 := l_inv_sel1 ||
    ' site.site_use_id contact_site_id_inv,
    loc.state cust_state_inv,
    loc.city cust_city_inv,
    decode(:format_detailed,NULL,-1,acct_site.cust_acct_site_id) addr_id_inv,
    nvl(cust_acct.cust_account_id,-999) cust_id_inv,
    ps.payment_schedule_id payment_sched_id_inv,
    ps.class class_inv,
    ps.due_date due_date_inv,
    amt_due_remaining_inv,
    ps.trx_number invnum,
    ceil(to_date(:as_of_date) - ps.due_date) days_past_due,
    ps.amount_adjusted amount_adjusted_inv,
    ps.amount_applied amount_applied_inv,
    ps.amount_credited amount_credited_inv,
    ps.gl_date gl_date_inv,
         ps.trx_date transactiedatum,
         ps.amount_due_original factuurbedrag,
    decode(ps.invoice_currency_code, :functional_currency, NULL,
    decode(ps.exchange_rate, NULL, ''*'', NULL)) data_converted_inv,
    nvl(ps.exchange_rate, 1) ps_exchange_rate_inv, '
    l_inv_sel1 := l_inv_sel1 ||
    ' arpt_sql_func_util.bucket_function(:bucket_line_type_0,
    dh.amount_in_dispute,ps.amount_adjusted_pending,
    :bucket_days_from_0,:bucket_days_to_0,
    ps.due_date,:bucket_category,to_date(:as_of_date)) b0_inv,
    arpt_sql_func_util.bucket_function(:bucket_line_type_1,
    dh.amount_in_dispute,ps.amount_adjusted_pending,
    :bucket_days_from_1,:bucket_days_to_1,
    ps.due_date,:bucket_category,to_date(:as_of_date)) b1_inv,
    arpt_sql_func_util.bucket_function(:bucket_line_type_2,
    dh.amount_in_dispute,ps.amount_adjusted_pending,
    :bucket_days_from_2,:bucket_days_to_2,
    ps.due_date,:bucket_category,to_date(:as_of_date)) b2_inv,
    arpt_sql_func_util.bucket_function(:bucket_line_type_3,
    dh.amount_in_dispute,ps.amount_adjusted_pending,
    :bucket_days_from_3,:bucket_days_to_3,
    ps.due_date,:bucket_category,to_date(:as_of_date)) b3_inv,
    arpt_sql_func_util.bucket_function(:bucket_line_type_4,
    dh.amount_in_dispute,ps.amount_adjusted_pending,
    :bucket_days_from_4,:bucket_days_to_4,
    ps.due_date,:bucket_category,to_date(:as_of_date)) b4_inv,
    arpt_sql_func_util.bucket_function(:bucket_line_type_5,
    dh.amount_in_dispute,ps.amount_adjusted_pending,
    :bucket_days_from_5,:bucket_days_to_5,
    ps.due_date,:bucket_category,to_date(:as_of_date)) b5_inv,
    arpt_sql_func_util.bucket_function(:bucket_line_type_6,
    dh.amount_in_dispute,ps.amount_adjusted_pending,
    :bucket_days_from_6,:bucket_days_to_6,
    ps.due_date,:bucket_category,to_Date(:as_of_date)) b6_inv,';
    l_inv_sel1 := l_inv_sel1 || :lp_acct_flex_bal_seg || ' company_inv,';
    l_inv_sel1 := l_inv_sel1 || :lp_query_show_bill || ' cons_billing_number, ';
    l_inv_sel1 := l_inv_sel1 || ' arpt_sql_func_util.get_org_trx_type_details(ps.cust_trx_type_id,ps.org_id)'
    || ' invoice_type_inv ';
    IF upper(:p_mrcsobtype) = 'R' then
    l_inv_sel1 := l_inv_sel1 ||
    ' from hz_cust_accounts cust_acct,
    hz_parties party, ';
    /*Bug 3487101 : Incorporated the logic of COMP_AMT_DUE_REM_INVFORMULA() in the main query itself */
    l_inv_sel1 := l_inv_sel1 ||
    '(select a.customer_id,
    a.customer_site_use_id ,
    a.customer_trx_id,
    a.payment_schedule_id,
    a.class ,
    sum(a.primary_salesrep_id) primary_salesrep_id,
    a.due_date ,
    sum(a.amount_due_remaining) amt_due_remaining_inv,
    a.trx_number,
    a.amount_adjusted,
    a.amount_applied ,
    a.amount_credited ,
    a.amount_adjusted_pending,
    a.gl_date ,
              a.trx_date ,
    Where do i have to add to two fields?
    Regards,
    thijs

    This code is not formatted and therefore very hard to read. Please use the <pre></pre> tags to format code.
    Error: ORA-01789: query block has incorrect number of result columns
    Cause: You tried to execute a SELECT statement (probably a UNION or a UNION ALL), and all of the queries did not contain the same number of result columns.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for