VO Substitute not reflected

Hi,
Extended the below VO to select one more column in the standard VO
/oracle/apps/cn/oa/payment/pmtbatch/server/TermResVO
and by excuting jpx Import command and got below message
Imported document : /oracle/apps/cn/oa/payment/pmtbatch/server/customizations/site/0/TermResVO
Import completed successfully
executed below command
BEGIN
JDR_UTILS.printdocument('/oracle/apps/cn/oa/payment/pmtbatch/server/customizations/site/0/TermResVO');
END;
got below output
<?xml version='1.0' encoding='UTF-8'?>
<customization xmlns="http://xmlns.oracle.com/jrad" xmlns:ui="http://xmlns.oracle.com/uix/ui" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:user="http://xmlns.oracle.com/user" version="10.1.3_1312" xml:lang="en-US"
customizes="/oracle/apps/cn/oa/payment/pmtbatch/server/TermResVO">
<replace with="/xxx/oracle/apps/xxxcn/XXXTransactions/server/TermResVOEx1"/>
</customization>
But the Substitute doesnt appear in the page when checkd by clicking about this page link
Am I missing anything? or any profile option?
Thanks
Santosh
Edited by: SantoshG on Apr 25, 2013 6:01 AM

Hi Kumar,
Yes, we substituted the standard VO.
This is how its appearing in jpx file
<Substitutes>
<Substitute OldName ="oracle.apps.cn.oa.payment.pmtbatch.server.TermResVO" NewName ="xxx.oracle.apps.xxxcn.XXXTransactions.server.TermResVOEx1" />
</Substitutes>
Thanks
Santosh

Similar Messages

  • Substitutions not reflected in work schedule

    Hi experts,
    I have have substitued workschedule , however when i click on the personnel working schedule button and its not reflecting in the employee work schedule .
    My situation are suppose an employee work schedule was to be early shift and i substitute it to afternoon shift to replace a staff.The problem is the system does not overwrites my employee working schedule.
    Is there any place where i could check whether it had been substitued ?
    Regards,
    Chris

    Hi Chris,
    Please ask Piscian how query resolved:
    http://forums.sdn.sap.com/click.jspa?searchID=37369186&messageID=8575232
    Regards,
    Dilek

  • List view web part not reflecting changes made to list view in SharePoint Designer

    Dear All,
    When adding a list view web part containing a view modified in SharePoint designer (e.g. conditional formatting applied, or group headers modified) I'm finding that the changes made in SPD are not reflected in the web part. 
    For example, I go into SPD edit a view, and the view appears correctly when I go back into SharePoint, however when I link to the view within a list view web part it results in losing the changes made in SPD. 
    Becasue it's a publishing page I'm unable to edit the contents of the web part in SPD.
    I'm sure this is expected behavior but how do I get around this?
    Thnaks,
    MDB

    Try below
    http://stackoverflow.com/questions/19533998/sharepoint-designer-doesnt-show-anything-in-list-and-libraries-link
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a63a1894-6b1d-420a-95dd-b6c546eab34d/updates-made-to-sharepoint-designer-2010-workflow-do-not-show-up-on-the-server?forum=sharepointcustomizationprevious
    http://stackoverflow.com/questions/5959521/sharepoint-designer-saves-the-changes-but-it-does-not-affect
    http://social.technet.microsoft.com/Forums/en-US/1e9a8c27-bbc5-4a6f-8daf-4b243182f543/changes-in-sharepoint-designer-2010-not-showing-in-sharepoint-server-2010-page?forum=sharepointadminprevious

  • Free goods not reflecting in PO from Info Record

    Hi,
    My requirement is , when ever i order 100 qty from a vendor 10 qty should be delivered free of cost.
    I am trying to maintain Info record for the same..
    Now when i created PO for the same...I entered 100 qty..it is not reflecting 10 qty in another line in PO..
    Where i am wrong?
    Uts

    HI,
    Have maintained the values in
    *Spro-Purchasing-Discount in kind-Define & assign discount in kind schema-Maintain free goods schema*
    It will be available in standard SAP if not do the following configuration
    Here
    Usage -N
    Application -M
    create procedure NR0001
    In control data
    step-10
    Cond Type-NR00
    Then save.
    Next
    Define free good schema
    Here assign ur schema grp of vendor
    Then assign the procedure created previously (i-e) NR001 & THEN SAVE.
    The above configuration is very important for the free goods scenario to work.
    Then go to MM and in purchasing view and give the value 2.
    Then in MBN1 create the condition record for the IR -0.
    Then create the PO it will work definetly.
    9884057038
    murugan
    Edited by: Murugan mgl on Jun 17, 2009 6:58 AM
    Edited by: Murugan mgl on Jun 17, 2009 6:59 AM

  • DataGrid not reflecting changes after INSERT into Table. Delete from Table does.

    Wow, it's been a while.
    Hope you guys can help.
    This is my DataGrid:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    <DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="BorderThickness" Value="0"/>
    </Style>
    </DataGrid.CellStyle>
    <DataGrid.Columns>
    <DataGridTextColumn x:Name="NodeColumn" Binding="{Binding node}" Header="VS Number" Width="*"/>
    <DataGridTextColumn x:Name="SerialColumn" Binding="{Binding serial}" Header="Serial Number" Width="*"/>
    <DataGridTextColumn x:Name="NameColumn" Binding="{Binding name}" Header="Asset Name" Width="*"/>
    <DataGridTextColumn x:Name="TypeColumn" Binding="{Binding type}" Header="Asset Type" Width="*"/>
    <DataGridTextColumn x:Name="_dateColumn" Binding="{Binding date}" Header="Date Allocated" Width="*"/>
    <DataGridTextColumn x:Name="PoColumn" Binding="{Binding po}" Header="Purchase Order" Width="*"/>
    </DataGrid.Columns>
    </DataGrid>
    This is where I add a new Row to the Table:
    Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
    Dim cbblocation As ComboBox = Me.FindName("LocationComboBox")
    Dim row As DataRowView = DirectCast(cbblocation.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    Dim cbbtype As ComboBox = Me.FindName("comboBoxType")
    Dim cbbtext2 As String = cbbtype.Text
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.AddNewAsset(cbbtext, txbSerial.Text, txbName.Text, cbbtext2, Date.Today, txbPO.Text)
    node = cbbtext
    Dim mp As New MainPage
    mp.RefreshGrid(node)
    Me.Close()
    End Sub
    The RefreshGrid method:
    Public Sub RefreshGrid(node As String)
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.FillByNode(RETAILISOAMDDataSet.tableAssets, node)
    Dim TableAssetsViewSource As System.Windows.Data.CollectionViewSource = CType(Me.FindResource("TableAssetsViewSource"), System.Windows.Data.CollectionViewSource)
    Dim be As BindingExpression = BindingOperations.GetBindingExpression(TableAssetsViewSource, CollectionViewSource.SourceProperty)
    be.UpdateTarget()
    End Sub
    And this is what I use to delete a row from the table (and without doing anything special, the DataGrid auto-updates with the changes):
    Private Sub Button_Click_4(sender As Object, e As RoutedEventArgs)
    If TableAssetsDataGrid.SelectedIndex = -1 Then
    MsgBox("You have selected nothing to Delete!", MsgBoxStyle.OkOnly, "Nothing Selected")
    Else
    Dim dgv As DataGridTextColumn = Me.FindName("NodeColumn")
    Dim row As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText As String = row.Item("node")
    Dim dgv2 As DataGridTextColumn = Me.FindName("SerialColumn")
    Dim row2 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText2 As String = row.Item("serial")
    Dim dgv3 As DataGridTextColumn = Me.FindName("NameColumn")
    Dim row3 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText3 As String = row.Item("name")
    Dim dgv4 As DataGridTextColumn = Me.FindName("TypeColumn")
    Dim row4 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText4 As String = row.Item("type")
    Dim dgv5 As DataGridTextColumn = Me.FindName("_dateColumn")
    Dim row5 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText5 As String = row.Item("date")
    Dim dgv6 As DataGridTextColumn = Me.FindName("POColumn")
    Dim row6 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText6 As String = row.Item("po")
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.RemoveAsset(dgvText, dgvText2, dgvText3, dgvText4, dgvText5, dgvText6)
    Dim cbb As ComboBox = Me.FindName("cbbLocation")
    Dim row7 As DataRowView = DirectCast(cbb.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    RefreshGrid(cbbtext)
    End If
    End Sub
    --------- End of Edit
    It is bound to a Dataset which gets it's data from a SQL Database.
    Loading the Data and Filtering the data based on certain conditions work 100%. The problem I am having is as follows:
    I have a form on the Page that takes input and inserts a row into the Database. When this happens, the DataGrid won't automatically reflect the changes (even if I recall the Fill Method of the Dataset). No matter what I do, I have to refresh the entire page
    and THEN Fill the Dataset to see any changes.
    This is what strikes me as odd...
    When I do a delete row operation on the Database (Custom Method on the Dataset with conditions), and just Fill the Dataset again (without doing anything special), the row deletes and the changes is reflected IMMEDIATELY.
    What am I doing wrong here? Why would Delete Row reflect the changes on the DataGrid but no Insert Row?
    Thanks in Advance.
    (P.S. I am very rusty with my developing skills, I haven't done this in YEARS)

    >>And what about the the most important question, how exactly is TableAssetsViewSource defined in the XAML markup and what is
    its Source property set or bound to? And what about the reproducable sample...?
    Here is the Markup of the TableAssetsViewSource:
    <Page.Resources>
    <local:RETAILISOAMDDataSet x:Key="RETAILISOAMDDataSet"/>
    <CollectionViewSource x:Key="TableRegionsViewSource" Source="{Binding tableRegions, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableLocationsViewSource" Source="{Binding tableLocations, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableAssetsViewSource" Source="{Binding tableAssets, Source={StaticResource RETAILISOAMDDataSet}}"/>
    </Page.Resources>
    The ItemsSource of the DataGrid is bound to the TableAssetsViewSource:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    Just remember, this code was auto-generated with the drag & drop onto the Page, so I did little in terms of setting the actual bindings.
    All in all, what I have done so far works as intended, except that when I want to add a row to the table it does not reflect, and that it only shows after refreshing/restarting the application.
    I will try and put together a reproducable sample.

  • UI Screen Configs not reflecting on the web

    For doing screen configuration,  when I click on the frame to configure, the system is picking up std key and not the custom key zpartman though zpartman key is there in the list. ( Note: Zpartman key is the one assigned to this role ). Therefore if I do config in zpartman key, it's not reflecting on the web. Please reply what could be the reason and the solution.
    Thanks
    TR

    Hi TR
    first access the standard and check the configuration info such as what is the configuration key , object and subobject .
    Then access your custom configuration screen and check what it was looking for and what is it picked , change your custom configuration accordingly what it was looking for (by making changes to configuration key, object and sub object).
    Check that you are accessing in the same client if not transport the request to other client using SCC1 transaction.
    Thanks & Regards
    Raj

  • ER Contribution for Pension not Reflecting in Payroll.

    Hi Experts,
    I have an issue in Pension ER contribution in Payroll.
    We have created a function to calculate the ER contribution and incorporated in Schema (INT). while running the payroll
    ER contribution is not reflecting Payroll.
    Note: We are passing the calculated result to WT0902 Pension ER contribution in RT directly by referring structure PC207.
    Correct me if this is the rite approach.
    Regards
    Raj

    Hi,
    Insted of going through SCHEMA please configure this table in simple way and check whether your client need is getting fullfilled if it is for indian payroll.
    V_T7INF1,V_T7INF5,V_T7INF5,V_T7INF3
    Go to pa30 and choose infotype 0587 and fill the details and for pension you can either give percentage or the fixed amount and run the payroll
    Thanks
    Vibin

  • 2LIS_02_ITM deleted line items are not reflected in BW

    Hi,
    Our current Data flow 2LIS_02_ITM-->DSO-->CUBE.
    I am analyzing a Invoice, When it is created 01.04.2014 it has got 10 Line Items and all the data is load to BW,Invoice with 10 Line items.
    In ECC I can now see the same Invoice only got 5 line items and from change log I can see 5 line items are deleted on 15.04.2014.These changes are not reflected in BW.In BW invoice data still shows 10 line items.
    If I perform setup table job and ECC RSA3 for that invoice I am getting only 5.
    I believe it’s something to do with 0RECORDMODE,Can you please let me know how to fix this in BW.
    Thanks

    Yes this is a known behavior in case of deltas.
    For Deleted line items Rocancel field will have an entry with R.
    To handle this you need to map ROCANCEL field in Technical group of transformation (Between Datasource to DSO) with 0Recordmode.
    Once you will do that then after activating the data in DSO it will nullify the records and deleted order or item will not appear.
    Regards,
    AL

  • PO no not reflecting in GL/ Vendor line item display

    Hi Guys,
    Please let me know that why PO no (column is displaying but) data not reflecting in GL/ Vendor line item display using TCode FS10N? What may the possible reasons and how I can get the data flow in the column?

    Hi Amit,
    You are right and I've changed the layout. I've already said that the field displaying there but data is not flowing in the field. I mean to say that PO no is not reflecting in the specified field. However I am able to get the PO no. in  Assignment field. What may be the reason and how I get the data (PO no.) in this field?

  • Recievables amoint is not reflecting in credit exposure value

    "FBL5N - Account Receivable Reports-FI-SAP" is showing updated field of "Credit Control Area". But the same items are not reflected in the "Receivables" field of Credit Management Report hence not updating the Credit Exposure. What can be the reason for this?

    solved!

  • Changes in server side java file not reflecting in Client side java code?

    Hi friends,
    iam using eclipse IDE, JBoss server, SWING GUI and Oracle DB
    ( looks like : SWINGGUI (Client) <--> EJB's (serverside) <---oracle )
    my problem is , when i make change in server side bean file, that changes are not reflecting in GUI programs.
    (for ex: iam adding settr and getter for a field and using that in GUI program. but its not identifying that setter or getter).
    please tell me what should i do for every change done to server side program, that should reflect / available to GUI?

    my problem is , when i make change in server side bean file, that changes are not reflecting in GUI programs.
    (for ex: iam adding settr and getter for a field and using that in GUI program. but its not identifying that setter or getter).what do you mean it's not "identifying" the methods?
    you have to call those methods you know
    are you getting NoSuchMethodError?
    please tell me what should i do for every change done to server side program, that should reflect / available to GUI?you haven't posted any code or error messages that might help us debug

  • HT1923 Hi, my Ipod classic is not reflecting in Itunes (latest version) but I can see it in Computer as a hard disk. Kindly assist

    Hi,
    My Ipod classic is not reflecting in Itunes which I have recently downloaded but it reflects in my computer as a hard disk.
    Please give me a solution.
    Thanks

    Try Resetting Your iPod while it's connected to the computer.
    Hold down the Menu and Select buttons until you see the Apple logo (or Menu & Play/Pause in older models).
    This will often get it recognized. It may take several attempts.
    Also see these (if you haven't found them already):
    Your Windows PC doesn't recognize iPod
    iPod does not appear in iTunes or on the desktop
    iPod appears in Windows Explorer but does not appear in iTunes

  • IPhone 4 with iOS5; Changes in iTunes to music not reflected on iPhone.

    It's really odd.  I plug in my iPhone, open iTunes, make changes to playlists (add or delete, etc.) and add or delete actual songs to my iPhone (via iTunes), etc., but none of this gets reflected on my iPhone when I unplug from computer and open the Music app.  When I open the Music app, all the old playlists and songs are still there.  But when I plug the iPhone back into my computer and open iTunes and click on my device, all the changes are reflected (on iTunes after clicking on my device).  I push Sync and let the phone Sync but it still does not reflect any of the changes when I unplug.  What is even crazier is I go back to the iPhone and I can still click on songs to play them, even after I have deleted them through iTunes on my iPhone, and they no longer show up on my device through iTunes.  Anyone have any suggestions?
    This never happened prior to upgrade to iOS5 or backing up to iCloud.

    I am just updating as I was finally able to get this to work.  I went back and synced two more times with iTunes.  The first time still did not make any changes to my iPhone.  The second time, the sync hung (at least an hour later it was still syncing on step 5 of 5), but I "ejected" anyway.  And this time the changes were reflected in my iPhone.  I don't know why the first two Syncs did not make the changes, even though they Synced without issue.

  • Conditions in Calculation Schema not reflecting in Purch Info Record

    Hi,
    We are using calculation procedure TAXIN.
    We have maintained Calculation Schema & maintained required conditions.
    When we checked for maintaining these conditions in Purchasing Info Record, (Transaction Code - ME11 / ME12), these conditions are not appearing in the info record. But, the conditions appearing in the info record are not same as those in the Calculation Schema.
    Also, the conditions maintained in Info Record are not getting copied to Purchase Order (except Base Price P000).
    What could be the reason behind this? How to correct the same?
    Regards,
    Prashant Kolhatkar

    Tax procedure condtions will not appear in the info record. for the conditon which is not reflecting in the PO, you may check in inforecord whether there is a check mark in condition record saved for approval; if so it is deleted

  • Credit check not reflecting in sales order level

    Hi,Experts,
    I have configured a dynamic credit check,but even if the credit limit for the customer is crossed,still it is not reflecting in the sales document level,and allows me to create the sales order.please guide me as where should I check the error in the system,
    Thanks in advance,
    A.Chakraborty

    yes it is active for order type,and active for item category,as well as the dynamic credit check setting that is the combination of
    risk categoryccaccgrp(for sales order) ,is also done,still when the sales order is created,and even though the credit limit has crossed it is not throwing any message ,which is supposed to appear in the sales order,when we are going to save...
    please revert bach to me,to guide me about any further areas i need to explore within the particular area so far as the setting is concerned.
    Many thanks,
    Anshuman

Maybe you are looking for

  • Interface to run at a specific time

    Hi I am trying to let a interface run at a specific time, I have setup the bpm and will probable use the wait step? Is this the way to go, because I was thinking of setting my sender adapter to run let's say every 2 hours and then when it reach 10pm

  • ITunes stops working whenever I press "sync ipod". What do I do?

    help

  • Scheduling agreement_track the quantity

    Hi Experts, The requirement of the customer is entered in a Scheduling agreement. Sometimes the schedules are changed in the quantity only. The customer needs a report that should show the quantity entered earlier and changed later. The scheduling ag

  • Added fonts unavailable to users

    Hi Have added some extra fonts on a number of computers into the admin account fonts folder , which is where apps put their fonts and which are recognised, but these new ones are not availble for users who log on. If I log in as the Admin user on tha

  • ATPO Check and performance Issue

    Hi All We had performance issues for ATP check from R/3 to APO and while we asked SAP for help SAP responded saying the data volume for table TTSTR is high and we need to delete unnecessary data by running report -/SAPAPO/SCHED_DELETE_TSTRS and ZZSTR