New properties not reflecting in ACC

Hi,
I am new to ATG.I was trying to add some properties in ACC. So, that i have added the item-descriptor in userprofiling.xml and created the related tables in oracle database.I have created 5 tables.Among them one was previously present in the database.I have dropped that and created all the tables.I have created a table with a name that i have dropped.When i started the server i found new properties are not reflected in the ACC and i found the following warning in console.
16:57:31,265 WARN  [ProfileAdapterRepository] unknown JDBC types for property: address1, item-type: user. Check that the column names in the database and template match.
16:57:31,266 WARN  [ProfileAdapterRepository] unknown JDBC types for property: address2, item-type: user. Check that the column names in the database and template match.
I found the following error. Address1,Address2,city,state,country,zipcode,Phone_number are the columns that was present in the dropped table.
[++SQLSelect++]
SELECT user_id,Address1,Address2,city,state,country,zipcode,Phone_number
   FROM Storefront_user
  WHERE user_id=?
-- Parameters --
p[1] = {pd} se-570115 (java.lang.String)
[--SQLSelect--]
        at atg.adapter.gsa.GSAItemDescriptor.loadProperty(GSAItemDescriptor.java:5618)
        at atg.adapter.gsa.GSAItem.getPersistentPropertyValue(GSAItem.java:1093)
        at atg.adapter.gsa.GSAItem.getPropertyValue(GSAItem.java:986)
        at atg.adapter.gsa.GSAItem.getPropertyValue(GSAItem.java:1264)
        at atg.repository.RepositoryItemImpl.getPropertyValue(RepositoryItemImpl.java:129)
        at atg.repository.nucleus.RepositoryItemPropertyMapper.getPropertyValue(RepositoryItemPropertyMapper.java:129)
        at atg.beans.DynamicBeans.getPropertyValue(DynamicBeans.java:311)
        at atg.beans.DynamicBeanState.initializeFrom(DynamicBeanState.java:130)
        at atg.beans.DynamicBeanState.<init>(DynamicBeanState.java:100)
        at atg.ui.repository.model.RepositoryItemState.<init>(RepositoryItemState.java:406)
        at atg.ui.repository.model.RepositoryAgentImpl.createRepositoryItemState(RepositoryAgentImpl.java:2916)
        at atg.ui.repository.model.RepositoryAgentImpl.getRepositoryItem(RepositoryAgentImpl.java:3883)
        at atg.ui.repository.model.RepositoryAgentImpl.getRepositoryItem(RepositoryAgentImpl.java:1204)
        at atg.ui.repository.model.RepositoryAgentImpl.getCompressedRepositoryItem(RepositoryAgentImpl.java:1230)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at atg.security.proxy.UserSessionProxy$SessionSkeletonHandler.invoke(UserSessionProxy.java:251)
        at atg.rmi.context.ContextualSkeletonImpl.invoke(ContextualSkeletonImpl.java:105)
        at sun.reflect.GeneratedMethodAccessor360.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:303)
        at sun.rmi.transport.Transport$1.run(Transport.java:159)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
        at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
        at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
        at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)
Caused by: CONTAINER:atg.repository.RepositoryException; SOURCE:java.sql.SQLException: java.sql.SQLSyntaxErrorException: ORA-00904: "PHONE_NUMBER": invalid identifier
Can anyone give the suggestion that how will new property will reflect in ACC?
Thanks,
Ranjit

Please, find the below xml code and DDL
userprofile.xml
<?xml version="1.0" encoding="UTF-8"?>
<gsa-template>
<item-descriptor name="user">
    <table name="Storefront_user" type="auxiliary"
         id-column-name="user_id">
        <property name="user_id" data-type="string" column-name="user_id"/>
    <property name="no_of_orders" data-type="int" column-name="no_of_orders" category="Order Tracking" />
  <property name="Last_Purchased_Date" data-type="timestamp" column-name="Last_Purchased_Date" category="Order Tracking" />
  <property name="No_of_Abandoned_Orders" data-type="int" column-name="No_of_Abandoned_Orders" category="Abandoned Orders" />
  <property name="receive_email" data-type="boolean" column-name="receive_email" category="Email" />
  <property name="receive_promo_email" data-type="boolean" column-name="receive_promo_email" category="Email" />
  <property name="category_last_browsed" data-type="String" column-name="category_last_browsed" category="Commerce - Behavior Tracking" />
  <property name="password_hint" data-type="String" column-name="password_hint" category="Login" /> 
     </table>
     <table name="Storefront_Order_Tracking" id-column-name="user_id" type="multi">
        <property name="Item_Bought" data-type="set" component-data-type="String" column-name="Item_Bought" category="Order Tracking" />
     </table>
     <table name="Storefront_Abandoned_Orders" id-column-name="user_id" type="multi">
        <property name="abandoned_orders" data-type="set" component-data-type="String" column-name="abandoned_orders" category="Abandoned Orders" />
     </table>
     <table name="Storefront_Dressing_Style" id-column-name="user_id" type="multi">
        <property name="dressing_style" data-type="set" component-data-type="String" column-name="dressing_style" category="Commerce - Behavior Tracking" />
     </table>
     <table name="Storefront_Heard_About_us" id-column-name="user_id" type="multi">
        <property name="Heard_About_us" data-type="set" component-data-type="String" column-name="Heard_About_us" category="Basics" />
     </table>
</item-descriptor>
</gsa-template>
DDL
CREATE TABLE Storefront_user (
user_id VARCHAR2(32) not null
   references dps_user(id),
no_of_orders NUMBER,
Last_Purchased_Date TIMESTAMP,
No_of_Abandoned_Orders NUMBER,
receive_email VARCHAR2(10),
receive_promo_email VARCHAR2(10),
category_last_browsed VARCHAR2(100),
password_hint VARCHAR2(50),
primary key(user_id)
CREATE TABLE Storefront_Order_Tracking(
Item_Baught VARCHAR2(100),
User_id VARCHAR2(32) references Storefront_user(user_id)
CREATE TABLE Storefront_Abandoned_Orders(
abandoned_orders VARCHAR2(100),
User_id VARCHAR2(32) references Storefront_user(user_id)
CREATE TABLE Storefront_Dressing_Style(
dressing_style VARCHAR2(32),
User_id VARCHAR2(32) references Storefront_user(user_id)
CREATE TABLE Storefront_Heard_About_us(
Heard_About_us VARCHAR2(100),
User_id VARCHAR2(32) references Storefront_user(user_id)

Similar Messages

  • New field not reflecting in Table maintenance generator

    Hi Experts,
    I have added a new field in a ztable.I regenerated the table maintenance generator,so that the  new field is reflecting in devlopment system , also a TR got created.When i moved this TR to pre-production system new fields are reflecting in the structure of table but not in table maintenance generator.
    Please suggest solutions.
    Regards,
    Niranjan

    Hi Experts ,
    I have gone through the steps which is mentioned.But still issue is pending,the changes in TR are not reflecting in pre prod.
    Error after moving the TR with "Definition of a Maintenance and Transport Object".
    The current ABAP program "SAPLSVIM" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "SAPLZFGL " in include "LZFGL$03
      " in
    line 13:
    "Field "ZCHAR_FIXED_WIDTH" is unknown. It is neither in one of the spec"
    "ified tables nor defined by a "DATA" statement. ."

  • IPhoto album updates / new albums not reflected in ATV

    I have an iMac on 10.7.5 and iPhoto 9.4.1 and want to be able to view selected iPhoto albums on my Apple TV. However, changes I make to albums, or new albums I create on iPhoto are not relected on my ATV.  Main problem is new albums I create (and check to share in the Sharing window of iPhoto) are not being reflected on ATV. Can anyone help, please.

    Sasha
    Larry’s link is not showing correctly:
    There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 Only*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and 10.5* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

  • New Changes not reflecting in Quality Box.

    Hi,
    I have made changes to the Selection screen of a report in Development Box and released the transport request to Quality Box.
    The transport got released without any errors to the Quality Box , but I still cant see the Selection screen changes made to the report.
    I checked the version of transport in Quality box and also the Abap code. They are the same as in Development. But it does not show the Selection screen changes made in Development box.
    In Short (Development Box shows the  changes , Quality box although transport is released shows no changes)
    What could be the reason.
    Rohit

    Hi Rohit,
    You can try to regenerate the navigation index for the program.
    Goto main program in quality (SE38) --> Source Code Editor --> Utilities --> Update Navigation Index.
    Hope this may help you.
    Regards,
    Santosh

  • Template properties not reflecting in some iviews based on that template

    Hi ,
    I have a template  which is based on  a PAR .I have some drop down in this template which has three values .Now there are around 40 iviews which are based on this template in these iviews i  get only 2 values in the drop down .Also in  PAR i have removed  a iview  property  from portalapps.xml which is removed from template also but iviews based on that template the property is still there .I have cleared the cache .
        Could someone please tell me why how do i resolve this problem its Urgent
    Regards
    Varsha

    Hi ,
    I have a template  which is based on  a PAR .I have some drop down in this template which has three values .Now there are around 40 iviews which are based on this template in these iviews i  get only 2 values in the drop down .Also in  PAR i have removed  a iview  property  from portalapps.xml which is removed from template also but iviews based on that template the property is still there .I have cleared the cache .
        Could someone please tell me why how do i resolve this problem its Urgent
    Regards
    Varsha

  • CUA-new profile not update.

    Hi Guys,
    In CUA system I ran a report 'pfcg_time_dependency". This program deleted invalid profile for all users.
    Later on while analysing I found that new profile not reflected for all users except few users.
    Why not reflected this profile. Because there are almost 10,000 users in the CUA system.
    Please throw some light on this.
    Regards
    Sreenivasu Balaka

    Hi,
    You may do the user master compare or run pfud (pfcg_time*) but it mainly depends on the Idoc status from scul. Also perform a text comparison for the roles but best is to see the scul idoc status.
    Regards
    Aveek.

  • Compiled CHM File Does Not Reflect New Project Name

    I have read many of the experts' responses to posts and found them extremely helpful. However, I have not seen one that addresses my issue.
    I have RH HTML Version RH8. I renamed a project via 1) File - Rename Project and 2) Single Source Layouts - Primary Layout - Properties - Output Folder and File Name.
    Two problems are: 1) The Project Folder name still reflects the old project name and 2) The CHM file still reflects the old project name.
    As a result, the output Help that the user sees still has the old project name in the title bar.
    All generated files as well as the RoboHelpHTML Project File were changed to the new project name, just as the RENAME PROJECTS Help says it should. However, the CHM file does not reflect the new project name as it says it should.
    1) Can I change the Folder name that was created when I compiled the Help file to the correct name?
    2) Can I change the FILENAME in the SELECT OUTPUT FOLDER AND FILENAME  window?
    3) Can I / should I rename the TOC and Index filenames from the old project name to the new project name? (Help says that changing the project name does not change these file names and it didn't.) 
    Will any of these actions correct the problem? I appreciate any help you can give. 

    Welcome to our community
    Try File > Project Settings.
    And if that doesn't get it, try the Project Set-up pod, windows and change the Window Caption.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • New G/L codes not reflecting in Reports

    Dear all,
    i have created New G/L codes in FS00 and added to financial statement version that is FSE2 to reflect in the reports.New G/L codes can see in standard report S_ALR_87012301 that is G/L balances report, but not reflecting in Cusotmised reports defined from standard reports which P/L reports Y_CD1_69000001,2&4.
    my question is after creation of New G/L codes what are the steps need to do to reflect that new G/L codes in reports.
    can anyone help me on this.since all the reports are production repots.
    Thanks & Regards,
    Usha

    Hi,
    When i check the code code of this program GPEFBVPXJFT2D7N4QCER9ARVOYQ i found all the old  G/L codes except which i have created newly like this.pls check the below  code for reference.
    FORM CHECK_0001
    IF  RFRRS02-SAKN1 EQ '0000033034'.
                PERFORM CHECK_2017.
              ELSEIF RFRRS02-SAKN1 EQ '0000033035'.
                PERFORM CHECK_2030.
              ELSEIF RFRRS02-SAKN1 EQ '0000033036'.
                PERFORM CHECK_2043.
              ELSEIF RFRRS02-SAKN1 EQ '0000033037'.
                PERFORM CHECK_2056.
              ELSEIF RFRRS02-SAKN1 EQ '0000033038'.
                PERFORM CHECK_2069.
              ELSEIF RFRRS02-SAKN1 EQ '0000033040'.
                PERFORM CHECK_2082.
              ELSEIF RFRRS02-SAKN1 EQ '0000033043'.
                PERFORM CHECK_2095.
              ELSEIF RFRRS02-SAKN1 EQ '0000033045'.
                PERFORM CHECK_2108.
              ELSEIF RFRRS02-SAKN1 EQ '0000033052'.
                PERFORM CHECK_2121.
              ELSEIF RFRRS02-SAKN1 EQ '0000033053'.
                PERFORM CHECK_2134.
              ELSEIF RFRRS02-SAKN1 EQ '0000033054'.
                PERFORM CHECK_2147.
              ELSEIF RFRRS02-SAKN1 EQ '0000033055'.
                PERFORM CHECK_2160.
              ELSEIF RFRRS02-SAKN1 EQ '0000033056'.
                PERFORM CHECK_2173.
              ELSEIF RFRRS02-SAKN1 EQ '0000033057'.
                PERFORM CHECK_2186.
              ELSEIF RFRRS02-SAKN1 EQ '0000033058'.
                PERFORM CHECK_2199.
              ENDIF.
            ENDFORM.
    pls advise.
    Thanks,
    Ramana

  • SQL Server Service is not reflecting to the new name.

    Hi,
    I just rename the computer and use the command below to rename the SQL Server but the SQL Server Service is not reflecting to the new name.
    Is there a way to change the SQL Server Service and agent to reflect the new name or do I have to re-install sql server.
    I am using SQL 2008 R2.
    Thank you in advance.

    If running "SELECT
    @@servername" yields the old server name, it means the instance has not been renamed.
    you must run statement to drop the old name of the instance and recreate it with the new name as the default (local) one..
    EXEC master.dbo.sp_dropserver 'MACHINENAME\OLDINSTANCENAME'
    go
    EXEC master.dbo.sp_addserver 'MACHINENAME\newINSTANCENAME', 'local'
    go
    I took the code here: 
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/c07ab906-dabf-4303-9737-d430d82c4f42/how-to-rename-instance-of-sql-server-2008-r2?forum=sqltools
    Once you did this, look at your maintenance plans.  I sometime end up having one or two still following the old name.  Especially if you create this new server from a copy of another virtualized one.

  • New attribute added in BO, but not reflecting in WF container

    Hi Experts,
        Purchase req overall release  workflow was using a z business object in my requirment, now i have needed some enhancements so i made some changes like i added few attributes in BO. then i did the delegation.
    but the new attributes are not reflecting in Workflow container ?
    what i suppose to do for make them reflect there?
    helpful answer will bw rewarded...
    Regards Dev..

    Hi,
    We use Generate to make BO available for the runtime system. So only after generating the BO, runtime system will pick up the new changes. This is same like when we activate the report in SE38 transaction.
    The system can only generate an object type if none of the superordinate object types contain errors. If these object types have not yet been generated, they are generated as well. When an object type is generated, all subtypes are generated as well provided they do not contain any errors.
    Thanks
    Yogesh Sharma

  • Cost Planning Details not reflecting in new version

    Dear Experts,
                        .  We created the 'NEW' version . But we want to copy cost planning from u201C0u201D version to u201C1u201D version. For
    this we are executing u201CCJ9BSu201D t-code but after executing this, only cost
    are getting copied. Detail Planning is not getting copied.Kindly look into the matter and helpful solutions are

    Dear Experts,
    . We created the 'NEW' version . But we want to copy cost planning from u201C0u201D version to u201C1u201D version. For
    this we are executing u201CCJ9BSu201D t-code but after executing this, only cost
    are getting copied. Detail Planning is not getting copied.Kindly look into the matter and helpful solutions are.
    i.e
    1 I planned material costs in .Cj40 > Primary Cost > Edit >Detailed Planning >Change
       Here we maintain material cost, service cost, BPO etc
    2.When we copy the version from '0' to new version which i have created copying the 1 version.Or say '0' version to '1' version then material cost is not reflecting in new version cost planning after CJ9BS.

  • Websphere is not loading new properties file

    I am using Websphere Application Server 5.1 on WindowsXP.
    My application is on Struts. I create a war file and deploy it.
    I am getting all the text displayed from ApplicationResources.properites file.
    I changed some key-values in that file..but the websphere is loading the page with old values..
    I thought the problem could be with browser cache..I changed the JSP content to check if it loads the new jsp..It is loading the new jsp..(so the problem is not with cache)but old properties file..
    I uninstalled my application and reinstalled it..stilll it did not work..
    I checked the path "C:\Program Files\WebSphere\AppServer\installedApps\PC560\WMOS_war.ear\WMOS.war\WEB-INF\classes" where my war is getting extracted...
    (so my latest propeties file is available to websphere)
    it is showing the new properties file..but if i see the 'view source' of the page..it is showing old values..
    Is it some kind of optimization of websphere? If it is so, where to change it?
    Thanks

    If that doesn't work, try repackaging your application into a new WAR file, with the new property files, and redeploy it. WebSphere tries to be "clever" and caches/copies files from your application into another folder when you deploy it, and will not look at these files in your application's folder within the "installedApps" folder. I learned this lesson the hard way, when I wasted days trying to understand why WebSphere wasn't recognizing changes made to my web.xml file.

  • Data type change made to schema.xml of comments list which is part of blog site template is not reflecting in the existing site but working fine when new site is created.

    Hi,
    I have created a blog site with the available site template few days back. Now we have the requirement of having the attachments in the body of the comments section. 
    So, I updated the schema.xml of the comments list available under ../templates/blog/lists/comments/schema.xml to have rich text for the Body field.
    With this change, I created a new site and it was working fine. Change is reflected in the new blog site.
    However, this particular change is not reflected in the existing blog site. Any changes made to the schema.xml is not effecting the old blog site.
    Can anyone suggest what can be done for the change to be reflected in the old blog site?
    Thanks in Advance,
    Regards, Keerthi Suryadevara

    Hi,
    According to your post, my understanding is that you wanted to add attachments in the body of the comments section.
    You can add the the Code inside the Default list pages. For more information, you can refer to:
    Enable Attachment in SharePoint Blog post list and display the list Attachments
    In addition, you can add an enhanced rich text field to the comment list and remove the body field. Then you can insert files into comments, too.
    Here is a similar thread for your reference:
    http://sharepoint.stackexchange.com/questions/77194/how-to-add-attachments-for-comments-list-in-sharepoint-blog-2010
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Not reflecting the new value of the AWvariable

    I am working with Jdeveloper and BI beans
    we are using Java Analytical workspace API for connecting and saving the user input as a Analytical workspace Variable
    by using fallowing code
    awConn.executeCommand("awvariable=value");
    here the problem is i can not made this assignment perminent in Analytical Workspace
    i.e after execution of the program i checked with AnallyticalworkSpace manager's worksheet it not reflecting the new value of the AWvariable. It is showing only old value.
    how can i do that assignment it from java api .
    any one can help me

    That other post looks different, though - the OP is now manipulating the model.The OPs statement of the problem was:
    Adding new data to the exitsting model causes the JList to display blank when I refresh the screen.
    The suggestion in the other posting was to change the model not the array and the tutorial has a working example of this.
    The OPs question was:
    When my action performed creates a new instance of the model everything works fine but is this how it should work?
    The answer to this is no, you don't need to change the model, just update the model.
    So if the OP read the other posting and read the tutorial they should have an answer to their problem.
    As you suggested there is no need to create a custom model. The example in the tutorial uses the default list model, if the OP read the tutorial they would know that.

  • Iterator not reflected on entering new values for the row

    Hi,
    I am having an editable table coming from an EJB Stateless Session Bean. I created a data control out of the session bean and dragged and dropped the output
    of the method in the session bean as a table in the jspx page. On click of the "Create" link, I have an action listener that creates a new row in the top of
    the table.
    DCIteratorBinding iter = DFUtils.findIterator("getMultSortReportListIterator");
    RowSetIterator rowSetIter = iter.getRowSetIterator();
    Row row = rowSetIter.createRow();
    row.setNewRowState(Row.STATUS_NEW);
    row.setAttribute("reportName", "");
    row.setAttribute("sectionName", "");
    row.setAttribute("userId", "");
    row.setAttribute("viewCriteria", "");
    rowSetIter.insertRowAtRangeIndex(0, row);
    rowSetIter.setCurrentRowAtRangeIndex(0);
    After the row is created, I enter values into the row and click on "Save" link. The action Listener for the save link is:
    BindingContainer bindings = getBindings();
    DCIteratorBinding iter = (DCIteratorBinding) bindings.get("getMultSortReportListIterator");
    //Read the entered values from the iterator
    Row currentRow = iter.getRowAtRangeIndex(0);
    String reportName = currentRow.getAttribute("reportName").toString();
    String sectionName = currentRow.getAttribute("sectionName").toString();
    Long userId = Long.parseLong(currentRow.getAttribute("userId").toString());
    String viewCriteria = currentRow.getAttribute("viewCriteria").toString();
    //Store to database
    MultipleSortReport multipleSortReportBean = new MultipleSortReport(reportName, sectionName, userId, viewCriteria);
    OperationBinding operationBinding = bindings.getOperationBinding("persistMultipleSortReportTest");
    Map params = operationBinding.getParamsMap();
    params.put("multipleSortReportObj", multipleSortReportBean);
    IMultipleSortReport multipleSortReportInfo = (IMultipleSortReport)operationBinding.execute();
    The problem is that after entering the values into the newly created row, I have to tab out of the row and click with the mouse to place the cursor in the
    end of the next row's first field for the iterator to reflect the entered values. If i enter the last column in the new row and after entering it I directly
    click on "Save", the newly entered values are not reflected in the iterator. The iterator is still reflecting the old values of the row i.e. "" empty fields
    as it was initialized during Create Row.
    Can you help me fix this problem. I want the iterator to reflect the newly entered values without having to tab out of the row.

    Marvin,
    I would suggest starting to debug your new CT in the following order
    1) ABAP - run directly in SAP to confirm you are getting the data you expect
    2) Set breakpoints in ABAP and confirm your transmit is calling into your ABAP as expected
    3) Java - Add breakpoints and step through your Java class to confirm it is getting back the data as expected
    4) ATE - Look at the CT in the ATE to view the contents
    --Bill

Maybe you are looking for