JSFF Page Fragment not finding at runtime

Hello,
We have an WLS setup , wherein a jsff (say ‘abc.jsff’) is included in a Library and deployed on WLS as shared library. We also have a web application which refers this library ( added the reference in Weblogic.xml )
At runtime, when a Taskflow link is clicked from the webapp (which in turns refers the page fragment) , we are hitting with IOException saying ‘abc.jsff’ not found.
=================================================================================================
Caused by: java.io.FileNotFoundException:
/oracle/apps/fnd/applcore/customization/admin/uiPublic/NavMenuCustomPageFragment.jsff
at
oracle.adf.library.webapp.ADFJspResourceProvider.internalFromStream(ADFJspResourceProvider.java:602)
at
oracle.adf.library.webapp.ADFJspResourceProvider.fromStream(ADFJspResourceProvider.java:346)
at oracle.jsp.parse.XMLUtil.getFromStream(XMLUtil.java:307)
at
oracle.jsp.runtimev2.JspPageCompiler.compileBothModes(JspPageCompiler.java:480)
=================================================================================================
We verified the installation on WLS and library is deployed successfully, web-application is also deployed successfully. Any clue on this as why the IOException is thrown?
Thanks
Joseph

Is the .jsff inside an ADF library? If so, are you using the ADFLibraryFilter and oracle.jsp.runtimev2.JspServlet and oracle.adf.library.webapp.ResourceServlet inside your web.xml?

Similar Messages

  • Page Fragment not appearing in Page Navigation!!

    My project contains a Page Fragment named Logo.jspf which is intended to be displayed on the top of every page in my project.
    I have a Link Action element on Logo.jspf and when clicked it should load Login.jsp only if the user is not loged in, and if the user is already loged in it should load some other page. I aware that I have to add codes in the action listener method in Logo.java.
    As the Page Fragment (in my case that is Logo.jspf) is not appearing in Page Navigaton window it is not possible to add code like following: (Because I cannot visually draw an arrow with name �login� from �Logo.jspf� to �Login.jsp�)
    public String linkAction1_action() {
    return �login�;
    Please anyone help to do this. Thank you very much.

    To forward to a particular page from a servlet we usually use codes similar to the following:
    request.getRequestDispatcher("/Login.jsp").forward(request, response);
    How can I get rhe request object (or the session object) from a bean in a JSC project?
    Any suggestions very much appreciated. Thank you very much.

  • Java script in jsff page is not working when deployed as adf lib jar

    hi,
    We have a ViewController Project with a several jsff pages that has javascript references to a .js fiile in the same project.
    When run in the same app, the javascript functions are invoked correctly.
    but, when deployed as an ADF-library and consumed in a diff application, not several components' javascript is invoked.
    Input Text Components javascript is almost always invoked. But, javascript on radio buttons or table are not invoked.
    Jdev: 11.1.1.6
    Thanks,
    Harsha.

    How to include javascript resources in  Facelet tag library

  • Pages does not find my printer

    I can print from my iPad using Print n Share for all documents except those created in Pages, so I know my printer is configured correctly. However, when I try to print a document from Pages it  says no printer found.    As it is now I have to email the document to myself and then use Print n Share to print it. I should be able to print directly from Pages. Any suggestions would be appreciated.

    Robert-
    You are way ahead of me as far as the Command + K is concerned.  I couldn't find a Command key on the iPad's on-screen keyboard!  I believe :8081 is a port number.  You might try leaving off the :8081 and see if it makes a difference.  Another possibility is that the printer somehow lost its IP address and then received a different number via DHCP.  Check again with HP iPrint to see if it still finds the printer at the same address.
    I have a Macintosh computer running Snow Leopard.  I found an AppleScript script that adds a small text file to a hidden folder on the Mac, that allows the mac to share its printer as AirPrint over WiFi.  I found the information at:
    <http://discussions.apple.com/thread.jspa?threadID=2658720&tstart=0>
    I did not remove the printer from my Mac's list of printers.  Instead, I added a second occurrence of the same printer with a name like "AirPrint Shared".
    Fred

  • App Store Update Page will not find or install 10.2.3

    I am having trouble with the App Store recognizing and downloading the update to OS 10.2.3.  It worked fine on my MacBook Air, but is giving the following problems on my Mac Pro and iMac, both of which are running 10.2.2:
    1  Either the Updates page just keeps spinning with the ball looking for an update (or)
    2.  The update page says "No Updates Available".
    It does give me the option to manually download OS X, but gives the waring that I already have 10.2.2 and it would be quicker to use the updates page.  Any suggestions?  Thanks!

    There is a problem with Apple’s servers that only they can fix. The problem has been going on for several days. You can try rebooting first and see if that gets the apps to show up in the updates tab.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    According to Fly150 in another discussion, this will work.
    This is a workaround only and not a fix. If you want to update the Apps while waiting for Apple to fix Updates:
    1. Go to App Store
    2. Select Purchased
    3. Select All
    4. Scroll down to find the Apps showing update
    Select update on the Apps
    Hopefully the red notification number will go away after the updates are applied.
    Another option is to update your apps in iTunes on your computer and then sync the updated apps to the iPad.
    1. Launch iTunes
    2. Click on Apps in the list under the Library heading in the left Sidebar.
    Click on Updates at the top in the window on the right
    Update all of the apps
    Connect your iPad and Sync with iTunes
    If you do not see the sidebar in iTunes 11 - go to View>Show Sidebar from the iTunes menu at the top.

  • In FormView Pager Template shown in design page but not shown in runtime.....

    //////////////////////MY TABLE//////////////////
    USE [logistics_tab]
    GO
    /****** Object:  Table [dbo].[dtype]    Script Date: 02/07/2015 10:19:00 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[dtype](
    [dtid] [int] IDENTITY(1,1) NOT NULL,
    [dtcd] [char](5) NOT NULL,
    [desp] [char](15) NOT NULL,
     CONSTRAINT [PK_dtype] PRIMARY KEY CLUSTERED 
    [dtid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY],
     CONSTRAINT [Uq_dtcd_Dtype] UNIQUE NONCLUSTERED 
    [dtcd] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ////////////MY STORED PROCEDURE/////////////////////
    USE [logistics_tab]
    GO
    /****** Object:  StoredProcedure [dbo].[dtype_pro]    Script Date: 02/07/2015 10:21:42 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE PROCEDURE [dbo].[dtype_pro]
    @dtid as int=0,
    @dtcd as char(5)='',
    @desp as char(15)='',
    @status as varchar(50)=''
    AS
    BEGIN
    SET NOCOUNT ON;
    if(@status = 'Display')
    begin
    Select * from dtype
    end
    else if(@status = 'Add')
    begin
    Insert into dtype(dtcd,desp) values (@dtcd,@desp)
    end
    else if(@status = 'Update')
    begin
    Update dtype set dtcd=@dtcd, desp=@desp where dtid=@dtid
    end
    else if(@status = 'Delete')
    begin
    Delete from dtype where dtid=@dtid
    end
    END
    GO
    //////////MY DESIGN PAGE/////////////
    <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="DestnType.aspx.cs" Inherits="LogisticsApp.DestnType" %>
    <asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
    </asp:Content>
    <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <asp:FormView ID="FormView1" runat="server" DataKeyNames= "dtid" GridLines="Both" 
            AllowPaging="True" PagerStyle-BorderStyle="NotSet" PagerStyle-ForeColor="Black">
            <FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
            <PagerStyle BackColor="#B5C7DE" ForeColor="Black" HorizontalAlign="Center" Font-Bold="true" Font-Size="Large"/>
            <ItemTemplate>
                      <table>
                        <tr><td align="right"><b>Employee ID:</b></td><td><%# Eval("dtid") %></td></tr>
                        <tr>
                          <td colspan="2">
                            <asp:LinkButton ID="EditButton"
                                            Text="Edit"
                                            CommandName="Edit"
                                            RunAt="server"/>
                              &nbsp;
                            <asp:LinkButton ID="NewButton"
                                            Text="New"
                                            CommandName="New"
                                            RunAt="server"/>
                              &nbsp;
                            <asp:LinkButton ID="DeleteButton"
                                            Text="Delete"
                                            CommandName="Delete"
                                            RunAt="server"/>
                          </td>
                        </tr>
                      </table>                 
                    </ItemTemplate>
                    <PagerTemplate>
                    <table>
                        <tr>
                          <td><asp:Button ID="FirstButton1" CommandName="Page" CommandArgument="First" 
                          Text="<1<" RunAt="server" Font-Bold="True" />&nbsp;</td>
                          </tr>
                      </table>
                    </PagerTemplate>
    </asp:FormView>
    </asp:Content>
     ///////MY CODE///////////
        using System;
        using System.Collections.Generic;
        using System.Linq;
        using System.Web;
        using System.Web.UI;
        using System.Web.UI.WebControls;
        using System.Configuration;
        using System.Data;
        using System.Data.SqlClient;
        using System.Text.RegularExpressions;
        namespace LogisticsApp
            public partial class DestnType : System.Web.UI.Page
                public LogisticsApp.MyConnection.OfcConn constr = new MyConnection.OfcConn();
                SqlConnection con;
                SqlCommand com;
                SqlDataAdapter sqlda;
                DataSet ds;
                DataTable dt;//for form view
                protected void Page_Load(object sender, EventArgs e)
                    if (!IsPostBack)
                        BindGrid();
                protected void BindGrid()
                    try
                        con = new SqlConnection(constr.str);
                        dt = new DataTable();//for form view
                        com = new SqlCommand();
                        con.Open();
                        com.Connection = con;
                        com.CommandText = "dtype_pro";
                        com.CommandType = CommandType.StoredProcedure;
                        com.Parameters.Add(new SqlParameter("@status",             SqlDbType.VarChar, 50));
                        com.Parameters["@status"].Value = "Display";
                        sqlda = new SqlDataAdapter(com);
                        ds = new DataSet();
                        sqlda.Fill(dt);//for formview
                        sqlda.Fill(ds);
                        if (ds.Tables[0].Rows.Count > 0) //Check if DataTable returns data
                            FormView1.DataSource = dt;
                            DataBind();                
                    catch (Exception ex)
                        //lblerr.Text = ex.Message;
                        throw ex;
                    finally
                            if (con != null)
                                    if (con.State == ConnectionState.Open)
                                    con.Close();
                                    con = null;
                    protected void DtypeFormView_PageIndexChanging(object sender, FormViewPageEventArgs e)
                        FormView1.PageIndex = e.NewPageIndex;
                        BindGrid();
    //plz plz... help as soon as possible this is simple code but not show at run time....... :(
                        

    Good day uzma
    abidi
    It has been long time since I used Webforms but it look to me like you are using the default options and if there is no data that return in the query then you will not see the PagerTemplate.
    1. execute the SP from the SSMS.
    2. make sure that you pass the correct @status while executing the SP from the ASPX.
    3. check the SQL Server profiler, what query the SQL Server got.
    4. Check if DataTable (dt) has data after filling it. else you do not get the "DataBind" part, and the PagerTemplate will not display.
    * The basic code look ok in fast review. I might missed something. You should monitor it and get the line that make the issue.
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • Reload a jsff page from scratch

    Hi,
    I have an ADF project that has several jsff pages and I switch between them using a dynamic region (this is done by changing the taskflowid of the region).
    Each time I go back to a jsff page that was previously loaded I find out that its state is still as it was, in other terms the “checkboxes” and the “pick lists” and the “select multiple choices” and any other components still have their previous values / state.
    So the question is, does anyone know how to reload the jsff page when I request it (I request it by changing the taskflowid of the dynamic region), like it is the first time.
    Or does anyone know how to destroy the jsff page once the dynamic region swith to another jsff page.
    Note that I’m using jdeveloper 11g.
    Thanks,
    Alain.

    Hi Alain,
    The following link would be of help. Dynamic Region And Taskflow
    Pino

  • How to refresh JSFF page only when page loaded using ADF 11g

    Hi
    I am facing an issue with prepreModel() usage in the .jsff page fragment. I want to invoke executables only when the specific jsff page get's loaded. I tried using 'prepareModel' as a refresh condition, but I can see always executables are getting executed. Does 'prepareModel' behaves differently for .jsff when compared to .jspx ?
    Thanks in Advance

    Hi,
    ADF Regions have a slightly modified lifecycle. However, prepareModel behaves the same. Its marking a specific time in the ADF request lifecycle when the iterators are refreshed. Try prepareModelIfNeeded
    Frank

  • Attention Shay/Frank: Adding af:goLink tags on a page fragment dynamically

    Hello ADF guru's!
    I have a need to add <af:goLink> tags dynamically on a jsff page fragment. This page fragment will be a view activity on a taskflow which needs to be packaged as a ADFLibrary. I am wondering if this can be done.
    Any help will be appreciated.
    Thx.
    Lalit
    Edited by: Lalit Arora on Sep 23, 2009 2:47 PM

    In a backing bean you can use something like:
    containercomponent.getChildren().add(newComponent)

  • Bean is not worked  in the jsff page

    Hi
    JDeveloper Studio Edition Version 11.1.2.2.0
    I Have a bean for run a jasperreport
    package Reports;
    import javax.faces.event.ActionEvent;
    import sp11.model.apm.clubImpl;
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    import java.math.BigDecimal;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.util.HashMap;
    import java.util.Map;
    import javax.faces.context.FacesContext;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.type.WhenNoDataTypeEnum;
    import net.sf.jasperreports.engine.util.JRLoader;
    import net.sf.jasperreports.view.JasperViewer;
    import oracle.adf.model.BindingContext;
    import oracle.adf.model.binding.DCIteratorBinding;
    import oracle.binding.BindingContainer;
    import oracle.jbo.client.Configuration;
    public class CardFrontBean {
    public CardFrontBean() {
    public String runReportAction(){
    DCIteratorBinding rleIter = (DCIteratorBinding)getBindings().get("RealentityIterator");
    String RleId = rleIter.getCurrentRow().getAttribute("RleId").toString();
    BigDecimal ID = new BigDecimal(RleId);
    Map parameter = new HashMap();
    parameter.put("ID", ID);// where ID is a jasper report parameter
    try
    runReport("card_front.jasper", parameter);
    catch (Exception e)
    return null;
    public BindingContainer getBindings(){
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    public ServletContext getContext(){
    return (ServletContext)getFacesContext().getExternalContext().getContext();
    public HttpServletResponse getResponse(){
    return (HttpServletResponse)getFacesContext().getExternalContext().getResponse();
    public static FacesContext getFacesContext(){
    return FacesContext.getCurrentInstance();
    public void runReport(String repPath, java.util.Map param) throws Exception {
    Connection conn = null;
    try
    HttpServletResponse response = getResponse();
    ServletOutputStream out = response.getOutputStream();
    response.setHeader("Cache-Control", "attachment;filename=\"CardFront.pdf\"");
    response.setContentType("application/pdf");
    ServletContext context = getContext();
    InputStream fs = context.getResourceAsStream("/ReportsFolder/" + repPath);
    JasperReport template = (JasperReport) JRLoader.loadObject(fs);
    template.setWhenNoDataType(WhenNoDataTypeEnum.ALL_SECTIONS_NO_DETAIL);
    PreparedStatement statement = null;
    String amDef = "sp11.model.apm.club";
    String config = "clubLocal";
    clubImpl am = (clubImpl)Configuration.createRootApplicationModule(amDef,config);
    statement = am.getDBTransaction().createPreparedStatement("select 1 from dual", 0);
    conn = statement.getConnection();
    JasperPrint print = JasperFillManager.fillReport(template, param, conn);
    //JasperViewer.viewReport(print, false);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    JasperExportManager.exportReportToPdfStream(print, baos);
    out.write(baos.toByteArray());
    out.flush();
    out.close();
    FacesContext.getCurrentInstance().responseComplete();
    catch (Exception jex)
    jex.printStackTrace();
    finally
    close(conn);
    public void close(Connection con){
    if (con != null)
    try
    con.close();
    catch (Exception e)
    and a commandButton in the .jsff page
    <af:commandButton id="Realentitycardfront"
    textAndAccessKey="#{nls['REALENTITY_CARDFRONT']}"
    shortDesc="#{nls['REALENTITY_CARDFRONT_HINT']}"
    action="#{CardFront.runReportAction}"/>
    my .jsff page is in a bounded task flow with Use Page Fragments = true
    when i click the button. ........>nothing
    what is the matter
    i read in a post that it is not work in jsff page with page fragmentation
    please help me
    thanks

    One problem is that you write into the output stream from an action method and don't know what's already in the output stream. Once there is one byte written to hte stream (which you can't know from inside the action method) the pdf stream does not behave as you think it would.
    Next thing is that you use createRootApplicationModule but never release it. This will get you out of resources error eventually.
    A better approach would be to put this code in a servlet and stream the report from there. In the servlet you have control over the output stream.
    Check my blog http://tompeez.wordpress.com/2011/12/16/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-3/ where I show how to serve images from a servlet which can even use the application module pool from the application (no need to use createRootApplicationModule at all). All you have to do is to exchange the part where I get and stream the image data to your needs.
    Timo

  • Eclipse give following error :could not find Java 2 runtime environment

    When I try to start eclipse it is giving me following error could not find Java 2 runtime environment.It was working fine untill I installed a new verson of eclipse although I am not whethar that is the source of problem.
    When i give java -version command in command prompt it shows
    Registry key 'Software\JavaSoft\Java Runtime Environment\CurrentVersion'
    has value '1.4', but '1.6' is required.
    Error: could not find java.dll
    Error: could not find Java 2 Runtime Environment.
    My java Home ,classpath , and path are all set as I say it was earliar woking fine.
    Please Help.

    I know this is a relatively old post, but some people can stumble on this page when doing a search for this problem.
    Anyway, I ran into this on my PC after I installed Sybase which had an older jre.
    Solution:
    1. Run regedit
    2. Look for Java Runtime Environment
    You may have to do multiple searches. Eventually you'll find one with the version number.
    3. Modify the value and change it to the correct version number. (in your case, you would have changed it from 1.4 to 1.6).
    This is much quicker than reinstalling Java every time installing something that uses an older version of Java hoses up the registry value.

  • IDoc Status 02 ( Could not find code page for receiving system )

    Hi All,
    I am getting Idoc status 02 when I am trying to send IDocs from ECC to PI system ( Production ).
    Error description.
    Could not find code page for receiving system
    Message no. E0266
    Diagnosis
    For the logical destination PIP001, you want to determine the code page in which the data is sent with RFC. However, this is not currently possible, and the IDoc cannot yet be dispatched.
    Procedure for System Administration
    Possible causes are:
    1. The entry no longer exists in the table of logical destinations.
    2. The target system could not be accessed at runtime.
    3. The logon language is not installed in the target system.
    4. In the destination system, no logon language is maintained
    Please help.
    Thanks - Vinay.

    Hi Vinay,
    Status 02 occurs when data is not passed to port suceessfully. Check the RFC desination  is working fine and your able to connect to target system and also check correct port is assigned.
    Regards,
    Vinod.

  • FIle download not working in page fragment

    Hi All,
    I have to download a file . I am using Dynamic tab shell and in one pf my page fragement link to download a file is avaliable...
    I did a POC on jspx and its working fine but when i try to use the same code in my jsff (page frament ) its not working any idea that do i have to do anything specific to acheive the same..
    Thanks
    Shubhangi

    Shubhangi/Timo,
    was this resolved? I am having the same issue. File download works fine in a jspx page but the same code is not working when file download is used as part of a page fragment.
    I have a table column that has the filename as commandlink with a managed bean code as below.
    public oracle.binding.BindingContainer getBindings() {
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    public void downloadFile(ActionEvent actionEvent) {
    FacesContext fctx = FacesContext.getCurrentInstance();
    // myDocumentLocation specified in web.xml
    String DOCUMENTS_LOCATION =
    fctx.getExternalContext().getInitParameter("myDocumentLocation");
    if (DOCUMENTS_LOCATION == null) {
    // DOCUMENTS_LOCATION = "C:\\Documents and Settings\\xxloc\\";
    Application app = fctx.getApplication();
    ExpressionFactory elFactory = app.getExpressionFactory();
    ELContext elContext = fctx.getELContext();
    ValueExpression valueExp =
    elFactory.createValueExpression(elContext, "#{row.OrderFileName}",
    Object.class);
    String s1 = (String)valueExp.getValue(elContext);
    System.out.println(s1);
    String filename = s1 ;
    File srcdoc =
    new File(DOCUMENTS_LOCATION + filename);
    if (srcdoc.exists()) {
    FileInputStream fis;
    System.out.println("exists");
    byte[] b;
    HttpServletResponse response =
    (HttpServletResponse)fctx.getExternalContext().getResponse();
    response.setContentType("application/x-download");
    response.setHeader("Content-Disposition",
    "attachment; filename=" + filename);
    response.setBufferSize(1024);
    // response.setContentLength((new Long(srcdoc.length())).intValue());
    OutputStream out = null;
    try {
    out = response.getOutputStream();
    } catch (IOException e) {
    e.printStackTrace();
    try {
    fis = new FileInputStream(srcdoc);
    int n;
    n = fis.available();
    while (n > 0) {
    b = new byte[n];
    System.out.println("b" +b);
    int result = fis.read(b);
    out.write(b, 0, b.length);
    if (result == -1)
    break;
    } catch (IOException e) {
    System.out.println("in file error");
    e.printStackTrace();
    try {
    out.flush();
    out.close();
    } catch (IOException e) {
    e.printStackTrace();
    fctx.responseComplete();
    It would be great if someone could guide me with this issue.
    Thanks,
    RAS

  • CSS with page fragments does not seem to work

    Hi,
    I am using creator 2 update 1 and I have some problems setting styleClass to a page fragment, I read some older posts about this issue but I couldn't find a solution for this.
    I have a navigation fragment that holds simple hyperlinks inside.
    I want to give all the hyperlinks the same background-image so I create a new entry in the default resources/stylesheet.css of my project and try to set it to each hyperlink in its styleless entry in its properties.
    1. first you can't choose a styleClass for the fragment when clicking on (...) - it does not show any style class
    2. when I just set it by hand to the property , the creator does not have an effect on the hyperlinks (their style is not changed) , if I put for each hyperlink in its "Inline" style (property style) all the values that defined in the styleClass I want to use then the results are fine but this mean I need to take care of the style for each hyperlink alone and not use the styleClass ...
    Any ideas?
    thanks.

    OK, I found what the problem was: the URL to the background-image was wrong, only when I picked the image through the css editor it got the correct URL to the image and displayed it in all the hyperlinks

  • Infopackage Idocs in status 2 - could not find code page for receiver system

    Hi,
    We just migrated our production system from BW 7.01 non unicode to BW 7.4 on HANA.
    We now encounter issues with idocs while loading data into bw from our ECC5 source. When we analyze idocs in the source system it appears with the message "could not find code page for receiver system"
    One weird thing is that the idoc seems to have been created before we started the infopackage in bw.. We controlled system time and AS time and everything seems ok.
    We did not encounter this issues on our previous migration test runs..
    Hope someone can help
    Christophe

    Hi,
    Thanks for responding. We finally found out what the problem was.
    We have two applications servers on our ECC with 2 different OS. One of them could not reach the new BW HANA server.
    Regards
    Christophe

Maybe you are looking for

  • Problem Faced while uploading videos to ipod

    I cant seems to upload new videos into my ipod. the error message: "The ipod cannot be updated. An unknown error has occurred (-50). What should i do? I just got my ipod the day before. so.. i'm very new to my ipod. Anyone able to help me or tell me

  • When I reply to an e-mail, I need an option to have the current attachment of that e-mail (like in forwarding)...

    When I forward an e-mail, the attachment is added to the new e-mail automatically. It is OK. However when I reply, the attachment doesn't come and sometimes I need to have that current attached file. So I need an option as "reply with attachment" or

  • Planning Data source Creation Error

    Hi All, I am getting an Essbase connection error while doing Data source creation for planning application from workspace. Below is my Oracle EPM System Diagnostics report for Workspace and Essbase Foundation / Workspace PASSED     CFG: Configuration

  • Photoshop CS5 Teacher & Student Edition Problems

    Okay so here is my issue: I own a version of PS CS5 Student & Teacher edition. I installed it on my old laptop and everything was fine. I got a new laptop this past fall and my dad took my first one and wiped all my programs off before I could get to

  • Change run program failing..

    Hello BW experts, I have checked that the change run program is again and again failed while loading master data. After executing the Change run program I check the related job in SM37. It get successfuly completed. But if I again check the Change ru