AK Regions download

Hi,
I am trying to download the custom region which is created in AK Repositoy using the following command:
java oracle.apps.ak.akload apps apps THIN "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.0.10.180)(PORT=1527))(CONNECT_DATA=(SID=DEV)))" DOWNLOAD XXWMS_MOBILE_RN.jlt GET REGION INV XX%
But I am getting the following error:
[appldev@w-oraap01 ~]$ java oracle.apps.ak.akload apps apps THIN "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.0.10.180)(PORT=1527))(CONNECT_DATA=(SID=DEV)))" DOWNLOAD XXWMS_MOBILE_RN.jlt GET REGION INV INVRESOURCETABLE
Start of Core Modules - AK Loader file Download Session.
WED MAY 28 2008 15:14:15
The application ID given will be ignored. The list of objects to be extracted w\
ill be used.
Either the region with '601 XX72MASTER' does not exist, or it is not a region f\
or the object with key 'ICX_PROMPTS'.
Attribute Navigation with key 'ICX_PROMPTS 178a' not downloaded.
Object with key 'ICX_PROMPTS' not downloaded.
WED MAY 28 2008 15:14:16
Finished processing application: INV
Primary key: INVRESOURCETABLE
End of Core Modules - AK Loader file Download Session.
Error: java.lang.Exception: Error encountered while calling download procedure
java.lang.Exception: Error encountered while calling download procedure
at oracle.apps.ak.akload.performDownload(akload.java:474)
at oracle.apps.ak.akload.main(akload.java:117)
[appldev@w-oraap01 ~]$
However,I can succesfully download the AK Attributes.
Thanks and Regards,
Senthil

I am getting the same error with CUSTOM_REGION as well.
login as: appldev
appldev@w-oraap01's password:
Last login: Fri May 30 09:58:41 2008 from wild-term1.eppelheim.wild.local
[appldev@w-oraap01 ~]$ java oracle.apps.ak.akload apps apps THIN "(DESCRIPTION=( ADDRESS=(PROTOCOL=tcp)(HOST=10.0.10.180)(PORT=1527))(CONNECT_DATA=(SID=DEV)))" D OWNLOAD XXWMS_MOBILE_RN.jlt GET CUSTOM_REGION INV XXINVRESOURCETABLE
Start of Core Modules - AK Loader file Download Session.
The application ID given will be ignored. The list of objects to be extracted w\
ill be used.
The application ID given will be ignored. The list of objects to be extracted w\
ill be used.
Either the region with '601 XX72MASTER' does not exist, or it is not a region f\
or the object with key 'ICX_PROMPTS'.
Attribute Navigation with key 'ICX_PROMPTS 178a' not downloaded.
Object with key 'ICX_PROMPTS' not downloaded.
FRI MAY 30 2008 10:21:06
Finished processing application: INV
Primary key: XXINVRESOURCETABLE
End of Core Modules - AK Loader file Download Session.
Error: java.lang.Exception: Error encountered while calling download procedure
java.lang.Exception: Error encountered while calling download procedure
at oracle.apps.ak.akload.performDownload(akload.java:474)
at oracle.apps.ak.akload.main(akload.java:117)
[appldev@w-oraap01 ~]$

Similar Messages

  • ISupport AK Region Migration

    Hi folks,
    Is there a way to migrate AK Region setups in iSupport from one instance to another, like we can for OAF-based applications' personalisations using the Import / Export feature available through Functional Administrator?
    Regards.

    Hi,
    You can move AK region setups in form of LDT files using AK loader :
    ak region download script
    java oracle.apps.ak.akload apps <appspassword> THIN "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=<hostname>)(PORT=<databaseport>)))(CONNECT_DATA=(SERVICE_NAME=<database SID>)))" DOWNLOAD test_AK_migration.jlt GET REGION AK IBU_CF_SR_LOV_R_REG_PRODS
    ak region upload script
    java oracle.apps.ak.akload APPS <appspassword> THIN "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=<hostname>) (PORT=<databaseport>))(CONNECT_DATA=(SID=<database SID>)))" UPLOAD test_AK_migration.jlt
    make sure to enter the correct values for <>.
    Regards,
    Mohammed

  • OIM 11gR2-BI publisher installation

    Hi
    I want to install BI Publisher in the same host where OIM installed . As BI Publisher comes with weblogic, it corrupts the existing weblogic. Please suggest a way to achieve that.
    any doc will be helpful.

    thanks wobiee,
    I have 10g installed on my server machine [windows 2003 -64-bit OS] and Oracle http apache installed and also Oracle Application Express 3.1.0.
    I'm trying to install BI Publisher to integrate with Oracle APEX application for rendering PDF report from the application page report region download link,
    by following the same url which you replied.
    I downloaded and unzipped the files. when i click setup.exe installation started i haven choosen "basic type" it continues and i have given oc4j password and then it gives error at 99% of installation process.
    Error log file contains :
    Configuration assistant "BI Publisher Configuration Assistant" failed
    Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    Please review the above error and help me if you have an idea to fix this problem.
    -Loga

  • Error_1_Inconsistent accessibility: property type 'System.Collections.ObjectModel.ObservableCollection WindowsBlogReader.FeedData ' is less accessible than property 'WindowsBlogReader.FeedDataSource.Feeds'

    using System;
    using System.Collections.Generic;
    using System.Collections.ObjectModel;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using Windows.Web.Syndication;
    namespace WindowsBlogReader
       public class FeedData
            public string Title { get; set; }
            public string Description { get; set; }
            public DateTime PubDate { get; set; }
            private List<FeedItem> _Items = new List<FeedItem>();
            public List<FeedItem> Items
                get
                    return this._Items;
        // FeedItem
        // Holds info for a single blog post.
        public class FeedItem
            public string Title { get; set; }
            public string Author { get; set; }
            public string Content { get; set; }
            public DateTime PubDate { get; set; }
            public Uri Link { get; set; }
        // FeedDataSource
        // Holds a collection of blog feeds (FeedData), and contains methods needed to
        // retreive the feeds.
        public class FeedDataSource
            private ObservableCollection<FeedData> _Feeds = new ObservableCollection<FeedData>();
            public ObservableCollection<FeedData> Feeds         //Error Here//
                get
                    return this._Feeds;
            public async Task GetFeedsAsync()
                Task<FeedData> feed1 =
                    GetFeedAsync("http://windowsteamblog.com/windows/b/developers/atom.aspx");
                Task<FeedData> feed2 =
                    GetFeedAsync("http://windowsteamblog.com/windows/b/windowsexperience/atom.aspx");
                Task<FeedData> feed3 =
                    GetFeedAsync("http://windowsteamblog.com/windows/b/extremewindows/atom.aspx");
                Task<FeedData> feed4 =
                    GetFeedAsync("http://windowsteamblog.com/windows/b/business/atom.aspx");
                Task<FeedData> feed5 =
                    GetFeedAsync("http://windowsteamblog.com/windows/b/bloggingwindows/atom.aspx");
                Task<FeedData> feed6 =
                    GetFeedAsync("http://windowsteamblog.com/windows/b/windowssecurity/atom.aspx");
                Task<FeedData> feed7 =
                    GetFeedAsync("http://windowsteamblog.com/windows/b/springboard/atom.aspx");
                Task<FeedData> feed8 =
                    GetFeedAsync("http://windowsteamblog.com/windows/b/windowshomeserver/atom.aspx");
                // There is no Atom feed for this blog, so use the RSS feed.
                Task<FeedData> feed9 =
                    GetFeedAsync("http://windowsteamblog.com/windows_live/b/windowslive/rss.aspx");
                Task<FeedData> feed10 =
                    GetFeedAsync("http://windowsteamblog.com/windows_live/b/developer/atom.aspx");
                Task<FeedData> feed11 =
                    GetFeedAsync("http://windowsteamblog.com/ie/b/ie/atom.aspx");
                Task<FeedData> feed12 =
                    GetFeedAsync("http://windowsteamblog.com/windows_phone/b/wpdev/atom.aspx");
                Task<FeedData> feed13 =
                    GetFeedAsync("http://windowsteamblog.com/windows_phone/b/wmdev/atom.aspx");
                Task<FeedData> feed14 =
                    GetFeedAsync("http://windowsteamblog.com/windows_phone/b/windowsphone/atom.aspx");
                this.Feeds.Add(await feed1);
                this.Feeds.Add(await feed2);
                this.Feeds.Add(await feed3);
                this.Feeds.Add(await feed4);
                this.Feeds.Add(await feed5);
                this.Feeds.Add(await feed6);
                this.Feeds.Add(await feed7);
                this.Feeds.Add(await feed8);
                this.Feeds.Add(await feed9);
                this.Feeds.Add(await feed10);
                this.Feeds.Add(await feed11);
                this.Feeds.Add(await feed12);
                this.Feeds.Add(await feed13);
                this.Feeds.Add(await feed14);
            private async Task<FeedData> GetFeedAsync(string feedUriString)
                Windows.Web.Syndication.SyndicationClient client = new SyndicationClient();
                Uri feedUri = new Uri(feedUriString);
                try
                    SyndicationFeed feed = await client.RetrieveFeedAsync(feedUri);
                    // This code is executed after RetrieveFeedAsync returns the SyndicationFeed.
                    // Process the feed and copy the data you want into the FeedData and FeedItem classes.
                    FeedData feedData = new FeedData();
                    if (feed.Title != null && feed.Title.Text != null)
                        feedData.Title = feed.Title.Text;
                    if (feed.Subtitle != null && feed.Subtitle.Text != null)
                        feedData.Description = feed.Subtitle.Text;
                    if (feed.Items != null && feed.Items.Count > 0)
                        // Use the date of the latest post as the last updated date.
                        feedData.PubDate = feed.Items[0].PublishedDate.DateTime;
                        foreach (SyndicationItem item in feed.Items)
                            FeedItem feedItem = new FeedItem();
                            if (item.Title != null && item.Title.Text != null)
                                feedItem.Title = item.Title.Text;
                            if (item.PublishedDate != null)
                                feedItem.PubDate = item.PublishedDate.DateTime;
                            if (item.Authors != null && item.Authors.Count > 0)
                                feedItem.Author = item.Authors[0].Name.ToString();
                            // Handle the differences between RSS and Atom feeds.
                            if (feed.SourceFormat == SyndicationFormat.Atom10)
                                if (item.Content != null && item.Content.Text != null)
                                    feedItem.Content = item.Content.Text;
                                if (item.Id != null)
                                    feedItem.Link = new Uri("http://windowsteamblog.com" + item.Id);
                            else if (feed.SourceFormat == SyndicationFormat.Rss20)
                                if (item.Summary != null && item.Summary.Text != null)
                                    feedItem.Content = item.Summary.Text;
                                if (item.Links != null && item.Links.Count > 0)
                                    feedItem.Link = item.Links[0].Uri;
                            feedData.Items.Add(feedItem);
                    return feedData;
                catch (Exception)
                    return null;
            // Returns the feed that has the specified title.
            public static FeedData GetFeed(string title)             //ERROR HERE
                // Simple linear search is acceptable for small data sets
                var _feedDataSource = App.Current.Resources["feedDataSource"] as FeedDataSource;
                var matches = _feedDataSource.Feeds.Where((feed) => feed.Title.Equals(title));
                if (matches.Count() == 1) return matches.First();
                FeedData feeddata = null;
                return feeddata;
            // Returns the post that has the specified title.
            public static FeedItem GetItem(string uniqueId)
                // Simple linear search is acceptable for small data sets
                var _feedDataSource = App.Current.Resources["feedDataSource"] as FeedDataSource;
                var _feeds = _feedDataSource.Feeds;
                var matches = _feedDataSource.Feeds.SelectMany(group => group.Items).Where((item) => item.Title.Equals(uniqueId));
                if (matches.Count() == 1) return matches.First();
                return null;
    }

    The feed links given in the msdn site are already broken because now the official site for windows blogs is "blogs.windows.com" & not "windowsteamblogs.com". I am posting the updated code here :-
    using System;
    using System.Collections.Generic;
    using System.Collections.ObjectModel;
    using System.Linq;
    using System.Threading.Tasks;
    using Windows.Web.Syndication;
    namespace WindowsBlogReader
    // FeedData
    // Holds info for a single blog feed, including a list of blog posts (FeedItem).
    public class FeedData
    public string Title { get; set; }
    public string Description { get; set; }
    public DateTime PubDate { get; set; }
    private List<FeedItem> _Items = new List<FeedItem>();
    public List<FeedItem> Items
    get
    return this._Items;
    // FeedItem
    // Holds info for a single blog post.
    public class FeedItem
    public string Title { get; set; }
    public string Author { get; set; }
    public string Content { get; set; }
    public DateTime PubDate { get; set; }
    public Uri Link { get; set; }
    // FeedDataSource
    // Holds a collection of blog feeds (FeedData), and contains methods needed to
    // retreive the feeds.
    public class FeedDataSource
    private ObservableCollection<FeedData> _Feeds = new ObservableCollection<FeedData>();
    public ObservableCollection<FeedData> Feeds
    get
    return this._Feeds;
    public async Task GetFeedsAsync()
    #region WindowsTeamBlogs Feed Links
    //Task<FeedData> feed1 =
    // GetFeedAsync("http://windowsteamblog.com/windows/b/developers/atom.aspx");
    //Task<FeedData> feed2 =
    // GetFeedAsync("http://windowsteamblog.com/windows/b/windowsexperience/atom.aspx");
    //Task<FeedData> feed3 =
    // GetFeedAsync("http://windowsteamblog.com/windows/b/extremewindows/atom.aspx");
    //Task<FeedData> feed4 =
    // GetFeedAsync("http://windowsteamblog.com/windows/b/business/atom.aspx");
    //Task<FeedData> feed5 =
    // GetFeedAsync("http://windowsteamblog.com/windows/b/bloggingwindows/atom.aspx");
    //Task<FeedData> feed6 =
    // GetFeedAsync("http://windowsteamblog.com/windows/b/windowssecurity/atom.aspx");
    //Task<FeedData> feed7 =
    // GetFeedAsync("http://windowsteamblog.com/windows/b/springboard/atom.aspx");
    //Task<FeedData> feed8 =
    // GetFeedAsync("http://windowsteamblog.com/windows/b/windowshomeserver/atom.aspx");
    //// There is no Atom feed for this blog, so use the RSS feed.
    //Task<FeedData> feed9 =
    // GetFeedAsync("http://windowsteamblog.com/windows_live/b/windowslive/rss.aspx");
    //Task<FeedData> feed10 =
    // GetFeedAsync("http://windowsteamblog.com/windows_live/b/developer/atom.aspx");
    //Task<FeedData> feed11 =
    // GetFeedAsync("http://windowsteamblog.com/ie/b/ie/atom.aspx");
    //Task<FeedData> feed12 =
    // GetFeedAsync("http://windowsteamblog.com/windows_phone/b/wpdev/atom.aspx");
    //Task<FeedData> feed13 =
    // GetFeedAsync("http://windowsteamblog.com/windows_phone/b/wmdev/atom.aspx");
    //Task<FeedData> feed14 =
    // GetFeedAsync("http://windowsteamblog.com/windows_phone/b/windowsphone/atom.aspx");
    #endregion
    #region Windows Blogs Broken Links
    //Task<FeedData> feed1 =
    // GetFeedAsync("http://blogs.windows.com/skydrive/b/skydrive/atom.aspx");
    //Task<FeedData> feed2 =
    // GetFeedAsync("http://blogs.windows.com/windows/b/windowsexperience/atom.aspx");
    //Task<FeedData> feed3 =
    // GetFeedAsync("http://blogs.windows.com/windows/b/extremewindows/atom.aspx");
    //Task<FeedData> feed4 =
    // GetFeedAsync("http://blogs.windows.com/windows/b/business/atom.aspx");
    //Task<FeedData> feed5 =
    // GetFeedAsync("http://blogs.windows.com/windows/b/bloggingwindows/atom.aspx");
    //Task<FeedData> feed6 =
    // GetFeedAsync("http://blogs.windows.com/windows/b/windowssecurity/atom.aspx");
    //Task<FeedData> feed7 =
    // GetFeedAsync("http://blogs.windows.com/windows/b/springboard/atom.aspx");
    //Task<FeedData> feed8 =
    // GetFeedAsync("http://blogs.windows.com/windows/b/windowshomeserver/atom.aspx");
    //// There is no Atom feed for this blog, so use the RSS feed.
    //Task<FeedData> feed9 =
    // GetFeedAsync("http://blogs.windows.com/windows_live/b/windowslive/rss.aspx");
    //Task<FeedData> feed10 =
    // GetFeedAsync("http://blogs.windows.com/windows_live/b/developer/atom.aspx");
    //Task<FeedData> feed11 =
    // GetFeedAsync("http://blogs.windows.com/ie/b/ie/atom.aspx");
    //Task<FeedData> feed12 =
    // GetFeedAsync("http://blogs.windows.com/windows_phone/b/wpdev/atom.aspx");
    //Task<FeedData> feed13 =
    // GetFeedAsync("http://blogs.windows.com/windows_phone/b/wmdev/atom.aspx");
    //Task<FeedData> feed14 =
    // GetFeedAsync("http://blogs.windows.com/windows_phone/b/windowsphone/atom.aspx");
    #endregion
    #region Windows Blogs Feeds
    Task<FeedData> feed1 =
    GetFeedAsync("http://blogs.windows.com/windows/b/bloggingwindows/rss.aspx");
    Task<FeedData> feed2 =
    GetFeedAsync("http://blogs.windows.com/windows/b/windowsexperience/rss.aspx");
    Task<FeedData> feed3 =
    GetFeedAsync("http://blogs.windows.com/windows/b/extremewindows/rss.aspx");
    Task<FeedData> feed4 =
    GetFeedAsync("http://blogs.windows.com/windows/b/business/rss.aspx");
    Task<FeedData> feed5 =
    GetFeedAsync("http://blogs.windows.com/windows/b/windowssecurity/rss.aspx");
    Task<FeedData> feed6 =
    GetFeedAsync("http://blogs.windows.com/windows/b/springboard/rss.aspx");
    Task<FeedData> feed7 =
    GetFeedAsync("http://blogs.windows.com/windows/b/windowshomeserver/rss.aspx");
    Task<FeedData> feed8 =
    GetFeedAsync("http://blogs.windows.com/windows_live/b/windowslive/rss.aspx");
    Task<FeedData> feed9 =
    GetFeedAsync("http://blogs.windows.com/windows_live/b/developer/rss.aspx");
    Task<FeedData> feed10 =
    GetFeedAsync("http://blogs.windows.com/ie/b/ie/rss.aspx");
    Task<FeedData> feed11 =
    GetFeedAsync("http://blogs.windows.com/skydrive/b/skydrive/rss.aspx");
    Task<FeedData> feed12 =
    GetFeedAsync("http://blogs.windows.com/windows_phone/b/windowsphone/rss.aspx");
    Task<FeedData> feed13 =
    GetFeedAsync("http://blogs.windows.com/windows_phone/b/wpdev/rss.aspx");
    Task<FeedData> feed14 =
    GetFeedAsync("http://blogs.windows.com/windows_phone/b/wmdev/rss.aspx");
    #endregion
    #region Downloading the Feeds
    this.Feeds.Add(await feed1);
    this.Feeds.Add(await feed2);
    this.Feeds.Add(await feed3);
    this.Feeds.Add(await feed4);
    this.Feeds.Add(await feed5);
    this.Feeds.Add(await feed6);
    this.Feeds.Add(await feed7);
    this.Feeds.Add(await feed8);
    this.Feeds.Add(await feed9);
    this.Feeds.Add(await feed10);
    this.Feeds.Add(await feed11);
    this.Feeds.Add(await feed12);
    this.Feeds.Add(await feed13);
    this.Feeds.Add(await feed14);
    #endregion
    private async Task<FeedData> GetFeedAsync(string feedUriString)
    Windows.Web.Syndication.SyndicationClient client = new SyndicationClient();
    Uri feedUri = new Uri(feedUriString);
    try
    SyndicationFeed feed = await client.RetrieveFeedAsync(feedUri);
    // This code is executed after RetrieveFeedAsync returns the SyndicationFeed.
    // Process the feed and copy the data you want into the FeedData and FeedItem classes.
    FeedData feedData = new FeedData();
    if (feed.Title != null && feed.Title.Text != null)
    feedData.Title = feed.Title.Text;
    if (feed.Subtitle != null && feed.Subtitle.Text != null)
    feedData.Description = feed.Subtitle.Text;
    if (feed.Items != null && feed.Items.Count > 0)
    // Use the date of the latest post as the last updated date.
    feedData.PubDate = feed.Items[0].PublishedDate.DateTime;
    foreach (SyndicationItem item in feed.Items)
    FeedItem feedItem = new FeedItem();
    if (item.Title != null && item.Title.Text != null)
    feedItem.Title = item.Title.Text;
    if (item.PublishedDate != null)
    feedItem.PubDate = item.PublishedDate.DateTime;
    if (item.Authors != null && item.Authors.Count > 0)
    feedItem.Author = item.Authors[0].Name.ToString();
    // Handle the differences between RSS and Atom feeds.
    if (feed.SourceFormat == SyndicationFormat.Atom10)
    if (item.Content != null && item.Content.Text != null)
    feedItem.Content = item.Content.Text;
    if (item.Id != null)
    feedItem.Link = new Uri("http://windowsteamblog.com" + item.Id);
    else if (feed.SourceFormat == SyndicationFormat.Rss20)
    if (item.Summary != null && item.Summary.Text != null)
    feedItem.Content = item.Summary.Text;
    if (item.Links != null && item.Links.Count > 0)
    feedItem.Link = item.Links[0].Uri;
    feedData.Items.Add(feedItem);
    return feedData;
    catch (Exception)
    return null;
    // Returns the feed that has the specified title.
    public static FeedData GetFeed(string title)
    // Simple linear search is acceptable for small data sets
    var _feedDataSource = App.Current.Resources["feedDataSource"] as FeedDataSource;
    //var matches = _feedDataSource.Feeds.Where((feed) => feed.Title.Equals(title));
    var matches = _feedDataSource.Feeds.Where((feed) => feed != null && feed.Title.Equals(title));
    if (matches.Count() == 1) return matches.First();
    return null;
    // Returns the post that has the specified title.
    public static FeedItem GetItem(string uniqueId)
    // Simple linear search is acceptable for small data sets
    var _feedDataSource = App.Current.Resources["feedDataSource"] as FeedDataSource;
    var _feeds = _feedDataSource.Feeds;
    //var matches = _feedDataSource.Feeds.SelectMany(group => group.Items).Where((item) => item.Title.Equals(uniqueId));
    var matches = _feedDataSource.Feeds.SelectMany(group => group.Items).Where((item) => item != null && item.Title.Equals(uniqueId));
    if (matches.Count() == 1) return matches.First();
    return null;
    U will notice that there are 3 sets of list available here.
    The first set of links contain the old broken links from  "windowsteamblogs.com",
    the second set of links contain the links from  "blogs.windows.com" which are now also broken,
    the last set of links contain the links from  "blogs.windows.com" some of which are also broken.
    So if u run the program using those links u will get a "nullpointerexception" error.
    To solve this problem i updated a line of code in the "GetFeed" method from :- 
    var matches = _feedDataSource.Feeds.Where((feed) => feed.Title.Equals(title));
    to :- 
    var matches = _feedDataSource.Feeds.Where((feed) => feed != null && feed.Title.Equals(title));
    This line of code will ignore those empty(null) feeds.
    For safety sake i also updated the code in the "GetItem" method, and this "FeedDataSource" class will compile without any error, but he program will crash in split.xaml without giving any proper
    error message.
    Here are some of the links where people have faced similar problems :- 
    Runtime
    Error
    Parsing
    null feeds
    Problem
    in Page Navigation

  • I just got my new Ipod replacement and I can't find my purchased music.

    I just received my Ipod Nano replacement.  Itunes comes up but I can not find all of the purchased music that I have purchased over the past 5 years.  How can I get that back?

    It should be in your iTunes library and the backup copy of it that you maintain.
    You can (probably, though it depends on your region) download previous purchases from iTunes in the cloud. Open the iTunes Store page in iTunes and click the word Purchased then Not In My Library. Select All Songs and then Download All. It will take some time I guess...
    When you're done downloading, make a backup!
    tt2

  • BI publisher installation into Oracle Express Edition

    Hi,
    i need help on BI publisher installation.
    When i install BI publisher into oracle Express edition 10.2.1.0 version.
    i chosen ADVANCED type it shows Please enter 10.3.1.0 ver or later ORACLE_HOME path...
    if i choose BASIC type it shows error at 99% completion of BI screen....
    After the EXIT screens, the ORACLE APEX pdf opens but error while opening it.
    I want to know whether BI publisher 10.1.3 can support Oracle 10.2.1.0 version or not?
    Could anyone Please help on this.
    Thanks
    Loga..

    thanks wobiee,
    I have 10g installed on my server machine [windows 2003 -64-bit OS] and Oracle http apache installed and also Oracle Application Express 3.1.0.
    I'm trying to install BI Publisher to integrate with Oracle APEX application for rendering PDF report from the application page report region download link,
    by following the same url which you replied.
    I downloaded and unzipped the files. when i click setup.exe installation started i haven choosen "basic type" it continues and i have given oc4j password and then it gives error at 99% of installation process.
    Error log file contains :
    Configuration assistant "BI Publisher Configuration Assistant" failed
    Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    Please review the above error and help me if you have an idea to fix this problem.
    -Loga

  • Hi , i've ipad 4G . i live in dubai (UAE) , i make apple id but cannot able to download any apps so plz suggest me. How to register apple ID without cradit card on Itune in UAE region ?

    hi , i've ipad 4G . i live in dubai (UAE) , i make apple id but cannot able to download any apps so plz suggest me. How to register apple ID without cradit card on Itune in UAE region ?

    Step 1 to 8 with pictures attached:
    1. Select any free app
    http://i1224.photobucket.com/albums/ee374/Diavonex/5622c304.jpg
    2. Tap install App
    http://i1224.photobucket.com/albums/ee374/Diavonex/9c71cbba.jpg
    3. Just tap Create New Apple ID
    http://i1224.photobucket.com/albums/ee374/Diavonex/3564262e.jpg
    4. Confirm your country; fill in your country's name
    http://i1224.photobucket.com/albums/ee374/Diavonex/15af6726.jpg
    5. Agree with Term and Condition
    http://i1224.photobucket.com/albums/ee374/Diavonex/a50cb07a.jpg
    6. Fill in your Apple ID and Password
    http://i1224.photobucket.com/albums/ee374/Diavonex/f942f7f5.jpg
    7. Create and answer secret question
    http://i1224.photobucket.com/albums/ee374/Diavonex/774b1991.jpg
    8. Select NONE for billing information
    http://i1224.photobucket.com/albums/ee374/Diavonex/6f6e54ff.jpg
    Other pictures
    http://i1224.photobucket.com/albums/ee374/Diavonex/553a2651.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/52783119.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/a5fcfc6b.jpg

  • BLOB download from report region in translated application does not work

    We created an application (APEX 3.1.2) with a base language dutch (300) and a translated application en-uk (3001). The problem is that in the translated application downloading BLOB's from a report region does not work and results in an error (page cannot be found).
    The query source for the region is:
    select naam
    , dbms_lob.getlength(bestand)
    , mimetype
    from bos_documentatie
    The column 'dbms_lob.getlength(filename)' is defined as a 'BLOB Download Format Mask' with the following setting:
    DOWNLOAD:BOS_DOCUMENTATIE:BESTAND:NAAM::MIMETYPE:FILENAME:::attachment:Open
    The URL's to the BLOB documents are different between the dutch and en-uk application:
    dutch:
    http://nldvnr01ux002:7792/pls/xvapexd/apex_util.get_blob?s=4260101889649158&a=300&c=12455124581749125&p=1001&k1=Application Multi Language.doc&k2=&ck=A24A5EA6903C5A9603B86D30F128F4DE&rt=CR
    en-uk:
    http://nldvnr01ux002:7792/pls/xvapexd/apex_util.get_blob?s=4260101889649158&a=300&c=12455124581749125.3001&p=1001&k1=Application Multi Language.doc&k2=&ck=7FF0C64FDD48A4D7A6892CFB2B6BCA57&rt=CR
    As you can see the c parameter for the en-uk version has a '.3001' at the end, the internal ID of the translated application. I don't know if this can be the cause of the problem?

    Hi Peter,
    Thanks for the suggestion. However we have a lot of APEX applications build in that same APEX version (one development database) and upgrading now to a higher APEX version would mean we would have to re-test all our applications and upgrade all our test and production environments, just for this bug. And, maybe the higher APEX version may not solve our problem.
    Thanks and regards,
    Patrick

  • When i set page as template, set editable regions and try to view in browser IE 9 a download box com

    When I set page as template, set editable regions and try to view in browser IE 9 a download box comes up and when i click open it just opens the file again in DW.

    Use the Template to spawn a child page.  File > New > Page from Template...
    Save the child page as some_file.html and then preview that in your browsers.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Downloading pdf inside adf region issue

    All,
    I am trying to download a pdf inside a region. My code to download it is
            InputStream ios = Thread.currentThread().getContextClassLoader().getResourceAsStream("StatementReport.jrxml");
            Map parameters = new HashMap();
            parameters.put("PAR_CUSTOMER_ID", customerId.toString());
            parameters.put("SUBREPORT_DIR", "./");
            parameters.put("rowid", statementRowId.toString());
            Connection connection = null;
            try {
                HttpServletResponse response =  (HttpServletResponse)FacesContext.getCurrentInstance().getExternalContext().getResponse();
                ServletOutputStream servletOutputStream;
                servletOutputStream = response.getOutputStream();
                byte[] bytes = null;
                //this will give us the existing connection from the AM
                ob = bc.getOperationBinding("getCurrentConnection");
                ob.execute();
                connection = (Connection)ob.getResult();
                //This will create a new connection alltogether.
                /* Context ctx = new InitialContext();
                Context envCtx = (Context)ctx.lookup("");
                DataSource ds = (DataSource)envCtx.lookup("jdbc/om");
                if (ds != null) {
                        connection = ds.getConnection();
                JasperDesign jasperDesign = JRXmlLoader.load(ios);
                JasperReport jasperReport =   JasperCompileManager.compileReport(jasperDesign);
                bytes = JasperRunManager.runReportToPdf(jasperReport, parameters,  connection);
                response.addHeader("Content-disposition",  "attachment;filename=statement.pdf");
                response.setContentType("application/pdf");
                response.setContentLength(bytes.length); //commented this also as mentioned in a number of post. Also tried adding buffersize to the response object but no progress
                servletOutputStream.write(bytes, 0, bytes.length);
                servletOutputStream.flush();
                servletOutputStream.close();
                context.responseComplete();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (JRException e) {
                e.printStackTrace();
            } /*catch (NamingException e) {
                e.printStackTrace();
            } catch (SQLException e) {
                e.printStackTrace();
            } */catch(Exception e){
                e.printStackTrace();
            }I get the following error and the pdf dosent open
    <Sep 28, 2011 10:12:04 AM GST> <Error> <HTTP> <BEA-101104> <Servlet execution in servlet context "ServletContext@8594227[app:DealerOnline module:DealerOnline path:/DealerOnline spec-version:2.5 version:V2.0]" failed, java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '0' bytes instead of stated: '325047' bytes..
    java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '0' bytes instead of stated: '325047' bytes.
         at weblogic.servlet.internal.ServletOutputStreamImpl.ensureContentLength(ServletOutputStreamImpl.java:446)
         at weblogic.servlet.internal.ServletResponseImpl.ensureContentLength(ServletResponseImpl.java:1432)
         at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1511)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1462)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         Truncated. see log file for complete stacktrace
    >
    I tried it on all browsers but the error continues
    thnks
    Jdev 11.1.1.5

    i even removed the Jsaper related code and tried using
                byte[] content =
                      { '<', 'H', 'T', 'M', 'L', '>', '<', 'B', 'O', 'D', 'Y', '>', 'H', 'e', 'l', 'l', 'o', '<', '/', 'B', 'O', 'D',
                        'Y', '>', '<', '/', 'H', 'T', 'M', 'L', '>' };but the error is there. So for sure it has nothing to do with Jasper reports
    Also the form that has region has usesupload property set to true
    Edited by: in the line of fire on Sep 28, 2011 10:40 AM

  • Add buttons in download region (Report Interactive)

    Hi all,
    Is it possible to add more buttons in download region in Report Interactive, such as PDF 1, PDF 2 .... ?
    I used OC4J and FOP (Print Server) to download PDF for testing, but it is so limited. When I use break column and export it to PDF, instead of to show a break, the PDF file shows an ordinary report.
    Therefore, I think the best idea is create two buttons and link for another page and do whatever I want, as PLPDF.
    :S
    Thank you,
    Eric

    Hi Eric,
    a nice way to do this is use the "IR customs actions menu" plugin (http://apex-plugin.com/oracle-apex-plugins/dynamic-action-plugin/ir-actions-menu-item_171.html) , so you can add extra menu's to the actions menu in your IA report.
    Regards
    Bas

  • Downloading Reports - with other regions

    Hi,
    We are re-writing a web report application in APEX. Our current system "regions" for the report description and report parameters. When you export/download the report these regions are included in the csv file.
    Is their a way we can do this in APEX? We don't have BI publisher.
    Thank you,
    Martin

    Hi Fred Narthasilpa,
    I have searched thru some of the Oracle Manuals for the same and found that they will provide support to Websphere soon, to publish Oracle Reports.
    However, not sure whether the same is made avl. as of today.
    Have a nice day,
    Raja Angamuthu B

  • TS1702 I downloaded a pokédex app on my iPod touch, on that app you can buy other region Pokemon, I bought a region but I won't download on my iPod, it said I purchased it but nothing will download, help?

    I downloaded a pokédex app on my iPod touch, on that app you can buy other region Pokemon, I bought a region but I won't download on my iPod, it said I purchased it but nothing will download, help?

    What happens when you try to download it?
    have yo contacted the developer of the app?
    Last, contact iTunes
    Apple - Support - iTunes - Contact Us

  • HT2736 What if my friend is from a different region and this app is OK to be used in her country, why can't she download it after I have gifted it?

    I had bought Whatsapp for my girlfriend and sent the gift via e-mail. She received it, but she can't download it as it says:
    "This code is only valid for customers of the United Kingdom store"
    And she lives in Ukraine. What should I do in this situation? Should I just ask her to change her region in iTunes?
    Thank you in advance!

    Apparently you missed this on the page where you entered in the recipient's name:
    Keep that in mind for future gifts. It is not allowed for someone outside of the UK to use the UK iTunes Store even if they have a gift code.
    Regards.
    Message was edited by: varjak paw

  • Why can't we download free apps from every region?

    Hello all,
    I am trying to get the full version for angry birds free, I know it is available to download, however when I do a search in the app store I can't find it.
    When I do a search on google, I can find several links to download it, but when I do, I get a "this app is only available in the US store" error.
    I don't understand why this happens in the first place, it are free apps, I can download them to my pc, android users can download them without any problems, so why can't we?
    As for all the discussions about needing a different credit card for each region is a load of ********, excuse my language, a visa card or any other credit card is made for international purchases, that is the whole reason people get one, it makes no sense why apple is being so anal about it, or do they like o annoy people who spent a lot of money on their products.
    Android is gaining on them and pretty soon a lot of people will change to that instead of an apple product unless they get their act together here.

    @Demo:This is my first apple device, so I had no idea about those limitations, I knew I could not install Magic 2013 on an android, that's why I chose to get an ipad.
    I just think that if enough people actually bother to complain instead of just letting people/governments/companies walk over them, they will actually care what their consumers want/need, that's probably just wishful thinking on my part.
    @snozdop: funny you bring up the heinz reference, baked beans from heinz haven't been available in shops here for the last few years, but those are cans, need to be imported and that involves transportation etc. etc.
    I am just talking about a digital app, available on the internet(world wide web) limiting regions completely destroys the point of having global internet access.
    I'm a dreamer, hoping that most people are still good, probably my mistake for believing in that.

Maybe you are looking for

  • Background events cover overlapping events that are in the foreground.

    Background events cover overlapping events that are in the foreground. When I have 2 overlapping events, clicking on one to bring it to the foreground keeps the text of the background event visable and obfuscates the froeground text. Anyone else seei

  • Links opening in new window, not mainframe even though code is set...

    Hi All, Wondering if anyone can help! I'm making a website in Dreamweaver CS3 and I have 3 frames. One on the left named 'links', one at the top called 'Scrollingbar' and then the main content window called "contentframe". I have created images as li

  • Computer won't boot after OS Update

    Latest Tiger OS update ran from the Web. When I attempted to restart the computer it stopped just short of finishing full boot. I'm left with a blank blue screen. DVD drive keeps spitting out Tiger Install Disk, even though I hold down "C" key while

  • ToC in CS4 crashes but not in CS3

    Hi, i'm new to CS4 and i'm having a huge problem with a ToC in a book, everytime i try to update it, InDesign crashes, without prompting  any error message, it just quits and disappears. I thought it had something to do with my document, though i cou

  • Saving from CC to CS4 file changes paths to group of anchors around the brush defination

    Hi, I use CC but I'm currently doing a job that required me to save any ai files as CS4. I am using the charcoal brush definition however when I save the files cs4 and then reload them the path/lines are turned into a shape with multiple anchor point