Problem about function

can we give table as parameter to the function ,
the table parameter should be out type parameter .
how ?
please explain with example.
Thanks in advance

I'm not sure - are you looking for this or anything else --
SQL> create or replace type rec_emp_type is object
emp_id number (4),
ename varchar2 (12),
job varchar2 (12),
mgr_id number(4),
hiredate date,
salary number (8),
comm number(8),
dept_id number (2)
Type created.
SQL> create or replace type table_emp_type is table of rec_emp_type;
Type created.
SQL> ed
Wrote file afiedt.buf
1 CREATE or REPLACE function transform Return table_emp_type PIPELINED as
2 BEGIN
3 For query in (select * from emp)
4 Loop
5 query.sal := query.sal*1.2;
6 Pipe row (rec_emp_type (
7 query.EMPNO,
8 query.ENAME,
9 query.JOB,
10 query.MGR,
11 query.HIREDATE,
12 query. SAL,
13 query.COMM,
14 query.DEPTNO));
15 End loop;
16 Return;
17* END;
SQL> /
Function created.
Elapsed: 00:00:00.02
SQL> select * from table (cast (transform as table_emp_type));
7369 SMITH CLERK 7902 17-DEC-80 960 20
7499 ALLEN SALESMAN 7698 20-FEB-81 1920 300 30
7521 WARD SALESMAN 7698 22-FEB-81 1500 500 30
7566 JONES MANAGER 7839 02-APR-81 3570 20
7654 MARTIN SALESMAN 7698 28-SEP-81 1500 1400 30
7698 BLAKE MANAGER 7839 01-MAY-81 3420 30
7782 CLARK MANAGER 7839 09-JUN-81 2940 10
7788 SCOTT ANALYST 7566 09-DEC-82 3600 20
7839 KING PRESIDENT 17-NOV-81 6000 10
7844 TURNER SALESMAN 7698 08-SEP-81 1800 0 30
7876 ADAMS CLERK 7788 12-JAN-83 1320 20
7900 JAMES CLERK 7698 03-DEC-81 1140 30
7902 FORD ANALYST 7566 03-DEC-81 3600 20
7934 MILLER CLERK 7782 23-JAN-82 1560 10 Regards.
Satyaki De.

Similar Messages

  • Had a problem about function which includes bitand, decode, etc..

    Hi everyone,
    As I said at topic, I need some help on function. First of all, I will explain what kind of data I need to have. I had a table which has a column called FLAG1, this column gives me an information about a meter's situation. But this column only have numbers I need to look at it bit by bit. Here is my query;
    create or replace
    function FLAG1_CONTROL(F1 varchar2) return varchar2 is
    result varchar2(250);
    vF1 integer;
    begin
    vF1:= TO_NUMBER(F1, 'XX');
    result:= '';
    SELECT result|| DECODE(BITAND(vF1,1), 0, 'close,', 'open,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,2), 0, '', 'dafds,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,4), 0, '', 'jkf,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,8), 0, '', 'rewrw,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,16), 0, '', 'fdsfsa,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,32), 0, '', 'dfas,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,64), 0, '', 'jjll,') into result from dual;
    return(Result);
    end FLAG1_CONTROL;
    When I run this query, I had exception like
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "AKSAPROC.FLAG1_CONTROL", line 11
    ORA-06512: at line 7
    Process exited.
    Can anyone help me about that topic?
    Regards,
    Edited by: sedcal on Aug 9, 2010 5:19 PM

    Hi,
    You're referencing a table called dualI that, apparantly, has more than 1 row:
    SELECT result|| DECODE(BITAND(vF1,2), 0, '', 'dafds,') into result from dualI;If you use CASE (or IF ... THEN .. ELSE) instead of DECODE, you won't need SELECT INTO.
    create or replace
    function FLAG1_CONTROL     (F1     IN     varchar2)
    return       varchar2
    is
         vF1    integer          := TO_NUMBER (F1, 'XX');
    begin
         RETURN  CASE WHEN BITAND (vF1,  1)  = 0 THEN 'close,'  ELSE 'open,'   END
         ||       CASE WHEN BITAND (vF1,  2) != 0 THEN 'dafds,'                  END
         ||       CASE WHEN BITAND (vF1,  4) != 0 THEN 'jkf,'                       END
         ||       CASE WHEN BITAND (vF1,  8) != 0 THEN 'rewrw,'                END
         ||       CASE WHEN BITAND (vF1, 16) != 0 THEN 'fdsfsa,'                END
         ||       CASE WHEN BITAND (vF1, 32) != 0 THEN 'dfas,'                END
         ||       CASE WHEN BITAND (vF1, 64) != 0 THEN 'jjll,'                END
    end     FLAG1_CONTROL;
    /Edited by: Frank Kulash on Aug 9, 2010 10:44 AM
    Added code for SELECT-free function

  • Problems about function area

    Dear all
    when I use function area ,for example :
    The function area of cost element "A "is "magagement"
    The function area of cost center B is "manufacting".
    When I post document :Dr Cr:A ,and related cost center is B.
    will the systmen gives the error message?
    richard

    anyone can help me ? 
    if anyone can give me the config procedure step by step..thanks...
    richard

  • The problem of function-based reuse

    I read the quoted text as follows from a book authored by a Microsoft developer. I googled and found a lots of quotes of it, but did not find any explanation.
    ============
    With languages like C, the basic unit of reuse is the function. The problem with function-based reuse is that the function is coupled to the data it manipulates. and if the data is global, a change to benefit one function in one reuse context damages another function used somewhere else.
    ============
    C uses libraries widely,which is of function-based reuse. Can anybody kindly give me a scenario when this problem happens?
    Java is typically object-based reuse, and I admit that my question is not a Java one. But I feel it would help to understand more about the concept or benefits of design of Java language. So, thank you to allow me to post this question here,
    Edited by: 799160 on Sep 30, 2010 12:38 PM
    Edited by: 799160 on Sep 30, 2010 12:57 PM

    This is what I got out of reading the quote you posted:
    I suppose something like the following could happen:
    You (being a general person) have been given a class to modify. You look at the code for the first time and it has a bunch of methods and some class variables in it. Some of the methods use the class variables. How can you be sure if you change the functionality to change a class variable in one method won't affect the other methods when they are used? This problem can be solved by learning what everything does, how it interacts and the correct way to use it. But then again, if you don't think about it and just make changes...Oops!
    Perhaps another abstract example would make sense:
    Imagine a calculator that could be used by 2 people at the same time? I bet it'd come up with some funny answers :)
    I wrote up a short example of this, hopefully it makes some sense:
    public class SuperBigProgram
         private int globalVar;
         public static void main ( String[] args )
              new SuperBigProgram();
         public SuperBigProgram()
              System.out.println("I'm a super big program.");
              globalVar = 0;
              //Let's pretend these series of events occur during the program:
              doItHighChanceActivity(); //1
              doItHighChanceActivity(); //2
              doItHighChanceActivity(); //3
              //Whoops super rare event occured!
              doesNotHappenALot();
              doItHighChanceActivity(); //4????    but is really 5.
          * This happens A LOT!
         private void doItHighChanceActivity ()
              superUtilityMethod();
              System.out.println("globalVar: " + globalVar);
          * This utility method does some awesome utility stuff for our Super Big Program.
          * This changes some global data.
         private void superUtilityMethod()
              globalVar++;
          * This does not happen a lot, if at all.
         private void doesNotHappenALot()
              //Hey I don't happen a lot but I'm reusing this really cool utility method that contains global data...
              //Code reuse for the win!
              superUtilityMethod();
    }Here is the output:
    I'm a super big program.
    globalVar: 1
    globalVar: 2
    globalVar: 3
    globalVar: 5
    Edited by: kilosi on Sep 30, 2010 1:22 PM

  • A switch on/off problem about the relay in a loop

    hi group:
    I am developing a project based the Ni-sci-1160. Now I meet a problem about switch on/off in a loop.
    for example:  I creat a loop, and continually check a boolean. if the boolean is true, then the realy is closed, otherwise the relay is open. The problem is when I make the boolean is true,  the corresponding relay is not always on,  but just on-off, on-off,on-off.  I don't know why? Is there any good idea to fix it?
    the easy example codes is attached here , thanks for you help.
    Attachments:
    relay_problem.vi ‏19 KB

    Try moving that first DAQmx function out of the while loop.  Since it is called switch set and Reset, I'm guessing it is resetting the status of the switch every iteration of the while loop which probably means setting it back to false.  It looks like an initialization type of function which means it should only be run once.

  • Problem About Date Format in Dashboard

    Hi All:
    I still have problem about date format in dashboard and dashboard prompt. When I use cast(dealdate as date) in dashboard prompt(coloumn formula of deal_date) and filter view(In edit view of filter coloumn formula) Then It converts the date format from mm/dd/yyyy to yyyy-mm-dd But I want format in dd-mm-yyyy.
    ANd also one problem more that is when I use cast function in filter coloumn formula then how I give alias to it. Because it shows same like that cast(deal_date as date) on dashboard filter view.
    Pluzz help me to solve this problem
    Haroon

    Changing the ini files should change the date format. Have you amended the correct instances of the date format? In dbFeatures there is one for every ODBC connection.
    For example in my DBFeatures.INI
    [ DATA_SOURCE_FEATURE = ODBC_300 ]
    DATE_FORMAT = 'dd-mm-yyyy' ;
         TIME_FORMAT = 'hh:mi:ss' ;
         DATE_TIME_FORMAT = 'dd-mm-yyyy hh:mi:ss' ;
         IDENTIFIER_QUOTE_CHAR = '"';Also a file on the presentation side in OracleBI \web\Config called localedefinitions.xml.
    Inside that there appears to be defaults for localisations - maybe it is possible to amend your locale in the Administration settings of the dashboard.
    However, I haven't tried this sorry.

  • A problem about gcc

    I installed Solaris8 x86 on my PC successfully, including software companion CD, which was installed under /opt.
    Following was added in .profile :
    PATH=/opt/sfw/bin:$PATH
    Then I created two programs in a subdirectory:
    C code, HelloWorld.c, compiled using gcc, run ./a.out, everything OK;
    C++ code, HelloWorld.cc, compiled using g++, ./a.out was generated, it seemed ok. But when I tried to run ./a.out, got following error message:
    $ ./a.out
    ld.so.1: ./a.out: fatal: libstdc++.so.2.10.0: open failed: No such file or directory
    Killed
    The same C++ HelloWorld compiled and run good on another Sparc/Solaris7.
    Anybody can tell me what the problem is and how to solve it?

    Edward_King wrote:
    I enter a problem about gcc,I installed solaris 10,and then login with root user,I want to use gcc,
    #pwd
    #gcc
    but I find there is no gcc,A better way to find gcc is to:
    grep gcc /var/adm/install/contents
    On a Solaris system if you install the developer or greater cluster then gcc should be installed into:
    /usr/sfw/bin
    so you can start by just checking there.
    PATH=$PATH:/opt/gnome/bin:/usr/local/bin:/opt/netscape:/usr/ccs/bin
    export PATH I'm not sure why you would need /opt/gnome or /opt/netscape but whatever.
    1 how can i know root user use sh or csh user?Look at the /etc/passwd file.
    2 I can't find .profile or .cshrc file in / directory,where are they? Which directory should I create profile or .cshrc file? After I create profile or .cshrc file,which command I can run to make profile or .cshrc file go function? Need I reboot the solaris system?By default root doesn't have one so just create using vi.
    vi /.profile
    Thanks in advance!regards,
    alan

  • Problem about Mac Os X 10.6.3 V.S Labview 2009

    hi,labview~
    i have some problem about Labview 2009.i saw the website of NI wrote the Labview 2009 is not support for Mac OSX 10.6.3,but i have already installed it (English system) in my computer successfully.
    anyway,i cant open the programs which are wrote by labview 8.5(Japanese system) .My labmate who use Labview 2009(Mac OSX 10.5) can open those programs.
    can anyone tell me the possible reason i cant open the programs?
    Thanks a lot! 
    PS i have already tried Labview 8.5 and 8.6(English system),but the problem cant be solved.... 

    Hi mofi, my name is Taiki from National Instruments Japan.
    I assume that the link you referred to is the one below, but as you stated, LabVIEW 2009 is not supported in Mac OS X 10.6 so even though you were able to install it successfully, NI cannot assure that it will fully function on your Mac.
    LabVIEW Support for Mac OS 10.6 (Snow Leopard) and 10.5 (Leopard)
    http://digital.ni.com/public.nsf/allkb/70F17A30DE7B865E8625737F006377F8?OpenDocument
    Since you mentioned that the VI files were able to be opened on LabVIEW 2009, Mac OS X 10.5, the actual VI files should not be the issue which leaves us with the possibility of the software environment.
    You also noted that the issue could not be solved on LabVIEW 8.5 and 8.6 but was this on Mac OS X 10.6 as well?
    If so, there is a good chance that this issue is due to the fact that LabVIEW is running on an supported OS and I would suggest trying opening the files on another different Mac OS X 10.5 system.
    Unfortunately, currently Mac OS X 10.6 is an unsupported OS for any version of LabVIEW so I can only suggest trying on a Mac OS X 10.5.
    Kind regards.
    Taiki Hoshi
    Applications Engineer
    National Instruments Japan

  • Have problem about grant assignment in Student Master Data

    have problem about grant assignment in Student Master Data
    i want to change grant detail in Student Master Data when i choose disbursement type to Pay Fixed Amount
    and then go to Grant Evaluation Run it have result
    But when i choose another disbursement type such as
    1. Pay Up To a Certain Percentge
    2. Pay Certain Percentage Up to a Certain Amount
    3. Pay Up to a Certain Amount
    and go to run Grant Evaluation it can run but not have result
    I need help T_T i don't know why i can't change or i miss something

    hello experts,
    Our problem is still not fixed, but we have contacted SAP to have a look at this problem. In the mean time we have created a new way to calculate the grants by doing no check at all, because our client don't want to have prerequisites yet.
    Therefor we made a custom function module from PMIQBP_GR_COND_EVALT_01. If the boolean ev_xok is true the system will calculate and post the grant amount.
    Good luck and I'll keep you posted.
    Kind regards,
    Steve de Klonia

  • About function :SXPG_CALL_SYSTEM

    hi,dear all:
         I want to call an external program of a windonws 2003 system using  function SXPG_CALL_SYSTEM,can you give me some advice,notes or give me some example about it?

    Jian,
    check the documentation of the FM in SE37...
    FU SXPG_CALL_SYSTEM
    Text
    Execute an External Command
    Functionality
    SXPG_CALL_SYSTEM: Execute External Command (Express Method)
    Using this function module, you can:
    o Check a user's authorization to execute a command
    o Execute the command
    To determine the system on which the command should be executed, the
    function module uses by default the current host system and the current
    operating system type of the user.
    As the function module is RFC-capable, you can use the RFC interface
    (Remote Function Call Interface) to run the function module in a
    different SAP application server. The external command is then
    accordingly executed in the host system of the other SAP server.
    SXPG_CALL_SYSTEM uses the following rules to determine which variant of
    a command is used for the execution:
    o If a command with the same operating system type as the one in the
    sytem field SY-OPSYS exists, this definition is used for the
    execution of the command.
    o If the first check fails, the syntax group for SY-OPSYS is determined. A syntax group is an SAP construct that groups operating
    systems that use the same syntax for commands and filenames. If a
    command whose operating system type matches the determined syntax
    group, this definition of the command is used.
    o If no matching definition is found for the syntax group, the
    function module searches for a definition with the operating system
    type ANYOS (executable in all supported operating systems). This
    definition is then used, if found.
    o Otherwise, the exception COMMAND_NOT_FOUND is triggered.
    se
    Syntax:
    CALL FUNCTION SXPG_CALL_SYSTEM
    IMPORTING
    COMMANDNAME = <SAP command name> DEFAULT '*'
    ADDITIONAL_PARAMETERS = <Argument string> default <space>
    EXPORTING
    STATUS = <Exit status of command>
    TABLES
    EXEC_PROTOCOL = <Log> In structure BTCXPM. Can
    contain STDOUT, STDERR
    EXCEPTIONS
    NO_PERMISSION Command rejected by User exit auth.
    check
    COMMAND_NOT_FOUND Command not defined in SAP database
    PARAMETERS_TOO_LONG Complete parameter string exceeds
    128 characters
    SECURITY_RISK Security check failed
    WRONG_CHECK_CALL_INTERFACE Problem with function
    module for additional security
    check
    PROGRAM_START_ERROR Error while starting program
    ==============
    This command can be edited in Tx SM69 and executed in Tx SM49. Just have a look in one of these transactions
    http://help.sap.com/saphelp_nw04/helpdata/en/fa/0971ee543b11d1898e0000e8322d00/content.htm
    look here : Re: Rename a file
    Don't forget to reward if useful....

  • The Problem about Monitoring Motion using PCI-7358 on LabVIEW Real Time Module

    Hello everyone,
    I have a problem about monitoring the position of an axis. First let me give some details about the motion controller system I’m using.
    I’m using PCI-7358 as controller and MID-7654 as servo driver, and I’m controlling a Maxon DC Brushed motor. I want to check the dynamic performance of the actuator system in a real time environment so I created a LabVIEW function and implemented it on LabVIEW Real Time module.
    My function loads a target position (Load Target Position.vi) and starts the motion. (Start.vi) then in a timed loop I read the instantaneous position using Read Position.vi. When I graphed the data taken from the Read Position.vi, I saw that same values are taken for 5 sequential loops. I checked the total time required by Read Position.vi to complete its task and it’s 0.1ms. I arranged the loop that acquires the data as to complete its one run in 1ms. But the data shows that 5 sequential loops read the same data?

    Read Position.flx can execute much faster than 5 ms but as it reads a register that is updated every 5 ms on the board, it reads the same value multiple times.
    To get around this problem there are two methods:
    Buffered High-Speed-Capturing (HSC)
    With buffered HSC the board stores a position value in it's onboard buffer each time a trigger occurrs on the axis' trigger input. HSC allows a trigger rate of about 2 kHz. That means, you can store a position value every 500 µs. Please refer to the HSC examples. You may have to look into the buffered breakpoint examples to learn how to use a buffer, as there doesn't seem to be a buffered HSC example available. Please note that you need an external trigger-signal (e. g. from a counter of a DAQ board). Please note that the amount of position data that you can acquire in a single shot is limited to about 16.000 values.
    Buffered position measurement with additional plugin-board
    If you don't have a device that allows you to generate a repetitive trigger signal as required in method 1.), you will have to use an additional board, e. g. a PCI-6601. This board provides four counter/timers. You could either use this board to generate the trigger signal or you could use it to do the position capturing itself. A PCI-6601 (or an M-Series board) provides can run a buffered position acquisition with a rate of several hundred kHz and with virtually no limitation to the amount of data to be stored. You could even route the encoder signals from your 7350 to the PCI-6601 by using an internal RTSI cable (no external wiring required).
    I hope this helps,
    Jochen Klier
    National Instruments

  • An old and difficult problem about "UnsatisfiedLinkError"

    Hi dear all,
    I have been struck with the problem about "UnsatisfiedLinkError". I have a c++ class HelloWorld with a method hello(), and I want to call it from within a java class. In fact, I have succeeded in calling it on the windows platform. But when I transfer it to linux, the error "UnsatisfiedLinkError" comes out. I have tried to take the measures as Forum has suggested, but it failed.
    The source code is very simple to demonstrate JNI.
    "HelloWorld.h"
    #ifndef INCLUDEDHELLOWORLD_H
    #define INCLUDEDHELLOWORLD_H
    class HelloWorld
    public:
    void hello();
    #endif
    "HelloWorld.cpp"
    #include <iostream>
    #include "HelloWorld.h"
    using namespace std;
    void HelloWorld::hello()
    cout << "Hello, World!" << endl;
    "JHelloWorld.java"
    public class JHelloWorld
    public native void hello();
    static
    System.loadLibrary("hellolib");
    public static void main(String[] argv)
    JHelloWorld hw = new JHelloWorld();
    hw.hello();
    "JHelloWorld.cpp"
    #include <iostream>
    #include <jni.h>
    #include "HelloWorld.h"
    #include "JHelloWorld.h"
    JNIEXPORT void JNICALL Java_JHelloWorld_hello (JNIEnv * env, jobject obj)
    HelloWorld hw;
    hw.hello();
    All the files are in the same directory and all the processes are under the dirctory:
    1. javac JHelloWorld.java
    2. javah -classpath . JHelloWorld
    3. g++ -c -I/usr/java/jdk1.3/include -I/usr/java/jdk1.3/include/linux JHelloWorld.cpp HelloWorld.cpp
    4. ld -shared -o hellolib.so *.o
    5. java -cp . -Djava.library.path=. JHelloWorld
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no hellolib in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1349)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at JHelloWorld.<clinit>(JHelloWorld.java:7)
    Tried another measure:
    i) export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
    ii)java -cp . JHelloWorld
    The same error came out as above.
    I really don't know what is wrong with it.
    Would you like to help me as soon as possible?
    Thanks.
    Regards,
    Johnson

    Hi Fabio,
    Thanks a lot for your help.
    It is very kind of you.
    Regards,
    Johnson

  • A problem about calling Labview vi in VB

    Hi all:
    I meeting a problem about data transfer and parallel operation between VB and Labview.
    Actually, I want develop a VB program, in which, the Labview VI can be called and corresponding parameters can be transferred to Labview. and then, I also can operate my system by VB program at same time. something like parallel operation (VB and Labview program).
     But the question is :
    1.   If I use "Call" method of ActiveX in VB,  and the LabVIEW subvi is not stopped (for example, a loop structure), I can not do  parallel operation on VB program. The error message is "other application is busy" which is attached below. The sample codes is also attached.
    2.   I tried to use other methods like "OpenFrontPanel" and "Run", but I am not sure how to transfer the parameter??
    3.  Then I tried to use "SetControlValue" to set the parameters, but there is a error " := expected", which is very strange, because the statement  I wrote is followed with the help documents [ eg: VI.SetControlValue ("string", value)], why it is still need a "=" ??
    Does anybody know something about it? Thanks a lot
    Message Edited by hanwei on 11-07-2008 03:18 PM
    Attachments:
    vb_labview_error_message_1.JPG ‏14 KB
    VB_to_LV.zip ‏10 KB

    I sure hope OP has solved it by now.
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • HT201210 hi everyone, i have a problem about my iphone 4S, doesn't work with wifi connection and bluetooth since upgrade to the IOS 7.0.3. Can anyone can help me tosolve this problem?????Thank's regards paulus

    hi everyone, i have a problem about my iphone 4S, doesn't work with wifi connection and bluetooth since upgrade to the IOS 7.0.3. Can anyone can help me tosolve this problem?????Thank's regards paulus

    Try the suggestions here to see if they resolve your problem:
    http://support.apple.com/kb/ts1559
    If these don't work you may have a hardware problem. Visit an Apple store for an evaluation or contact Apple Support.

  • Problem about Handling of Empty Files in File Adapter

    Hello everyone,
    NetWeaver 2004s --- XI
    In Sender i have a File Adapter.
    Now i meet a problem about Handling of Empty Files. When i send empty file, but don't cerate a leer message.
    I have seen following text in help document. But in adapter configuration i can not find the correspond parameter.
    can you give me some tips?
    Thx in advance
    best regards
    Yaning
    SAP Help Document über File Adapter
    +Handling of Empty Files
    Specify how empty files (length 0 bytes) are to be handled.
    &#9675;       Do Not Create Message
    No XI messages are created from empty files.
    The files are processed according to the selected Processing Mode.
    For example, if the processing mode is Delete, empty files are deleted in the source directory.
    &#9675;       Process Empty Files
    XI messages are created with an empty main payload.
    The files are processed according to the selected Processing Mode.
    &#9675;       Skip Empty Files
    No XI messages are created from empty files.
    Empty files are skipped and remain in the source directory.+
    Help Docu

    hi,
    it's available since Sp19 for XI 3.0
    and the corresponding SPS fpr XI 7.0
    http://help.sap.com/saphelp_nw04/helpdata/en/44/f565854b7341e6e10000000a1553f6/frameset.htm
    so probably you need to install the new SP
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Maybe you are looking for

  • Why do lots of websites on Safari appear in a jumbled format on my Macbook Pro?

    A lot of the time, when i go on webpages, there are blank squares with blue question marks in place of images and any hyperlinks on the page are underlined and blue as well as jumbled and overlapping. Can anyone tell me why this is and what i can do

  • Acrobat 9 Pro ran an installer when I opened it today

    I've previously installed and used Acrobat 9 Pro. Today I noticed I couldn't open pdf's in my browser, so I went to open Acrobat 9 Pro and open the file from there. When I tried to open the application, an installer launched for Acrobat 9.3.  Very od

  • Performance Test For WDA Applications

    Hi All,     Is there a way to check the performance check of the entire Web dynpro For ABAP applications as we do it in the ABAP programs. Sorry for this silly question but i am so curious to learn how efficient we can develop a good efficient and hi

  • Looking for XTRA to control a digital camera

    I am looking for an xtra that will let me control a digital camera. It is for a kiosk that captures photos of users. I used several in Xtras in the past that worked wonderfully but they appear to no longer exist. Any help would be greatly appreciated

  • Get rid of documented menulets in menu bar

    I've found a lot of answers on how to remove a menulet that is "undocumented" like the bluetooth icon. But how do I remove a documented menulet (the right side)?? You can't drag them like the undocumented! Stuffit Deluxe has a menulet that I really d