VF45 not populating report

For revenue recognition - I have maintained standard revenue recognition - but  when I run VF45 - no values are coming!!
Any help in this area will be appreciated
If someone could send the steps to setting it up, i could validate it with what i have done
We are using ECC 5.0
Message was edited by:
        Susan Elias

Can anyone respond to this.I need it very urgent

Similar Messages

  • System not populating any report in V_UC

    Hi all,
    i am runing report Incomplete Outbound Deliveries V_UC system not populating report can any one guide me where i am wrong
    while executing V_UC report.
    Thanks
    Ram

    Hi,
    Goto the t.code "V_UC".
    Ensure that correct SD document category is selected in the selection screen.
    Select I for "Order" or "J" for delivery etc...
    Goto the T.Code "0VLK".Select your delivery type.Details.
    Check what is the document category assigned to it.
    Maintain the same in "V_UC".
    Execute.
    Regards,
    Krishna.

  • Pl/sql report not populating output

    SQL> CREATE OR REPLACE PROCEDURE GET_RECORDS(v_action IN VARCHAR2) IS
      2  v_thing VARCHAR2(10);
      3  get_records SYS_REFCURSOR;
      4  BEGIN
      5   IF (v_action = 'DO THIS') THEN
      6   OPEN get_records FOR
      7   SELECT 1 FROM dual;
      8   ELSE
      9   OPEN get_records FOR
    10   SELECT 2 FROM dual;
    11   END IF;
    12 
    13  LOOP
    14   FETCH get_records INTO v_thing;
    15   EXIT WHEN get_records%NOTFOUND;
    16   /* do things */
    17  dbms_output.put_line(v_thing);
    18   END LOOP;
    19   CLOSE get_records;
    20  END;
    21  /
    Procedure created
    SQL> exec get_records ('DO THIS');
    1
    If I call this procedure it is populating data but , if I register it in oracle apps I am not getting data   can any one help
    also I  replaced dbms_output.put_line with fnd_file.put_line , still it is not populating data

    This seems to be like a SQL*Plus report. Please port this query in SQL*Plus community.

  • Report Painter values are not populating for a particular cost center

    Report Painter(GR55) values are not populating for a particular cost center for the months of April 1 2011 where as for May onwards values are displaying correctly..We have check the transaction code KSB1 for this cost center there are some values posted for the period of April..
    Can any one help me to find out where exactly the issue is and how to resolve the same..

    Please check your variables in your report.

  • 9.3.1 Hyperion Financial Report Formulas not populating

    I have a Financial Report that I built in Studio that has some if/then and custom formulas in it. When I try to add those columns or rows that have those formulas into a total column or row, the answer is blank. For some reason, the formula is either not recognizing the data, or not populating the answer because one or more of the cells I am adding is blank.
    Is there syntax I can put in the beginning of my formula so that if there is missing or error data in the cell(s) it ignores it?

    I had to add it after each cell reference in my formulas. Copy/paste helped.
    And by the way - there is a separate board for Reports that might get you faster response in the future.
    Hyperion Query and Reporting

  • Tabular form LOV's not populating correctly on edit from report

    My form has four LOV's and several text fields. Two of the LOV's will not populate (contains null value) from the report when i try to edit the row, however the other two Lov's populate correctly. Any ideas why i can't get the lov's to populate with the correct value from the report?
    each LOV is set to display null value as -- choose value -- with no return value. when i click edit from the report the form (page 2) comes up with the corresponding values from the report, but as i stated two of the LOV's contain -- choose value -- instead of the correct value from the corresponding reports row. All four LOV's items are set exactly the same 2 being static and 2 dynamic; one of each not populating right.
    any help would be greatly appreciated.

    Hi
    I've not used popup lovs in tabular forms for a few years now, but if your using the apex_item's to generate your tab form then I think you need to allow an idx number for the pass back value. e.g. (I have left idx value 2 for the pass back value)
    SELECT
    APEX_ITEM.POPUPKEY_FROM_LOV (1,deptno,'DEPT') dt,
    APEX_HIDDEN(3, EMPNO) en
    FROM emp
    I hope that helps
    Shunt

  • Data not populating after DS enhancement

    HI pros,
    i have made Data source enhancement.
    i wrote the code in include program.
    when '0FI_GL_40'.
      CHECK NOT c_t_data[] IS INITIAL.
      LOOP AT c_t_data ASSIGNING <fs_data5>.
      SELECT SINGLE matnr FROM bseg INTO <fs_data5>-ZZMATNR
                             where BUKRS eq <fs_data5>-BUKRS and
                                   BELNR eq <fs_data5>-BELNR and
                                   GJAHR eq <fs_data5>-GJAHR and
                                   BUZEI eq <fs_data5>-BUZEI.
    endloop.
    but the data not populating into the report, the Multi provider is real time
    krish..

    Hi,
    Syntax
    ASSIGN mem_area TO <fs> casting_spec range_spec.
    Effect
    This statement assigns the memory area specified using mem_area to the field symbol <fs>. You can assign a data object or a memory area calculated from the address of a data object. After the assignment, the field symbol refers to the assigned memory area and can be used in operand positions. When used in a statement, it behaves like a dereferenced data reference, meaning that the statement works with the content of the memory area.
    The data type with which the assgigned memory area is treated, depends on the specifications in casting_spec. You can either execute an explicit casting or the field symbol takes on the data type of the data object specified in the assignment. A field symbol to which a memory area is assigned, has this data type after the assignment and behaves like a data object of this type.
    The assigned memory area mem_area must be at least as long as the data type specified in casting_spec and must have the same alignment. If the data type determined in casting_spec is deep, the deep components with their type and position must appear in the assigned memory area exactly like this.
    Use the specifications in range_spec to restrict the memory area that can be assigned to the field symbol.
    You have to assign it back to internal table to modify the content.
    Check in debug mode if you have still doubt.
    regards,
    Raju

  • Virtual Characteristic value not populating in the query output

    Hi Experts,
    I am new to BAPI and I am using this to populate the values of virtual characteristics.
    I wrote the below code to populate if an order status got some status value then i need to populate the flag y if not n.
    I got the order value in the reprot. I need to go to order master data and should get the status and then i have to do the comparision and populate the flag zww_teco in the report.
    The below is the compute method of my implementation class.
    FIELD-SYMBOLS :
    <fs_0cs_order> TYPE ANY,
    <fs_zww_teco> TYPE ANY,
    <fs_status>  TYPE ANY.
    if p_cha_0cs_order > 0.
      ASSIGN COMPONENT p_cha_0cs_order OF STRUCTURE C_S_DATA to <fs_0cs_order>.
    endif.
    if p_cha_zww_teco > 0.
      ASSIGN COMPONENT p_cha_zww_teco OF STRUCTURE C_S_DATA to <fs_zww_teco>.
    endif.
    Select single /BIC/ZSYSTATUS
        from /BI0/PCS_ORDER into <fs_status>
       where CS_ORDER = <fs_cs_order>.
    if <fs_status> CP 'TECO'.
      <fs_zww_teco> = 'Y'.
    else.
        <fs_zww_teco> = 'N'.
    endif.
    But I am not sure why the values are not populated. But when i debug , i could see the values for
    P_cha_0cs_order = 35
    p_cha_zww_teco = 54
    But i could get the values of <fs_0cs_order>, <fs_zww_teco> after assign component statement.
    And it is firing me a dump in select statement. Also when I click c_s_data i am getting S____274, S____505 fields like that in the structure but i could see p_cha_0cs_order
    Can you please guide where i am missing ...
    Thanks
    Vamsi
    Edited by: vamsi talluri on Nov 9, 2011 6:14 PM

    Hi Sushant,
      RSRT --> Enter Query Name
    Click on Technical Information --> If " Virtual Char./Key Figures " = Y
    In my case , even then i clciked generate report,
    even after that P_CHA_0CS_ORDER = 35
    and after assign component P_CHA_0CS_ORDER of structure c_s_data to <FS_0CS_ORDER>.
    the <FS_0CS_ORDER> is nothing , here i should get the value of cs_order value of that record but it is coming empty which i am not able to rectify. How should i change or i need to put any other setting to get the value populated into my <FS_0CS_ORDER>.
    Can you please guide me .
    Thanks
    Vamsi

  • Unit Cost is not Populating in Sales Order Line Level for OPM Enabled Org

    Dear All,
    This is to inform you that Unit Cost is not populating in Sales Order Lines. Ideally it should pick from OPM financials, but whenever i am running Cost Update it is throwing error. We need to pull out Unit Cost for Sales Analysis Report. Please suggest on the same ASAP. What are the steps needs be followed to populate the Unit Cost. Please suggest.
    Thanks & Regards,
    Patrick

    Hi
    I think it will pick from PRICE list. Why don't to you try by keeping this item in the mentioned Price list.
    Regards
    Raj

  • AP_PAY_SINGLE_INVOICE_PKG.AP_PAY_INVOICE_IN_FULL not populated Bank_account_num

    Hi all,
    After calling below API Bank_account_num not populated in AP_CHECKS_ALL and AP_INVOICE_PAYMENTS_ALL tables.
    AP_PAY_SINGLE_INVOICE_PKG.AP_PAY_INVOICE_IN_FULL
    Anyone Can you help me on this issue...............

    Thanks for your info.
    1. While trying to update Liability account at Supplier Site level (for employee), we are getting invalid combination error.
    2. In the expense report form, at header level, we have field called 'GL account' and there is NO field for Accts_Pay_Code_Combination_Id.
    3. We have downloaded the expense form and found that there is no code to default the value for 'Accts_Pay_Code_Combination_Id'. May be this is coded in some library.
    regards
    Yj

  • Invoice output Condition type not populated for many invoice documents

    Hi Guru's
    Invoice  Out put Condition  type for printing  not populated in the invoice document. Now We need to insert condition type for many  documents to print at a time. We can manually place condition type  at document header level individually for every document. But we have many documents to print.
    plz advice me how to print all these documents
    Thanks in advance.
    Regards,
    Ravikanth

    Hi Ravi
    Just take help from your ABAP team. Record the event in SHDB ask then to get invoice number from excel file and loop the program.
    This will be more faster then LSMW.
    I am giving you BDC code
    report ZBILVF02
           no standard page heading line-size 255.
    include bdcrecx1.
    start-of-selection.
    perform open_group.
    perform bdc_dynpro      using 'SAPMV60A' '0101'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'VBRK-VBELN'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'VBRK-VBELN'
                                  '90010310'.
    perform bdc_dynpro      using 'SAPMV60A' '0104'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'VBRK-FKART'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=SICH'.
    perform bdc_transaction using 'VF02'.
    perform close_group.
    Regards
    Vijay

  • Process scheduler server list is not populating in SERVER LIST page.

    Need urgent help.
    We have PeopleSoft Campus Solution 8.52,9.0 application. We had two Process Scheduler server one in Linux and one in NT. There was one issue that all the jobs which processed were getting into success and reports were also posted,however it was not updating the database with data. In order to solve it I created a new Process Scheduler server at onther NT machine. This time when I navigated to Process Monitor --> Server List pages it has no data there. I ran COBOL job but it went to successful and report posetd but nothing was updated into the database.
    Please help me out of this situation.
    Thanks
    Vikrant

    Thanks a lot RCC for your response.
    There is actually three issues
    1)Process Monitor Server List page has no data.
    2)As I go to run a process in the system process request I see that the Server Name,Reccurence,Type and Format are not workin or they are disabled.
    3)Cobol jobs which I am running through PSNT is not updating database,however the Process is getting successful and reports are having posted status,but when I go to see Reports it is not having any output file its blank.I tried to check the reports at webserver,there were also no reports were published,However it works properly for all other Process.
    For the first problem it has got resolved the solution is in this "Process Monitor Server List Not Populating With Data (Doc ID 615323.1)"( for those who face this problem in future :)).
    For your query RCC, I have named same name of PSNT which was earlier in the different machine.
    Please help
    Thanks
    Vikrant.

  • Values not populated in S_ALR_87012806 for a specific cost element

    Hi all,
    Postings made to specific cost element are not populated in report S_ALR_ 87012806. Can anyone throw some light on this?
    Thanks
    Shravan

    Hi Krishna
    I dont think "Cost Accounting > LIne Item" would work for Master Data
    You can use exit COOPA_01 (SMOD) > Include ZXAUFU08 (Part of EXIT_SAPLKOAU_002)... I have used this for similar purposes in the past
    Regards
    Ajay M
    Edited by: Ajay Maheshwari on Nov 12, 2010 12:45 PM

  • V$ACTIVE_SESSION_HISTORY not populating

    Hi,
    V$ACTIVE_SESSION_HISTORY & DBA_HIST_ACTIVE_SESS_HISTORY are not populating after a recent shutdown of instances.
    DBA_HIST_ACTIVE_SESS_HISTORY holding some data until the instance shutdown time and V$ACTIVE_SESSION_HISTORY is blank.
    Both these views were fine before the instance shutdown. As per my recent post, I am also facing problem with AWR report; populates with missing fields and with WARNING (-20023) ORA-20023:
    Database is in good health and performing fine.
    Thanks

    Please fllow these steps to see if your ASH is working fine:-
    ASHis accessed most comfortable with the Enterprise Manager GUI from the Performance Page (Button ASH Report there). Or with little effort from the command line like this:
    -- Top 10 CPU consumers in last 5 minutes
    SQL> select * from
    select session_id, session_serial#, count(*)
    from v$active_session_history
    where session_state= 'ON CPU' and
    sample_time > sysdate - interval '5' minute
    group by session_id, session_serial#
    order by count(*) desc
    where rownum <= 10;
    -- Top 10 waiting sessions in last 5 minutes
    SQL> select * from
    select session_id, session_serial#,count(*)
    from v$active_session_history
    where session_state='WAITING' and
    sample_time > sysdate - interval '5' minute
    group by session_id, session_serial#
    order by count(*) desc
    where rownum <= 10;
    These 2 queries should spot the most incriminating sessions of the last 5 minutes. But who is that and what SQL was running?
    -- Who is that SID?
    set lines 200
    col username for a10
    col osuser for a10
    col machine for a10
    col program for a10
    col resource_consumer_group for a10
    col client_info for a10
    SQL> select serial#,
    username,
    osuser,
    machine,
    program,
    resource_consumer_group,
    client_info
    from v$session where sid=&sid;
    -- What did that SID do?
    SQL> select distinct sql_id, session_serial# from v$active_session_history
    where sample_time > sysdate - interval '5' minute
    and session_id=&sid;
    -- Retrieve the SQL from the Library Cache:
    col sql_text for a80
    SQL> select sql_text from v$sql where sql_id='&sqlid';
    You may spot the cause of the current performance problem in very short time with the shown technique.
    Edited by: Mohamed ELAzab on Jul 16, 2010 6:12 PM

  • Converted key figures not populating

    Hi Experts,
    The query run shows up the converted key figures but the APD is not populating the same, i tried moving the key figures that are not populating in the query around, and it seemed to work in quality, why it is not populating in APD in the production system?

    Hi,
    The infobject has been defined with datatype "DATE" only. It has also been mapped from datasource to infocube correctly as these key figures are populating correctly for some of the sales documents in the report. It is not like that for all the sales documents the key figures are not converting properly.
    Some Sales documents are not converting into the date fields but for some conversion happens properly in the BEx report. This is the issue.
    Please guide accordingly.
    Many thanks,
    Anamika

Maybe you are looking for