Personalization in header region not reflecting

I am trying to personlize a field in the header region for the Change Location function. I tried changing the CSS style to OraErrorText for the Message Styled Text: Effective as of Approval Date field in the
Page: /oracle/apps/per/selfservice/location/webui/ChangeLocationPG
Document Name /oracle/apps/per/selfservice/location/webui/ChangeLocationPG
by clicking on the
Personalize Stack Layout: (HrNestedRegion2____1.SummaryContainerRN) link.
I tried the personlization at function / site / responsibility level, but the change is not getting reflected.
I tried personlization in some other regions of the page which is getting reflected, but the personlization in the header region is not getting reflected. Is there any limitations to the personlizations in the header region ?
Thanks,
Debojyoty

Dear Debojyoty ,
Genreally personalization will be effected on apply.
Have you restared the Application Server.If not restart the Application server and check it again.
Some times this step is required.
regards
Krishna Prasad Rapolu
Oracle HRMS Consultant.

Similar Messages

  • Iview Personalization not reflecting

    Hello All,
    We are on SRM 7.0 and SRM 7.0 Portal,.
    We have a requirement to hide a TAB in POWL.
    I am using administrative access to hide the tab by going to the iview of the POWL , preview--> RIGHT CLICK +Contrl and then modifying the properties of the UI elements to make it invisible.
    This is reflecting fine for me, but when a end user logs in , they do not see the changes.
    Also while saving it asked me whether to create a transport Request for transport personalization , once I selected yes and it created the Transport Request (ABAP) and once I said no and the transport request was not created. In both the cases the changes were not reflecting to end user.
    Can you please explain why this is so? All replies will be highly appreciated.
    Thanks and Regards
    Pradeep Bhojak

    Nah!! still it is not working.
    I tried everyting
    1> dited the ivew and changed the settings in Preview
    2> Changed the iview settings /personalization from within role.
    3> Added super, content, system admin role and everyone group as "owner" and end user.
    Any more clues, Thinking of contacting SAP now.
    Pradeep

  • Unable to edit header regions of template

    I have just recently taken over the whole editing etc, publishiing , admin of some  websties.  i have purchased contribute CS5. I was previously using Contrbute 4, which allowed me to edit the whole of the pages'header, body etc..'  however, whereas the consultant adminsitrator allowed me to edit the header regions, I now do not seem to be able to do this in CS5.  Is it because the  administrator has done something to stop me or am I missing some vital bit of info.  I can edit the content.  The old administrator is acting as if I never could do this and says I need to use Dreamweaver, which I dont have and didnt need it before, I have open the index page in dreamweaver and I still find that I am unable to edit the header and it appears to be try to access an included file,  it is trying to access Templates/base.dwt trouble is this does not exist among the files, any idea's why this might be so or is there some trick to editing the headers now that I am missing, cheers in addvance
    dustin

    Hi Dustin,
         You can edit the existing template in the Dreamweaver as for you requirement, by creating connection to that site in Dreamweaver.
    While saving the template, Dreamweaver will prompt you, asking for updating the pages using this template. You can update all the pages using that template. So then changes you did in the template will be reflected in those pages.
    For example, if you place the Header part in Editable region and save the changes and update in all the pages, then when you edit those pages, the header part will be editable.
    Hope this helps you.

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

  • PO changes not reflecting in the SAP R/3 system in Extended classsic

    Hi Guys,
    I have a querry regards to deletion of a PO line item in Extended classic scenario Version 5.0. User has deleted the line item in the shopping cart and now the status of the shopping cart is with Zero value and line item deleted, but in the PO there is a line item with some Value and we are trying to delete it and save it, it gets deleted and PO status it shows as awaiting approval. but at the Item level of the PO the check box  of Item deletion is updated. which means PO line item is deleted.
    Now my querry is the status of the PO in the SRM shows a awaiting approval and this is not in approval tab but at the header level when I try to search the PO with PO display/change option. Also its not reflecting with the deleted item in R/3 system.
    Please help me.
    Regards
    Srujank

    Hi
      Check configuration of your Message server. check if your message server is configured properly. Just go to your SAP logon. Select the system say "DEV" and click on groups.Then Click on System id and enter the id as "ID1" in your case.
    and then enter the machine name in the message server box and then click on generate list. If your message server is configured correctly you would get some groups in the list below. only if that comes then go to SLD and check in the ABap technical system if you have configured technical system using the proper logon groups.
    Then you should not face this problem. Let me know if you require more information.
    regards
    ravi

  • Down Payment entries not reflecting in J1INMIS report

    Dear Guru's,
    TDS deducted at  the time of down payment made to vendor is not reflecting in J1inmis report.
    Is J1INMIS report does not reflect down payment entries?
    What will be the reason for this?
    Which alternative report to followed for J1INMIS !!!
    Waiting for your positive reply.
    Regards,
    Sany.

    Hi Sany,
    To update Business Place & Section Code, execute the program given below. After execution of the program run T.Code J1INPP and your issue should get resolved. Let me know if this works.
    Ask the Abaper to write the following Code & execute the program:
    REPORT  ZFI_BUP_SEC_CHANGE.
    TABLES : BSIK,BSAK,BSEG.
    parameters: PA_BELNR TYPE BSEG-BELNR OBLIGATORY,
                PA_BUKRS TYPE BSEG-BUKRS OBLIGATORY,
                PA_GAAHR TYPE BSEG-GJAHR OBLIGATORY.
    PARAMETERS : PA_BUPLA TYPE BSEG-BUPLA NO-DISPLAY,
                 PA_SECCO TYPE BSEG-SECCO NO-DISPLAY.
    PA_BUPLA = 'MUM'.                               (Note : Use the Business place & section Code Used
    PA_SECCO = 'MUM'.                                         in your company code).
    START-OF-SELECTION.
    PERFORM CHANGE_DATA.
    END-OF-SELECTION.
    *&      Form  CHANGE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM CHANGE_DATA .
    DATA : LT_BSEG TYPE TABLE OF BSEG WITH HEADER LINE,
           LT_BSIK TYPE TABLE OF BSIK WITH HEADER LINE,
           LT_BSAK TYPE TABLE OF BSAK WITH HEADER LINE.
    BSeg updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSEG
    FROM BSEG
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSEG.
      IF LT_BSEG-BSCHL    = '25' OR LT_BSEG-BSCHL = '26'
         OR LT_BSEG-BSCHL = '27' OR LT_BSEG-BSCHL = '28'
         OR LT_BSEG-BSCHL = '35' OR LT_BSEG-BSCHL = '36'
         OR LT_BSEG-BSCHL = '37' OR LT_BSEG-BSCHL = '38'
         OR LT_BSEG-BSCHL = '39'.
        LT_BSEG-BUPLA = PA_BUPLA.
        LT_BSEG-SECCO = PA_SECCO.
        MODIFY BSEG FROM LT_BSEG.
        Write : / LT_BSEG-BELNR, 'Update For BSEG', LT_BSEG-BSCHL,
                  LT_BSEG-BUPLA,LT_BSEG-SECCO.
      ENDIF.
    ENDLOOP.
    Bsik updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSIK
    FROM BSIK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSIK.
      IF LT_BSIK-BSCHL    = '25' OR LT_BSIK-BSCHL = '26'
         OR LT_BSIK-BSCHL = '27' OR LT_BSIK-BSCHL = '28'
         OR LT_BSIK-BSCHL = '35' OR LT_BSIK-BSCHL = '36'
         OR LT_BSIK-BSCHL = '37' OR LT_BSIK-BSCHL = '38'
         OR LT_BSIK-BSCHL = '39'.
        LT_BSIK-BUPLA = PA_BUPLA.
        LT_BSIK-SECCO = PA_SECCO.
        MODIFY BSIK FROM LT_BSIK.
        Write : / LT_BSIK-BELNR, 'Update For BSIK', LT_BSIK-BSCHL,
                  LT_BSIK-BUPLA,LT_BSIK-SECCO.
      ENDIF.
    ENDLOOP.
    BsAk updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSAK
    FROM BSAK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSAK.
      IF LT_BSAK-BSCHL    = '25' OR LT_BSAK-BSCHL = '26'
         OR LT_BSAK-BSCHL = '27' OR LT_BSAK-BSCHL = '28'
         OR LT_BSAK-BSCHL = '35' OR LT_BSAK-BSCHL = '36'
         OR LT_BSAK-BSCHL = '37' OR LT_BSAK-BSCHL = '38'
         OR LT_BSAK-BSCHL = '39'.
        LT_BSAK-BUPLA = PA_BUPLA.
        LT_BSAK-SECCO = PA_SECCO.
        MODIFY BSAK FROM LT_BSAK.
        Write : / LT_BSAK-BELNR, 'Update For BSAK', LT_BSAK-BSCHL,
                  LT_BSAK-BUPLA,LT_BSAK-SECCO.
      ENDIF.
    ENDLOOP.
    ENDFORM.                    " CHANGE_DATA
    Thank You.

  • Current Header Rows Not Appearing on FBL1N - A/P Detailed Line Item Report

    Our A/P staff somehow turned off the header rows at the top of the FBL1N report.    The rows contain the various variables related to the report such as vendor name, vendor address, city, state etc.
    Does anyone know how I can change the report so that these variables once again appear on the report?
    Thanks,

    Michael,
    Do you mean that you can not access via the following link?
    http://service.sap.com/notes
    Well, if this is your case, I will copy note 181592  here since there is only text information and not code correction. I am sorry but the format is not good, but I think this note will help you to insert header again.
    If this note does not help you, let me know and I will check the other notes that I have provided.
    Please kindly check the note text below:
    Best Regards,
    Vanessa Barth.
    ==============================================================
    SAP Note No. 181592                          20.01.2009           Page 1
    Number              181592
    Version             6 from 03.03.2000
    Status              Released for Customer
    Set on              02.03.2000
    Language            EN
    Master language     DE
    Short text          Line item: Setting-up the headers
    Responsible         Christian Auth
    Component           FI-GL-GL-D
                         Reporting/Analysis/Display
    Long text
    Symptom
    You want to display information in the headers or change information
    preset in the headers for the following: line item display for vendors,
    G/L accounts customers or customer information on an account.
    Additional key words
    Program RFITEMAP, RFITEMGL, RFITEMAR, Transactions FBL1N, FBL3N, FBL5N,
    layout variants, layout headers
    Cause and prerequisites
    You are not familiar with the option of individually setting header
    information or how to use maintenance transactions.
    Solution
    1.  Overview
         In the line item report you can display information in the header of
         the list (given that this information is equal for all items
         displayed).
         For example, a customer accounts clerk wants to display the
         following data in the header: account number and name of the
         customer, name and telephone number of the responsible accounting
         clerk for the customer, current date.
         You can use information taken from the account master data. General
         variables like the time and date are also available.
         The following describes how you can set up the layout of header
         information yourself. A header layout is always assigned to the
         particular display variant of the list which you set on the bottom
         of the selection screen or which you can choose using CTRL+F9 on the
         display ('Choose' button). You can therefore personalize the header
         layout as well as the remaining display layout.
         The header layout is output if the account number group is changed,
         if the list has been sorted according to the 'Account' field, and if
         a page break has been set for this field. You can maintain these
                                                                       Page 2
            settings under the menu option Edit -> Subtotal (Ctrl+F1).
         2.  Setting up the headers
             Choose from the menu
             Settings -> Display Variant -> Current header rows
             You now see rows in which you can arrange variables. Using the
             pushbuttons in the function bar, you can create or delete rows.
             When you position the cursor at the start position and choose
             function "Gen. variables" (Shift+F5) or "Characteristics..."
             (Shift+F8) a new variable is positioned in the header area. From the
             following dialog box, you can choose the variable (also called
             characteristic) from an inventory.
             Under "Text type", you determine whether the label for the variable
             (for example, the label 'Customer') or if the value itself should be
             used (that is, the appropriate customer number for the items
             displayed in each case). You can display pairs as follows:
             <Label>: <Value>
             for example,
             Customer: 47110815
             If the value is a key for a short or long text (either a name or a
             description), you can also select this under "Text type".
             After selecting and positioning the characteristics, save and return
             to the list. The headers are displayed immediately with correct
             values so that you can check your results right away.
         3.  Save the list variant
             Choose "Save" (Ctrl+F12) in the list. In the following dialog box,
             you can enter a name and a label for the list variant that will be
             stored together with your header layout.
             Note that general variants visible to every user have a name
                                                                           Page 3
           starting with the character '/'. User-specific variants on the other
           hand must begin with a letter and are only visible to you.
           Standard variants delivered by SAP in general start with a number
           and have preconfigured headers. You cannot change the SAP variants,
           but you can use them as template for your own enhancements, which
           you can store under another variant name.
       Valid releases
       Software Component                        Release
                                                 from            to
       SAP_APPL
            SAP Application
                                                 46C          - 46C
                                                 46A          - 46B          X
       Further components
       FI-AP-AP-D
        Reporting/Analysis/Display
       FI-AR-AR-D
        Reporting/Display/Credit Management
       Reference to related Notes
       Number    Short text
       306225    Line item: page break when printing lists
       213144    Line item: Header information disappears
       181697    Line item: Header information is missing

  • Changes are not reflecting in the page

    Hi All,
    I have an issue in custom page. In my custom page, if i click approve button for a particular batch, then it will navigate to previous page which contains 10 batches per page in the table structure.
    Once i clicked the Approve button it will update the status in the table. It is getting updated in the table but it is not reflecting on the Batches page while navigating to previous page.
    Kindly share your suggestions.
    Thanks and Regards,
    Myvizhi

    Hi Myvizhi ,
    Since you wish to display a specific row in the table region , then while navigating from update page to search page send primary key and set it as
    where clause , so that you can view only updated specific row .
    You need to handle this in process Request of your controller class in search page . Let me know if its not clear .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Changes are not reflecting on same system for WD Component

    Hi ,
    I have one interesting issue , I have done some changes in Webdynpro component , changes are reflecting for some users but not reflecting for some other users on the same system. Can anyone tell me why it is behaving like that ?
    In R/3 I have faced this issue , this is one option of GENERATE via this I have resolved this issue but how i will do it here?
    Thanks
    Ankesh Jindal

    I am not sure if i understand your real problem here.
    It could be very well related to Personalization and Customization.
    Go to SICF transaction and then
    sap/bc/webdynpro/sap/wd_analyze_config_user

  • Changes made in ECC not reflected to CRM

    Just encountered a problem. As follows:
    1. When a line item in a sales order in ECC is rejected with a reason, the changes are reflected back to CRM. Likewise, when the PO number field in the sales order is changed, the changes are reflected back to CRM. This is ok.
    2. But when I make a change in the address fields (i.e. change the street) in the ship-to partner (on the header level) in the sales order in ECC, the changes are not reflected back to CRM.
    Has anyone encountered this issue before and if so, what was the solution?
    Will reward points...

    Hello,
    Check the inbound queue in CRM and outbound in R/3.
    Prase

  • Changes to component not reflected after transport

    We recently modified the  BT115QIT_SLSQ assignment block to rearrange some of the fields and column headers and also add in some newer standard fields. When transported up to quality, we noticed that only some of the changes came in, but others did not. Looking at the setup in the component workbench, it looks identical to the setup in DEV and we didn't receive any errors on the transport. I do  notice the View Navigation tab is now gone in quality and we were getting a "Error in runtime repository' error when we opened up the component in quality which has disappeared all of a sudden. The changes that do come in work fine.
    I tried to do a comparison between the repository.xml files between the 2 environments but they are identical. This was verified using WinMerge, a file comparison utility.
    What else could be causing the changes to the component to not reflect correctly or for that View Navigation tab to be missing?

    Hi James,
    When u transport the Enhanced component to Quality/Prod system the SICF node for that component in SICF transaction will be deactive in the target system, Activate the SICF node for all the enhanced components by right clicking in the SICF transaction manually in the Quality system, this will remove the 'Error in runtime repository' error.
    If you have added the custom fields through UI configuration tool, go to the personalize option for the view/component, select 'Reset to default' option.
    Regards,
    S Reddy

  • Regarding Conditions not reflecting in Herarchy query

    Hi Gurus,
    I have a scenario where i have created query on a multiprovider. In the query designer i have selected infoobjects like <b>region code, Director</b> ... and in columns i have selected <b>mileage,</b> .....i have also selected in the Rows as <b>Expand as Hierarchy</b>.
    The query is working fine. But the Conditions i have specified for mileage < 0 or anyother condition reflects only for region level. But it is not reflecting for Director level and subsequent lower level like manager..... In the condition i have selected for all characteristics.
    Kindly guide me to reslove the issues.
    Regards,
    Mano

    Mano,
    Depending on the characteristics you have in your report you will need to change the Conditions to look at the mixture of individual characteristics rather than All characteristics in the drill down independently.
    Open up the conditions dialogue box and make the relevant section in the "Evaluate the conditions displayed below for:"
    Regards
    Gill

  • Field lables changes in ESS iView not reflected on portal

    Hi All,
    I am trying to customize the SAP ESS Address DC (webdynpro Java) for South Africa region as per the SAP OSS note (No: 1428933).
    In order to incorporate the changes I have imported the ess/za/addr DC into NWDS. I have changed the label text as per the OSS note and deployed the DC but changes are not reflecting in the portal
    I did some more test on Label text;
    1. Removed the Label text property value from DC and deployed the application,  when I run the application during runtime screen is not showing any label text message for the label since I made it to empty.
    1. I added my custom text message to label text value instead of standard label text value and deployed the application, when I run the application during run time screen is automaticaly showing the standard label text value not my custom label text value.
    I'm trying to figure out from where these field labels value are coming from? Theoretically it should reflect field lables whats given in webdynpro but thats not the case here.
    From where Label field value is coming?. Help me out in this. Thanks,
    Regards, Suresh KB

    If you are just changing the field label the recommended approach is to do it through Web Dynpro UI personalisation.  DO NOT user NWDI to change the source code just for field label change.  The way you change through UI personalisation is locate the iView in portal content, and select preview of iView then use CTRL+RIGHT click mouse button on the field that you want to change the text, you will see properties of selected field in a popup window where you can change the default text.  Once you change it, and apply the changes you will be able to verify you changes in the iView properties (additional properties will be automatically created for the change you made).  Now check the personal data service under ESS role you should see the change.
    Hope this helps
    Siva

  • Placing 2 items in Header region?

    Hi - I'm stumped. Let's assume that I have a header region of 960px. The logo I insert onleft hand side is 406 px wide. I then want to place a second item in the remaining space that is left in that header. I tried to that by just simply inserting the image and then aligning it to the right....That didn't seem to work so then I thought I'd simply size down the header to 407 px and insert a div tag? THat didn't seem to work either as it dropped the div tag directly below the logo on left rather than insertion point as I thought it would?
    I'm new at this - and as you can see - lost! Help greatly appreciated! I'm using Dreamwever CS5.
    Thanks in advance for your assistance and patience.

    Hi
    This is not meant as an insult, but-
    Can I recommend that you spend a few days learning the basics of html/css, as any replys you receive to post on the forum will at the very least expect you to have an understanding of the basics.
    See - http://www.adobe.com/devnet/dreamweaver/articles/understanding_css_basics.html.
    Also check out the tutorial links at the bottom of the page in the above link.
    PZ

  • Document Viewer region not rendered

    Hi,
    Document Viewer region not rendered in one of the OA page. Following is the code added add the Document Viewer region in the parent page:
    <oa:header id="XDOCommonRN" extends="/oracle/apps/xdo/oa/common/webui/DocumentViewerRn.MainRegion" securityMode="selfSecured"/>
    This works fine in one environment and does not work in other. Please suggest what could be the reason? Is there a profile option which controls the visibility of Document Viewer region?
    Thanks
    Sanjeeva

    Hi,
    Document Viewer region not rendered in one of the OA page. Following is the code added add the Document Viewer region in the parent page:
    <oa:header id="XDOCommonRN" extends="/oracle/apps/xdo/oa/common/webui/DocumentViewerRn.MainRegion" securityMode="selfSecured"/>
    This works fine in one environment and does not work in other. Please suggest what could be the reason? Is there a profile option which controls the visibility of Document Viewer region?
    Thanks
    Sanjeeva

Maybe you are looking for