PPM 5.0: FI data not filled in table RPM_FIDATA

Hello Experts,
I have one portfolio item that i linked to one project Cproject and one initiative.
A WBS element is linked to the this project "Cproject".
I entred a budget with transaction CJR2 to this WBS and one cost element.
In the table RPM_FIDATA, i don't find my protfolio item lines.
Why the table RPM_FIDATA is not filled by this portfolio item data? (In this case with budget)?
What are the conditions that the table RPM_FIDATA will be filled?
Thank you in advance,
Amal

Thank you very much  Priyatham. You solved my problem.
I have a question please: Must i  create a daily job for this report? how to do to transfer automatically PPM data?
Thank you in advance.

Similar Messages

  • Creation of a table with static data(not a DB table)

    Hi
    I need to display a table with some static data in an OAF page. This table is not a DB table. It is like an HTML table
    I have placed the following query
    SELECT 'A1','B1' FROM DUAL UNION SELECT 'A2',B2' FROM DUAL in the VO. But it is returning a single row which is acting as the header of the table.
    Can anyone help me to create the table with 2 rows inserted in it.
    Thanks
    Edited by: gsaxena on Aug 4, 2009 3:04 AM
    Edited by: gsaxena on Aug 4, 2009 5:24 AM

    Hi
    Please execute your VO inside the CO of table region ,right now it is not getting executed,thats y it is giving just column names
    use the following code PR method of CO
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject oav = (OAViewObject)am.findViewObject("XXVO");
    oav.first();
    let me know in case of any issue
    thanx
    Pratap

  • Leaving date not filled in query

    Hello,
    we have created an infoset with database PNP and use the field SYHR_A_P0000_AF_FIREDATE (append structure of IT 0000) in a query.
    Unfortunatly this field is emtpy when executing the query but as far as I understood from documentation this should be filled automatically.
    Is that an error in SAP or do I need to make any adjustments in the infoset?
    Thanks in advance
    Michael

    Hi Michael,
    the result havily depends on the PA customizing for the according feature.
    You should search in the service marketplace for notes and there are quite some of them. (562031 e.g.)
    Regards,
    Michael

  • Data set in Data not fill properly using ODP(Oracle.DataAccess.dll 64bit)

    public void BindFun()
                OracleParameter[] o_OracleParameters;
                OracleConnection o_Connection = new OracleConnection(VRODPConnection());
                OracleCommand o_OracleCommand = new OracleCommand();          
                OracleDataAdapter o_OracleDataAdapter;    
                DSSearchResults = new DataSet();
                // Narendra : 03/11/2014
                o_OracleParameters = new OracleParameter[16];
                o_OracleParameters[0] = new OracleParameter("iv_LastName", OracleDbType.Varchar2, ParameterDirection.Input);
                o_OracleParameters[0].Value = "";
                o_OracleParameters[1] = new OracleParameter("iv_FirstName", OracleDbType.Varchar2, ParameterDirection.Input);
                o_OracleParameters[1].Value = "";
                o_OracleParameters[2] = new OracleParameter("iv_MiddleName", OracleDbType.Varchar2, ParameterDirection.Input);
                o_OracleParameters[2].Value = "";
                o_OracleParameters[3] = new OracleParameter("iv_MotherMaidenLastName", OracleDbType.Varchar2, ParameterDirection.Input);
                o_OracleParameters[3].Value = "";
                o_OracleParameters[4] = new OracleParameter("v_SearchRangeFrom", OracleDbType.Varchar2, ParameterDirection.Input);
                o_OracleParameters[4].Value = "01-01-2014";
                o_OracleParameters[5] = new OracleParameter("v_SearchRangeTo", OracleDbType.Varchar2, ParameterDirection.Input);
                o_OracleParameters[5].Value = "12-01-2014";
                // "01-12-2014";//Narendra 04/11/14 14:17//
                o_OracleParameters[6] = new OracleParameter("v_RecordTypeId", OracleDbType.Varchar2, ParameterDirection.Input);
                o_OracleParameters[6].Value = "2,4,5";
              // IN this
                o_OracleParameters[7] = new OracleParameter("v_PagingRequired", OracleDbType.Int32, ParameterDirection.Input);
                o_OracleParameters[7].Value = 1;
                o_OracleParameters[8] = new OracleParameter("v_PageNum", OracleDbType.Int32, ParameterDirection.Input);
                o_OracleParameters[8].Value = 1;
                o_OracleParameters[9] = new OracleParameter("v_PageSize", OracleDbType.Int32, ParameterDirection.Input);
                o_OracleParameters[9].Value = 1000;
                o_OracleParameters[10] = new OracleParameter("v_SortFieldName", OracleDbType.Varchar2, ParameterDirection.Input);
                o_OracleParameters[10].Value = "VitalRecordsLastName";
                o_OracleParameters[11] = new OracleParameter("v_Sealed", OracleDbType.Int32, ParameterDirection.Input);
                o_OracleParameters[11].Value = 1;
                o_OracleParameters[12] = new OracleParameter("v_CurrentRecordsOnly", OracleDbType.Int32, ParameterDirection.Input);
                o_OracleParameters[12].Value = 0;
                o_OracleParameters[13] = new OracleParameter("v_AccessID", OracleDbType.Int32, ParameterDirection.Input);
                o_OracleParameters[13].Value = 5;
                o_OracleParameters[14] = new OracleParameter("v_TotalRecs", OracleDbType.Int32, ParameterDirection.Output);
                o_OracleParameters[14].Value = 0;
                o_OracleParameters[15] = new OracleParameter("pResult", OracleDbType.RefCursor);
                o_OracleParameters[15].Direction = ParameterDirection.Output;
                o_Connection.Open();
                o_OracleCommand.Connection = o_Connection;
                o_OracleCommand.CommandText = "VR_AllGeneral_Search";
                o_OracleCommand.CommandType = CommandType.StoredProcedure;
                o_OracleCommand.Parameters.AddRange(o_OracleParameters);      
                o_OracleDataAdapter = new OracleDataAdapter(o_OracleCommand);o_OracleDataAdapter.Fill(DSSearchResults);
               dataGridView1.DataSource = DSSearchResults.Tables[0];
                o_Connection.Close();
                o_Connection.Dispose();
              // 2 pass than ans total record =127 than after pass 4 ans =413 than after 5 ans=413
              // 4 pass than ans total record =286 than after pass 2 ans =413 than after 5 ans=413
               // 5 pass than ans total record =0 than after pass 2 ans =127 than after 4 ans=413
    What is the problem of above code pls info 

    Hi,
    but when i install oracle express edition 10g on that machine i am able to connect to the remote database
    Does the client machine have an Oracle Client installed before you do this at all? An Oracle Client is required in some fashion to use ODP.NET - either a full-client or the instant client if you are using a version that supports instant client.
    - Mark

  • RFC Source data not filled correctly

    Hi All,
    I am facing a typical problem.
    I have created a RFC to File scenario and I am running the ABAP program to call the RFC with the following values:
    field1(type Char 14; value:'aaaaaa')                   --> Field1 (string)
    filed2(type Char 15; value:'000000000000012')   -->Field2 (string)
    filed3(type Char 10; value: 'fgdf')                       -->Field3 (string)
    field4(type Char 8; value: 'sgsdfg')                    -->Field4 (string)
    However, the source structure in XI is getting filled with the following values:
    Field1 - 'aaaaaa'
    Field2 - '00000012fgdfsgsdfg'
    Field3 - Empty
    Field4 - Empty.
    This is in the source structure (before the mapping is done). I am unable to make out if the problem is there in ABAP program or in XI.
    I tried debugging ABAP program. But it looked perfectly fine. Is there something I need to change in XI for this scenario???
    Please reply its urgent.
    Reward points would be given.

    Hi
    First check if RFC is remotwe enabled.
    I hope u have created TCP/IP RFC connection in Sender System with program id and this same program id is maintained in the ID Sender RFC Configuration.
    Also check the program id should be same in both area --> Since it is case senstive.
    Also --> import RFC in IR , if u have made changes in RFC re import that's better.
    hope above is helpful
    rwd points if useful
    rgds
    srini

  • How can I lock a table so that a person can only enter data, not manipulate the table?

    I don't want to Lock the table as Numbers does it so perhaps locking is the wrong term. What I want to do is to lock the formatting of the table so it is possible to enter data but not possible to change the position, number of columns etc. I've been searching and all I can come up with is the regular lock function. But I still want to be able to use the cells. Just not change formatting.
    Thanks, Brad

    you cannot.  When you lock a table the whole table is locked.  I would consider segmenting the user input into a seprate, un-locked table and placing the calculations in a locked table

  • Data not viewable in table using Control file  CharacterSet AL32UTF8

    i have a flat file which contains Chinese characters and English Characters
    I have to create a control file, to insert the data in this flat file to the Table
    The characterset i am using in my control file is AL32UTF8
    When i use this characterset the data is getting loaded into the table,but i am not able to view the Chinese characters.
    i am able to see some Upside down question mark symbol
    Please help me of how to view the chinese characters into the table
    Is that any other characterset i have to set in Control file

    NLS_LANG is an environment variable. I'm assuming you're on Windows, so it's probably something like
    Control Panel | System | Advanced | Environment Variables
    Given that you're using Toad, though, there may be someplace there where you set the character set. There is a discussion on Eddie Awad's blog on how various tools can be made to display Unicode data
    http://awads.net/wp/2006/07/06/sql-developer-and-utf8/
    Some of the comments discuss Toad, though that's not a tool I'm familiar with.
    If you happen to be able to use iSQL*Plus, since that's browser based, it supports unicode natively. That's often the easiest solution.
    Justin

  • Data not updating in table ,data transfered using DTW

    Hi Everybody,
    I had transfered data using DTW, it shows that data imported,but it not updated, that means it not shows in database.
    So please so me any solution to this.
    Regards,
    Srinivas

    Hi suda,
    I am giving he detailes of the BusinessObject
    BusinessObject =oUserLanguages
    template=oUserLanguages.csv
    i had copied the oUserLanguage.csv file and entered data into it and saved it(comma deliminated)
    steps:
    1.i had selected oUserlanguage object from list.
    2.i had selected source file (oUserLanguage.csv )
    3.the data properly matched and data is displayed when source tab is pressed. and ields are properly matched.
    4.three check boxes are checked.
    5.i had seen the message you are sucessfully specified required information for imporing data
    6.in lost step it shows like below
    Total:  2 business object(s)
    2 business object(s) imported successfully
    0 business object(s) not imported
    0 business object(s) updated successfully
    0 business object(s) not updated
    7.in log files status shows succeeded
    But I had cheked the languages , the data imported not shown.
    Regards
    srinivas

  • Data not getting in table in master detail block form

    Hi
    I am using oracle forms 10g
    I have three block namely control_block, Header_block and detail_block and three button in three block. Find button in control_block,Detail button in Header_block and save button in Detail_block.
    Now i will enter PO_number in the Control block and enter find button and the po details is fetched and it will show the po details in the Header_block and in the header_block i have one field named as Expeditor and here the user will assing Expeditor to that po_number and Click the Save button in the Detail_Block.
    this is my code
    DECLARE
    ln_count NUMBER;
    CURSOR c_expeditor
    IS
    SELECT po_number
    FROM xxogec_poexp_expeditor_stg
    WHERE po_number = :header_block.po_number;
    BEGIN
         IF :DETAIL_BLOCK.po_number IS NULL
    THEN
    FOR c_exp_rec IN c_expeditor
    LOOP
    IF c_expeditor%NOTFOUND
    THEN
    INSERT INTO xxogec_poexp_expeditor_stg
    (po_header_id,
    po_number, creation_date,
    po_expeditor_name
    VALUES (:header_block.po_header_id,
    :header_block.po_number, SYSDATE,
    :header_block.expeditor
    ELSE
    UPDATE xxogec_poexp_expeditor_stg
    SET po_expeditor_name = :header_block.expeditor
    WHERE po_number = :header_block.po_number;
    END IF;
    END LOOP;
    STANDARD.COMMIT;
    End if;
    End;
    Now when i press save button the data is not getting inserted.
    Can any please correct me where my code went wrong.
    Thanks & regards
    Srikkanth.M

    FOR c_exp_rec IN c_expeditor
    LOOP
      IF c_expeditor%NOTFOUND
      THENYou'll never get to the IF statemement, because there is nothing to loop if there is nothing to be found.

  • Data not reflecting in Table

    Hi,
    I've simply added the Table Component from the Pallete to my web page and Connected with a Table named "Role_master".
    while running the web application it shows me the following syntax on the Browser:
    <table id="form1:table1:_table" class="Tbl_sun4" width="100%" border="0" cellpadding="0" cellspacing="0"
    I have completely followed the steps as given in [Dru Devore's Blog |http://weblogs.java.net/blog/ddevore/archive/2008/02/jsf_tables_with_1.html]
    Really, i'm not able to judge that why i'm getting this type of syntax instead of displaying Table with Data.
    Please Help..
    Thanks
    Hitesh
    Edited by: Hitesh_kumar on Jul 31, 2008 8:25 AM
    Edited by: Hitesh_kumar on Jul 31, 2008 8:27 AM

    Hi,
    Thanks for the reply.
    I'm Connecting my JSF Web application with the Sql server 2005 using NB 6.0 and i'm using the latest sqljdbc4.jar driver for sql server 2005.
    while connecting the application with the sql server 2005 it is giving me following error :
    java.lang.UnsupportedOperationException: Java Runtime Environemtn(JRE) version 1.6 is not supported bgy this driver. Please use the JDBC 4 Driver (sqljdbc4.jar)instead.Sourecode :
            Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");                               
                    java.sql.Connection con=DriverManager.getConnection("jdbc:sqlserver://localhost:1433;user=sa;password=test1;databaseName=sample");
                    java.sql.Statement stmt=con.createStatement();               
                    java.sql.ResultSet rSet=stmt.executeQuery("select * from details where empcode='1001'");             
                    while(rSet.next())
                        lblName.setText(rSet.getString(1));
                    rSet.close();
                    con.close();
                    stmt.close();               Since i'm using the latest driver, i don't know why such type of error is coming up...
    If you any link, from i can download the NetBeans 6.0 Supported Sql Server 2005 Driver.. please suggest...
    Thanks
    - Hitesh

  • Data not seen in Table Control --Print Preview

    Hi
    I am creating one Standard Transaction Iview for CATS .
    While doing print preview(Portal Side) in IE 6  , I am not able to see data in Table control(Data Entry Area ).
    Can you please provide me the solution for how I can see the data in Table Control
    Regards
    Ruturaj

    Go to SE11 and search for setup and look for the specific data source and see the content, if the content is actually zero, then there is nothing in the setup table.
    thanks.
    Wond

  • Data not visible in table o/p when compiled with webdynpro compiler

    Hi,
    I am using a Z BAPI to retrieve data from backend ECC6 server and show it using a VC application.
    When I compile this VC application using FLASH(FLEX2), the data is shown in the table, whilst if the VC application is compiled using Webdynpro compiler, the data is not shown in the table.
    The No. Of Rows  parameter has been updated with 10.
    Please suggest what can be done so that data is shown when compiled with Webdynpro compiler.
    Regards,
    Ranu

    Hi Ranu,
    WebDynpro Compiler only supports Webservices.
    You can look at the below link to get into full details -
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/limitationsofWeb+Dynpro
    Regards,
    Vipin Vijayan.

  • Credit Control area not filled in table KNVV

    Hi everyone,
    I am new to the forum and first and foremost want to thank the particpants here for their contributions, which have helped me a lot in the past.
    I am facing a problem today and hope some of you could assist me with some hints on how to solve it. In the existing forum entries I could not find a solution.
    I am working in a Rapid Deyployment Solution IS Retail ERP and am trying to have table field knvv-kkber filled (credit control area). Right now it remains empty, although customizing exists in a way that credit control area exists, it is assigned to company code and sales area. Customer also has a record in table knkk for the respective credit control area. Obviously field credit control area in tcode xd02 is not available and would also not be available for editing, even when screen tab customizing were changed. It is only shown in xd03. Also former key users working with a different IS Retail installation told me that they never keyed in credit control area in customer master tcodes xd*. So I am wondering right now, how system fills that field.
    Thank you a lot for your help.
    Regards
    Christian

    """Just adding in Lakshmipathi's comment that if we maintain credit control area in KNVV-KKBER field and we have also assigned it in IMG with sales area system will give preference to KNVV-KKBER. If you have not assigned it customer master then system will determine it from customization.""""
    Dear Moazzam, sorry--I need to differ with these statements.
    Always System will gives the priority to sales area then only to customer.(in determining credit control area)
    let me explain: If we take Credit control area determinations will follow the below procedure:
    1.Through the exit(EXIT_SAPLMV45K_001)
    2.Sales area(distribution channel)
    3.Customer master
    4.Company code
    Note: For the first 3 situations,mandatorily- you need to assign your credit control area to your company code.(Deriving the Credit Control Area - Credit and Risk Management (SD-BF-CM) - SAP Library)
    Dear Christain:
    As you are aware, we can maintain credit control areas can differ for each sales area.
    For example,same customer has been maintained with two different sales areas.
    Customer X in sales Area 1000/10/00-can have  credit control area A
    Same customer in sales area 1000/20/00-can have credit control area B.
    If business wants to maintain at customer master level--they can maintain( it is optional)
    Otherwise simply they can assign for the sales area which will be defaulted into transaction level.
    This is what is happening in your case.
    Note: if you maintain assignments for your sales area--then this will be defaulted into KNVV-KKBER,even though you doesn't maintain manually in XD**/VD** Tcodes.
    Hope this helps.
    Phanikumar

  • Data not pipulating into table

    Hi sdns,
    i have dreated 2 classes:-  1)main
                                            2)sub
    <h5>code of main:-</h5>
    public class main {
         Collection plist = new ArrayList();
         Connection conn = null;
         Statement st;
         public void get_details()
         try
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");     
    conn = DriverManager.getConnection( "jdbc:microsoft:sqlserver://10.10.30.25:1433;databaseName=TrackingSystem","sa","sa" ) ;
    st = conn.createStatement();
    String str = "select * from [Project Table]";
    ResultSet rs = st.executeQuery(str);          
    String a = rs.getString(1);
    String b = rs.getString(2);
    String c = rs.getString(3);
    while(rs.next())
    pdetails rec = new pdetails();
    rec.setEname(a);
    rec.setRname(b);
    rec.setDid(c);
    plist.add(rec);
    catch(Exception e)
    public Collection getPlist() {
    return plist;
    public void setPlist(Collection collection) {
    plist = collection;
    <h3>code of pdetails</h3>
    public class pdetails {
    private String Ename;
    private String Rname;
    private String Did;
    public pdetails()
    Ename = new String();
    Rname = new String();
    Did = new String();
    public pdetails(String Ename,String Rname,String Did)
    this.Ename = Ename;
    this.Rname = Rname;
    this.Did = Did;
    public String getDid() {
    return Did;
    public String getEname() {
    return Ename;
    public String getRname() {
    return Rname;
    public void setDid(String string) {
    Did = string;
    public void setEname(String string) {
    Ename = string;
    public void setRname(String string) {
    Rname = string;
    I have created a jar file for this classes And imported as a model in my web Dynpro Application.
    And mapped it to component controller.
    And from there to view controller.
    I had a view with a table .
    I created the table by using template of table.
    And Binded it to the context of the view.
    And the code i have written in the WDDOINIT() method is:-
    IWDMessageManager msg = wdComponentAPI.getMessageManager();
    try
    Collection c;
    c= new ArrayList();
    main m = new main();
    m.get_details();
    c = m.getPlist();
    wdContext.nodePdetails().bind(c);
    wdContext.nodePdetails().invalidate();
    catch (Exception e) {
    // TODO: handle exception
    msg.reportWarning("Sorry");
    But data is not getting populated in my table.Anything i have to add to my code.
    Or else have i done anything wrong in my code
    Please help me in this Regard.

    What I mean is replace these 2 lines:
    wdContext.nodePdetails().bind(c);
    wdContext.nodePdetails().invalidate();
    with this code:
    wdContext.nodePdetails().invalidate(); // erase previous search results
    for (int i=0; i<c.size(); i++) { //iterate
    SomeObject o = (SomeObject) c.get(i);  // store record in temp variable
    PdetailsElement e = wdContext.nodePdetails.createPdetailsElement(); //create context element
    e.setPropA(o.getPropA()); // set properties of context element
    etc. // set properties of context element
    wdContext.nodePdetails.add(e); // add context element to context node
    I assume that you have bound the table to nodePdetails, andt that this node has cardinality 0..n.
    Also, the elements of this node contain the 3 strings that you want to display in the table.
    So when you iterate over the collection that is the result of your query,
    you create a new element of the context structure (Pdetail) and set the 3 string values.
    Finally add each context element that was created to the context node (add).
    Hope this helps, good luck.

  • 2lis_03_bf  data source Filling setup tables

    Hi Gurus,
    for the above data source how to restrict data according to CO CODE.
    ther is no option at all.What is archiving run in this screen.
    Regards,
    S

    Check the Job Status in SM37. Check Short Dump as well in ST22.Check whether you have any Free Background Process Available or not?
    If it is only one perticular Day, you could have processed Foreground Instead of Background.
    Wait for some time and Check your records in RSA3.
    Nagesh Ganisetti.
    Assign points if it helps.
    Message was edited by:
            Nagesh Ganisetti

Maybe you are looking for

  • Java.security.InvalidKeyException: Unsupported key type: SunPKCS11-MyPKCS11

    I am having a very strange issue with my CAC card. I wrote a small Java program to login into ProjectForge.mil webservice ICollabNetSoap m_sfSoap = (ICollabNetSoap) ClientSoapStubFactory.getSoapStub(ICollabNetSoap.class, "https://project.forge.mil/")

  • Trouble with  "java.lang.OutOfMemoryError: Java heap space"

    Hello, I use a Java-based modeling tool that very few out there are probably familiar with. This tool allows me to run models (program) from within the development environment, to create Applets or create jar files that can be executed in a stand-alo

  • Launching a URL from a published htm

    I am sure this is a very basic question but I can't seem to find the answer.  I created a Captivate 5.5 tutorial.  At the end, I want the user to click a link to an webpage if they desire to take an on-line survey at Survey Monkey.  It works fine whe

  • How to generate multiple records on a single sql from dual table

    I wanted to generate ten sequence nos in a single sql statement from dual table. Is there any way to use that. I think somebody can help me on this by using level clause

  • Epub Layout issue in Aldiko

    Hi, Request someone to please help me. I have made the epub from Indesign CS6 with the use of external CSS. The output is proper in Adobe Digital Edition, but when the same file is viewed in Andriod Mobile (Aldiko Application) there are issues with t