Issue with "Retrieving Metadata from a Custom Lookup Implementation"

Hello,
I have a use case where i need to find meta data files from a custom location instead of CLASSPATH. I followed the following article in creating my "Custom XML Context Implementation"
http://download.oracle.com/docs/cd/A97336_01/buslog.102/bc4j/developing_bc_projects/obcCustomLookup.html
But when running from jdeveloper, and i wanted to use it only for ADFm layer so i used -Djbo.project=<my-databindings-location>
If i use CPX file for this java option, framework complaining about JPX file, if i use valid path for JPX it complains about CPX file ....
I infact created a sample UI project which will have POJO as data control but still framework complaining about JPX file.
Is this approach not supported in 11g? Or is there a diff article for ADF 11g is available for approach?
Appreciate your help.
Thanks,
Sunil.

Hi,
On that Column in required property choose "ui only" instead of "yes".
and then on cancel it will not throw error but when you will save the changes then you would have to programatically
handle the null value of that column.
Thanks,
Gaurav

Similar Messages

  • I am having issues with streaming music from iTunes on my MacBook Pro to my audio system through AirPlay.  Works perfectly with my iPod Touch.  The AirPlay icon appears irregularly in iTunes and when selected doesn't connect.  Running latest IOS software.

    I am having issues with streaming music from iTunes on my MacBook Pro to my audio system through AirPlay.  Works perfectly with my iPod Touch.  The AirPlay icon appears irregularly in iTunes and when selected doesn't connect.  Running latest IOS software.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          
    You said:
    No, I do not want to "factory reset" my iPod. No I do not wish to do anything crazy long or hard to fix this. 
    That may be necessary, It is not what you want to do/not do but what is required to resolve your problem.

  • Problems with retrieving data from tables with 240 and more records

    Hi,
    I've been connecting to Oracle 11g Server (not sure exact version) using Oracle 10.1.0 Client and O10 Oracle 10g driver. Everything was ok.
    I installed Oracle 11.2.0 Client and I started to have problems with retrieving data from tables.
    First I used the same connection string, driver and so on (O10 Oracle 10g) then I tried ORA Oracle but with no luck. The result is like this:
    I'm able to connect to database. I'm able to retrieve data but from small tables (e.g. with 110 records it works perfectly using both O10 and ORA drivers). When I try to retrieve data from tables with like 240 and more records retrieval simply hangs (nothing happens at all - no error, no timeout). Application seems to hang forever.
    I'm using Powerbuilder to connect to Database (either PB10.5 using O10 driver or PB12 using ORA driver). I used DBTrace, so I see that query hangs on the first FETCH.
    So for the retrievals that hang I have something like:
    (3260008): BIND SELECT OUTPUT BUFFER (DataWindow):(DBI_SELBIND) (0.186 MS / 18978.709 MS)
    (3260008): ,len=160,type=DECIMAL,pbt=4,dbt=0,ct=0,prec=0,scale=0
    (3260008): ,len=160,type=DECIMAL,pbt=4,dbt=0,ct=0,prec=0,scale=1
    (3260008): ,len=160,type=DECIMAL,pbt=4,dbt=0,ct=0,prec=0,scale=0
    (3260008): EXECUTE:(DBI_DW_EXECUTE) (192.982 MS / 19171.691 MS)
    (3260008): FETCH NEXT:(DBI_FETCHNEXT)
    and this is the last line,
    while for retrievals that end, I have FETCH producing time, data in buffer and moving to the next Fetch until all data is retrieved
    On the side note, I have no problems with retrieving data either by SQL Developer or DbVisualizer.
    Problems started when I installed 11.2.0 Client. Even if I want to use 10.0.1 Client, the same problem occurs. So I guess something from 11.2.0 overrides 10.0.1 settings.
    I will appreciate any comments/hints/help.
    Thank you very much.

    pgoel wrote:
    I've been connecting to Oracle 11g Server (not sure exact version) using Oracle 10.1.0 Client and O10 Oracle 10g driver. Everything was ok.Earlier (before installing new stuff) did you ever try retrieving data from big tables (like 240 and more records), if yes, was it working?Yes, with Oracle 10g client (before installing 11g) I was able to retrieve any data, either it was 10k+ records or 100 records. Installing 11g client changed something that even using old 10g client (which I still have installed) fails to work. The same problem occur no matter I'm using 10g or 11g client now. Powerbuilder hangs on retrieving tables with more than like 240 records.
    Thanks.

  • Issues with RAW files from my 7D

    I have Aperture 1.5.6 on my computer and the software updater says that is the current version. I shoot with a 20D and a 7D. I upload my raw files to Aperture and edit them from there and then process for a jpeg. However, every time I upload a raw file from my 7D I get the following message when I click on it to edit it: Unsupported Image format.
    Any words of advice, other than just buy Aperture 3??

    I have Aperture 2.X and had zero issues with RAW files from a 7D, so I think the problem is you are on 1.X. Converting to DNG first was a good suggestion if you don't want to purchase 3.X. Yet another reason to hate proprietary raw image file formats.......

  • Issue with retrieveing the Manager of a System User in a Custom workflow - CRM 2013

    Issues with custom workflow activity in CRM 2013 On-prem
    I'm trying to pass the Manager of the System
    here is the code that I'm running, it gets to setting the MANAGER and stops
    I put the ran the FetchXML seperatly and it does return a value so I know what bit works
    public class CaseAccountManagerManagersLookup : CodeActivity
    // Inputs
    [Input("Enter Case")]
    [ReferenceTarget("incident")]
    public InArgument<EntityReference> CA { get; set; }
    // Outputs
    [Output("Manager Output")]
    [ReferenceTarget("systemuser")]
    public OutArgument<EntityReference> AMOUT { get; set; }
    protected override void Execute(CodeActivityContext executionContext)
    // Context
    IWorkflowContext context = executionContext.GetExtension<IWorkflowContext>();
    IOrganizationServiceFactory serviceFactory = executionContext.GetExtension<IOrganizationServiceFactory>();
    IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
    //Create the tracing service
    ITracingService tracingService = executionContext.GetExtension<ITracingService>();
    // get the account and renewals manager ID's
    var CASE = CA.Get<EntityReference>(executionContext);
    tracingService.Trace("Case ID = " + CASE.Id);
    try
    // FETCH
    string fetchXml = string.Format(@"
    <fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'>
    <entity name='incident'>
    <attribute name='title' />
    <attribute name='incidentid' />
    <order attribute='title' descending='false' />
    <filter type='and'>
    <condition attribute='incidentid' operator='eq' value='{0}' />
    </filter>
    <link-entity name='contact' from='contactid' to='customerid' alias='ak'>
    <link-entity name='account' from='accountid' to='parentcustomerid' alias='al'>
    <link-entity name='systemuser' from='systemuserid' to='bc_dssalesperson' alias='am'>
    <attribute name='parentsystemuserid' />
    </link-entity>
    </link-entity>
    </link-entity>
    </entity>
    </fetch>", CASE.Id);
    EntityCollection case_results = service.RetrieveMultiple(new FetchExpression(fetchXml));
    //tracingService.Trace("fetch has run");
    if (case_results.Entities.Count != 0)
    foreach (var a in case_results.Entities)
    //if (a.Attributes.Contains("ai_parentsystemuserid"))
    tracingService.Trace("set manager id next");
    var MANAGERID = (EntityReference)a.Attributes["parentsystemuserid"];
    tracingService.Trace("manager id set");
    AMOUT.Set(executionContext, MANAGERID);
    throw new InvalidOperationException("Want to see trace");
    tracingService.Trace("end ");
    catch (Exception e)
    throw new InvalidPluginExecutionException("Plugin - CaseAccountManagerManagerLookup - " + e.Message);
    finally
    throw new InvalidOperationException("Want to see trace");
    Pete

    Hello,
    Try to use am.parentsystemuserid instead of just parentsystemuserid.
    Dynamics CRM MVP/ Technical Evangelist at
    SlickData LLC
    My blog

  • Webi report: Issue Cannot retrieve dimensions from Cube

    Hello Experts,  We're facing an issue with a partical set of Webi reports in Quality environment. The reports are BW reports based on OLAP BICS connectivity on top of Bex queries.y  Below is the scenario and the issue:  1. The backed Bex queries have been trasported to Quality BW system and they're running fine when run from RSRT or Bex analyzer. 2.The Webi reports along with the BICS connections have been migrated to the Quality box and the BICS connections have been editied so that they point to the Quality BOX bex queries and they're testing and responding to the connection successfully. 3. The Webi reports pointed to the Dev Box in the Dev BOBJ system are working fine, but when the same reports for which the connections were repointed in Quality as above, are giving the error "Cannot Retrieve Dimensions from Cube".  Steps taken: a. Deleted the reports and the BICS connection from Quality environment and remigrated the reports,connecitons and changed the connecitons but still the issue persists. b.Tried finding the root cause and got the following issue in the Bex query in Quality: There are filters put in the Bex query . All other filters are working fine except 0CALMONTH. We tried putting all sorts of variables on 0CALMONTH, but the moment a variable is put on 0CALMONTH, this issue occurs. But when we tried removing the variable from 0CALMONTH in filters and restricted it to a single value, the Report works fine.  However the same is not an issue in the Dev Box and all queries with similar variables are working fine.  So we're thinking this might be an issue on the BW backend and the cube might have to be transported again to the Quality Box.  ANy quick suggestions or inputs on this would be greatly appreciated.  Thanks and regards, Abhishek

    Hi Abhishek,
    I am facing same issue.Have you resolve this issue?
    Regards,
    Rajesh

  • Issue with retrieving variables

    Hi.  Got help with some code on here before.  Basically, it retrieves values from my php page and displays them in my flash movie.  The code I am using is
    var n:uint=1;
    var tl:MovieClip=this;
    try {
         var keyStr:String;
         var valueStr1:String;
         var valueStr2:String;
         var paramObj:Object=LoaderInfo(this.root.loaderInfo).parameters;
         for (keyStr in paramObj) {
              tl["valueStr"+n]=String(paramObj[keyStr]);
              n++;
    } catch (error:Error) {
    myString=valueStr1;
    myString1=valueStr2;
    The problem is this.  On my html page, I type in two values for the first name and last name, say "Nick" and "Price".  The above method retrieves these values and stores them in two Strings.  I then display them using a text field.  Now sometimes, everything works normal, and variable 1 holds "Nick" and variable 2 holds "Price".  On other occassions however, its the opposite, and variable 1 holds "Price" and variable 2 holds "Nick".  This is a big problem when I come to display them, as they are back to front.
    My adding to the text field is straight forward (not all code included, but two text fields are created and each variable added to one of these)
    tf.text="To "+myString;
    addChild(tf);
    tf1.text="Love "+myString1;
    addChild(tf1);
    I was wondering if this error could be caused by what I am doing above, or how I am assigning the variables to myString and myString1?
    cheers

    for-in loops iterate through an object in random order.
    but you should know the keyStr for your variables so this is not an issue.  for example, your flashvars might assigning:
    var1="foo";
    var2="bar";
    and you would use:
    tf.text = String(paramObj[var1])+" "+String(paramObj[var2])

  • Problems with extract metadata from Essbase with ODI 10.1.3.5.

    Hello there, I have a really annoying problem. I have 2 dimensions in essbase v11 with a space on it, (Itens Financeiros and Centros Financeiros), and this is causing a problem when I try to extract the metadata from essbace to a table. the problem occurs some times in 3 - loading - ss_0 - begin essbase metadata extract and some times in 4 - loading ss_0 - extract metadata, but in this 2 steps the error is the same:
    unknown member name [itens] in function [@idescendants]. I see in Johns blog someone sayng to add a '/"' in the front and at the end of the member filter criteria to allow ODI to parse the space as part of the member name. but I really don't understand this. Someone can helpme with this? Thanck you.

    It doesn't matter, I am able to replicate with an older version of the essbase adaptor...
    I take it this is the type of error you are receiving "com.hyperion.odi.essbase.ODIEssbaseException: Extract operation failed : Cannot query members by specs. Analytic Server Error(1200497): Error parsing formula for [REGION DEFINITION"
    If you download patch - Patch 8785893: ORACLE DATA INTEGRATOR 10.1.3.5.2_02 ONE-OFF PATCH
    It is easy to install just a matter of copying a jar file over an existing one in the \oracledi\drivers directory.
    It should resolve the issue.
    Ok?
    Cheers
    John
    http://john-goodwin.blogspot.com/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Issue with Data Extraction from OAGIS 9 User Area Tags ...

    We are working on displaying the data coming from OAGIS9 into Excel sheet. We created a custom Schema for the Excel sheet and are able to display all the data in OAGIS9 except for the ones in UserArea. We are facing issue in extracting data from tags present in UserArea of OAGIS 9 schema and transforming it into our Custom built schema.
    Can you please suggest us some way in which we extract data from userArea?
    Thanks in advance ~

    Here is the example with instructions, we have just done it and working
    1.You need to have the custom schema that is coming with in the <UserArea>/<any>
    For example this custom schema is like this one shown below and you are using this CutomerPartyMaster of OAGIS
    <?xml version="1.0" encoding="utf-8"?>
    <xs:schema xmlns="http://www.userarea.com/mdm/oagisextensions" elementFormDefault="qualified" targetNamespace="http://www.userarea.com/mdm/oagisextensions" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="Customer" type="CustomerType" />
    <xs:complexType name="CustomerType">
    <xs:sequence>
    <xs:element minOccurs="0" name="Gender" type="xs:string" />
    <xs:element minOccurs="0" name="DOB" type="xs:date" />
    <xs:element minOccurs="0" name="SSN" type="xs:string" />
    <xs:element minOccurs="0" name="PAN" type="xs:string" />
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    and the Input data snippet will be like this inside CustomerPartyMaster
    <tnsa:UserArea>
         <tnso:Customer>
              <tnso:Gender>string</tnso:Gender>
              <tnso:DOB>1980-10-13</tnso:DOB>
              <tnso:SSN>string</tnso:SSN>
              <tnso:PAN>string</tnso:PAN>
         </tnso:Customer>
    </tnsa:UserArea>
    where xmlns:tnsa="http://www.openapplications.org/oagis/9" and xmlns:tnso="http://www.userarea.com/mdm/oagisextensions"
    Lets assume your Target Schema is like this where only DOB is coming from userarea
    <CreateRequest>
    <record>
    <firstname></firstname>
    <lastname></lastname>
    <dob></dob>
    </record>
    </CreateRequest>
    2.declare the name space of incoming userarea custom schema in your xsl file like this
    xmlns:nsext="http://www.userarea.com/mdm/oagisextensions"
    3.here is xsl code that copies element from CustomerPartyMaster/UserArea
    <xsl:template match="/">
    <imp1:CreateRequest>
    <xsl:for-each select="/inp1:ESBProcessCustomerRequest/body/ns4:ProcessCustomerPartyMaster/ns4:DataArea/ns4:CustomerPartyMaster">
         <imp1:record>
    <xsl:for-each select="ns4:UserArea/nsext:Customer/nsext:DOB">
              <imp1:dob>
              <xsl:value-of select="."/>
              </imp1:dob>
         <imp1:record>
    </xsl:for-each>     
    where imp1 is target schema namespace
         ns4 is OAGIS standard namespace.
    *****************

  • BIB - problem with retrieving metadata

    Hi,
    I've Oracle 9i 9.2.0.2 (Win) installed, Oracle JDeveloper 9.0.3 and the latest BI Java Beans.
    When I'm trying to run sample bibdemo, I receive messages that connection to Olap Service was established but failed to retrieve metadata
    Any suggestions?
    Slawek

    Sorry but with the limited information it is difficult to figure out the problem. However, my first question would be do you have the Windows 9.2.0.2.1 patch set installed correctly? A lot of users have failed to perform the Post Install steps from the readme such as running catpatch.sql. (Understandably so because the readme is HUGE!) Please take a look at my post on this OLAP forum with the title "9.2.0.2 Patch". There you will find abbreviated install instructions regarding the 9.2.0.2.1 patch set. Make sure you have actually completed the install process.
    Also, the BI Beans have posted on OTN a client configuration diagnostic utility. The purpose of it is to gather information about your configuration that will help you and Oracle Support Services diagnose problems. You can find it at the following OTN link:
    http://otn.oracle.com/products/bib/content.html
    Hope this helps.

  • On-Going Issues with New Serviices - New Verizon Customer

    Good evening.  This is the 1st time that I've had to voive my frustrations and disappointment on a forum but I don't know what else to do. I have only had Verizon Fios for 6 weeks and I have yet to watch anything on TV since no imformation is being filtered to my TV; I keep receiving Set-Top box is off-line.  My Internet and phone services were spotty in the beginning but they are working great now.  I've had 3 different technicians visit my residence to re-install the boxes, router, cables, and I had all-new equipment again.  However, I'm still having issues in with the Program Guide and all Menu options are still unavailable. 
    However, nothing has worked and I've exhausted all possible resolutiions to no avail.  The last technician was at my residence for 7 hours last week and had to call Verizon's tech support,  It was determined that it was something on Verizon's end that they needed to fix.  It's been over a week, and I have yet to hear anything on my current open Help Ticket.  Has anyone had any serious issues with their services when they first signed for FIOS?  I'm at the point that I am seriously considering cancelling my services even though I already made 2 payments against my account.  Most of my friends, new neighbors and family members have FIOS and rave how great it is, and constantly talk about all the movies on On Demand.  Unfortunately, I can't relate because I can't access anything on my TV.  It's a pain in the **bleep** when you are trying to watch something but you have no idea what the hell you are watching because the Program Guide is unavailable, including the rest of the Menu options.  I really would hate to cancel all of my services but I'm at a loss at what to do anymore.  Has anyone experiences severe issues in which they had to cancel their services because Verizon was unable to solve the issues?  Thank you for your attention and time in this matter.

    Since we haven't heard back from you as requested in your private support case, it appears you do not need further assistance. It was our pleasure to help get this squared away.  Please make a new post anytime you need our assistance.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Issue with Agent Profile from AM 70 OpenSSO interesting issue

    Hi All,
    I have a specific scenario and if it is not possible then ugrade from AM 7.0 to OpenSSO cant be true.
    I have issue with the agent profiles (BTW I am not doing upgrade from AM 7.0 to OpenSSO but its a fresh OpenSSO install)
    In AM 7.0 Agent profile is like this (below is the exact export from the AM 7.0)
    dn: uid=Test-Agent,ou=agents,o=am
    sunIdentityServerDeviceStatus: Active
    uid: Test-Agent
    objectClass: sunIdentityServerDevice
    objectClass: iplanet-am-user-service
    objectClass: top
    objectClass: iPlanetPreferences
    sunIdentityServerDeviceType: Agent
    cn: default
    sunIdentityServerDeviceVersion: 2.2
    userPassword: {SSHA}1w9aOfz1D4bypX292YT2oObVee34BWkgSB3IXQ==
    Below is exact import into the OpenSSO (I created this LDIF using my script)
    dn: ou=Test-Agent,ou=default,ou=OrganizationConfig,ou=1.0,ou=AgentService,ou=services,o=am
    ou: Test-Agent
    sunsmspriority: 0
    sunserviceID: 2.2_Agent
    sunKeyValue: sunIdentityServerDeviceStatus=Active
    sunKeyValue: sunIdentityServerDeviceKeyValue=
    sunKeyValue: description=
    objectClass: sunServiceComponent
    objectClass: top
    sunKeyValue: userpassword={SSHA}1w9aOfz1D4bypX292YT2oObVee34BWkgSB3IXQ==
    Now you can see the issue in AM 7.0 the password is stored as "userPassword: {SSHA}1w9aOfz1D4bypX292YT2oObVee34BWkgSB3IXQ==" where by directory server userpassword is SSHA encrypted VS in opensso it is "sunKeyValue: userpassword={SSHA}1w9aOfz1D4bypX292YT2oObVee34BWkgSB3IXQ==" which OpenSSO doesnt like .. :)
    If i create a Agent from the opensso Console then Agent create a password using AES encryption and and that works fine even when I import my above LDIF and update the password using the OpenSSO console it also works. The issues I have this I dont know all of the Agent clear text password and I only have the LDIF to work with. Any thought !! Please let me know I am stating to believe that the upgrade from AM 7.0 to OepnSSO will have the same issue which i have not tried yet.
    Anythoughts or ideas are very welcome !
    -Haris

    Configuring the agent like this, ie importing a ldif file is not supported and can lead to unexpected results as you have observed. Just do it in a supported way and change the password for the agent if you don't know it. As the administrator you are supposed to know the password or have the power to reset it.

  • Issue with a load from R3 to BW 3.5

    Hi Guys,
    We are having an issue here with a load from R3 to BW 3.5 to an ODS and
    a transactional infocube.
    In a daily basis we are running loads to BW from R/3 infosets and all
    of them but one loads fine.
    The one that is having problems is actually the one that loads more
    data, therefore the infopackage is divided into two infopackages.
    In the update rule of the first ODS we are running an initial routine
    in which we are doing a RSDRD_SEL_DELETION (selective deletion) of the
    data to be loaded to both the ODS and the infocube, and is actually
    here where we got the core dump.
    Our first assumption was that maybe there was any yellow request in the
    transactional infocube avoiding the selective deletion but we have
    discarded this.
    We think that, as the only one failing is the one that divides into two
    infopackages, the problem might be that at the moment that the first is
    triying to delete the second one is loading data into the ods and there
    we get the dump.
    The question here is ¿Could this be the problem? ¿How could we
    workaround this if this is the case?
    Thanks for any suggestion.

    Hi,
    Be carefull on ODS activation, if you're using 2 infopackage and/or deleting data from an ODS which is lock for an activation, you'll occurs a dump.
    Check SM12 / ST22 / SM21 and job logs in SM37.
    And if pb still occurs for a load, debug it in start routine.
    Regards,

  • Problem with retrieving data from Oracle 10g / PHP4.3 / Apache 1.3.27

    Hi,
    I re-open a new thread following the opened post 'Getting RPMs for php-oracle for PHP4.3 on RHEL 4.0 and issue with OCI8 '
    I could re-installed PHP4.3 and apache 1.3.27 from the normal tar package (./configure then make) - I had some issues with the RPMs packages before.
    I could connect successfully PHP4.3 to my Oracle 10g DB with no issues by using some of the (deprecated) functions contained in oracle.so library in command line mode by executing a simple PHP script ;-)
    But ...when I try to execute the same script (a simple log on to the DB) or the application throught my web browser there are some errors in the apache error_log file that crash the process:
    [Wed Jul 25 13:19:23 2007] [notice] child pid 25450 exit signal Segmentation fault (11)
    [Wed Jul 25 13:19:31 2007] [notice] child pid 25451 exit signal Segmentation fault (11)
    *** glibc detected *** realloc(): invalid size: 0x08338898 ***
    [Wed Jul 25 13:19:42 2007] [notice] child pid 25441 exit signal Aborted (6)
    *** glibc detected *** realloc(): invalid size: 0x08338898 ***
    [Wed Jul 25 13:54:52 2007] [notice] child pid 25508 exit signal Aborted (6)
    [Fri Jul 27 04:39:56 2007] [notice] child pid 20550 exit signal Segmentation fault (11)
    After some investigations it looks like this is due to the connection of Oracle 10G and php.
    I tried to recompile Apache as the following:
    # cd /usr/src/apache_1.3.xx
    # make clean
    # LIBS=-lpthread ./config.status
    # make
    # make install
    but the issue is the same ...
    How can I workaround that issue and fix it in order to connect to Oracle 10 G by using PHP4.3 / apache 1.3.27 ?
    I need to use the oracle.so library to avoid to re-rewrite all my application ...
    Any help much very appreciated !
    Cheers
    Dominique

    You are in unchartered territory. But check the common "gotcha" and
    make sure that all the Oracle environment variables are set in the
    shell that starts Apache. Load the script <?php phpinfo(); ?> in a
    browser and see that whatever variables you need are set in the
    Environment section. See the section "Oracle Environment Variables
    for Connections" in Underground PHP and Oracle Manual
    I suspect it would be beneficial to migrate the PHP code to oci8.
    Check table 16-1 in Underground PHP and Oracle Manual for the mapping
    between 'oracle' and 'oci8' functions.
    -- cj

  • Issue with file download from BLOB type data

    i have been using this for a while, with no problems, including on hosted machines.
    the upload to the database works fine.. not the issue, and the download script also works fine, on the local WAMP machine.
    but once moved to the server it fails.. the query does not work.
    i have a feeling that it is something to do with the managed hosting i am using, but they say no, i have tried it on 2 seperate hosted machines (different providers), with no joy.
    if i run the select query on the hoisting server via phpmyadmin, the query runs ok.
    any suggestions as to what may be causing the problem on the server compared to the local WAMP machine?
    i really don't know where to start looking, or where to point the hosting company.
    This is the php code to download the blob data, works fine on local WAMP setup, browser asks if you want to save the file/open etc. as expected.
    <?php require_once('Connections/connTracker.php'); ?>
    <?php
    // if id is set then get the file with the id from database
    if(isset($_GET['docindex']))
               {$id    = $_GET['docindex'];
            $query = "SELECT document_name, document_type, document_size, document_content " .
               "FROM tracker_documents WHERE document_index = ".$id;
    *** seems to be failing here when running the query ***
    $result = mysql_query($query) or die('Error, query failed');
               list($name, $type, $size, $content) = mysql_fetch_array($result);
         header("Cache-Control: maxage=1"); //In seconds
       header("Pragma: public");
         header("Content-length: $size");
               header("Content-type: $type");
               header("Content-Disposition: attachment; filename=$name");
               echo html_entity_decode ($content);}
    exit;
    ?>

    Hi Gun,
    You are the only one responded to my issue. I have allocated some points.
    Yes. I have checked the assignment in CRM organizational model.
    I did download the org. structure from ECC 5.0
    All objects including sales offices are activated for determination and I have verified with green light
    As per your suggestion if the sales area data is not matched between the two systems, then how come the error will not reappear during the bdoc reprocess?
    What is missing during the first time bdoc process? Looks something is missing for validation module?
    Any inputs?
    Thanks,
    Raj

Maybe you are looking for

  • How to know if an equipmnt is the highest of a given func. location

    Hello experts, Is there a way to know if a certain equipment is the highest in a given functional location. Also, is there an function module that gets the asset of a given equipment number. Again, thank you guys and take care!

  • Migration Assistant won't see external hard drive

    I have just done a clean install of Leopard onto my MacBook Pro, previously running Tiger. Now, I want to migrate my old user and programs from a backed up volume on an external firewire hard drive. The problem is that Migration Assistant won't recog

  • Apple TV looses connection to iTunes library after Update 5.1.1

    Since I updated my Apple TV to 5.1.1 and iTunes to Version 11, my Apple TV looses repeatable connection to iTunes music library (via wifi) after ca. 20 min. Any ideas what to do? Thx, PM

  • Transferring files onto vintage Macs

    Hey all, I have a few vintage Macs and I need to transfer some files onto those Macs from my MacBook Pro. How-to do that?

  • Music recovery help!!! Please...

    I imported a CD into my iTunes library, but then it became the ONLY music in my iTunes library. Everything else is gone. I'm trying to back up my iPhone's music to iCloud so the computer doesn't make me lose it, but iCloud says incorrect password eve