Trying to use setInterval command

does anyone have any idea what I am doing wrong, Im trying to
load random swfs and have them change on the current screen after a
given duration (im still learning and this happens to be in as2)
filename = ["countdown.swf", "snow.swf", "chimneysweep.swf",
"shanghaiedtochina.swf", "ashleydowns.swf"];
path = "
http://testwebsite/flash/swf/";
i = filename.length;
k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);
var setInterval(loadMovie, 1000);

splotter,
> filename = ["countdown.swf", "snow.swf",
"chimneysweep.swf",
> "shanghaiedtochina.swf", "ashleydowns.swf"];
This line creates a variable named filename and sets it an
an instance
of the Array class. So you have an array with five elements
in it. For
what it's worth, I recommend that you use the var keyword to
formally declar
your variable: Since you're using AS2, you may as well type
your variable,
while you're at it. These extra small steps are good habits
to get into,
because they can be helpful in complex projets.
var filename:Array = ["countdown.swf", "snow.swf",
"chimneysweep.swf",
"shanghaiedtochina.swf", "ashleydowns.swf"];
> path = "
http://testwebsite/flash/swf/";
This line creates another variable, this time a string, and
sets it to a
value. Again, I recommend you declare and type your variable:
var path:String = "
http://testwebsite/flash/swf/";
> i = filename.length;
Here, you're creating yet another variable, this time a
number, based on
the length of the array. In this context, i equals 5.
var i:Number = filename.length;
> k = Math.floor(Math.random()*i);
Here, you're creating another number variable, whose value
is some
number between 0 and 4. For grins, let's say it happens to be
3.
var k:Number = Math.floor(Math.random()*i);
> loadMovie(path+filename[k], movieTarget);
Here, you're invoking the loadMovie() function with a
concatenated first
parameter. Assuming k is 3, then you're actually saying the
following:
loadMovie("
http://testwebsite/flash/swf/shanghaiedtochina.swf",
movieTarget);
... because path plus the third element from the filename
array is the
string shown.
> var setInterval(loadMovie, 1000);
Now you're setting up a timed loop that repeats every second
(every
1,000 milliseconds). The function you're repeatedly
triggering is the
loadMovie() function, but you aren't specifying any
parameters this time.
My hunch is that you want to load a random movie every
second, but I'm
not sure. If I'm right, then you're going to have to
re-generate your
random number every time the function is triggered. I'd wrap
the operative
part in a custom function and trigger that function instead.
var filename:Array = ["countdown.swf", "snow.swf",
"chimneysweep.swf",
"shanghaiedtochina.swf", "ashleydowns.swf"];
var path:String = "
http://testwebsite/flash/swf/";
var i:Number = filename.length;
function loadRandomMovie():Void {
var k:Number = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);
setInterval(loadRandomMovie, 1000);
Now, keep in mind, you don't need the var keyword in front
of the
setInterval() call. setInterval() isn't a variable. The
function does
return a value, so you can store *that*, if you want, but you
don't need to
unless you want to use clearInterval() later to stop the
looping. That
might look like this ...
var interval:Number = setInterval(loadRandomMovie, 1000);
... which means later you could use clearInterval(interval)
to stop the
loop.
David Stiller
Co-author, Foundation Flash CS3 for Designers
http://tinyurl.com/2k29mj
"Luck is the residue of good design."

Similar Messages

  • Trying to use spool command

    heyyall,
    am trying to use the spool command to save a file from an output but i get the message:
    SPOOL save.lis
    SP2-0606: Cannot create SPOOL file save.lis
    am using sql-plus 10.2.0.1.0
    ?

    No its not an advanced setup , its just i logged into database using putty, easy to use.
    In Command Promt we use dir command to list the directories , in the same way in database ls list the subfolders/subdirectories and files present in the current directory.
    I think you are using local database only right?.
    Then go to command prompt (i.e., go to run and type cmd)
    And from there i had done this scenario, please view it so that you can understand clearly
    Microsoft Windows [Version 6.1.7600]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.
    C:\Users\Balaji K>dir
    Volume in drive C has no label.
    Volume Serial Number is 0282-81BD
    Directory of C:\Users\Balaji K
    03/27/2011 12:04 AM <DIR> .
    03/27/2011 12:04 AM <DIR> ..
    03/26/2011 03:04 AM <DIR> .VirtualBox
    02/25/2011 04:57 PM <DIR> Contacts
    03/26/2011 06:07 PM <DIR> Desktop
    03/25/2011 06:00 PM <DIR> Documents
    03/25/2011 08:44 PM <DIR> Downloads
    03/04/2011 06:06 PM <DIR> Favorites
    02/25/2011 04:57 PM <DIR> Links
    02/25/2011 04:57 PM <DIR> Music
    02/25/2011 04:57 PM <DIR> Pictures
    02/25/2011 04:57 PM <DIR> Saved Games
    02/25/2011 04:57 PM <DIR> Searches
    03/26/2011 10:04 PM <DIR> Tracing
    02/25/2011 04:57 PM <DIR> Videos
    02/25/2011 06:07 PM <DIR> VirtualBox VMs
    0 File(s) 0 bytes
    16 Dir(s) 43,067,936,768 bytes free
    C:\Users\Balaji K>sqlplus sys as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Mar 27 00:04:44 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> spool example.txt
    SQL> desc dba_users;
    Name Null? Type
    USERNAME NOT NULL VARCHAR2(30)
    USER_ID NOT NULL NUMBER
    PASSWORD VARCHAR2(30)
    ACCOUNT_STATUS NOT NULL VARCHAR2(32)
    LOCK_DATE DATE
    EXPIRY_DATE DATE
    DEFAULT_TABLESPACE NOT NULL VARCHAR2(30)
    TEMPORARY_TABLESPACE NOT NULL VARCHAR2(30)
    CREATED NOT NULL DATE
    PROFILE NOT NULL VARCHAR2(30)
    INITIAL_RSRC_CONSUMER_GROUP VARCHAR2(30)
    EXTERNAL_NAME VARCHAR2(4000)
    SQL> select username from dba_users;
    USERNAME
    SYS
    SYSTEM
    ANONYMOUS
    MDSYS
    OUTLN
    DIP
    TSMSYS
    FLOWS_FILES
    CTXSYS
    DBSNMP
    FLOWS_020100
    USERNAME
    XDB
    HR
    13 rows selected.
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Produ
    ction
    C:\Users\Balaji K>dir
    Volume in drive C has no label.
    Volume Serial Number is 0282-81BD
    Directory of C:\Users\Balaji K
    03/27/2011 12:04 AM <DIR> .
    03/27/2011 12:04 AM <DIR> ..
    03/26/2011 03:04 AM <DIR> .VirtualBox
    02/25/2011 04:57 PM <DIR> Contacts
    03/26/2011 06:07 PM <DIR> Desktop
    03/25/2011 06:00 PM <DIR> Documents
    03/25/2011 08:44 PM <DIR> Downloads
    03/27/2011 12:05 AM 2,398 example.txt
    03/04/2011 06:06 PM <DIR> Favorites
    02/25/2011 04:57 PM <DIR> Links
    02/25/2011 04:57 PM <DIR> Music
    02/25/2011 04:57 PM <DIR> Pictures
    02/25/2011 04:57 PM <DIR> Saved Games
    02/25/2011 04:57 PM <DIR> Searches
    03/26/2011 10:04 PM <DIR> Tracing
    02/25/2011 04:57 PM <DIR> Videos
    02/25/2011 06:07 PM <DIR> VirtualBox VMs
    1 File(s) 2,398 bytes
    16 Dir(s) 43,067,940,864 bytes free
    C:\Users\Balaji K>
    See now you can see the example.txt which we had spooled. Now if go with
    C:\Users\Balaji K>edit example.txt command you can see that all the data is spooled into it.
    And instead of exiting sqlplus, if you want to continue some other operations , then you can give spool off command .
    sql> spool off.
    Hope this helps you :)
    Thanks,
    Balaji K.
    Edited by: balaji k on Mar 26, 2011 11:42 AM
    Edited by: balaji k on Mar 26, 2011 11:43 AM

  • How to use Filter commands in WAD?

    Hello community,
    I am desperately trying to use the command wizzard in order to set a Filter to a chrarcateristic in an 7.0 web template:
    I have been trying these commands so far but it simply doesnt work:
    SET_SELECTION_STATE_SIMPLE
    SET_SELECTION_STATE
    My problem is: When I select the charcateristic which I want to Filter, I get always the Error message, that the characteristic is not a valied characteristic or structure of the Query. But this is not true, the Characteristic is in the query. I have tried for hours now but no success.
    Thanks for any help or advice.
    Carl

    Hi Carl,
    I had the same situation. All you have to do is to update your support package. After that it will work properly.
    I have - Support Package 7, Revision 571
    Regards
    Erwin
    Edited by: Erwin  Buda on Dec 5, 2008 9:47 PM

  • Error while trying to export my database using this command

    Hi,
    I am trying to export my database using this command :
    expdp system/manager@db1 full=n schemas=kul4231 dumpfile=kul4231_20091122.dmp logfile=kul4231_20091122.log directory=dump_dir1
    Error:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-31626: job does not exist
    ORA-31637: cannot create job SYS_EXPORT_SCHEMA_05 for user SYSTEM
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPV$FT_INT", line 600
    ORA-39080: failed to create queues "KUPC$C_1_20091122101110" and "" for Data Pump job
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPC$QUE_INT", line 1606
    ORA-01008: not all variables bound
    DB version : Release 10.2.0.4.0
    all ideas are welcomed!!!!!!!!!!!! let me know where am i going wrong!!!!!!!
    thanks in advance..!!!!!!!!
    venkat.

    What is your SGA settings? (especially streams_pool_size).
    You can try to bump streams_pool_size to 100M if your current setting is below that.
    Regards
    Tomasz K.

  • Crystal Reports shuts down when trying to use the Add Command feature

    I am using Crystal Reports 9 with and Oracle database.  I go to new report, as a blank report, new connection to oracle, double click add command, paste the sql and click ok and crystal shuts down at that point.  Any one have this happen before?? Please help??

    Hi Allison,
    Have you tried with  basic syntax at command level.
    If you face any problem using Add command in crystal designer, just try to reinstall the product.
    Regards,
    Naveen.

  • HT203180 I purchased a video from iTunes but it will not sync to my iPod.  I get a message stating that the video "was not loaded to the iPod because iyt cannot be played on this iPod."  I tried to use the "create an iPod version" but the command is graye

    I purchased a video from iTunes but it will not sync to my iPod.  I get a message stating that the video "was not loaded to the iPod because iyt cannot be played on this iPod."  I tried to use the "create an iPod version" but the command is grayed out

    I was refering to the "sample rate", normally 44.1 KHz, the iPod might not be able to play tracks with a non-standard rate. Otherwise I'm not sure what the issue might be.
    tt2

  • Ok i get this error when hooking my dvd drive up and tring to use my windows 7 cdNo Bootable device. Insert boot disk and press any key. i have tried to use command key i see the cd icon and hit that and i get the error

    ok i get this error when hooking my dvd drive up and tring to use my windows 7 cdNo Bootable device. Insert boot disk and press any key. i have tried to use command key i see the cd icon and hit that and i get the error

    Wiley207 wrote:
    Believe it or not, it was the FireWire drive that was the problem! I managed to successfully install Windows 7 using an external USB DVD drive!
    Well I am truly staggered, I have tried this on two different MacBook Pros, with three different external USB optical drives. Don't know if you googled as I suggested but you would find hundreds of others who have found same thing. The exception is MacBook Air which works with the Apple writer, but I don't know much about this.
    Were you doing any of the special workarounds with refedit etc?
    What model USB DVD drive?

  • My Seagate external 250GB hard drive ejects improperly without command.  I am trying to use Time Machine to backup my macbook via usb cable...  I keep getting the message that the disked ejected improperly...  Any solutions...

    My Seagate external 250GB hard drive ejects improperly without command.  I am trying to use Time Machine to backup my macbook via usb cable...  I keep getting the message that the disked ejected improperly...  Any solutions...

    You are not alone. Thousands have this problem, on various models of Macs. Short answer, it has something to do with the disk going to sleep (possibly?). You can't do anything about it and Apple won't address the problem. Maybe you should buy a time capsule. Just keep giving them money and use their proprietary equipment.
    For a more complete answer, see this thread (all 65+ pages of it with NO SOLUTION IN SIGHT... except for some 3rd party solutions that sometimes work, sometimes don't): Disk Drive ejecting itself

  • With the left panel, trying to use the Presets, in the tutorial to the left of the commands there are square icons, for example "Lightroom B

    With the left panel, trying to use the Presets, in the tutorial to the left of the commands there are square icons, for example “Lightroom B & W Presets”. On my program they are arrowheads pointing to the right. When I click on any Preset, it does not work.
    Also, Right Panel, Color, White Balance, “As Shot” only has 2 options (auto & custom) vs. tutorial that has 9 options.

    You are not supposed to connect a pair of speakers(as in left and right in a stereo pair)to two separate out jacks on the sound card.the place on the card where headphones/speakers with the mini jack goes is the right place.

  • I'm trying to remember a command used in windows bootcamp, need help.

    I remember reading a topic in a message board about an individual who was having some difficulty about switching from the windows partition to the mac partition. The topic creator even said that even holding down the option button didn't work. Then a poster suggested that he should restart the [forgot the command name] by holding down control+[ plus three other keys on the keyboard that I forgot as well]. Afterwards, the original poster said the restart was a success as it automatically returned to mac osx without the control key option. I was wondering what the name of this command is and how to execute it. Many employees at the genius bar use this command every time someone has power supply dilemma by resetting the software. Thank you.

    Hello
    more comon reset is p-ram reset
    hold on at startup just after sartup sound
    Alt - Cmd - R - P keys on keyboard until your mac restart 2-3 more times
    or could be SMC reset depend on your mac model
    more info http://support.apple.com/kb/HT3964?viewlocale=en_US
    Pierre

  • Unable to delete files from encrypted external SD Card using File Commander

    I've run into some trouble trying to delete the directory com.spotify.music from my external SD Card (encrypted) after a hard reboot using the reset button next to the sim card.
    I need to do this for the Spotify app to work (FC on starting it) and I'm currently unable to delete the folder and its contents from Sony provided file explorer(FC File Commander).
    Is there a way to delete this app from adb or other command line tool or how should I go about this? Developer options are enabled because I'm learning to develop apps. Not particularly keen on rooting or otherwise format my SD Card but it's an option if there are no other ways to do it. 
    I can see the contents of my card using File Commander just fine. Spotify app is uninstalled, I tried remove cache and data before uninstall also.

    Thommo wrote:
    Are you able to delete files via your Pc or are you able to remove the card from your phone and connect it to a Pc for file deletion - There is a free program called Unlocker currently on version 1.9.2 which is excellent at deleting files that don't want to be deleted - You would install the program then right click the file and choose Unlocker and then when the program starts choose delete
    I guess he will not be able to move the SD card to the computer since it's encrypted and is working only with that particular device, but he should be able to access it via PC.
    If you can try to uninstall Spotify from your phone. I assume Spotify is not working due to some rubbish inside it's directory, but on the other hand you can't delete the folder because it may be used by Spotify. If you uninstall app folder may be unlocked.
    Best regards,
    Sergio PL
    Xperia Z1 / Nexus 7 (2012)

  • Preserve a single space at the end of line using spool command

    Hi,
    Can you please help me to write the result of an sql query into a file with the last column of the row ending with a single space?
    For example:
    COL1DATA|COL2DATA|COL3DATA<space1>
    As mentioned in the example the col3 value in the file should end with a single space. And there should not be any delimiters at the end of the row.
    I tried with set trimspool on/off. But, it didn't work. When I say trimspool on - it is trimming all the trailing spaces.
    When I say trimspool off - it is retaining all the trailing spaces to the size of the line.
    But, I do not wish to modify the file through shell commands once it is written thru spool. I mean I do not wish to append spaces to the end of a line using shell script or any other method.
    I do not wish to use other methods like UTL_FILE also.
    Please help me how to do it using spool command?
    Thank you.
    Ramana

    My requirement is that all the trailing spaces should be truncated except the last one in the row.Why?
    As you have discovered a single column in sqlplus, is always a fixed length regardless of the size of the data, if the length of the data varies the output is padded to the maximum or line size with spaces. The trim and trimpsool commands are there to remove all the spaces from the end of a line if there are any. There are no commands to trim all the spaces except one, or even to trim all the spaces except two, or three even.
    If you want such custom processing you should post process the file in the OS using sed, awk or perl or something designed for such things.

  • How to Create a Bootable Flash Drive to do a clean install of Lion.  I have tried to use the InstallESD.dmg but it still will not do a clean install so that I do not have to do a reinstall from the Recovery (That just re downloads and takes over 6 hours)?

    How to Create a Bootable Flash Drive to do a clean install of Lion.  I have tried to use the InstallESD.dmg but it still will not do a clean install so that I do not have to do a reinstall from the Recovery (That just re downloads and takes over 6 hours)?
    The system I'm have is a Mac-mini that had SL on it and no SuperDrive.  I have also call Apple Support and they have really have not been to much help over 1st did my up grade to Lion and Installed the Lion Server.... it lost my SSL that I paid for and kill almost on of my server setting, plus kill all my web servers (using apache vhosts), and not to say the LDAP will even let remote users login to your laptops.
    PS: There is no way that I'm going to buy a Install USB from Apple... They have over billed me over $300.00 because the Apps Store still has bugs (Glad I did not write that App/Service)
    If there is anyone that can give in the information to create a USB install stick, I would be very thinkful.

    Here you are bro, courtesy of "softpedia.com"....brilliant site!!!
    If you ever had problems with your Mac OS X installation you know that the first thing you should do is to check the startup volume using Disk Utility.
    After the check has ended and, if the errors exceed a certain level of seriousness, the Disk Utility application will require you to restart your Mac and use its Mac OS X Install disc counterpart.
    Other users may have to reinstall OS X altogether, but will find, or already know, that their SuperDrive (a CD/DVD reader and write combo drive) is not functioning properly and it will not be able to read the Install disc.
    Although this might happen to Mac OS X Leopard users due to faultyhardware, the vast majority of problematic SuperDrives will be encountered inside Snow Leopard running Macs.
    This is due to the updated SuperDrive firmware included in either the Install disc or the software updates one has to install to reach the latest version of OS X, namely 10.6.6.
    This can be fixed by flashing the SuperDrive’s stock firmware using free command line tools that one can find for free online (I will write about this process also, but at a later time because this article only focuses on allowing you to create your own alternative USB boot disc).
    If you are reading this last bit of information with skepticism, than you should know that it happened to me too. Despite all my tries to make it work properly, the SuperDrive kept on munching any inserted DVDs and just popped them out in about twenty seconds.
    The workaround to this issue was to create my own Leopard bootable USB memory stick. I am not suggesting a Snow Leopard bootable stick mainly because there are lots of users that have decided to buy the cheaper, Upgrade version, which I have not tested and, therefore, I’m not sure if it will work properly once written to a USB disk.
    And now, here are the exact steps you should follow in order to obtain a fully bootable Leopard (or Lion) Install disc.
    Step 1 (If you already have the Leopard install disc DMG file you can skip to Step 2)
    Launch Disk Utility (you can find it inside /Applications/Utilities). Here select the Leopard Install disc in the list of drives on the left and click on the New Image menu entry at the top of the window. A save message will appear where you will have to select the Desktop as a destination.
    Step 2
    After Disk Utility has finished creating the Leopard DMG, insert your USB stick and erase all data and reformat the disk. To do this select the USB in the list of drives on the left and, after clicking on the Erase tab on the right side of the window, choose the Mac OS Extended (Journaled) format and click the Erase button beneath.
    Step 3
    After the USB has been reformatted, download the SuperDuper app from HERE and launch it. Once SuperDuper starts, you will only have to select the DMG in the Copy drop-down menu, your USB memory stick on the right and hit the “Copy Now” button.
    One can also use Disk Utility for this task but creating a bootable USB stick failed 2 out 4 times when copying the DMG to the stick (with the exact same settings each time). Creating the bootable stick using SuperDuper proved to be the perfect way to do it because it worked each of the 4 times I tested it.
    The steps above can also be used to create a bootable Mac OS X Lion USB by using the InstallESD.dmg image you can find inside the Lion installer (named “Install Mac OS X Lion.app”) downloaded from the Mac App Store in the /Applications folder.
    To locate the InstallESD.dmg right click the Lion installer, select the “Show Package Contents” entry, go inside the “Contents” folder, and from there into the “SharedSupport” folder. Inside this folder you can find the InstallESD.dmg you can use to create your own bootable Mac OS X Lion USB stick. To do so, go to the third step described above and use the InstallESD.dmg as the DMG to be copied to your USB disc.
    That’s it! Once the process ends you will have a fully bootable Leopard (or Lion) USB disk that you can use as an alternative to the Apple’s DVD Install disc that comes bundled with all Macs.
    To use your newly created bootable disk you will have to restart the Mac, press and hold the OPTION key until the StartupManager appears. Here, select the Mac OS X Install disk using your keyboard arrows and press return to start from the selected drive.

  • How to encrypt file on linux using Gnupg command in Java Embedding in BPEL.

    Hi All,
    I am trying to invoke a command script using the java embedding in BPEL Process.I am using the below code to execute the particular command to encrypt the file :-
    try {    
            Runtime rt = Runtime.getRuntime();    
    Process pr = rt.exec(new String[] {"/bin/bash", "-c", "/u01/GnuPG/bin/gpg", "-e", "-r", "Developer","/u01/oracle/ConfigFiles/Adapter_controlDir/abc.csv"});    
             int exitVal = pr.waitFor();            
            String result = "SUCCESS: Process exit with " + exitVal;         
            addAuditTrailEntry("result = "+result);      
            setVariableData("outputVariable","payload","/client:processResponse/client:result",result);    
    } catch(Exception e) {    
            e.printStackTrace();      
      String result = "FAILURE: Exception with " + e.toString();    
            addAuditTrailEntry("result = "+result);      
            setVariableData("outputVariable","payload","/client:processResponse/client:result",result);    
    The above statement does nothing. I am not sure what command i need to use to access to the command line.
    When i try this particular statement from linux machine command prompt :- /u01/GnuPG/bin/gpg -e  -r  Developer /u01/oracle/ConfigFiles/Adapter_controlDir/abc.csv
    It works absolutely fine and it creates the encrypted files also.
    Please suggest , which command i need to use from the java embedding.
    Please suggest!!
    Regards,
    Shah

    I think, you can try, writing these commands into a separate shell script and call that shell script from bpel via Java embedding. However, you might not get a return response.. but you can still give a shot.
    Hope it helps.

  • Issue while creating BPEL artifacts using BPEL command line tool

    All
    I am trying to create BPEL artificats for SQL server stored procedure for SQO Server 2005 using BPEL Command line tool.
    My demo.properties is
    ProductName=Microsoft SQL Server
    DriverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
    ConnectionString=jdbc:sqlserver://10.10.20.2:1433;databaseName=dAP
    Username:apcdb
    Password:password1
    SchemaName:dev
    ProcedureName:spiSOATesting
    ServiceName:SQLServerSPService
    DatabaseConnection:MSSQLServer
    Destination:c:/temp/sqlprocedure
    and I have create a batch file called as generate.bat and it contains following information
    java -cp D:\jdevstudio10134\integration\lib\DBAdapter.jar;D:\jdevstudio10134\integration\lib\bpm-infra.jar;D:\jdevstudio10134\integration\lib\orabpel.jar;D:\jdevstudio10134\lib\xmlparserv2.jar;D:\jdevstudio10134\lib\xschema.jar;D:\jdevstudio10134\toplink\jlib\toplink.jar;D:\jdevstudio10134\integration\lib\connector15.jar;D:\temp\sqlprocedure\JDBC\sqljdbc.jar oracle.tip.adapter.db.sp.artifacts.GenerateArtifacts %1
    and when I try to run the command at BPEL PM Developer Prompt, I am getting Procedure not found, Can one please tell, what is the cause of this error. and how does this command line tool exactly work.
    Following is the output from command prompt.
    D:\product\10.1.3.1\OracleAS_1\bpel\samples>D:\temp\sqlprocedure\generate.bat D:\temp\sqlprocedure\demo.properties
    D:\product\10.1.3.1\OracleAS_1\bpel\samples>java -cp D:\jdevstudio10134\integration\lib\DBAdapter.jar;D:\jdevstudio10134\integration\lib\bpm-infra.jar
    ;D:\jdevstudio10134\integration\lib\orabpel.jar;D:\jdevstudio10134\lib\xmlparserv2.jar;D:\jdevstudio10134\lib\xschema.jar;D:\jdevstudio10134\toplink\j
    lib\toplink.jar;D:\jdevstudio10134\integration\lib\connector15.jar;D:\temp\sqlprocedure\JDBC\sqljdbc.jar oracle.tip.adapter.db.sp.artifacts.GenerateArtifacts D:\temp\sqlprocedure\demo.properties
    Procedure not found: dAP.spiSOATesting
    Thank you

    HI
      Pricing will be carried basing on the pricing
    procedure.
    Case1: Prices will be carried out automatically if
    necessary condition records are maintained for the
    condition type.
      For this you can go to Sales Order-> Item Conditions
    In the screen you can click on command button Analysis,
    which gives you the list of condition types associated
    to the pricing procedure. By clicking on the condition
    type you can know the action that has taken place.
    Case2: Manually forcing prices for Items.
      To do this, you have to populate ORDER_CONDITIONS_IN &
    ORDER_CONDITIONS_INX. Also note to identify the item
    numbers, you manually pass the item number for each item
    in the sales order, use the same item number for
    populating conditions.
      Parameters required:
    ORDER_CONDITIONS_IN:
      ITM_NUMBER, COND_TYPE, COND_VALUE, CURRENCY
    ORDER_CONDITIONS_INX:
      ITM_NUMBER, COND_TYPE, UPDATEFLAG, COND_VALUE,CURRENCY.
       Hope the above info helps you. Do revert back if you
    need more info.
    Kind Regards
    Eswar

Maybe you are looking for

  • Playing a track on more than one computer

    Hi all, Does anyone know if it's possible to play an iTunes track on more than one computer (i.e., running iTunes) at a time? I have my main iTunes library downstairs, connected to an AirPort Express which is connected to my home surround system. Whi

  • Nokia N8 - Ram and preinstalled tones

    Hi, I am a proud owner of the Nokia N8. I am happy with it. I just want to ask - which pre-installed software can I delete to beef up my Ram? Communicator? Etc.? I want to delete apps that I may or may not use that may help increase my ram. Currently

  • Tolerance table BBP_PDTOL - Purchase Order Item relation

    Dear Experts, Would anybody be able to describe field relationship between Purchase Order Item and tolerance table BBP_PDTOL. CRMD_ORDERADM_I-GUID  -   BBP_PDTOL-GUID relation is not work. Sincerely yours, Sergey.

  • Why won't my iTunes file open on my PC?

    I have a Toshiba laptop (don't know the model or anything...) and I have the newest version of iTunes. When I click on the shortcut icon on my laptop, iTunes does not open. I have tried restarting it, right clicking on the icon and pressing 'open', a

  • How to activate all standard datasources..

    Hi Experts, i am phasing issue in DM1 system. All standard data sources are goes to deactivate stage as shown in the below screen shot. if anybody has known the solution please let me know.. Best Regards, Sowjanyak.