Can not execute my created procedure

Hello
I have created a package with some procedures and functions, from Duncans site:
http://djmein.blogspot.com/2007/07/custom-authentication-authorisation.html
When I look in my SQL Workshop > Object-Browser > Packages
I see my APP_SECURITY_PKG in the left column, if i cklick on it,
then I see on right side my Specification and body of my package
in this case:
create or replace PACKAGE app_security_pkg
AS
PROCEDURE add_user (p_lastname IN VARCHAR2, p_firstname IN VARCHAR2,
p_email IN VARCHAR2, p_password IN VARCHAR);
END app_security_pkg;
ok so far so good
now I am in my SQL Workshop
and tried:
EXECUTE APP_SECURITY_PKG.add_user ('taubek', 'markus', '[email protected]', 'geheim')
but its not working
'I am tried also:
SELECT APP_SECURITY_PKG.add_user ('taubek', 'markus', '[email protected]', 'geheim') from dual;
but also its not working, it doesnt found my procedure
ORA-00904: "APP_SECURITY_PKG"."ADD_USER": ungültiger Bezeichner ("ungültiger Bezeichner" means illegal name)
Can anybody help me?

Hello Markus,
You're probably stuck in the synonyms and grants pit.
Check the owners of the procedures you use in the other procedures. When they're used in different schemes/owners grant execute rights directly (not using a role).
Also when you use the SQL Workshop tot test your code, be aware that this runs using the APEX_PUBLIC_USER (try : select user from dual).
So this user needs to be granted to execute the procedures you've created. (And probably you have to define some synonyms).
Hoffentlich hilft das etwas...
Regards,
Roel
http://roelhartman.blogspot.com/
http://www.bloggingaboutoracle.org/
http://www.logica.com/

Similar Messages

  • We can not delete record by procedure

    Hi All,
    We can not delete record by procedure, please suggest us, our program is following:
    create or replace procedure pro_del (p_id IN employee.id%type)
    IS
    begin
    delete from employee
    where id = p_id;
    end;
    execute pro_del(01)
    your suggestion would be greatly appreciated.

    user13842301 wrote:
    Hi All,
    We can not delete record by procedure, please suggest us, our program is following:
    create or replace procedure pro_del (p_id IN employee.id%type)
    IS
    begin
    delete from employee
    where id = p_id;
    end;
    execute pro_del(01)
    your suggestion would be greatly appreciated.As you have not provided the sample data, I have created a sample dataset to demonstrate.
    SQL> select * from test;
            ID        SAL
             1       1000
             2       2000
             3       3000
             4       1000
    SQL> create or replace procedure pro_del (p_id IN test.id%TYPE)
      2  IS
      3  begin
      4  delete from test
      5  where id=p_id;
      6  COMMIT;
      7  END;
      8  .
    SQL> /
    Procedure created.
    SQL> exec pro_del(1);
    PL/SQL procedure successfully completed.
    SQL> select * from test;
            ID        SAL
             2       2000
             3       3000
             4       1000As you have not handled any exceptions in your pro_del procedure,probably you might be passing invalid id in procedure call
    Hope this helps
    Regards,
    Achyut

  • Compiling COBOLs in PSOVM - psrun.mak error - "cob64: can not execute Id".

    Hi All,
    After installing PeopleSoft OVM in our server, I need to recompile the COBOL. I believe this is not included in the OVM. These are the steps I did.
    1. Installed Microfocus Server Express 5.0 WrapPack 4
    2. Follow the steps in Compiling Cobol in Unix mentioned is the PeopleTools_8.50_Installation_Oracle guide.
    I was able to successfully compille the COBOL files by running ./pscbl.mak. The next step is Linking COBOL Components on UNIX by running ./psrun.mak and here I got the error:
    +./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...+
    +./psrun.mak - Error(s) encountered creating PSRUN!+
    +./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages+
    +[root@pshcm91ab setup]# more /opt/oracle/psft/appbatch/tools/setup/psrun.err+
    cob64: can not execute ld
    +[root@pshcm91ab setup]#+
    I followed all the steps in setting environment variable mention in the "Compiling Cobols in Unix" in PeopleTools_8.50_Installation_Oracle.
    Is there any specific documentation of compiling COBOLs in PeopleSoft OVM?
    Can anyone help me with this?
    Thanks in advance.
    -Chris
    Edited by: user9977167 on 4/02/2010 15:52
    Edited by: user9977167 on 5/02/2010 06:18

    Hi,
    Ok, I reproduce your case :
    [psadm1@psovmab setup]$ ./psrun.mak
    ./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...
    ./psrun.mak - Error(s) encountered creating PSRUN!
    ./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages
    [psadm1@psovmab setup]$ more /opt/oracle/psft/appbatch/tools/setup/psrun.err
    cob64: can not execute ld
    [psadm1@psovmab setup]$It looks like a lot of rpm packages required by ld are missing on Peoplesoft OVM App/Batch server compared to the Peoplesoft OVM database server for instance.
    I added a lot of packages because of the dependendcies as below :
    From OEL5.2 Disk 1
    ==================
    -rw-r--r-- 1 root root  899210 Feb  7 10:10 kernel-headers-2.6.18-92.el5.x86_64.rpm
    -rw-r--r-- 1 root root  3073639 Feb  7 10:25 binutils-2.17.50.0.6-6.el5.x86_64.rpm
    -rw-r--r-- 1 root root  3114462 Feb  7 10:29 cpp-4.1.2-42.el5.x86_64.rpm
    [root@psovmab rpm]# rpm -Uvh kernel-headers-2.6.18-92.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:kernel-headers         ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh binutils-2.17.50.0.6-6.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:binutils               ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh cpp-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:cpp                    ########################################### [100%]
    [root@psovmab rpm]#
    From OEL5.2 Disk 2
    ==================
    -rw-r--r-- 1 root root  614718 Feb  7 10:05 glibc-headers-2.5-24.x86_64.rpm
    -rw-r--r-- 1 root root 2535024 Feb  7 10:05 glibc-devel-2.5-24.x86_64.rpm
    -rw-r--r-- 1 root root 2105297 Feb  7 10:05 glibc-devel-2.5-24.i386.rpm
    -rw-r--r-- 1 root root 5544086 Feb  7 10:20 gcc-4.1.2-42.el5.x86_64.rpm
    -rw-r--r-- 1 root root 3987493 Feb  7 10:20 gcc-c++-4.1.2-42.el5.x86_64.rpm
    -rw-r--r-- 1 root root    83518 Feb  7 10:31 libgomp-4.1.2-42.el5.i386.rpm
    -rw-r--r-- 1 root root    84654 Feb  7 10:41 libgomp-4.1.2-42.el5.x86_64.rpm
    -rw-r--r-- 1 root root  2980440 Feb  7 10:43 libstdc++-devel-4.1.2-42.el5.x86_64.rpm
    -rw-r--r-- 1 root root    20483 Feb  7 11:46 elfutils-libelf-devel-0.125-3.el5.x86_64.rpm
    -rw-r--r-- 1 root root    58852 Feb  7 11:46 elfutils-libelf-devel-static-0.125-3.el5.x86_64.rpm
    -rw-r--r-- 1 root root   102193 Feb  7 11:49 elfutils-libs-0.125-3.el5.x86_64.rpm
    [root@psovmab rpm]# rpm -Uvh glibc-headers-2.5-24.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:glibc-headers          ########################################### [100%]
    [root@psovmab rpm]#
    [root@psovmab rpm]# rpm -Uvh glibc-devel-2.5-24.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:glibc-devel            ########################################### [100%]
    [root@psovmab rpm]#
    [root@psovmab rpm]# rpm -Uvh glibc-devel-2.5-24.i386.rpm
    Preparing...                ########################################### [100%]
       1:glibc-devel            ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh libgomp-4.1.2-42.el5.i386.rpm
    Preparing...                ########################################### [100%]
       1:libgomp                ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh libgomp-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:libgomp                ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh gcc-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:gcc                    ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh  libstdc++-devel-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:libstdc++-devel        ########################################### [100%]
    [root@psovmab rpm]#
    [root@psovmab rpm]# rpm -Uvh gcc-c++-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:gcc-c++                ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh elfutils-libs-0.125-3.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:elfutils-libs          ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh elfutils-libelf-devel-0.125-3.el5.x86_64.rpm elfutils-libelf-devel-static-0.125-3.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:elfutils-libelf-devel-s########################################### [ 50%]
       2:elfutils-libelf-devel  ########################################### [100%]
    [root@psovmab rpm]#
    From OEL5.2 Disk 3
    ==================
    -rw-r--r-- 1 root root  4588773 Feb  7 10:22 compat-gcc-34-3.4.6-4.x86_64.rpm
    -rw-r--r-- 1 root root 13542100 Feb  7 10:23 compat-gcc-34-c++-3.4.6-4.x86_64.rpm
    -rw-r--r-- 1 root root   232846 Feb  7 12:21 compat-libstdc++-33-3.2.3-61.x86_64.rpm
    [root@psovmab rpm]# rpm -Uvh compat-gcc-34-3.4.6-4.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:compat-gcc-34          ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh compat-gcc-34-c++-3.4.6-4.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:compat-gcc-34-c++      ########################################### [100%]
    [root@psovmab rpm]#The initial error is gone, but got a new one when linking :
    [psadm1@psovmab setup]$ ./psrun.mak
    ./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...
    ./psrun.mak - Error(s) encountered creating PSRUN!
    ./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages
    [psadm1@psovmab setup]$ more /opt/oracle/psft/appbatch/tools/setup/psrun.err
    ld: cannot find -lgcc
    [psadm1@psovmab setup]$I looked around for this error, found a Metalink note, but the suggestion does not apply here, the path directory metioned in $COBDIR/etc/cobopt already exists :
    [psadm1@psovmab setup]$ more $COBDIR/etc/cobopt
    -C nolist
    set GCC_LIB=/usr/lib/gcc/x86_64-redhat-linux/3.4.6
    [psadm1@psovmab setup]$ ls /usr/lib/gcc/x86_64-redhat-linux/3.4.6
    32          crtbeginS.o  crtend.o   include   libgcc_eh.a  libgcc_s_32.so  libstdc++.a   libstdc++_nonshared.a  libsupc++.a
    crtbegin.o  crtbeginT.o  crtendS.o  libgcc.a  libgcc_s.so  libgcov.a       libstdc++.so  libstdc++_shared.so    specs
    [psadm1@psovmab setup]$So far, no luck, I'll still try, but you may have more luck to install a separate server with all the packages install from the scratch and run a process scheduler from there.
    Nicolas.

  • I can not open files created in iWork 6 or iWork 8 with pages 5.2. I removed the older versions and emptied my trash.  what to do?

    i can not open files created in iWork 6 or iWork 8 with pages 5.2. I removed the older versions and emptied my trash.  what to do?

    Reinstall iWork '08 which can export to Word .doc/x files.
    Peter

  • Error: can not execute binary files SAP on Linux

    Dear Gurus.
    I have installed SAP test drive netweaver 2004 on my Linux. when ever i am trying to get the hardware key by the command Saplicense - get, I am getting the error message that " can not execute binary file."
    pls do let me know how to get rid of this.
    Abhishek

    > I have installed SAP test drive netweaver 2004 on my Linux. when ever i am trying to get the hardware key by the command Saplicense - get, I am getting the error message that " can not execute binary file."
    Please post the output of the commands (as use <sid>adm):
    file `which saplicense`
    uname -a
    Markus

  • Can not edit or create new power points since installing Yosemite.

    I can not edit or create new power points since installing Yosemite.  I can open and run the power points I have previously created but every time I try and edit or create a new power point it simple comes up with this
    Also when I open the font drop down menu all the font names are in Chinese

    Have you run all the office updates? We have to assume this is a proper copy of Office 11 of course and not one 'from Hxxx-Kxxx'. I  would also consider re-installing Yosemite-something is screwy on your installation of something if its picking up China..unless of course it is true that the Chinese have been hacking into iTunes and are secretly trying to make you into an agent of the state..you will speak Mandarin..you will speak Mandarin  

  • Operating System Window XP Professional. I can not open Firefox. I have reset it and it worked for a few days. Now I can not execute it. Appreciate help.

    Can not execute Firefox. So I updated it and reinstalled it. Then I reset it. For a couple days it worked fine. Now I am back to square one. Can not open firefox again.

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox and any leftover program files and then reinstall Firefox. Please follow these steps one by one:
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu) and confirm all upcoming messages.
    #Now, uninstall Firefox by following the steps mentioned in the [[Uninstall Firefox from your computer#w_uninstall-firefox|Uninstall Firefox]] article.
    '''IMPORTANT:''' On Windows, the uninstaller has the option to remove your personal data and settings. Make sure that you do '''not''' check this option; otherwise all of your bookmarks, passwords, extensions, user customizations and other Firefox [[Profiles|user profile data]] will be removed from your computer.
    After uninstalling Firefox on Windows, delete the "Mozilla Firefox" program folder, located by default in one of these locations:
    * '''(On 32-bit Windows)''' ''C:\Program Files\Mozilla Firefox''
    * '''(On 64-bit Windows)''' ''C:\Program Files (x86)\Mozilla Firefox''
    #Go to the Windows Start menu and click on "Computer".
    #In the Explorer window that opens, double click Local Disk (C:) to open the C:\ drive.
    #Find the "Program Files (x86)" folder or "Program Files" folder.
    #* On 32-bit Windows, double-click the '''Program Files''' folder to open it.
    #* On 64-bit Windows, you will see a "Program Files (x86)" folder AND a "Program Files" folder. Open the '''Program Files (x86)''' folder.
    #Look for a '''Mozilla Firefox''' folder. If you find one, right-click it and select ''Delete'' and confirm that you want to move the folder to the Recycle Bin.
    Now, go ahead and reinstall Firefox:
    #Double-click the downloaded installation file and go through the steps of the installation wizard.
    #Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • Insufficient privileges/can not grant to create tables

    I have just created database..
    Connected as SYS I tried to Create user/schema as following:
    CREATE USER "xsales" PROFILE "DEFAULT" IDENTIFIED BY "*******" ACCOUNT UNLOCK
    GRANT "CONNECT" TO "ABDO"
    Trying to create tables I recieved:
    Failed to commit: ORA-01950: no privileges on tablespace 'USERS'
    Then I tried to grant CREATE ANY TABLES to the user xsales to enable it to
    run the script of create tables,but I recieved
    ORA-01917: user or role 'abdo' does not exist
    although I connected with xsales succefully
    Can anyone help?

    the user name is correct .....
    I ran the following script succefully:
    CREATE USER xsales PROFILE "DEFAULT" IDENTIFIED BY "********" ACCOUNT UNLOCK;
    GRANT "CONNECT" TO xsales;
    GRANT ALTER ANY CLUSTER TO XSALES;
    GRANT ALTER ANY DIMENSION TO XSALES;
    GRANT ALTER ANY INDEX TO XSALES;
    GRANT ALTER ANY INDEXTYPE TO XSALES;
    GRANT ALTER ANY MATERIALIZED VIEW TO XSALES;
    GRANT ALTER ANY PROCEDURE TO XSALES;
    GRANT ALTER ANY TABLE TO XSALES;
    GRANT ALTER TABLESPACE TO XSALES;
    GRANT ALTER USER TO XSALES;
    GRANT ANALYZE ANY DICTIONARY TO XSALES;
    GRANT CREATE ANY CLUSTER TO XSALES;
    GRANT CREATE ANY DIMENSION TO XSALES;
    GRANT CREATE ANY INDEX TO XSALES;
    GRANT CREATE ANY INDEXTYPE TO XSALES;
    GRANT CREATE ANY MATERIALIZED VIEW TO XSALES;
    GRANT CREATE ANY PROCEDURE TO XSALES;
    GRANT CREATE ANY TABLE TO XSALES;
    GRANT CREATE ANY VIEW TO XSALES;
    GRANT CREATE CLUSTER TO XSALES;
    GRANT CREATE DATABASE LINK TO XSALES;
    GRANT CREATE DIMENSION TO XSALES;
    GRANT CREATE INDEXTYPE TO XSALES;
    GRANT CREATE MATERIALIZED VIEW TO XSALES;
    GRANT CREATE PROCEDURE TO XSALES;
    GRANT CREATE PUBLIC DATABASE LINK TO XSALES;
    GRANT CREATE TABLE TO XSALES;
    GRANT CREATE TABLESPACE TO XSALES;
    GRANT CREATE USER TO XSALES;
    GRANT CREATE VIEW TO XSALES;
    GRANT DELETE ANY TABLE TO XSALES;
    GRANT DROP ANY CLUSTER TO XSALES;
    GRANT DROP ANY DIMENSION TO XSALES;
    GRANT DROP ANY INDEX TO XSALES;
    GRANT DROP ANY INDEXTYPE TO XSALES;
    GRANT DROP ANY MATERIALIZED VIEW TO XSALES;
    GRANT DROP ANY PROCEDURE TO XSALES;
    GRANT DROP ANY TABLE TO XSALES;
    GRANT DROP ANY VIEW TO XSALES;
    GRANT DROP PUBLIC DATABASE LINK TO XSALES;
    GRANT DROP TABLESPACE TO XSALES;
    GRANT DROP USER TO XSALES;
    GRANT EXECUTE ANY INDEXTYPE TO XSALES;
    GRANT EXECUTE ANY PROCEDURE TO XSALES;
    GRANT EXPORT FULL DATABASE TO XSALES;
    GRANT GLOBAL QUERY REWRITE TO XSALES;
    GRANT GRANT ANY OBJECT PRIVILEGE TO XSALES;
    GRANT GRANT ANY PRIVILEGE TO XSALES;
    GRANT IMPORT FULL DATABASE TO XSALES;
    GRANT INSERT ANY TABLE TO XSALES;
    GRANT LOCK ANY TABLE TO XSALES;
    GRANT MANAGE SCHEDULER TO XSALES;
    GRANT MANAGE TABLESPACE TO XSALES;
    GRANT QUERY REWRITE TO XSALES;
    GRANT SELECT ANY DICTIONARY TO XSALES;
    GRANT SELECT ANY TABLE TO XSALES;
    GRANT SELECT ANY TRANSACTION TO XSALES;
    GRANT SYSDBA TO XSALES;
    GRANT CREATE SESSION TO XSALES;
    GRANT UPDATE ANY TABLE TO XSALES;
    Then I logged as XSALES to try to CREATE TABLES, still I got:
    SQL> CONN XSALES/**********@ORACLE
    Connected.
    SQL> CREATE TABLE PROD(ID number(6));
    CREATE TABLE PROD(ID number(6))
    ERROR at line 1:
    ORA-01950: no privileges on tablespace 'USERS'
    How I can solve that?

  • Can not print PDF created on Mac with Acrobat (Win and OS X)

    I created a PDF-File from "Pages", using the integrated "Print to PDF function" (OS X10.4.8)
    This file can be opened and viewed with Adobe Acrobat on the same Mac and also on another Win-XP-Machine.
    BUT: on both Machines (Mac and Win) it's not possible to print it. Only the message (translated in english) "The file can not be printed".
    I also tried Print to PDF-X and other Win-Machines, but this does not helped.
    Any Idea?

    Hi there,
    It sounds like there has been security added to this document. In Acrobat you can view the Security setting for the document by going to File > Properties (or Cmd D) and see if printing is allowed.
    If it is allowed, then it might be worth checking the cups error log to see if it explains why the document cannot be printed. You will find the log in Applications > Console. Click on the Logs icon and expand the entry /var/log. Then expand cups and click on error_log. This will show the job you have attempted to print and any error as to why it cannot.
    Paul

  • Can not execute 'asset year change' successfully.

    Hi all,
    I started run asset accounting sub-module of ECC 6.0 in 2007. After I posted depreciation on all of periods of fiscal year 2008. I change asset fiscal year to 2009 by 3 steps: First, I checked all of periods from fiscal year 2007 to fiscal year 2008 to ensure them were posted. Second, I executed "Year-end Closing" fiscal year 2007 and 2009. Third, I run "Fiscal Year Change" program to change fiscal year into 2009. But, the system responsed as below:
    "Target fiscal year specifications 2009 wrong for company code MH01
    Message no. AA709
    Diagnosis
    You have requested a fiscal year change for the year 2009.
    In company code MH01, this is not the fiscal year which directly follows the current, or just completed, fiscal year.
    System Response
    Company code MH01 will not be processed.
    Procedure
    Correct your entry."
    I'm very confuse. Please help me.

    Hi,
    check t.code:ob52  and make sure that periods in 2009 has been open?
    all the best
    Prasad

  • Can't execute Sybase store procedure

    Hi All,
    I'm trying to execute sybase store procedure, but somehow the procedure not executing. if any body what's the problem? I'm using JBoss server
    Code:
    public void deleteRigMapSP(String pMappingID, String rigid, String date,String pPhysicalDel, String database) throws DataAccessException {
    GregorianCalendar val = new GregorianCalendar();
    DateFormatter dateform = new DateFormatter();
    String deletiondate = dateform.convertGregorianToString(val);
    query = new StringBuffer("EXECUTE spRR_STAT_DeleteMapping ");
    query.append("'"+pMappingID + "',");
    query.append(null + ",");
    query.append(null + ",");
    query.append(null + ",");
    query.append(null + ",");
    query.append(null + ",");
    query.append(null + ",");
    query.append("'"+deletiondate + "',");
    query.append(pPhysicalDel);
    System.out.println("query: "+query);
    try {
         getDBConnection(ServiceLocator.getInstance().getDataSource(database));
         CallableStatement cs = dbConnection.prepareCall(query.toString());
    if (cs.execute()) {
              System.out.println("deleted");
         } else {
              System.out.println("not deleted");
    When I try to execute the method it's run fine, but it not executing the procedure.
    Any help will be greately appreciated.

    How do you know it's not executing? Maybe you're in manual transaction mode and you're not committing the transaction before you close the connection and it gets rolled back.
    And why on earth are you using CallableStatement if you're embedding the parameters into the SQL query rather than using placeholders and the setXXX() methods?
    Alin.

  • How can i execute trigger from procedure

    Hi
    How can i execute trigger when-button-pressed from procedure.
    I knew i have to get the button name and then execute the trigger When-button-pressed.
    but how can i do that.
    Thanks
    null

    how can i execute trigger
    such as When-Button-Pressed on item name "item1"
    and i have more than one trigger with this name on onther
    items
    i know Execute_Trigger('when-button-pressed');
    but any trigger
    for example :
    Execute_Trigger('Item1.when-button-pressed');
    or
    Execute_Trigger('Item2.when-button-pressed');
    or
    other syntax
    i dont know
    please help me
    my email : [email protected]
    Hani

  • Can not open newly created internet sales shop

    Hello,
    Technical Landscape and Software components:
    EP   640 SP 9
    J2ee 640 SP 9
    ISA  40  SP 10
    CRM  40  SP 10
    TREX 6.1.09
    We use the b2b szenario in combination with CRM(not R/3)
    we have the following problems:
    1.
      - We have created a new Product catalog with the webcatadmin tool
      - afterward we have replicated the complete product catalog(no errors)
      - we do not use any ipc at the moment
      - we have created a new b2b internet shop and added the product catalog and the corresponding variant to the shop(szenario b2b)
      - if we now go to the login page of the b2b loginpage(http://ntsrv854.merz.de:50000/b2b/b2b/init.do) and enter the user and password the following message appears:
        "A serious system error has occurred Contact the administrator:
         The shoplist read from buffer is empty Log on"
      - so we decided to enter the created shop directly(http://ntsrv854.merz.de:50000/b2b/b2b/init.do?shop=MDB2R) and now the
        following errors appear:
        "An error occured while shop MDB2R was loaded.
         An error occured while shop MDB2R was loaded."
        The trace file default.trace of the portal displays the following  
        message:
    #1.5#0015600C761000610000036A000033D4000413FEE7BC5467#1147885437344#bbcom.sapmarkets.isa.isacore.action.ShopShowListAction#sap.com/crm.b2b#bbcom.sapmarkets.isa.isacore.action.ShopShowListAction#Guest#18##NTSRV854_E6S_8383950#Guest#20ce6220e5c711daafa80015600c7610#SAPEngine_Application_Thread[impl:3]_31##0#0#Error#1#/#Plain###[(J2EE8383900)ID8383950DB11285026301441142212End|exception.panic] Panic
    com.sapmarkets.isa.core.PanicException: panic.shoplist.zeroelements
         at com.sapmarkets.isa.isacore.action.ShopShowListAction.isaPerform(ShopShowListAction.java:277)
         at com.sapmarkets.isa.isacore.action.IsaCoreBaseAction.isaPerform(IsaCoreBaseAction.java:568)
         at com.sapmarkets.isa.isacore.action.IsaCoreBaseAction.isaPerform(IsaCoreBaseAction.java:608)
         at com.sapmarkets.isa.isacore.action.IsaCoreBaseAction.doPerform(IsaCoreBaseAction.java:489)
         at com.sapmarkets.isa.core.BaseAction.perform(BaseAction.java:197)
         at org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1786)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1585)
         at com.sapmarkets.isa.core.ActionServlet.process(ActionServlet.java:430)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:509)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:290)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:346)
         at org.apache.struts.action.ActionServlet.processActionForward(ActionServlet.java:1758)
         at com.sapmarkets.isa.core.ActionServlet.processActionForward(ActionServlet.java:267)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1595)
         at com.sapmarkets.isa.core.ActionServlet.process(ActionServlet.java:430)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:509)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:290)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:346)
         at org.apache.struts.action.ActionServlet.processActionForward(ActionServlet.java:1758)
         at com.sapmarkets.isa.core.ActionServlet.processActionForward(ActionServlet.java:267)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1595)
         at com.sapmarkets.isa.core.ActionServlet.process(ActionServlet.java:430)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:509)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
         at com.sapmarkets.isa.isacore.TealeafFilter.doFilter(TealeafFilter.java:71)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:368)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Info: The User is maintained as an internet user and has the following roles:
    SAP_CRM_INTERNET_CUSTOMER
    SAP_CRM_INTERNET_SELF_SERVICE
    SAP_CRM_ISA_UA_SUPERUSER
    SAP_CRM_ISA_WEBSHOP_MANAGER
    The user is assigned to the organizational unit which is assigned in the variant of the product catalog! The Relationship to an sold to and contact person also exists.
    What should be the problem?
    Best regards
    Carmen Kosack

    Did you ever figure this out?  I just got a new iPhone and am having the same problem.

  • TF400463 :Can not able to create team project in tfs 2013

    HI
    When am trying to create new project in TFS Collection I cant able to create a project. Since am getting the below error "TF400463 Project Creation failed with error: Object reference not set to an instance of an object"

    Hi
    since the problem not yet solved ... can you share some more details so that I can try it .. find the below error message which am getting ...
    Error Code : TF400463
    <v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe"
    stroked="f"><v:stroke joinstyle="miter"><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"><v:f eqn="sum @0 1 0"><v:f eqn="sum 0 0 @1"><v:f eqn="prod @2 1 2"><v:f
    eqn="prod @3 21600 pixelWidth"><v:f eqn="prod @3 21600 pixelHeight">
      <v:f eqn="sum @0 0 1">
      <v:f eqn="prod @6 1 2">
      <v:f eqn="prod @7 21600 pixelWidth">
      <v:f eqn="sum @8 21600 0">
      <v:f eqn="prod @7 21600 pixelHeight">
      <v:f eqn="sum @10 21600 0">
     </v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:formulas>
     <v:path gradientshapeok="t" o:connecttype="rect" o:extrusionok="f">
     <o:lock aspectratio="t" v:ext="edit">
    </o:lock></v:path></v:stroke></v:shapetype><v:shape alt="cid:[email protected]" id="_x0000_i1025" style="width:723pt;height:275.25pt;" type="#_x0000_t75">
    <v:imagedata o:href="cid:[email protected]" src="file:///C:\Users\arockia_kumar.ITLINFOSYS\AppData\Local\Temp\msohtmlclip1\01\clip_image001.jpg">
    </v:imagedata></v:shape>

  • Since I have installed Acrobat pro 11, it is not finding my Epson Scan software. Therefore I can not use option Create PDF from Scanner option.

    Hello all,
    I have issue with starting my scanner software from Adobe Acrobat Pro 11. In my earlier version Adobe Acrobat 7, it was working fine. But since I have upgraded to 11, it not able to communicate with my Epson scanner.
    I have Mac OS 10.9 and 10.10. My printer is Epson AL-CX11NF. This happens when I am trying to create a PDF file from scan option.
    Can any one give me a solution?

    Did you update your Epson drivers? Epson America, Inc. - Support: OS X Yosemite Support
    Also you may want to read this from Epson:  Epson and Yosemite - Mac OS X 10.10

Maybe you are looking for