Problem with adapter FTP while creating dynamic values.

Hi all

I tried passing dynamic values to the FTP adapter, but is throwing the error indicating that the file is already exists in the target directory. It shows the old name of file instead of the new file name. While setting up the FTP adapter initially, I gave a name of file and for each transaction, he resumed the same instead of dynamic file name file name.

This is the code in the jca FTP file.

***********************************************************************************************************************
< name of the adapter-config = adapter "Read-WriteFTP" = "FTP adapter" wsdlLocation = "Read_WriteFTP.wsdl" xmlns = "http://platform.integration.oracle/blocks/adapter/fw/metadata" > "
< connection-factory location = "ist/ftp/FTPGrailService" / >
< endpoint-interaction portType = operation "SynchRead_ptt" = "SynchRead" >
< className = "oracle.tip.adapter.ftp.outbound.FTPIoInteractionSpec interaction-spec" >
< property name = "SourcePhysicalDirectory" value = "/ abc/def/GHI/jklmn/opqrst/XYZ" / >
< property name = "SourceFileName" value = "abcdef.csv" / >
< property name = "TargetPhysicalDirectory" value = "/ home/abcde/OracleUser345" / >
< property name = "TargetFileName" value = "abcdef.csv" / >
< property name = "TargetIsRemote" value = "false" / >
< property name = value 'Type' = 'COPY' / >
< property name = "File Type" value = "ascii" / >
< / interaction-spec >
< / interaction of endpoint >
< / adapter-config >
**************************************************************************************************************************
Code inside the BPEL for dynamic values is
**************************************************************************************************************************
< bpelx:inputProperty name = "jca.ftp.SourcePhysicalDirectory" variable = "FilePath" / > "
< bpelx:inputProperty name = "jca.ftp.SourceFileName" variable = "FileName" / > "
< bpelx:inputProperty name = "jca.ftp.TargetPhysicalDirectory" variable = "Variable1" / > "
< bpelx:inputProperty name = "jca.ftp.TargetFileName" variable = "FileName" / > "
**************************************************************************************************************************
Thank you

Try...



Even if it is the FTP, it stills appear to focus on the jca.file properties...

See you soon,.
Vlad

Tags: Fusion Middleware

Similar Questions

  • Problem with OAM10g URLS while creating the policy

    We strive to protect a resource in OAM 10 g for this we have created political in this tab resources that we do not get the URL mentioned in the host identifier. Instead of the URL mentioned in the identifier of the host, we get the following URL.

    our URL is appearing - dc % 3d % testdc % 2d % com...

    Published by: Arii on 24 August 2012 08:15

    Prefix of the URL under the resource tab, is not because the host identifiers. It's because of the configuration you did when installing Policy Manager (after installing Policy Manager). During the Setup, it asks for prefix URI for the policy area and its default value is /.
    See your installation and verify.

  • HP Envy 23-d270er (problem with adapter Ralink Wi - Fi RT5390R)

    Hello

    I just bought this touch smart (E8V92EA) 8 Win, which came with adapter Ralink WiFi RT5309R (driver 5.0.25.0 DT. 12.04.2013). The problem is with the slow speed of connection Wi - Fi this is 3 times more slow, then with a another USB adapter, I quess because Ralink accepts the signal of 54% vs USB adapter that accepts 70%. I quess I'm not the only one who has this problem. I understand that this is nothing to do with the software, which is the hardware problem?

    I happen to me soon to a Router 2.4/5 Ghz to address faster Internet and please ask for information what suitable adapter, I can replace Ralink RT5309R with? Is it possible to replace the cards while the computer is under warranty? Thank you.

    When it comes to specific products from HP, it is always best to look for the updates posted by HP.  Other updates that are not HP or claim to be on behalf of HP could be detrimental to your pc or HP device.

    Thanks again

  • We get an error "there is a problem with the device' while trying to use it on the computer of Windows 8

    Sir... my model of computation used is ASUS Q500A and I also have the problem with my may even of them I also perform step u said in this forum, but may not work... my Windows I have used is windows 8. Please help me tnx

    Separated from -.

    https://answers.Microsoft.com/en-us/Windows/Forum/windows_8-hardware/getting-an-error-theres-a-problem-with-your-camera/9c494984-1178-4C3F-884c-80ac750d3fa6

    Hello

    Thanks for posting your query in Microsoft Community.

    This problem is usually caused due to hardware or driver related issues. I suggest you try to install the latest drivers for the camera on the Asus or Windows Update site and check if it helps.

    If the problem persists, then it would be better to contact Asus for more help on this issue. As this could be a problem with the hardware as well.

    Support from Asus: http://www.support.asus.com/

    Please do not hesitate to visit our Web site for any help with the Windows operating system.

  • Problems with GZip &amp; FTP

    Hello

    in my application, I need to send a file compressed using ftp.

    To do this, I used a class initially write to use with J2SE (SimpleFTP)

    I have change for use with RIM API and it work with file bit compressed (like 4 KB) but when I try to send one just a little big (12Ko) I have a problem to decompress: gzip - me to say end of file unexpected.

    It is a bit of cod used:

    //In a thread i create the connection and change to BIN
    ftp.connect(ip, port, user, psw, true, apn, apnUser, apnPsw);
    ftp.cwd(dir);
    ftp.bin();
    
    //here I obtain a csv representation of my object and store it in a //String var
    String csv = r.toCSV();
    
    //this method ask to ftp object to store a ByteArray in the file named //file and i want to zip it and return true if all is ok
    if (ftp.stor(new ByteArrayInputStream(csv.getBytes("UTF-8")),file,true))
    //...do things
    

    the method of object ftp stor have this code:

    /**
     * Sends a file to be stored on the FTP server. Returns true if the file
     * transfer was successful. The file is sent in passive mode to avoid NAT or
     * firewall problems at the client end.
     */
    public synchronized boolean stor(InputStream inputStream, String filename, boolean zipped) throws IOException {
    
        sendLine("PASV");
        String response = readLine();
        if (!response.startsWith("227 ")) {
            throw new IOException("SimpleFTP could not request passive mode: " + response);
        }
        String ip = null;
        int port = -1;
        int opening = response.indexOf('(');
        int closing = response.indexOf(')', opening + 1);
        if (closing > 0) {
            String dataLink = response.substring(opening + 1, closing);
            String[] tokenizer = Functions.splitString(dataLink, ',', -1);
            try {
                ip = tokenizer[0] + "." + tokenizer[1] + "." + tokenizer[2] + "." + tokenizer[3];
                port = Integer.parseInt(tokenizer[4]) * 256 + Integer.parseInt(tokenizer[5]);
            } catch (Exception e) {
                throw new IOException("SimpleFTP received bad data link information: " + response);
            }
        }
        String url = "socket://" + ip + ":" + port + urlParam;
        Logger.log(this, "Try to open passive connection to "+url);
        SocketConnection dataSocket = (SocketConnection) Connector.open(url);
        dataSocket.setSocketOption(SocketConnection.LINGER, 5);
        dataSocket.setSocketOption(SocketConnection.DELAY, 5);
    
        sendLine("STOR " + filename);
    
        response = readLine();
        if (!response.startsWith("125 ")&&!response.startsWith("150 ")) {
            dataSocket.close();
            dataSocket=null;
            throw new IOException("SimpleFTP was not allowed to send the file: " + response);
        }
        Logger.log(this, "Connected to "+url);
    
        OutputStream output;
        if (zipped)
            output = new GZIPOutputStream(dataSocket.openOutputStream(),GZIPOutputStream.COMPRESSION_BEST);
        else
            output = dataSocket.openOutputStream();
    
        byte[] buffer = new byte[512];
        int bytesRead = 0;
    
        while ((bytesRead = inputStream.read(buffer)) != -1) {
            output.write(buffer, 0, bytesRead);
        }
    
        output.flush();
        output.close();
        output = null;
        dataSocket.close();
        dataSocket=null;
    
        response = readLine();
        return response.startsWith("226 ");
    }
    

    The readline() and sendline("") methods read or write to the ftp decision-making, a line ended with CR and I so need to send FTP commands

    I think that everything is ok, for this problem I find in a forum that the problem will be the use of ASCII in FTP method, but I change to BIN

    Any idea?

    Thank you in advance!

    Hello

    Finally, I solved the problem.

    I find the solution in the documentation GZIPOutputStream

    You must pass OutputStream to GZIPOutputStream, zipping it and then you must close GZIPOutputStream but you must use the original OutputStream.

    So in my SimpleFTP class I have to write about gzip, close it then flush() and close() the original outputstream.

    Knit

    I had the new method of stor() here to see

    /**
         * Sends a file to be stored on the FTP server. Returns true if the file
         * transfer was successful. The file is sent in passive mode to avoid NAT or
         * firewall problems at the client end.
         */
        public synchronized boolean stor(InputStream inputStream, String filename, boolean zipped) throws IOException {
    
            sendLine("PASV");
            String response = readLine();
            if (!response.startsWith("227 ")) {
                throw new IOException("SimpleFTP could not request passive mode: " + response);
            }
    
            String ip = null;
            int port = -1;
            int opening = response.indexOf('(');
            int closing = response.indexOf(')', opening + 1);
            if (closing > 0) {
                String dataLink = response.substring(opening + 1, closing);
                String[] tokenizer = Functions.splitString(dataLink, ',', -1);
                try {
                    ip = tokenizer[0] + "." + tokenizer[1] + "." + tokenizer[2] + "." + tokenizer[3];
                    port = Integer.parseInt(tokenizer[4]) * 256 + Integer.parseInt(tokenizer[5]);
                } catch (Exception e) {
                    throw new IOException("SimpleFTP received bad data link information: " + response);
                }
            }
            String url = "socket://" + ip + ":" + port + urlParam;
            Logger.log(this, "Try to open passive connection to "+url);
            SocketConnection dataSocket = (SocketConnection) Connector.open(url);
            dataSocket.setSocketOption(SocketConnection.LINGER, 5);
            dataSocket.setSocketOption(SocketConnection.DELAY, 5);
    
            sendLine("STOR " + filename);
    
            response = readLine();
            if (!response.startsWith("125 ")&&!response.startsWith("150 ")) {
                dataSocket.close();
                dataSocket=null;
                throw new IOException("SimpleFTP was not allowed to send the file: " + response);
            }
            Logger.log(this, "Connected to "+url);
    
            OutputStream output = dataSocket.openOutputStream();
            byte[] buffer = new byte[512];
            int bytesRead = 0;
    
            if (zipped){
                GZIPOutputStream zipOutput = new GZIPOutputStream(output,6, GZIPOutputStream.MAX_LOG2_WINDOW_LENGTH);;
                while (!isAskForAbort() && (bytesRead = inputStream.read(buffer)) != -1) {
                    zipOutput.write(buffer, 0, bytesRead);
                }
                zipOutput.close();
            } else {
                while (!isAskForAbort() && (bytesRead = inputStream.read(buffer)) != -1) {
                    output.write(buffer, 0, bytesRead);
                }
            }
            if (isAskForAbort()){
                abor();
                output.close();
                output = null;
                dataSocket.close();
                dataSocket=null;
                try {
                    setAskForAbort(false);
                } catch (BbException e) {/*nothing to do. Here ftp is conected*/}
                return false;
            }
            output.flush();
            output.close();
            output = null;
            dataSocket.close();
            dataSocket=null;
    
            response = readLine();
            return response.startsWith("226 ");
        }
    

    Thank you much for the help.

  • Problem with the combination of LabVIEW (dynamic distribution) classes, statechart module and module FPGA

    LOCATION:

    -I am developing a software plugin based on plug-ins based on LabVIEW classes that are instantiated in running. Plugin real classes come from the plug in generic classes that define interfaces to the VI instantiation and can provide basic functionality. This means that many of the methods of the class are dynamic distribution and even methods of child classes can call the parent method.

    -Plugins top level (the ones directly accessible by the main VI) each have a run method that animates a plug-in specific state transitions.

    -Transitions of the plug-in data acquisition (DAQ class) class calls a method of the DAQ class that reads data from an FPGA card OR and transmits to another component via a queue.

    PROBLEM:

    -Higher sampling rate, a FPGA-to-host FIFO overflow occurs after some time. When I "weigh" the system just by moving a window of Firefox browser on the screen, the overflow is triggered immediately. I did not have this kind of problem in older software, where I was also reading a FIFO of FPGA, but made no use of LabVIEW classes or diagrams.

    SOLUTIONS I'VE TRIED (WITHOUT SUCCESS):

    -J' put the transitions in a timed (instead of a simple while loop) loop that I assigned specifically to an own kernel (I have a quad-core processor), while I left all the other loops of my app (there many of them) in any simple loops. FIFO overflow still occurs, however.

    QUESTION:

    -Does anyone have a tip how I could fix this problem? What could be the cause: dynamic distribution methods, the acquisition of data of state transitions or just the fact that I have a large number of loops? However, I cannot change the fact that I have dynamic distribution methods because it is the essence of my architecture...

    Tips are greatly appreciated!

    I've now changed the execution priority of all the screws involved in reading of the FPGA FIFO '(highest) priority critical time '. This seems to be improving the situation much: so far I have not a FIFO overflow, even when I move around the windows on the screen. I hope it stays like that...

  • x 360 u100ng envy 15: weird problems with adapter Atheros QCA Qualcomm 9565 being unstable when it's on battery

    Hello

    I have a weird problem.

    When the notebook is on battery, the (Qualcomm Atheros QCA 9565) wireless card is unstable and very little reliable, dropping signals continuously, more importantly, loading speed (be em, Web sites, or a set of the router to the top of page!) is considerably slowed down...

    Remarkably, I can detect this by loading the page of my router configuration, when the laptop is on current alternative, I can refresh the page of the extremely fast router, but when the laptop is on battery, blocking of page of the router, so all the other websites, I try to load, the router page has nothing to do with an internet connection It reflects the quality of connection directly between the wireless card and the router and the router is in excellent condition, as evidenced by all the other devices on it.

    I also notice that when the laptop is on battery, the screen fades and informed on a regular basis, I do not think that my laptop is equipped with auto brightness adjustment features...

    So far, it seems that the problem is the battery... If the wireless adapter can run reliably with a reliable source of energy (i.e. the AC power), the wireless card is fine, right? It seems to me the battery is faulty and cannot provide enough power for the wireless card and other devices, from the ravages of this pain in the ass... computer I'm right?

    Thank you very much for your contribution in advance!

    Cong

    For the wireless adapter, check your settings under Advanced settings, Power Options. The map is set up for maximum performance on battery & power?

  • Problems of blackBerry Smartphones while creating an e-mail account

    Hej,

    in late July, I bought a BB Curve 9320. Until today, I wasn't able to create an e-mail account. A smartphone without access to e-mail. The problem is missing to create an internet e-mail account. I'm only able to set information for a business account, which I did not. In recent weeks I spent hours and hours reading manuals/blogs and watching youtube videos. I also asked my phone provider if they put in limits for internet e-mail accounts. Nothing of the sort.

    I guess that the problem may be caused by our bb playbook. It works well enough. The playbook is running to a live windows account for email, contacts, and dates. When I started the 9320, I first used the same bb id that we use on the playbook.

    Please help me, I'm totally frustrated. What can I do?

    Sincere best wishes from Hamburg

    Jan

    Interesting. Call your carrier and confirm that you have the blackberry data plan associated with your account.

  • I have a problem with the new administrator creating accounts and the original missing on the computer account.

    Original title: profile has been automatically removed, new profiles created automatically and can not open a session

    Help! I closed my laptop (only in the ordinary course of its use) and when I turned it back on, my usual user profile was gone and a couple of new ones have been created. One was created with my professional e-mail address as username (which is strange because I've never used this e-mail in the computer) and the other is empty. I tried to connect both of the profiles using my old combinations of the new user name and password, or user name and the old Word, but it is said that the account and the password is incorrect. I also tried to log on as an administrator, but it says "your account has been disabled. See system administrator. Is it possible to recover the data in the old profile without reinstalling Windows because I am away from home and do not have the disc. ... I use Windows 7.

    Thank you very much in advance for any help!
    You might be able to solve your problem using the system restore. Here's how it works:
    1. keep tapping F8 during the first phase of startup.
    2. select Repair from the menu.
    3. Select an administrator account, and then enter its password.
    4. When you are prompted, select System Restore.
    5. set Windows to a point before this problem occurred.
    On questions of password-, I treat my PC as I have my house: I always have a spare admin account / SpareKey so that I can return new anything that happens. You have a fully tested alternative admin account? If you do not, and if the method above doesn't work, then, you have a major problem that you will not be able to resolve without a CD to repair Windows.
  • Problem with the fonts Textfield and dynamic device Flash CC

    Hello community,

    My problem is that I need to use for a "Device Fonts" project for dynamic textfields. With Flash CC several standard fonts are displayed not correctly, see photos. When I select "Anti-Aliasing for reading" for this textfield, when it displays the correct police.

    screenshot_1.JPGscreenshot_2.JPG

    Anyone know the problem?

    If you want to use Arial Bold, embed (Einbetten..), this police.

    If you specify "use device fonts" for anti-aliasing, Arial Bold is prohibited when the published text is displayed.

    Adobe Flex 4.6 * using device fonts

  • Problem with the rule while the data is loading files

    Hello

    I'm having a problem trying to load data to an application that uses rules files. Load data files were from another application using the DATAEXPORT. I have two files for each entity. One is for the current year and one for next year. The source and target applications are different, so I do all the mapping using rule files.

    The data of the current year file contains data for CurrMonth:Dec & CurrYear. The following year data file contains data for Jan: Dec and the next. I made rules for each entity files load data into the application and has made the mapping when creating these rules files using set 12 months.

    The problem that I am facing is that I'm able to correctly load the following year in the target application, my rules file is the right month for each column mapping. But for the year underway, I have just 2 columns of data (whereas & CurrMonth = Nov) and so when I'm trying to load the data file using the rules file, it is to map the November and December months like January and February and charging at these months of FY11, which is false.

    I don't know how to solve this problem. The current year data file it will always change in terms of months then how can I modify the rules that he recognizes that the months are coming in and where to put the data.

    Please let me know your suggestions. Any help will be appreciated.

    Thank you!
    ~ Hervé

    PS ~ it was the same problem, I was faced with a few months back when I posted this question and I followed the advice in this post, but always faced to the question - DATAEXPORT and rules files

    Published by: Gwen on December 20, 2011 08:25

    Adella,
    We have faced a similar issue and we were able to solve it by sticking to these months dimension members (& currmonth: dec) and generate the header
    The export file created when paste us the dimension names in front of months on the export file
    Suppose that your export file is currmonth.txt and she Nov and Dec
    first line of your export file should look like this
    'Version' 'Year' 'Scenario' "XYZ" "123" "ABC" "Account", "Nov", "Dec".
    We have created a batch file to add this to the original export file, it looks like this
    Paste d "\0" Header.txt "D:\Hyperion\products\Essbase\EssbaseServer\app\xyz\123\currmonth.txt" > "D:\Hyperion\products\Essbase\EssbaseServer\app\xyz\121\currmonthchange.txt".

    Header.txt is a text file that it contains ("Version" "Year" "Scénario" "XYZ" "123" "ABC" "count")

    change your rules file so that it generates the header in your source (currmonthchange.txt)

    rulefile--> the properties of data source--> header--> data records source header--> recording containing the names of data filed charge (set 1)

    I hope this will solve your problem

  • Problem with the tool pen creating a fill when I want only the stroke

    Hello

    I'm having a problem. I create a simple spider for a project. Initially, I used the pen tool to make the legs. He worked for a bit, then started suddenly in an area that I has yet to draw with the fill color. I don't know what I did to cause this happens. Any help would be appreciated. Thank you

    colorkey stroke.png

    This form shows a yellow fill, probably from the last shape you drew.  If you select the form and clear the fill, your drawing will return to black lines only.

  • Problem with "select * from table" for dynamic IN the list

    I have a 'for loop' based a query that does not work. The query is supposed to return the name of the table, the data type and the name of the column in the columns poses a number of name filters. The problem I have is when I run the query into a TOAD with:

    schema_list value SCOTT, MED and the clause of 'in' as ' to (select * from table (DATAPUMP_UTIL.in_list_varchar2 (:schema_list))))»

    The query returns the expected lines.

    When I have it in my code as shown below it returns no rows. I don't know what hurts me, but any help would be great! I'm on Oracle 11.1.0.6.0.
    PROCEDURE export_schema_ondemand (schema_list VARCHAR2, encrypt_file NUMBER default 0, mask_sensitive_data NUMBER default 0) IS  
        ...
        schema_list_t := my_package.in_list_varchar2(schema_list);
        ... 
        for c1 in
           (
            with ok_to_mask as (
            select 
                owner,
                table_name, 
                column_name
            from   
               all_tab_columns
            where
                owner in (select * from table(schema_list_t))
            minus
            (SELECT 
                c.owner,
                p.table_name,
                cc.column_name
            FROM 
                all_cons_columns cc, 
                all_constraints p,
                all_constraints c
            WHERE 
                c.owner in (select * from table(schema_list_t))
                c.constraint_type = 'R'
                AND p.owner = c.r_owner
                AND p.constraint_name = c.r_constraint_name
                AND cc.owner = c.owner
                AND cc.constraint_name = c.constraint_name
                AND cc.table_name = c.table_name
            UNION ALL
            SELECT 
                c.owner,
                cc.table_name,
                cc.column_name
            FROM 
                all_cons_columns cc,
                all_constraints p,
                all_constraints c
            WHERE
                p.owner in (select * from table(schema_list_t))
                AND p.constraint_type in ('P','U')
                AND c.r_owner = p.owner
                AND c.r_constraint_name = p.constraint_name
                AND c.constraint_type = 'R'
                AND cc.owner = c.owner
                AND cc.constraint_name = c.constraint_name
                AND cc.table_name = c.table_name))
            select 
                atc.table_name as mask_tab, 
                atc.column_name as mask_col, 
                atc.data_type as mask_type
            from   
                all_tab_columns atc,
                ok_to_mask otm
            where
                atc.owner = otm.owner
                and atc.table_name = otm.table_name
                and atc.column_name = otm.column_name
                and atc.owner in (select * from table(schema_list_t))
                and 
                (
                atc.column_name like '%LAST%NAME%'
                or atc.column_name like '%FIRST%NAME%'
                or atc.column_name like '%NAME_LAST%'
                or  atc.column_name like '%NAME_FIRST%'
                or  atc.column_name like '%ENAME%'
                or atc.column_name like '%SSN%'
                or atc.column_name like '%DOB%'
                or atc.column_name like '%BIRTH%'
                )
                and atc.column_name not like '%PHYSICIAN_%'
                and atc.column_name not like '%DR_%'
                and atc.column_name not like '%PROVIDER_%'
                and atc.column_name not like 'PRESCRIBER_%'     
           )
          loop
             ...
    
    FUNCTION in_list_varchar2 (p_in_list  IN  VARCHAR2)  RETURN VARCHAR2_TT is
    
        l_tab   VARCHAR2_TT := VARCHAR2_TT();
        l_text  VARCHAR2(32767) := p_in_list || ',';
        l_idx   NUMBER;
            
    BEGIN
        LOOP l_idx := INSTR(l_text, ',');
            EXIT WHEN NVL(l_idx, 0) = 0;
            l_tab.extend;
            l_tab(l_tab.last) := TRIM(SUBSTR(l_text, 1, l_idx - 1));
            l_text := SUBSTR(l_text, l_idx + 1);
        END LOOP;
    
        RETURN l_tab;
            
    END in_list_varchar2;
    Published by: BluShadow on June 29, 2011 16:11
    addition of {noformat}
    {noformat} tags.  PLEASE READ {message:id=9360002} TO LEARN TO DO THIS YOURSELF.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Hello

    If you have a query that works well when you launch it directly, and that breaks down when you start with a procedure, this can be a problem of privileges.

    Points of view ALL_ * shows only the objects you have access, but using a procedure, privileges must be granted directly to the user and not with a role.

    You should check the SELECT privileges to your user through roles and give them directly to the user.

    Hope this will help.

    Sylvie

  • Problem with the menu when creating Bluray

    Hello world

    My first post here and not really a professional in creating...

    I recently create a project still 5.1.0.342.

    The project is made of some exported videos first.

    The problem is that when I build a bluray image (file works the same and I have not tried disk because I don't want wasting them) there is absolutely no menus.

    I created a set of chronologies, some in playlist (no chapter selection) and named 3 menus associated with a video in the background.

    When I check the project all that I get no error and the entire construction I've tried so far is well over.

    When I saw after the restitution of everything on the menu is very good.

    When I build the DVD image everything goes according to the preview and the chart.

    When I build the BluRay all the files appear to be in the bluray (I can access everthing with the option of selecting players), but there is no menus.

    I found videos with buttons and circles, but they are like other videos, they are not menus...

    If anyone has any idea I'll take.

    Thank you for reading me and sorry for my English, I'm french.

    If you have a BD - RE disc, then please try to burn to disc.

    And if the menu is set as the first piece, it will appear after inserting the disc. (Anything defined as part of the project appears on the disc.)

    Thank you

    Ramesh.

  • Strange problem with adapter on my Satellite A40

    Hello world

    I bought Toshiba Satellite A40-221 more than year a go and it works perfectly. I m maybe a heavy user I have working on it in the average of 12 hours. Sometimes I work in manufacturing, especially graphics 3d next to games. last month, the lead of the charger is burned to the ground and it seems to be a shortage that has happened. I've corrected the charger several times myself, but it burns again so I sent it to a fixed workshop that he and they said they changed something inside the charger when I used it just a loud sound of it and lift it up I have not noticed before when I use any heavy program like games or 3d make things. When working on batteries could be the same sounds follows the laptop itself. The laptop works fine but this noise that I don't know it's a serious thing?

    Also the charger gets very hot when I play for a long time, but when I use it on web surfing, programming, drafting... etc no heat is observed.
    Have I sent to specialist Toshiba... help me please?

    Hello

    In my opinion, you should be very carefully with that. As you know defective AC adapter may cause damage to your property at home and you should contact the SAV Toshiba partner in your country. I put t know where you live, but on this page, you will find a http://www.csd.toshiba.com/cgi-bin/tais/su/su_gaspLocator.jsp?pf=true useful addresses

    If please contact them and explain the situation very carefully.

    Good bye

Maybe you are looking for

  • SCXI-1581 reading bad weather

    Hello I'm an intern summer and I'll try to find some help with the SCXI-1581 module. We had a major failure during the test of an engine and it damaged some of the test equipment. We have replaced all that appears to be damaged and tried to restart t

  • C in XCODE build problems with VISAS / NOR

    Hello I'm developing a C program to connect with my oscilloscope Tektronix. I inherited this project from a friend (who is currently in the secret), so I can't talk to him on this subject. On my system: I'm running OS X 10.8.4, development in XCODE 4

  • error of standard deviation

    I have a data set where all values are the same, but labivew is not a standard 0 deviation when I perform this calculation in a loop. Please see the .vi attatched. (Maybe I'm on something obvious).

  • No sound in Microsoft webcam Vx 600

    I bought and installed a vx6000 microsoft webcam which has a microphone, everything seems to work except that I can't get any sound can someone help me solve this problem.thanks Linda xx

  • Windows Update error 0 x 80070057 (2016-05-07-T-08_42_59p)

    Hello I recently updated my computer with several updates (windows 7).  After the updates have been installed, I had an error failed to set up. After you run the Microsoft patch recommended, some errors have been fixed except "Windows Update error 0