CHECK_CHANGED_DATA not populating entire data

Hi All,
I'm having problem in using the method CHECK_CHANGED_DATA of the class CL_GUI_ALV_GRID. I have 6 columns/fields in the grid, and when using this method, it is not returning the content of all the 6 fields. It's able to recognize the changed or added row but the value for one particular field is not being populated. Any inputs on this ?
Just as an information, I'm using OO techniques and registered events for this.
Thanks,
DK

Hi
No particular setting has to be done for the fields, that event should be triggered as soon as a value is changed.
Try to check if there's something strange in catalog table
Max

Similar Messages

  • A&B schemas are not populated with data after successfull deployment in BCC

    Hi all,
    Initially I'm able to up the site with the data in my catalog schemas(A & B), But all of sudden the data is deleted in both schemas after performing full deployment and
    the data is not populated.
    From then, even If I do incremental deployment the data is not populated in targeting schemas. Please suggest me where I've done the mistake.
    Please help as soon as possible.
    Thanks,
    Kushal.
    Edited by: 916721 on Jun 5, 2012 11:23 AM

    Check the publishing (CA) and production (target) server logs when you start the deployment after setting loggingDebug as true for the following components through dyn/admin.
    on CA Server:
    /atg/epub/DeploymentServer
    on Target site:
    /atg/epub/DeploymentAgent
    /atg/deployment/DeploymentManager
    /atg/commerce/catalog/ProductCatalog_production or /atg/commerce/catalog/ProductCatalog_staging/ (depending upon your configuration)
    See if you can find any exception or other error from debug logs.

  • RSA3 - Zfield not populating with data.In debugging data is there in BADI

    Hello,
    Added a new Z field to datasource 0CRM_SRV_PROCESS_H.
    Everything Activated in RSA6 and everything is fine.
    Code writeen in BADI CRM_BWA_MFLOW.We checked while debugging the field is getting populated when we modified the internal table CT_DATA data.
    But when we run the RSA3 and check the data the field is there but data is not coming and its coming is blank.
    Everything checked and it looks fine.Request response if someone can guide the reason or the cause that is missed out.
    Thanks,
    Rahul

    Hi,
    Please check if OSS 692195  helps.
    -Vikram

  • Backup Assistant is not populating the data to the site

    I have 200+ contacts in my phone that were transfered by the Verizon store.  They also set up the backup assistant for me.  When I sync the contacts to the backup assistant from the device I get a message on the device that says succeded and a time and date which are current.  Then I go to my computer login to  the backup site and no contacts show up.  When I click in the messages tab the messages are there.  I have reset the phone synced about 100 times and still no contacts.  Any ideas?

    If your contacts are saved as Google contacts, they WILL NOT backup to Verizon's Backup Assistant.
    If the word Google is under the Link box (which is an option to allow linking to other contacts), the contact is saved as a Google contact. You can't change it after it is saved the first time.
    From your post above, it sounds like your contacts were uploaded to your Google account and synced to your phone.
    Google contacts are a better way to go IMHO.

  • Native sql not populating correct data in ECC6.0 unicode system

    Hi,
    I am working in an upgrade upgrade project from 4.6c to ECC6.0.
    4.6c is non-unicode system. ECC6 is Unicode system.
    I am facing Native SQL problem in custom developed programe in ECC6.That means programe reading the data from oracle datbase and stored into internal table.
    But data not stored as normal character format that means its stored as different character format.
    I am suspecting this is due to unicode system. IF that is issue then please provide
    what syntax I have to use for Native SQL statment in unicode system.
    I have provided the code which we are using in programe.
      data:
        i_locn       type table of t_locn,
        v_locn       like line  of i_locn.
      field-symbols:
        <f_005t>        type t_005t.
    Get existing EIS_VIDEO_LOCN_CONV records
      EXEC SQL.
        OPEN C FOR
          SELECT EIS_LOCN
            FROM VIDADMIN.EIS_VIDEO_LOCN_CONV
      ENDEXEC.
      do.
        EXEC SQL.
          FETCH NEXT C
            INTO :V_LOCN-EIS_LOCN
        ENDEXEC.
        if sy-subrc ne 0.
          exit.
        endif.
        append v_locn to i_locn.
      enddo.
      EXEC SQL.
        CLOSE C
      ENDEXEC.
      sort i_locn.
    I am facing the problem in i_locn internal table. Please give me your input to solve this issue.
    - Anandakumar K

    Hi,
    We have resolved this issue with BASIS team help.
    We modified the data charcater set as UTF8  in Oracle data base in unicode system ECC6.0 then the programme returns the
    exact character format
    Regards
    K.Anandakumar

  • Dataset not populating any data from database

    Hi All,
       I created a dataset in VS 2008 from a project database. In design view, when I right-click a table and select preview data, I can see the records. In Crystal Reports, I connected to the dataset and selected my tables. When I go to run the report, I get no data. When I try to browse data on one of the fields in a table, I get nothing either.
    What am I not doing to get the data across over to my report?
    Thank you in advance.

    Hi All,
       Here's the code I use:
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Dim ds As New Call_Records_Dataset
            Dim ta As New Call_Records_DatasetTableAdapters.Call_RecordsTableAdapter
            ta.Fill(ds.Call_Records)
            CrystalReportSource1.ReportDocument.SetDataSource(ds)
            parameterField2 = CrystalReportSource1.ReportDocument.ParameterFields("Date")
            parameterField2.CurrentValues.AddRange(Today, Today, RangeBoundType.BoundInclusive, RangeBoundType.BoundInclusive)
        End Sub
    When I run the website, it's giving me the following error: "The system cannot find the file specified" and refers me to "        CrystalReportSource1.ReportDocument.SetDataSource(ds)" line.

  • Dbms_xmlgen.getxml not returning entire data set

    hi, i'm trying to return xml from oracle using the following: select dbms_xmlgen.getxml('select * from person') from dual, but it's not returning everything. it's returning data only up to a certain point. I've condensed it alot just so you'd get the gist, but in reality, there are about 50 columns in this table.
    set pages 0
    set linesize 150
    set long 9999999
    set head off
    "(CLOB) <?xml version="1.0"?>
    <ROWSET>
    <ROW>
    <name>joe smith</name>
    <bday>1/1/2011</bday>
    <citizen>yes</citizen>
    </ROW>
    <ROW>
    <name>joe smith</name>
    <bday>1/1/2011</bday>
    <citizen>..."
    i've even "set long 2000000000" as some people have recommended, but that didn't work either. what gives?
    thanks!

    Yes, it's a display issue.
    In SQL*Plus, also set LONGCHUNKSIZE option :
    SET LONG 10000
    SET LONGCHUNKSIZE 10000Note : those are not "magic" values, you'll have to experiment a little to find what works best for your expected output.
    What do you actually want to do with the XML data?
    If it's really that big, why not write it to a file?
    DECLARE
    res CLOB;
    BEGIN
    select dbms_xmlgen.getxml('select * from person')
    into res
    from dual;
    dbms_xslprocessor.clob2file(res, 'TEST_DIR', 'result.xml');
    END;
    /

  • Creating a collection from a query in Apex 4.2 is not populating the data into the collection.

    I have a process that creates a collection with data from multiple tables. The query returns multiple rows in 'Sql commands' tab. The same query is used to create the collection in 'Before Header' and when i create a region with Region source as
    Select * From apex_collections Where collection_name = 'load_dashboard';
    At the time of rendering the page shows me 'no data found'.
    what could be the problem? Are there any prerequisites before creating the collection?
    Thanks in Advance,
    Sriram

    Hi Denes,
    Below is my code for creating and saving data into the collection.
    if apex_collection.collection_exists(p_collection_name =>'load_dashboard') then
       apex_collection.delete_collection(
             p_collection_name =>'load_dashboard');
    end if;
    apex_collection.create_collection_from_query(
        p_collection_name => 'load_dashboard',
        p_query => 'select a.rowid
                   ,b.first_name
                   ,b.last_name
                   ,c.job_title
                   ,d.parent
                   ,d.child_level_1
                   ,d.child_level_2
                   ,a.resource_allocation
                   ,a.person_id
                   ,a.month_id
                   ,a.oracom_project_id    ,wwv_flow_item.md5(a.rowid,b.first_name,b.last_name,c.job_title,d.parent,d.child_level_1,d.child_level_2,a.resource_allocation,a.person_id,a.month_id,a.oracom_project_id)
    from oracom_resource_management a, oracom_people b,oracom_job c ,oracom_project d where a.supervisor_id=886302415 and a.month_id=201312 and a.oracom_job_id=c.job_id and a.person_id=b.person_id and a.oracom_project_id=d.oracom_project_id',
       p_generate_md5 => 'YES'
    Sriram.

  • Report is not pulling the data from multiprovider in BI 7.0

    Hi BW gurus,
    We have upgraded our BW systems from 3.5 to BI 7.0.
    According to our requirement we did some modifications(added some new cubes) to existing multiprovider. All the objects and assignments looks good in the multiprovider.
    We are facing a problem while executing the reports, report is not pulling any data from the particular multiprovider but I can see the data from the multiprovider.
    For any selection creteria we are getting the msg like "No applicable data found".
    Created a sample query with only two chars and two KF's no conditions, no exceptions still the report is not populating any data for any selection creteria.
    Appreaciate for your help in this regard.
      -BK

    Hi
    Deactivate the aggregates and then rebuild the indexes and then activate the aggregates again.
    GTR

  • 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.

  • 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

  • Return order BUS2102 Workflow container data not populated

    Hi All,
    Please requesting you to provide your advise on the below issue.
    I have created a custom workflow with business object BUS2102
    In the Workflowtemplate (E.g. WS90000XXX)
    i have included the triggering event for BUS2102 with EVENT "CREATED" and
    added a container element SDReturnCN of type BUS2102
    Once the Return Order is created the Workflow is getting triggered successfully
    but data is not populated into the container SDReturnCN.
    Do i need to write and EXIT to populate container UNLIKE as in Credit memo bussiness object :BUS2094
    if yes please let me know which part i am missing.
    Thanks & Regards,
    Veeru.

    Hello,
    "but data is not populated into the container SDReturnCN."
    Check the bindings. Where is the value coming from?
    regards
    Rick Bakker
    hanabi technology

  • BOM and Routing import is not populating data in base table.

    BOM AND ROUTING INTERFACE Import Prog is not populating base table with interface data.Even the Interface table data is not processed.I am passing process flag as 1 and transaction_type as INSERT,still the ROUTING INTERFACE TABLES  are not getting processed.
    passing the below details.
    INSERT INTO bom.bom_op_routings_interface
            (organization_code,          assembly_item_id,          completion_subinventory,         routing_sequence_id,          organization_id,
             routing_type,          common_routing_sequence_id,          last_update_date,          last_updated_by,          creation_date,
             created_by,         last_update_login,         alternate_routing_designator,          assembly_item_number,         process_flag,
             transaction_type) ;
    INSERT INTO bom.bom_op_sequences_interface
            (operation_seq_num,         department_id,         department_code,         option_dependent_flag,         operation_lead_time_percent,
             implementation_date,         effectivity_date,         disable_date,         count_point_type,         backflush_flag,         minimum_transfer_quantity,
             operation_sequence_id,         routing_sequence_id,         organization_code,         assembly_item_number,         last_update_date,
             last_updated_by,         creation_date,         created_by,         include_in_rollup,         alternate_routing_designator,         process_flag,
             transaction_type);
    INSERT INTO bom.bom_op_resources_interface
            (resource_seq_num,         resource_code,         resource_id,         basis_type,         usage_rate_or_amount,         usage_rate_or_amount_inverse,
             assigned_units,         schedule_flag,         resource_offset_percent,         activity,         standard_rate_flag,         autocharge_type,         organization_code,         assembly_item_number,
             operation_seq_num,         effectivity_date,         last_update_date,         last_updated_by,         creation_date,         created_by,         alternate_routing_designator,
             operation_sequence_id,         routing_sequence_id,         process_flag,         transaction_type);
    Where am I making a mistake.
    Thanks in Advance.
    Sambit Pradhan

    Hi,
    Try following
    step 1. Insert routing header (bom_op_routings_interface) : Run Interface
    step 2. Insert routing lines (bom_op_sequences_interface) with correct reference to routing_sequence_id: Run Interface
    step 3. Insert all resource lines (bom_op_resources_interface) with correct reference to operation_sequence_id, routing_sequence_id , Run Interface.
    Thanks,
    Hrishi

  • Data not populating in database

    Hi All
    I am trying to insert data into a custom table but unable to do so...
    Steps followed
    1. Created a custom table
    2. Created an EO based on the table
    3. Created a VO associated with the EO.
    4. Created AM and associated the VO with it.
    5. Created page and associated it with the AM.
    Controller Code
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        OAApplicationModule am = pageContext.getApplicationModule(webBean);
        am.invokeMethod("initEmployee");
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
        OAApplicationModule am = pageContext.getApplicationModule(webBean);
        if("Next".equals(pageContext.getParameter("event")))
           pageContext.setForwardURL("OA.jsp?page=/xx0801/oracle/apps/per/selfservice/val_assignment/webui/PhonePG", null, (byte)0, null, null, true, "N", (byte)99);
    if("Save".equals(pageContext.getParameter("event")))
      am.invokeMethod("createEmployee");
      }AMImpl Code
    public employeeAMImpl()
        public void initEmployee()
          OAViewObject vo = getEmployeeVO1();
            if(!vo.isPreparedForExecution())
               {vo.executeQuery();
            Row row=vo.createRow();
                vo.insertRow(row);
            row.setNewRowState(Row.STATUS_INITIALIZED);
        public void createEmployee()
        getTransaction().commit();
    ...A new row does get created in the table but the data columns are empty only the creation date, created by, last_updated_by etc are getting populated.
    Thanks

A: Data not populating in database

I have put the debug statement as follows:
public void createEmployee()
    EmployeeVORowImpl emp = (EmployeeVORowImpl)getEmployeeVO1().getCurrentRow();
   String name = emp.getEmployeeNumber().toString();  
   System.out.println("Emp Num: " + name);
    getTransaction().commit();
    }The employee number got printed in the messages. However the row still doesnot have any data except the created by, creation date etc
Edited by: Subhasish on Jan 12, 2011 3:38 AM

I have put the debug statement as follows:
public void createEmployee()
    EmployeeVORowImpl emp = (EmployeeVORowImpl)getEmployeeVO1().getCurrentRow();
   String name = emp.getEmployeeNumber().toString();  
   System.out.println("Emp Num: " + name);
    getTransaction().commit();
    }The employee number got printed in the messages. However the row still doesnot have any data except the created by, creation date etc
Edited by: Subhasish on Jan 12, 2011 3:38 AM

  • Restricted key figure not populating data

    Hi Guru's,
    I am facing problem with restricted keyfigure. I have restricted amount with cal year which is not populating data.
    This key figure is having data in provider.
    Could you let me know how to overcome this .
    Thanks in advance.
    Thanks,
    Vijay.

    Hi,
    The quesry is on Multiprovider? or infoset? it matters first..... or directly on cube? check it and apply relevent infoprovider properties for logic check.
    Check the global filters are there any infoprovider  restrications etc...
    And also while checking the datafor the KF in infoprovide " use ALL the restrictions that are in query and impact the data"
    also try removing the restiction and look for data...
    Hope this helps.'

  • Maybe you are looking for