PVII Called From External Script?

I have a site that uses Auto ShowHide by PVII for dropdown
menus. I'm trying to clean up my code and wondering if its possible
to call these behaviors from an external script. I am already do
this with javascripts. The first part of the script looks like this
below.
<body
onload="P7_autoHide('Chakra','Chakra2','Pendants2','Wands','amazingwands','signs');MM_pre loadImages('images/fwnavbar_r1_c14_f2.jpg','images/fwnavbar_r1_c12_f2.jpg','images/zodiacd own.gif','/images/crowndown.gif','/images/thirdeyedown.gif','/images/throatdown.gif','/ima ges/heartdown.gif','/images/solardown.gif','/images/sacarldown.gif','/images/basedown.gif' ,'images/fwnavbar_r1_c6_f2.jpg','images/fwnavbar_r1_c10_f2.jpg','images/fwnavbar_r1_c8_f2. jpg','images/fwnavbar_r1_c4_f2.jpg','images/fwnavbar_r1_c2_f2.jpg','images/wanddown.gif',' images/pendantdown.gif','images/chakradown.gif','images/runesdown.gif','images/pendantzodd own.gif','images/booksdown.gif','images/mirrorsdown.gif','images/aquariusdown2.gif','image s/ariesdown.gif','images/taurusdown.gif','images/geminidown.gif','images/leodown.gif','ima ges/capricorndown.gif','images/sagitdown2.gif','images/cancerdown.gif','images/libradown.g if','images/virgodown.gif','images/crystaldown2.gif','images/7chakradown.gif','images/mass agedown.gif','images/acupdown.gif','images/kyanite.gif','images/pendwandown.gif','images/f airydown.gif','images/hairdown.gif','images/incensedown.gif','images/crystalballsdown.gif' ,'images/customdown.gif','images/runeproddown.gif','images/legenddown2.gif','images/pisces down.gif','/images/scorpiodown2.jpg')">
<script language="JavaScript" src="script3.js"
type="text/javascript">
</script>
<div id="Wands" style="position:absolute; left:105px;
top:453px; width:79px; z-index:1; overflow: hidden; height: 31px;"
class="dropdown"
onmouseover="P7_autoLayers(0,'Wands','Chakra');P7_Snap('seven','Chakra',80,99)">
<div align="center"><a href="seven.htm"
onmouseout="MM_swapImgRestore()"
onmouseover="MM_swapImage('wand','','images/wanddown.gif',1)"><img
src="images/wandup.gif" alt="Seven Chakra Wands" name="wand"
width="80" height="15" vspace="0" border="0" id="wand"
/></a><a href="chakrapendants.htm"
onmouseout="MM_swapImgRestore()"
onmouseover="MM_swapImage('chakrapendants','','images/pendantdown.gif',1)"><img
src="images/pendantup.gif" alt="Seven Chakra Pendants"
name="chakrapendants" width="80" height="15" border="0"
id="chakrapendants" /></a></div>
http://www.thechakrashop.com
Any help would be appreciated
Thanks,
Trinoz

Hi Suhas,
Nice to know you became Moderator...
Hmmm the solution you provided was the last option..
Any ways the issue is resolved we changed the user to dialog user and then debugged the code.
Thanks a Lot,
Anmol.

Similar Messages

  • Subroutine call from SAP Script

    Hi,
    I need to calculate required/outstanding qty. hence am passing existing values of reservation#/item# and issued qty.
    both req/out qty are returned blank by the code. please help.
    Following is my code segment for a external routine call from SAP Script.
    /:   PERFORM P_GET_QTY IN PROGRAM ZTEST
    /:   USING &MSEG-RSNUM&                     
    /:   USING &MSEG-RSPOS&                     
    /:   CHANGING &REQ_QTY&                     
    /:   CHANGING &MSEG-MENGE&                  
    /:   CHANGING &OUT_QTY&                     
    /:   ENDPERFORM
    REPORT ztest .
    TABLES resb.
    DATA: wa_resb TYPE resb,
          req_qty TYPE resb-bdmng,
          isd_qty TYPE mseg-menge,
          out_qty TYPE resb-bdmng.
    FORM p_get_qty TABLES input  STRUCTURE itcsy
                          output STRUCTURE itcsy.
      DATA: avlbl TYPE resb-bdmng.
      READ TABLE input WITH KEY 'MSEG-RSNUM'.
      CHECK sy-subrc = 0.
      wa_resb-rsnum = input-value.
      READ TABLE input WITH KEY 'MSEG-RSPOS'.
      CHECK sy-subrc = 0.
      wa_resb-rspos = input-value.
      READ TABLE input WITH KEY 'REQ_QTY'.
      CHECK sy-subrc = 0.
      req_qty = input-value.
      READ TABLE input WITH KEY 'MSEG-MENGE'.
      CHECK sy-subrc = 0.
      isd_qty = input-value.
      SELECT SINGLE * INTO wa_resb
                      FROM resb
                      WHERE rsnum = wa_resb-rsnum
                      AND   rspos = wa_resb-rspos.
      CHECK sy-subrc = 0.
      avlbl   = wa_resb-bdmng - wa_resb-enmng.
      req_qty = avlbl - out_qty.
      out_qty = req_qty - isd_qty.
      output-name = 'REQ_QTY'.
      output-value = req_qty.
    MODIFY output TRANSPORTING name value WHERE name = 'REQ_QTY'.
      APPEND output.
      output-name = 'OUT_QTY'.
      output-value = out_qty.
    MODIFY output TRANSPORTING name value WHERE name = 'OUT_QTY'.
      APPEND output.
    ENDFORM.
    Thanks,
    Ram.

    Hi Ram,
    I think you have to use MODIFY instead of append for the OUTPUT table.
    MOdify the table with KEY. This should resolve the problem.
    Ram, you can check this code and see how the MODIFY is to be used.
    REPORT YLSD999A.
    DATA  W_LENGTH TYPE I.
    *   GENERAL PURPOSE SUBROUTINES FOR CALLING FROM SAPSCRIPTS
    FORM DISPLAY_POUND TABLES IN_TAB STRUCTURE ITCSY
                              OUT_TAB STRUCTURE ITCSY.
      DATA: COUNT TYPE P VALUE 16.
      DATA: W_VALUE(17) TYPE C.        "defined as 7 chars to remove pence
      DATA: W_CHAR TYPE C.
      DATA: W_DUMMY TYPE C.
      DATA: W_CURR(3) TYPE C.
    *    Get first  parameter in input table.
      READ TABLE IN_TAB INDEX 1.
      WRITE IN_TAB-VALUE TO W_VALUE .
    * get second parameter in input table
      READ TABLE IN_TAB INDEX 2.
      MOVE IN_TAB-VALUE TO W_CURR.
      IF W_CURR = 'GBP'.
        W_CURR = '£'.
      ENDIF.
      W_LENGTH = STRLEN( W_CURR ).
    *    look for first space starting at right.
      WHILE COUNT > -1.
        W_CHAR = W_VALUE+COUNT(1).
    *  W_CHAR = IN_TAB-VALUE+COUNT(1).
        IF W_CHAR = ' '.
          COUNT = COUNT - W_LENGTH + 1.
          W_VALUE+COUNT(W_LENGTH) = W_CURR.
          COUNT = -1.
        ELSE.
    *     W_VALUE+COUNT(1) = W_CHAR.
          COUNT = COUNT - 1.
        ENDIF.
      ENDWHILE.
    * read only parameter in output table
      READ TABLE OUT_TAB INDEX 1.
      OUT_TAB-VALUE = W_VALUE.
      MODIFY OUT_TAB INDEX SY-TABIX.
    ENDFORM.
    Cheers
    VJ

  • How do you call an external script periodically?

    Hi again
    Does anyone know if it's possible to call an external script or take some kind of action (like update a database, write to a file etc) at regular intervals while a video is playing?
    So the actions would be
    1. Is video playing?
    2. If yes and time is more than 5 mins then call a script
    3. Sleep and repeat from step 1
    That's it. Hopefully quite simple
    Thanks

    yes, you can use setInterval() to periodically call any function and you can create a function that calls your sever-side script.

  • UCCE: Forceful Release an Agent Call from ICM Script, Can I?

    Hi, let me explain the requirement first. Customer wants to make their IVR free of cost but they want to start billing only when the call is landed to skill group/agent. So far I can think to make it possible by triggering their billing server by ODBC gateway through Application Gateway process. But also the customer wants to release that particular call when that pre-paid caller is out of charge. They might trigger one of my application or can modify any particular database field and put the calling# into there and my task would be release that call.
    I have thought an idea to develop a TCL script run into the voice gateways and release the call from there by searching the particular call with calling#, but I do not know TCL scripting or any idea how to develope TCL , can't I release that call from ICM script? Do I have any control on calls from ICM when the call is landed and connected to agent?
    Any help would be hightly appreciated.

    That's a nasty piece of work. Just imagine how jacked off you would be if you are the customer, you have enough in your bank account to get to an agent who is then starting to help you, and in the middle of your conversation you are simply cut off!
    I don't think it's possible - although CVP would be your best shot because of the switch leg.
    But not only that, I don't think it is desirable. If you check the customer's balance before going to an agent, that should be sufficient. Anything else is just terrible customer service.
    Regards,
    Geoff

  • Problem with redirect script when calling from external - UCCX

    Hi,
    I have a problem with external calls not being redirected when the call comes from an external that begins with a certain prefix on teh ANI.
    The call path goes PSTN - VGW - UCM SUB - UCCX.
    To give you info this should be redirected to a auto attendant on unity but it just hits the fourth option unsuccessful.
    If i change it to match an internal ANI and test it works.
    What trace and log do i look at to see the call coming in from the UCM and what is happening with it why this is failing when it trys to redirect a call coming from external?
    I have also attached my script.
    Thanks for the help.
    Kev

    Hi Martin Braun,
    Go to GUI status which you set in the PBO of your screen,
    and open "Function Keys" part.
    You should have set function key F4 for a button on your GUI status,
    delete this button and create with another function key again.
    I hope it helps.

  • Debug RFC called from external system with no dialog user

    Hi all,
    We need to debug the rfc function module which is called from the external system( Siebel ) .
    The user id is not dialog user so can not set external debugger.
    Need you help.
    Thanks,
    Anmol.

    Hi Suhas,
    Nice to know you became Moderator...
    Hmmm the solution you provided was the last option..
    Any ways the issue is resolved we changed the user to dialog user and then debugged the code.
    Thanks a Lot,
    Anmol.

  • RFC function call from VB Script

    I have an RFC enabled function that I need to call from VBScript.  I was working through this issue as a BAPI call but after research and RFC not initialized error messages over and over I am coming to think that the issue is not how I was doing it but what I was trying to do with different objects. 
    I think the issue is that I was trying to call a RFC function with BAPI methods, I didnt understand that there was I difference but now I do.  I don't know how to initialize the RFC on the host system and unsure if I even have all of the components on the host system to make these function calls.
    The goal here is to call a function that passes 3 paramters and modifies a user object in SAP.

    Hello John,
       are you using DCOM Connector? I have a VBScript working correctly, using DCOM Connector, and consuming a Z function module defined as RFC.
    What's the error message you're getting?
    Regards
    Michael

  • Youtube-dl called from python script fails...why ? [solved]

    Hi there,
    since downloading youtube stuff with Browser plugins has been pretty unstable for me lately (read: mostly incomplete videos) I switched over to youtube-dl again. Unfortunately youtube-dl often stops downloading as well...
    I wrote a small Python script which looks for incomplete downloads in my Youtube folder and restarts the download again. The code is quite simple:
    #!/usr/bin/python
    # -*- coding: utf8 -*-
    # Modules used:
    import sys, os
    part_files = os.popen ("ls *.part")
    for part_file in part_files:
    target_name = part_file.strip()[:-5]
    target_name = target_name.split(".")[0]
    yt_id = target_name [len(target_name)-11:]
    cli = 'youtube-dl -t http://www.youtube.com/watch?v=' + yt_id
    print cli
    os.popen (cli)
    Unfortunately youtube-dl bombs out with the following stack trace and I have got no clue why...
    youtube-dl -t http://www.youtube.com/watch?v=XNVaEoQMarg
    Traceback (most recent call last):
    File "/usr/lib/python2.7/runpy.py", line 162, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
    File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
    exec code in run_globals
    File "/usr/bin/youtube-dl/__main__.py", line 17, in <module>
    File "/usr/bin/youtube-dl/youtube_dl/__init__.py", line 516, in main
    File "/usr/bin/youtube-dl/youtube_dl/__init__.py", line 500, in _real_main
    File "/usr/bin/youtube-dl/youtube_dl/FileDownloader.py", line 507, in download
    File "/usr/bin/youtube-dl/youtube_dl/InfoExtractors.py", line 92, in extract
    File "/usr/bin/youtube-dl/youtube_dl/InfoExtractors.py", line 87, in initialize
    File "/usr/bin/youtube-dl/youtube_dl/InfoExtractors.py", line 313, in _real_initialize
    File "/usr/bin/youtube-dl/youtube_dl/InfoExtractors.py", line 197, in report_lang
    File "/usr/bin/youtube-dl/youtube_dl/FileDownloader.py", line 192, in to_screen
    IOError: [Errno 32] Broken pipe
    Does anybody have an idea why this happens ? Using youtube-dl without the "resume download" script works perfectly though...
    TIA,
    D$
    Last edited by Darksoul71 (2013-06-06 11:00:51)

    I think the problem is that you are using os.popen.
    The function returns a file object to which the pipe of the new spawned process is connected. If you don't catch that file object, python might garbage collect it. (In addition, your script terminates, so the file object will be garbage collected).
    Check out the subprocess module from the standard lib. I think there you can redirect the pipe of the new spawned processs to /dev/null or something.
    http://docs.python.org/2/library/subprocess.html

  • Create activity from external system

    Hi
    What is meant by creating activity from external system.
    I need to work on an enhancement which deals with function module to create activity that can be called from external systems e.g. on demand.
    I am not sure what does that exactly mean?
    Any pointers would be helpful.
    Thanks
    Alka

    Hi guys,
    Thanks for your answers... But is it possible to call transaction NOTIF_CREATE from an external system?
    I have done something already so that those 3 fields will be automatically populated for a message sent from an external system.
    I changed the screen and called FM BAPI_NOTIFICATION_CREATE(a remote enabled FM which is the one being used by transaction NOTIF_CREATE to create a message) inside FM BCOS_SEND_MSG.
    I populated the category, subject and solution in the FM export parameters as well as the solution number in the sap data table. I put a destination also..
    This FM calls another FM DNO_OW_CREATE_NOTIFICATION which is the one being used from the external system but do not cater the functionality to send the 3 fields that we need.
    As you will notice, there are lots of standard objects that I've changed. =)
    My problem now is that the system data sent is the same with the system data if you create the message using NOTIF_CREATE. Some system that were sent when a message is sent from an external system is missing but at least the sap system and client ID is sent. There is no external reference number also. But hopefullly, the users will accept it. Can't find any other solution to this.
    Thanks,
    Eric

  • CME:how to block external call to external call

    cme have the four fxo and AA,when the external calls come in,and dial 9+ pstn num,it can call from external call to another external call,how can blocking?

    Hi,
    try to use this command
    #call application voice aa max-extension-length 5
    This option declares the maximum length of the extension that the user can dial when dial-by-extension-option is chosen. The default value is 5. The value can be 0 with no restriction up to x digits.
    or try
    3.
    Configure Class of Restriction (COR) to block call transfers from B-ACD to PSTN numbers. The sample configuration below prevents the B-ACD from transferring calls out to local and long distance PSTN numbers. The B-ACD can still transfer calls to internal extensions.
    Below is an example of such a configuration:
    dial-peer cor custom
    name longdistance
    name local
    dial-peer cor list call-longdistance
    member longdistance
    dial-peer cor list call-local
    member local
    dial-peer cor list block-pstn
    dial-peer voice 1 voip
    corlist incoming block-pstn
    application aa
    destination-pattern 1000
    session target ipv4:192.168.1.1
    incoming called-number 1000
    dtmf-relay h245-alphanumeric
    codec g711ulaw
    no vad
    dial-peer voice 2 pots
    corlist outgoing call-longdistance
    destination-pattern 91..........
    port 0/2/0
    dial-peer voice 3 pots
    corlist outgoing call-local
    destination-pattern 9[2-9]......
    port 0/2/0
    Thanks
    Najeeb

  • BAPI_TRIP_CREATE_FROM_DATA works in SE37, but not from external program

    BAPI_TRIP_CREATE_FROM_DATA works in SE37, but gives error when calling from external program.
    The error is "Deserialisation failed". I have the WSDL generated by a Web Service wizard in SE 37,
    so there should not be any problem like element name or case(upper/lower) mismatch etc. I populate all mandatory fields.
    I am using the web service created by wizard in a InfoPath form.
    This is the exact error:
    The SOAP response indicates that an error occurred:
    Deserialisation failed

    Thanks for this pointer. I downloaded the code and looked at the same. It very useful as conceptual and coding guidance. However, there are many BAPis working in our product already, only a few return the same error "Deserialisation failed" The sample you pointed out uses BAPI_FLTRIP_CREATE but we have problem with the following BAPIs:
    BAPI_TRIP_CREATE_FROM_DATA
    BAPI_ADDRESSEMP_CREATE
    BAPI_FAMILY_CREATE
    All of them give error similar to following:
    Deserialisation failed
    <detail>
        <n0:SimpleTransformationFault xmlns:n0="http://www.sap.com/transformation-templates">
                    <MainName>/1BCDWB/WSS0071212021944898000</MainName>
                    <ProgName>/1BCDWB/WSS0071212021944898000</ProgName>
                    <Line>170 </Line>
                    <Valid>X</Valid>
                    <ReferenceFault>
                                    <DescriptionText>Error accessing the ref. node 'EMPLOYEENUMBER'</DescriptionText>
                                    <RefName>EMPLOYEENUMBER</RefName>
                    </ReferenceFault>
                    <Caller>
                                    <Class>CL_SRG_RFC_PROXY_CONTEXT</Class>
                                    <Method>IF_SXML_PART~DECODE</Method><Positions>1 </Positions>
                    </Caller>
       </n0:SimpleTransformationFault>
    </detail>
    Any more suggestions are most welcome and highly appreciated.

  • Calling an external shell script program from ABAP.

    Hi,
      Can i call an external shell script program from abap which is there on application server.
    The FM WS_EXECUTE i know can be used for calling this purpose.
    But i am getting a doubt that how can i call the external program from there.
    Please clear my doubts.
    Thanks in advance.
    Vikash

    search in SCN for sm49 and sm69 Tr. you will surely find solutions for it, with a simple search.

  • Call failing at Run External Script

     Dear All,
    i installed UCCE with CVP (Ver 10.0.1). 
    Call Flow CME-->VXML GW-->CVP-->ICM. But call is failing at run External script. I am attaching CVP error Log and ICM Script.
    pls suggest.
    1469: 10.35.133.129: Sep 16 2014 11:19:38.981 +0530: %CVP_10_0_IVR-3-CALL_ERROR:  CALLGUID=044224283C9A11E4803A30F70D96B740 DNIS=11111111116 Media Fetch Error for URL=file://../MediaFiles/en-us/app/Welcome.wav (Client: 10.35.133.194) [id:3023] 
    1470: 10.35.133.129: Sep 16 2014 11:19:38.981 +0530: %CVP_10_0_IVR-3-CALL_ERROR:  RunScript Error from 10.35.133.194 [MEDIA_FILE_NOT_FOUND(9)] CALLGUID: 044224283C9A11E4803A30F70D96B740 DNIS=11111111116 {VRUScriptName: 'PM,Welcome,A' ConfigParam: 'Y'} [id:3023] 
    2285: 10.35.133.129: Sep 16 2014 11:19:38.996 +0530: %CVP_10_0_SIP-3-SIP_ERROR_SNMP:  B2BUA is not configured with a route for making calls to [91919191]. Please add this route. [id:5010] 
    1487: 10.35.133.129: Sep 16 2014 11:19:41.087 +0530: %CVP_10_0_IVR-3-CALL_ERROR:  Removing CALLGUID: 044224283C9A11E4803A30F70D96B740 DNIS=1111111111 due to exception in CallNewHandler. (Client: 10.35.133.194) Received ICM DialogFailure response for new call request. DialogFailure StatusCode: 15 HTTP req: { RECOVERY_VXML=flash:recovery.vxml, CALL_DNIS=1111111111, CALL_UUI=, MSG_TYPE=CALL_NEW, ERROR_CODE=NONE(0), CALL_ID=044224283C9A11E4803A30F70D96B740, CLIENT_TYPE=IOS, CALL_ANI=sip:[email protected]:5060 } [id:3023] 
    1496: 10.35.133.129: Sep 16 2014 11:19:42.117 +0530: %CVP_10_0_IVR-3-CALL_ERROR:  Removing CALLGUID: 044224283C9A11E4803A30F70D96B740 DNIS=1111111111 due to exception in CallNewHandler. (Client: 10.35.133.194) Received ICM DialogFailure response for new call request. DialogFailure StatusCode: 15 HTTP req: { RECOVERY_VXML=flash:recovery.vxml, CALL_DNIS=1111111111, CALL_UUI=, MSG_TYPE=CALL_NEW, ERROR_CODE=NONE(0), CALL_ID=044224283C9A11E4803A30F70D96B740, CLIENT_TYPE=IOS, CALL_ANI=sip:[email protected]:5060 } [id:3023] 
    1505: 10.35.133.129: Sep 16 2014 11:19:43.146 +0530: %CVP_10_0_IVR-3-CALL_ERROR:  Removing CALLGUID: 044224283C9A11E4803A30F70D96B740 DNIS=1111111111 due to exception in CallNewHandler. (Client: 10.35.133.194) Received ICM DialogFailure response for new call request. DialogFailure StatusCode: 15 HTTP req: { RECOVERY_VXML=flash:recovery.vxml, CALL_DNIS=1111111111, CALL_UUI=, MSG_TYPE=CALL_NEW,
    Regards,
    Mukesh Singh

    You have media fetch error,the URL being formed is below:
    file://../MediaFiles/en-us/app/Welcome.wav
    should be something like http://x.x.x.x/en-us/app/welcome.wav
    also please share your full CVP logs for the call.
    it is always annoying to see b2b user agent is not configured, so please configure ringtone and error label to sent to proper VXML gateway.
    regards
    Chintan

  • Aborted calls at run external script step

    hello everyone
    when I was monitoring a script, I noticed a large percentage of calls are aborted on the node " run external script", and a few number of calls listed as " in process". only a small percentage of calls passed this node.
    I would like to ask what does this "abort" means, does it mean the the call fails at this node, or the caller purposely terminate the call at this node.
    thanks in advance

    Hi, David
    thanks for replying me back
    we are using IPIVR instead of CVP and system was under a really heavn load.
    one RES was just simplely playing a prompt
    Unfortunately some how, I couldn't get the log from IPIVR.

  • Calling a sql script file from a function.

    Hi,
    I need to call a sql script file from a user defined function. Currently i am trying to do this in Oracle SQL Developer. i tried calling with
    @ {filename}, EXECUTE IMMEDIATE etc, but nothing worked. I get the Compiler error.
    Basically my need is to call catldap.sql file so that DBMS_LDAP package gets loaded and then I can call the API functions from this.
    Please let me know if this is possible doing in a PL/SQL function.
    thanks,
    Naresh

    user784520 wrote:
    I need to call a sql script file from a user defined function. Not possible.. and it seems that you do not fully understand the client-server within the Oracle context.
    All SQL and PL/SQL are parsed and executed by an Oracle server process. The SQL and PL/SQL engines each expects a single command block at a time. Neither of these can accept a series of separate commands as a single call and then execute each in turn. The SQL engine expects a single SQL statement at a time. The PL engine expects a single PL/SQL anonymous block at a time.
    This server process also cannot break into the local file system to access script files. Nor can it hack across the network to access script files on the client.
    In order for the server process to access local files, a directory object needs to be created and the current Oracle schema needs read and/or write access on that directory object. As sound security principles apply.
    There's no PL/SQL command to execute a script. You must not mistake SQL*Plus commands (this client has a very limited vocabulary) with PL/SQL commands. SQL*Plus executes its own commands.. and send SQL and PL/SQL commands (a statement block a time) to the Oracle server process to be serviced and executed.
    It is also a very bad idea to execute external script contents from inside an Oracle server process - as that script resides externally and thus outside Oracle's security mechanisms. This means that is is pretty easy for someone to access that script, compromise it, and then have you inject and execute the contents of that script into the database.
    It is not sound security.
    Last issue - it is even worse to have application PL/SQL code dynamically creating (or trying to create) portions of the Oracle data dictionary and PL/SQL call interface.
    The database needs to be installed correctly - and this includes loading and executing the required rdbms/admin scripts during database installation. It does not make sense at all for application code to try and execute such scripts. It raises numerous issues, including having to allow that application code full and unrestricted SYS access to the database instance. A very serious security violation.
    I do not agree at all with the approach you want to use.

Maybe you are looking for

  • Can't print to network printer after application is built

    All computers are Windows 2000, LabVIEW 5.1.1. While the application is run from Labview, printing to a network printer works fine(using the Easy Text Report.vi). The application was then made into an exe using the application builder. The developmen

  • How to deal with java integrity??

    Hi everyone, it's just few months that I have started to use Java and since, I've been really confused how to use it. As I've been using C++ before, it's really easy for me to handle a few libraries and keywords and write every thing all by my own. B

  • Changing Resource Order in Provisioned Resource Page

    Hi, Is is possible to change the order of the Resources which are getting displayed in Provisioned Resource Page.Let us say I have 2 resources A and B .I always wanted to A first and then B ,in the Provisioned resource page of that user.Any clue on h

  • Statistical forecast varies in back ground and foreground !

    Hello friends, When i generate the Statistical forecast at *product and plant* level in foreground it gives some values, then generate in background  at *product and plant level* again it gives different values.Could you pl through me some lights on

  • Need help installling from disk

    is there an install help like the download assist for adobe software, my computer won't install the programs from the disks