Login
Register

Home

Trainings

Fusion Blog

EBS Blog

Authors

CONTACT US

Miscellaneous
  • Register

Oracle Gold Partners, our very popular training packages, training schedule is listed here
Designed by Five Star Rated Oracle Press Authors & Oracle ACE's.

webinar new

Search Courses

An article on very basics of Concurrent Program, for beginners that follow http://getappstraining.blogspot.com.



Lets first discuss the below scenario

Being a developer, you have just developed a SQL script or a PL/SQL package procedure. The end user wants to be able to run this script ad-hoc or they wish to schedule this to run every night.

Question : How can an end-user be given control to run a script developed by a developer, given that an end user will never have access to apps password(and rightly so)?
Answer: This script can be attached to a Concurrent Program via a concurrent program executable. The user will then be given access to this Concurrent Program.

Question : But how will the end user or Oracle Apps make this script run every 10hours daily?
Answer : A concurrent program can be scheduled to run at desired intervals. The schedule is defined at the time of submission.

Question: What are the different types of scripts/programs that can be attached to concurrent programs?
Answer :
A sql script
A Sql*Loader program
Java program
Oracle Report
Pl/SQL program ( or call it a stored procedure/package procedure)
Host script, like a unix shell script
Pro*C/Spawned
Perl

Question: What are the basic steps when defining a concurrent program.
Answer: Broadly speaking there are three steps when developing a concurrent program in Oracle Apps
Step 1. Make Oracle Apps identify the executable
Step 2. Provide a handle to the executable by means of defining a concurrent program
Step 3. Make this concurrent program accesible to selected users via their responsibility.

Question: Please can you describe the above steps in detail
Answer:
Step 1. Make Oracle Apps identify the executable
In Oracle Apps we have something called as concurrent program executable. Concurrent program executable is defined to register a script or a procedure for its usage within oracle apps.

Step 2. Provide a handle to the executable by means of defining a Concurrent Program.
We need to define a concurrent program and attach that to the executable defined in above step.

Step 3. Make this concurrent program accesible to selected users via their responsibility.
We do this by adding the concurrent program to something called as request group. The request group is either associated with a responsibility or is passed in as a parameter to the function request form function. Don't worry if you do not understand this step, I will be writing a dedicated article to explain this step.


Question : Please explain the steps for defining a pl/sql concurrent program, with screenshots and with almost real life example?
Answer:
1. Create a table and a stored procedure in pl/sql
create table xx_hello_world_tab
(
 message_text VARCHAR2(
100)
,creation_date DATE
) ;

CREATE OR REPLACE PROCEDURE
xx_register_user_prc(errbuf      OUT VARCHAR2,retcode     OUT VARCHAR2) IS
BEGIN
  INSERT INTO xx_hello_world_tab VALUES (
'Hello World' ,SYSDATE);
END xx_register_user_prc;

SELECT * FROM xx_hello_world_tab ;

--Zero records will be returned here


2. Note the two parameters, namely errbuff and retcode
These parameters for used for the interaction between the concurrent program and the pl/sql Program. I suggest to the beginners not to spend much time on these parameters.

3. Define an executable attached to this procedure.
This can be done by navigating to the responsibility “Application Developer”, and selecting the menu /Concurrent/Executable

4. Define the concurrent program
This can be done by navigating to responsibility “Application Developer” and then selecting menu /Concurrent/Progra


5. Attach this program to a report group.
Go to System Administrator responsibility, and select
/Security/Responsibility/Request


Now, we can navigate to the Receivables Manager and submit the concurrent request.
Image

After the completion of the request, we check the table
Image


Anil Passi

Comments   

0 #1 venkat 2006-10-26 00:00
i have a question. is it enough if we write a
procedure xx_register_use r_prc in apps schema and compile it or should i add it to any direcotry like AR_TOP/sql and then register it as a concurrent program
Quote
0 #2 venkat 2006-10-26 00:00
i have a question. is it enough if we write a
procedure xx_register_use r_prc in apps schema and compile it or should i add it to any direcotry like AR_TOP/sql and then register it as a concurrent program
Quote
0 #3 Anil Passi 2006-11-15 00:00
Hi there,

you can schedule a concurrent request, so that you do not have to execute it manually.

If you want this done programmaticall y, then use api FND_REQUEST.SUB MIT_REQUEST

Thanks
anil
Quote
0 #4 Cherry 2006-11-15 00:00
Is there any existing APIs which can call and submit these kinds of requests or concurrent program? The purpose behind is to skip manual submission. I want to trigger some fixed procedure in the backgroud to reduce human workload.
Otherwise, any suggestion?
Quote
0 #5 Cherry 2006-11-15 00:00
Thanks for your fast response.
Then , Can I call the OFA packages such as AutoCreate PO by writting a PL/SQL as a request in this case?
Is there any existing APIs which allow to do so?
Is it ok to call OFA packages directly? Any concern?

(so rry for too much questions, I am new to Oracle and OFA)

Thanks in advanced.
Cher ry
Quote
0 #6 Anil Passi 2006-11-15 00:00
Hi there,

you can schedule a concurrent request, so that you do not have to execute it manually.

If you want this done programmaticall y, then use api FND_REQUEST.SUB MIT_REQUEST

Thanks
anil
Quote
0 #7 Cherry 2006-11-15 00:00
Is there any existing APIs which can call and submit these kinds of requests or concurrent program? The purpose behind is to skip manual submission. I want to trigger some fixed procedure in the backgroud to reduce human workload.
Otherwise, any suggestion?
Quote
0 #8 Cherry 2006-11-15 00:00
Thanks for your fast response.
Then , Can I call the OFA packages such as AutoCreate PO by writting a PL/SQL as a request in this case?
Is there any existing APIs which allow to do so?
Is it ok to call OFA packages directly? Any concern?

(so rry for too much questions, I am new to Oracle and OFA)

Thanks in advanced.
Cher ry
Quote
0 #9 Eugene 2006-11-18 00:00
Anil,
Great site. I very new to Oracle Apps and learning a whole lot from it.
I have a question about concurrent program. We outsourced an implementation team for Oracle Financials and they told me that I have to generate text files with PO, Receipts, Items, .... data it them (Prod d/b on Windows). Then generated files need to be moved to the server where Financials installed (Linux sever).
Then, they said, the concurrent program will run to load moved files into Apps.
My question is: could I just add a call (via d/b link) to the package on prod server to generate files and move them to the apps server and then proceed with loading files? It seems to me that it would be a completed task. Your thoughts?
Than k you,
Eugene
Quote
0 #10 Eugene 2006-11-18 00:00
Anil,
Great site. I very new to Oracle Apps and learning a whole lot from it.
I have a question about concurrent program. We outsourced an implementation team for Oracle Financials and they told me that I have to generate text files with PO, Receipts, Items, .... data it them (Prod d/b on Windows). Then generated files need to be moved to the server where Financials installed (Linux sever).
Then, they said, the concurrent program will run to load moved files into Apps.
My question is: could I just add a call (via d/b link) to the package on prod server to generate files and move them to the apps server and then proceed with loading files? It seems to me that it would be a completed task. Your thoughts?
Than k you,
Eugene
Quote
0 #11 Anil Passi 2006-11-19 00:00
Hi Eugene

I assume the following:-
-- --------------- ------
1. You have some concurrent program definitions to be moved from one environment to another.
2. You wish to add a DB link from Prod box to a development box, so that those definitions can be accessed.

As suming that I understood your qns correctly:-
1. I guess your outsourcing company is using FNDLOAD to download the concurrent program definitions.
F NDLOAD is described here
http://www.google.com/search?q=site:apps2fusion.com+oracle-fndload-script-examples

FNDLOAD creates text files, that can be uploaded in a new environment.

2. You usually never create DB Links frm PRD to DEV environment.
T he FNDLOAD link shows how to upload the program definitions too. You do not necessarily need to run a concurrent program, although FNDLOAD command also happens to be an executable of conc program itself.

Than ks,
Anil Passi
Quote
0 #12 Anil Passi 2006-11-19 00:00
Hi Eugene

I assume the following:-
-- --------------- ------
1. You have some concurrent program definitions to be moved from one environment to another.
2. You wish to add a DB link from Prod box to a development box, so that those definitions can be accessed.

As suming that I understood your qns correctly:-
1. I guess your outsourcing company is using FNDLOAD to download the concurrent program definitions.
F NDLOAD is described here
http://www.google.com/search?q=site:apps2fusion.com+oracle-fndload-script-examples

FNDLOAD creates text files, that can be uploaded in a new environment.

2. You usually never create DB Links frm PRD to DEV environment.
T he FNDLOAD link shows how to upload the program definitions too. You do not necessarily need to run a concurrent program, although FNDLOAD command also happens to be an executable of conc program itself.

Than ks,
Anil Passi
Quote
+1 #13 Anil Passi 2006-11-26 00:00
Hi Eugene,

You can certainly do all the steps in one single concurrent program. But for doing so, you need to write a Java Concurrent Program

Than ks
Anil Passi
Quote
-1 #14 Anil Passi 2006-11-26 00:00
Hi Eugene,

You can certainly do all the steps in one single concurrent program. But for doing so, you need to write a Java Concurrent Program

Than ks
Anil Passi
Quote
0 #15 Hari 2006-11-29 00:00
Hi Anil Passi
I am trying to execute a java program through oracle apps forms. I have created a java concurrent program and I have crated a request and submitted and once its completion I am getting an exception saying that

java.lang.C lassNotFoundExc eption: testOracle.Orac leTestProgramNe w
at oracle.apps.fnd .cp.request.Run .main(Run.java: 117)

I have set the JAVA_TOP and AF_CLASSPATH upto that testOracle parent Directory.

s till I am getting the same exception.

c ould u please sugget me to where I must palce the java class file and its further settings?

Th anks in advance.
HariK rishana.
Quote
0 #16 Anil Passi 2006-11-29 00:00
Hi Hari

Try to pass the classpath in options field of the concurrent program and try to run it standalone first.

Pleas e note that, DO NOT USE $_TOP notation in classpath when specified from concurrent program options field.

Use notation as below:-

-cp /home/appsborg. zip:/home/xx/ja va/apps.zip

Put the exact paths and run again, let me know how it goes

thanks
anil passi
Quote
0 #17 Hari 2006-11-29 00:00
Hi Anil Passi
I am trying to execute a java program through oracle apps forms. I have created a java concurrent program and I have crated a request and submitted and once its completion I am getting an exception saying that

java.lang.C lassNotFoundExc eption: testOracle.Orac leTestProgramNe w
at oracle.apps.fnd .cp.request.Run .main(Run.java: 117)

I have set the JAVA_TOP and AF_CLASSPATH upto that testOracle parent Directory.

s till I am getting the same exception.

c ould u please sugget me to where I must palce the java class file and its further settings?

Th anks in advance.
HariK rishana.
Quote
0 #18 Anil Passi 2006-11-29 00:00
Hi Hari

Try to pass the classpath in options field of the concurrent program and try to run it standalone first.

Pleas e note that, DO NOT USE $_TOP notation in classpath when specified from concurrent program options field.

Use notation as below:-

-cp /home/appsborg. zip:/home/xx/ja va/apps.zip

Put the exact paths and run again, let me know how it goes

thanks
anil passi
Quote
0 #19 Anil Passi 2006-12-18 00:00
Hi Richa,

To crack the interview you first need to crack the fundamentals.

Having said that, I suggest you read all possible articles on this site and also on similar other websites. I think ittoolbox has some very nice articles.

Th e more you read and understand, the better.

I think http://getappstraining.blogspot.com/2006/10/oracle-apps-training-index.html will be a good starting point.

Thank s,
Anil Passi
Quote
0 #20 Anil Passi 2006-12-18 00:00
Hi Richa,

To crack the interview you first need to crack the fundamentals.

Having said that, I suggest you read all possible articles on this site and also on similar other websites. I think ittoolbox has some very nice articles.

Th e more you read and understand, the better.

I think http://getappstraining.blogspot.com/2006/10/oracle-apps-training-index.html will be a good starting point.

Thank s,
Anil Passi
Quote
0 #21 Anil Passi 2006-12-25 00:00
Hi Praveen

You may also have a look at the dedicated article on Request Groups http://www.google.com/search?q=site:apps2fusion.com+index.php?option=com_content&task=view&id=87&show=1&Itemid=27&show=1

Thanks,
An iL Passi
Quote
0 #22 praveen 2006-12-25 00:00
Thanks a lot Anil for the response, you are a great help...i will try to sort the issue out as per your guidance...
Quote
0 #23 Anil Passi 2006-12-25 00:00
Hi Praveen

You may also have a look at the dedicated article on Request Groups http://www.google.com/search?q=site:apps2fusion.com+index.php?option=com_content&task=view&id=87&show=1&Itemid=27&show=1

Thanks,
An iL Passi
Quote
0 #24 praveen 2006-12-25 00:00
Thanks a lot Anil for the response, you are a great help...i will try to sort the issue out as per your guidance...
Quote
0 #25 raj 2007-01-25 00:00
Hello sunil....
Firs tof all thanking u for such valuable information for starters,,i have aquestion..
ca n u help me how a formfunction in attached to a menu..
thanks
raj
Quote
0 #26 Anil Passi 2007-01-27 00:00
.
.
.
Hi Raj

Please refer to http://getappstraining.blogspot.com/2006/10/oracle-forms-functions-menus-and-their.html

thanks
ani l
Quote
0 #27 User 2007-02-22 00:00
Hi Anil,
I just wanted to know, how to define parameters. What If my program requires 2 input parameters say empno,ename?
p lz let me know
Quote
0 #28 User 2007-02-22 00:00
If user wants to enter Input Parameter values while submitting the concurrent program( say empno, ename), how to define them. Plz let me know
Quote
0 #29 Anil Passi 2007-03-06 00:00
Hi Soham

To run a Concurrent program from Unix Shell you can use CONCSUB. A search on Metalink or google will give you the syntax.


To run a UNIX shell script as a concurrent program,you need to register this as Host Concurrent Program. Say you register an executable named XXCONC within XXPO Module.

on unix, do

1. cd $XXPO_TOP/bin
2. vi XXCONC.prog and edit and write script and save
3. ln -s $FND_TOP/bin/fn dcpesr XXCONC
4. ls -l XXCONC

Thank s
Anil Passi
Quote
0 #30 Tony 2007-04-18 00:00
Hi Anil,

Want to know the answer to

why do we attach program to a specific application only

Thanks in Advance
Quote
0 #31 Anil Passi 2007-04-18 00:00
Hi Tony

To find the answer, please see the discussion at bottom part of page
http://getappstraining.blogspot.com/2006/10/oracle-apps-training-index.html

The same question as posted by you has been discussed there.

Thank s
Anil
Quote
0 #32 Anil Passi 2007-04-20 00:00
Hi new user,

To find the answer, please see the discussion at bottom part of page
http://getappstraining.blogspot.com/2006/10/oracle-apps-training-index.html
The same question as posted by you has been discussed there.

Thank s
Anil
Quote
0 #33 Ajay 2007-05-02 00:00
Hi Anil,
Can i get anyexample of Perl Concurrent program. I am new to perl.

Regard s,
Ajay Kunde
Quote
0 #34 swati 2007-06-01 00:00
Hi Anil,

I have a requirement to enter list of values in a concurrent program parameter like comma separated values.
Is it possible?

Th anks,
Swati
Quote
0 #35 Anil Passi 2007-06-20 00:00
Hi Deb

Please do the following

1. Create a new package procedure for conc program
with two out parameters.
2. Register this as executable for conc program
3. Within this new procedure, you can execute POOL_ASSIGNMENT . The last three out variables can be displayed in log file or logged into some tables for error reporting.

T hanks,
Anil Passi
Quote
0 #36 prem 2007-06-28 00:00
Hi,

What is the differnce between the (Concurrent program) SQL Loader program which is having executable method as Host and the one which is having the executable method as SQL*Loader.
Quote
0 #37 nagender 2007-08-18 03:29
Hi Mr.Anil,
I am new to oracle apps and I would like to know about the submission of concurrent prog ufrom pl/sql.
I know that fnd_request.sub mit_request(par ameters) helps in this, but i don't know how to use it.
Can u please give the syntax of that parameters and what all should be passed for this API to call the concurrent prog.
Thanks,
N agender
Quote
0 #38 nagender 2007-08-18 03:31
Hi Mr.Anil,
I am new to oracle apps and I would like to know about the submission of concurrent prog from pl/sql.
I know that fnd_request.sub mit_request(par ameters) helps in this, but i don't know how to use it.
Can u please give the syntax of that parameters and what all should be passed for this API to call the concurrent prog.
Thanks,
N agender
Quote
0 #39 Anil Passi 2007-08-19 05:46
Hi Nagender

Pleas e refer to link
scripts4oracle.blogspot.com/2006/09/oracle-api-for-gl-interface-package_19.html

You will find an example there.

Thanks,
Anil Passi
Quote
0 #40 navin 2007-09-05 13:51
Hi Anil,
It is very good initiative from your end. needs more on XML publishers.
Quote
0 #41 Sandhyakashyap 2007-09-17 10:31
I am unable to see any of the pictures on your site, especially the screen-shots. Any particular reason?
Quote
0 #42 Anil Passi 2007-09-17 11:13
Hi Sandhya

Are you able to visit http://docs.google.com

Possibly your company URL filters off that URL

Cheers
Ani l
Quote
0 #43 Udayabhaskar Emani 2007-10-25 09:58
Hi Anil,
Your Article is too Good and its very useful.
Regards
Madhuri
Quote
0 #44 sai d 2007-10-29 14:41
hi anil,

great post first of all. but i have a question

is it possible for one seeded concurrent program to be the trigger of another custom one without disturbing the seeded program? if yes how? im really confused as to how to do this!
Quote
0 #45 Anil Passi 2007-10-29 14:45
Sai

Not possible, unless the seeded program calls a user hook API or calls a business event.

Thanks,
Anil Passi
Quote
0 #46 Shakil Ahmed 2007-11-13 17:15
Hi Anil,

In oracle apps => concurrent requests window we have the option to schedule a request and save the schedule also.
I have a requirement. By using a plsql script I have to create a schedule, attach it to a concurrent request so that it runs periodically. Also I should be able to update and cancel an existing schedule.
I have to create around 4 functions (create schedule, submit request, update schedule and cancel schedule). Can I use fnd_request package routines ? If yes, which ones ?

Pls suggest.

P.S : I tried to use Fnd_Request.Set _Repeat_Options . It creates a default release class on its own and so I am unable to specify a schedule name.

Thanks,
Sam
Quote
0 #47 hari Kishan 2007-12-04 10:18
While registering the concurrent program we first do the executable concurrent program and then define it . So why we need to give the application name twice in executable and as well as definitions
Quote
0 #48 Sten Vesterli 2008-01-15 12:59
Under Windows (with MKS Toolkit), you would create the link with
ln %FND_TOP%in nd cpesr.exe XXCONC.exe

NTF S under Windows 2003 server does not support symbolic links
to individual files - that's why it's a hard link. Also remember
to call the link .exe - otherwise, Windows will refuse to
execute it.
Quote
0 #49 anonymous 2008-01-16 10:12
Hi anil,
I was new to oracle apps.how can i see where all the records are get saved when we save them.plz help me.
Quote
0 #50 vasavi 2008-01-17 02:37
hi anil,

I was new to oracle apps.how can i see where all the records are get saved when we save them.plz help me.And also plz can u tell me the books which i can refer to make my basics strong in apps.
Quote
0 #51 Manish Sharad 2008-01-22 15:29
Hi Anil:

Its a good effort from your side, appriciated.
I just want help regarding what is the best documentation or the braindump test questions for the the OCP expert exams, i am planning to appear exam code 1ZO-232 system Admin, for Oracle Business Suite.

Thanks
Quote
0 #52 Shekar Suman 2008-01-23 14:35
This is the best way to learn new things about subject.
Quote
0 #53 Shekar Suman 2008-01-23 14:39
How to call shell script concurrent program (having one parameter) in another concurrent program
Quote
0 #54 sreekanth munagala 2008-03-17 06:41
Hai Anil,
I have some queries regarding this article.
In the screen we get while defining executable,
the re is one option called SHORTNAME.
Why do we need this SHORTNAME?
what is the difference between executable and execution file name?
Quote
0 #55 Anil Passi- 2008-04-26 18:42
Hi Sree

Shortname is the identifier of the concurrent executable, lets say a tag.

The actual executable could be a java file or pl/sql etc.
Name of that actual physiscal executable may or may not be the same as tag of the program, i.e. short name

Thanks
An il
Quote
0 #56 Valeria 2008-05-19 15:06
Hello Anil,
What happen if we define the printer name, print style, print type ect in our PROCEDURE? Will it over write the printer information in the concurrent program submitt form?
Quote
0 #57 Anil Passi 2008-05-19 15:23
Hi Tuan,

Indeed, pl/sql API set print option will override concurent program definition

Tha nks
Anil
Quote
0 #58 Santosh Sharma 2008-05-27 02:20
Hi Everyone,

We have a workflow which we want to schedule to execute on the last friday of every month.

We've tried all the permutations and combinations in the Schedule Request form, in the periodic section, if we select last day and Friday, the request is scheduled for each friday and also on the last day.... On clicking the Apply saved schedules button we get
a LOV of some saved schedules. This list has an entry which says "Last working day on or before 15th of every month". This is similar to our requirement. But on selecting this option, we can't determine how this schedule has been defined.

Want your help in getting this request scheduled. Thanks in advance.

Regar ds,
Santosh
Quote
0 #59 Erick T 2008-07-28 09:45
Hello everybody, I need some help, Is it possible to transfer text files from the client (I mean the end user) using a concurrent program, If so, how can I do this?

Thanks in advance
Quote
0 #60 Erick T 2008-07-28 09:55
I almost forgot, Is it possible to do the same but viceversa, the latter question is becouse I need to process a csv file, but also I need to do a store procedure which produces a list of files

Best Regards
Quote
0 #61 koppulasandhya 2008-08-21 08:15
Hi Anil,
Is it possible to access the out_chr_err_buf and out_num_ret_cod e parameters after the concurrent request is completed?
To be more clear, suppose if I submit the request using fnd_request.sub mit_request and assign some value to out_chr_err_buf will I be Able to use that value after the concurrent request is completed?

Tha nks & Regards,
Sandhy a
Quote
0 #62 PreethiS 2009-06-29 11:41
Hi,

I have a request set, which has 2 concurrent programs, one of them is a report and the other is unix script to email the report generated in 1st request.

The report takes the first and last dates of the previous month as its parameters.

I scheduled to run this request set on the first of every month and to increment its date parameters, but unfortunately its not incrementing the date parameters of the 1st request in this set and it is taking the parameters when it was first scheduled.

The set was first scheduled to run on 1st May, so it would take 1st April and 30th April as its parameters for the 1st request. Then again when it ran on the 1st of June, it again took the same params as 1st and 30th April even though the Increment date parameters check box is selected when scheduled.

Tha nks,
Preethi.
Quote
0 #63 venki R 2009-11-19 05:34
hi

i have written an even alert which will trigger my concurrent program.here i want to pass a the output parameter of the alert as input to the concurrent program and inturn the same parameter to my pl/sql stored procedure.

ple ase help me out in this regard.

thanks
R.Venki
Quote
0 #64 Sravana 2010-09-27 02:49
Hi Anil,

My requirement is to pick up multiple files from one unix server and process them using a concurrent program. For one file it is working fine. When I run the concurrent program, it is successfully picking up the data from the specified Unix location and processing it successfully. Now I need to pick up multiple files from the same location based on the starting 4 letters. Could you please let me know how to do it? Thanks in advance.
This concurrent program picks up inpun file and passes this as input to a control file. So, please help me on how to read multiple input files and send these as input to the control file.

Thanks
S ravani
Quote
0 #65 Vikrant 2011-04-07 00:31
Hi,
can anyone please help me in writing a plsql procedure for submitting a concurrent program.
Quote
0 #66 MUDS 2011-09-19 07:19
Hi Vikrant,
You can execute a PL/SQL procedure using concurrent program but you cannot write a PL/SQL procedure to execute a concurrent program
Quote
0 #67 Saiprasad Khisti 2014-11-16 13:16
Hi Anil,

I have a concurrent program scheduled with Advanced option set .I want to cancel this schedule and set a new schedule. But I am not getting the pending request in the list so that I can cancel the request.

As per my knowledge we get Advanced option set in "Run As Job" , when we apply a saved schedule . Can you please tell me how to cancel such a schedule ?

Thanks&Regards,
Saiprasad
Quote
0 #68 Simvu 2015-02-03 12:13
Hi
We use an ftp script to fetch a flat .txt file from an external server to an EBS application server by means of running a concurrent program using two input parameters (server path and file name). The challenge is that, the file name is different for each file and the scheduled concurrent program should always run the latest file from the application server. How should we command the program to always execute the latest file?
Quote
0 #69 puneeth 2015-02-20 16:18
hi, venkat oracle apps is three-tier architecture
1.front-end (end user)
2.application tier(middle tier)
3.database tier (back end)

when u compile a procedure it stores in database tier as a schema object u can access it in front-end .so,there is no need to transfer the procedure to application tier .but if u write any script.sql it need to transfer to application tier (sql folder)
Quote
0 #70 download sv388 2022-04-10 14:08
This paragraph is genuinely a fastidious one it assists new web people, who are wishing for blogging.
Quote
0 #71 flyff 2022-04-14 22:31
Aw, this was an extremely good post. Finding the time and actual effort to produce
a good article… but what can I say… I put things off a whole lot and don't
manage to get anything done.
Quote
0 #72 แผน ธุรกิจ แซ น วิ ช 2022-04-15 23:24
I'm very pleased to discover this page. I wanted to thank you
for your time just for this fantastic read!! I definitely really liked
every little bit of it and I have you bookmarked to
see new stuff in your site.
Quote
0 #73 postcron review 2022-04-16 00:10
I was able to find good info from your blog articles.
Quote
0 #74 фото редактори 2022-04-16 01:42
Howdy! Do you know if they make any plugins to safeguard against
hackers? I'm kinda paranoid about losing everything I've worked hard on.
Any tips?
Quote
0 #75 sv388 2022-04-16 01:48
May I just say what a relief to find someone that genuinely understands what they're talking about
on the net. You definitely understand how to bring an issue to light and
make it important. More people need to look at this and understand this side of your story.
I was surprised that you aren't more popular
because you most certainly possess the gift.
Quote
0 #76 devil tattoo 2022-04-16 03:12
I'm now not positive the place you are getting your information, but great
topic. I must spend some time studying more or working out more.

Thanks for magnificent info I used to be on the lookout
for this info for my mission.
Quote
0 #77 venonis armor 2022-04-16 04:45
Hi, I desire to subscribe for this blog to take most recent updates, so where can i do it please assist.
Quote
0 #78 シャロン・ストーン 2022-04-16 07:29
Hi there to every single one, it's really a nice for me to go to see this web page, it includes helpful Information.
Quote
0 #79 pseudoefedrin 2022-04-16 08:31
Hello, I read your new stuff on a regular basis. Your writing style is
awesome, keep it up!
Quote
0 #80 기즈몬도 2022-04-16 12:21
hi!,I love your writing so much! proportion we communicate extra
about your article on AOL? I require a specialist on this
area to unravel my problem. Maybe that's you!
Looking forward to look you.
Quote
0 #81 nama kedai unik 2022-04-16 18:01
That is very interesting, You are an overly skilled blogger.
I've joined your rss feed and stay up for seeking extra of
your fantastic post. Also, I've shared your web site in my social networks
Quote
0 #82 скоч 2022-04-16 22:48
It's going to be end of mine day, however before finish I am reading this wonderful piece of writing to improve my knowledge.
Quote
0 #83 pall mall surgery 2022-04-17 05:57
Highly descriptive post, I enjoyed that a lot. Will there be a part 2?
Quote
0 #84 samsung galaxy a8 ár 2022-04-17 19:03
We are a group of volunteers and opening a new scheme in our community.
Your site provided us with valuable info to work on. You've done a formidable job and our entire
community will be thankful to you.
Quote
0 #85 gamit ng karpintero 2022-04-17 22:02
Pretty! This was a really wonderful article. Many
thanks for providing these details.
Quote
0 #86 auxillis services 2022-04-18 03:44
You've made some good points there. I looked on the web for
more info about the issue and found most people will go along with your views
on this site.
Quote
0 #87 צלזיוס מול פרנהייט 2022-04-18 04:30
Great website you have here but I was wanting to know if you knew
of any message boards that cover the same topics discussed here?

I'd really love to be a part of online community where I can get responses
from other knowledgeable individuals that share the same interest.
If you have any suggestions, please let me know.
Appreciate it!
Quote
0 #88 mina starsiak 2022-04-18 04:40
This post will assist the internet visitors for building up new weblog
or even a weblog from start to end.
Quote
0 #89 รอย สัก รูป ขน นก 2022-04-18 09:50
Very nice post. I just stumbled upon your weblog and wished to say that I
have truly enjoyed surfing around your blog posts.

In any case I'll be subscribing to your rss feed and I hope you write again very soon!
Quote
0 #90 marketing da apple 2022-04-18 20:11
Hey I am so grateful I found your blog, I really found you by mistake, while I was looking on Google for something else,
Nonetheless I am here now and would just like to say many thanks
for a fantastic post and a all round exciting blog (I also love the theme/design), I don’t have time to go through it all at the moment
but I have bookmarked it and also added in your RSS feeds, so when I
have time I will be back to read much more, Please do keep up the great work.
Quote
0 #91 radiologinis tyrimas 2022-04-18 22:41
fantastic submit, very informative. I ponder why the other specialists of this
sector don't realize this. You should proceed your writing.
I am confident, you have a great readers' base already!
Quote
0 #92 fesleğenin anlamı 2022-04-19 02:55
Hmm it seems like your website ate my first comment (it was super
long) so I guess I'll just sum it up what I submitted and say,
I'm thoroughly enjoying your blog. I as well am an aspiring blog blogger but I'm still new to
the whole thing. Do you have any suggestions for rookie blog writers?
I'd definitely appreciate it.
Quote
0 #93 hadem daaden 2022-04-19 04:07
This website was... how do you say it? Relevant!!
Finally I've found something which helped me. Many thanks!
Quote
0 #94 gmail archiválás 2022-04-19 06:25
If some one wishes to be updated with newest technologies afterward he must be visit this site and be up to date
daily.
Quote
0 #95 bitcoingold 2022-04-19 08:37
Nice blog here! Also your web site loads up fast!
What web host are you using? Can I get your affiliate link to
your host? I wish my website loaded up as quickly as yours lol
Quote
0 #96 sidabro valymas 2022-04-19 19:42
I visit each day a few blogs and information sites to read content,
but this weblog gives quality based writing.
Quote
0 #97 קובוט 2022-04-20 02:40
With havin so much content do you ever run into any problems of plagorism or copyright infringement?
My website has a lot of exclusive content I've either
written myself or outsourced but it appears a lot of it is
popping it up all over the internet without my agreement. Do you know any ways to help prevent content from being ripped off?
I'd definitely appreciate it.
Quote
0 #98 dieta francese 2022-04-20 12:24
Its like you read my mind! You appear to know a lot about this, like
you wrote the e book in it or something. I think that you
could do with some percent to power the message
home a bit, however instead of that, that is wonderful
blog. An excellent read. I will certainly be back.
Quote
0 #99 ricette indonesiane 2022-04-20 20:51
Link exchange is nothing else however it is only placing the other
person's weblog link on your page at suitable place and other
person will also do similar in support of you.
Quote
0 #100 kb305583 2022-04-21 00:18
Hello would you mind letting me know which webhost you're
utilizing? I've loaded your blog in 3 completely different internet browsers and I
must say this blog loads a lot quicker then most.
Can you recommend a good internet hosting provider at a honest price?
Thanks, I appreciate it!
Quote
0 #101 mybrazilinfo.com 2022-04-21 13:43
I really like what you guys are usually up too.
This sort of clever work and reporting! Keep up the superb works guys I've incorporated you guys to my personal blogroll.
Quote
0 #102 instaforex мнения 2022-04-21 14:47
I just like the helpful information you supply to your articles.
I'll bookmark your weblog and test again here frequently.

I am moderately sure I will be informed a lot of new stuff right here!
Best of luck for the next!
Quote
0 #103 dimaraggi 2022-04-21 20:41
Neat blog! Is your theme custom made or did you download it from
somewhere? A theme like yours with a few simple adjustements would really make my blog shine.

Please let me know where you got your theme.
With thanks
Quote
0 #104 صور خيار 2022-04-22 02:27
Hello to every body, it's my first pay a quick visit of this weblog; this website consists of awesome and genuinely good material in favor of visitors.
Quote
0 #105 cagr מה זה 2022-04-22 04:57
Thankfulness to my father who stated to me regarding this blog, this weblog
is truly remarkable.
Quote
0 #106 download sv388 apk 2022-04-22 14:11
Hello! I could have sworn I've been to this blog before but after checking through some of the post I realized it's new to me.

Anyways, I'm definitely glad I found it and I'll be bookmarking and checking back often!
Quote
0 #107 ikigai nedir 2022-04-23 05:42
whoah this weblog is wonderful i love reading your articles.
Keep up the good work! You understand, lots
of individuals are searching round for this information, you could help them greatly.
Quote
0 #108 леярна 2022-04-23 21:25
My brother recommended I might like this website.
He was entirely right. This post actually made my day. You cann't imagine simply how much time I had spent for this information! Thanks!
Quote
0 #109 rosé bor kalória 2022-04-24 00:45
Hey would you mind stating which blog platform
you're working with? I'm going to start my own blog in the near future but I'm having a
hard time deciding between BlogEngine/Word press/B2evoluti on and Drupal.
The reason I ask is because your design seems different then most
blogs and I'm looking for something completely unique.
P.S My apologies for getting off-topic but I had to ask!
Quote
0 #110 สูตร gta 5 xbox 2022-04-24 01:47
I think the admin of this website is genuinely working hard for
his website, as here every information is quality based information.
Quote
0 #111 3d игри 2022-04-24 13:37
Heya i am for the first time here. I found this board and I find It truly useful & it helped
me out a lot. I hope to give something back and help others like you aided me.
Quote
0 #112 Sv388 2022-04-24 16:48
Undeniably believe that which you said. Your favorite
justification seemed to be on the net the simplest thing to
be aware of. I say to you, I certainly get annoyed while people think about worries that they just don't know about.
You managed to hit the nail upon the top as well as defined out
the whole thing without having side effect , people could
take a signal. Will likely be back to get more. Thanks
Quote
0 #113 alindog kahulugan 2022-04-24 23:36
Fine way of describing, and fastidious paragraph to obtain information regarding my presentation subject,
which i am going to present in college.
Quote
0 #114 Get More Info 2022-04-25 06:59
I enjoy, cause I found exactly what I was looking for.
You have ended my 4 day lengthy hunt! God Bless you man. Have a great
day. Bye
Quote
0 #115 Read From The Link 2022-04-25 07:47
Hi! Quick question that's entirely off topic. Do you know how to
make your site mobile friendly? My blog looks weird when browsing from my iphone.

I'm trying to find a template or plugin that might be able to resolve this problem.
If you have any recommendations , please share.
Many thanks!
Quote
0 #116 Read This Post Here 2022-04-26 04:49
This is a really good tip particularly to those fresh to the blogosphere.
Brief but very accurate info… Thank you for sharing this one.
A must read article!
Quote
0 #117 Going Here 2022-04-26 06:39
Right now it sounds like Drupal is the preferred blogging platform
out there right now. (from what I've read) Is that
what you're using on your blog?
Quote
0 #118 yarcgui 2022-04-26 06:44
I loved as much as you will receive carried out right here.
The sketch is tasteful, your authored subject matter stylish.
nonetheless, you command get got an nervousness over that you
wish be delivering the following. unwell unquestionably come more formerly again since
exactly the same nearly very often inside case you shield this hike.
Quote
0 #119 Websites 2022-04-26 07:21
Does your blog have a contact page? I'm having trouble locating it but, I'd
like to shoot you an e-mail. I've got some suggestions for your blog
you might be interested in hearing. Either way, great
site and I look forward to seeing it improve over time.
Quote
0 #120 mmorpg 2022-04-26 08:20
Wow, this paragraph is pleasant, my sister is analyzing these things, so I am going to inform her.
Quote
0 #121 beacon la gi 2022-04-26 11:49
Good day! I know this is somewhat off topic but I was wondering
which blog platform are you using for this website?

I'm getting sick and tired of Wordpress because I've had issues
with hackers and I'm looking at options for another platform.
I would be fantastic if you could point me in the direction of a good
platform.
Quote
0 #122 sv388 daftar 2022-04-26 13:22
Attractive section of content. I simply stumbled upon your web site and in accession capital
to say that I get actually enjoyed account your weblog posts.
Any way I'll be subscribing in your feeds or even I achievement you get
admission to consistently quickly.
Quote
0 #123 възпаление на езика 2022-04-27 01:53
Hi, after reading this remarkable post i am as well glad to share my know-how here
with mates.
Quote
0 #124 Available Here 2022-04-27 04:21
This post will help the internet people for creating new weblog or even a blog from start to end.
Quote
0 #125 Read More Here 2022-04-27 05:29
Saved as a favorite, I like your website!
Quote
0 #126 sv388 2022-04-27 06:43
Fine way of telling, and fastidious paragraph to get information concerning my presentation focus, which i
am going to convey in school.
Quote
0 #127 sabung ayam 24 jam 2022-04-27 07:02
This design is wicked! You definitely know how to keep a reader amused.
Between your wit and your videos, I was almost moved to start my own blog (well, almost...HaHa!) Wonderful job.
I really loved what you had to say, and more than that, how
you presented it. Too cool!
Quote
0 #128 prank nedir 2022-04-27 07:06
I have read so many content on the topic of the blogger
lovers however this post is truly a pleasant paragraph, keep it up.
Quote
0 #129 Visit Website 2022-04-27 10:55
Quality posts is the key to attract the viewers to visit
the web site, that's what this web site
is providing.
Quote
0 #130 иван дорн фото 2022-04-27 16:46
Hi there, its good post about media print, we all be familiar with media is a enormous source
of data.
Quote
0 #131 isyu ng aborsyon 2022-04-28 09:11
That is a very good tip particularly to those fresh to the blogosphere.
Brief but very precise information… Thank you for sharing this one.
A must read article!
Quote
0 #132 งานอดิเรกคืออะไร 2022-04-29 08:26
I am really loving the theme/design of your website. Do you ever
run into any web browser compatibility problems? A couple of
my blog visitors have complained about my website not operating correctly in Explorer
but looks great in Chrome. Do you have any advice to help
fix this problem?
Quote
0 #133 1матрешка 2022-04-29 16:44
It's appropriate time to make some plans for the long run and it's
time to be happy. I've read this submit and if I could I wish to counsel you few attention-grabb ing things or suggestions.
Maybe you could write next articles relating to this article.
I desire to learn more things approximately it!
Quote
0 #134 sv388 2022-04-30 11:03
Hello there! Do you know if they make any plugins
to protect against hackers? I'm kinda paranoid about losing everything I've worked hard on. Any suggestions?
Quote
0 #135 bella ciao 2022-04-30 23:39
Hi there all, here every one is sharing these kinds of experience, therefore it's pleasant to read
this web site, and I used to pay a visit this website all the time.
Quote
0 #136 unger uslar 2022-05-01 07:35
Your style is really unique in comparison to other folks I have read stuff
from. I appreciate you for posting when you have the opportunity, Guess
I will just book mark this page.
Quote
0 #137 mmorpg 2022-05-01 15:28
Wonderful work! That is the type of info that are supposed to be shared around the web.
Shame on the search engines for now not positioning
this publish higher! Come on over and discuss with my web site .
Thanks =)
Quote
0 #138 sv388 2022-05-02 16:32
Fantastic beat ! I would like to apprentice while you amend your web
site, how can i subscribe for a blog web site? The account helped me a acceptable deal.
I had been a little bit acquainted of this your broadcast provided bright clear idea
Quote
0 #139 atole negro 2022-05-03 13:55
You could certainly see your enthusiasm within the article
you write. The sector hopes for more passionate writers such as you who are not afraid to say how they believe.
At all times follow your heart.
Quote
0 #140 uninstaller ne demek 2022-05-03 18:12
Thanks for every other fantastic article. The place else may just anyone get that kind of information in such an ideal manner of
writing? I have a presentation subsequent week, and I'm at the search for such info.
Quote
0 #141 diane naiztat 2022-05-04 17:00
Hello! Quick question that's totally off topic.
Do you know how to make your site mobile friendly? My website
looks weird when browsing from my iphone 4. I'm trying to
find a template or plugin that might be able to fix this problem.
If you have any suggestions, please share. Many thanks!
Quote
0 #142 sv388 apk 2022-05-05 16:00
Hello, this weekend is good designed for me, as this occasion i am reading
this impressive informative article here at my residence.
Quote
0 #143 настольная игра риск 2022-05-06 12:16
Pretty! This was an incredibly wonderful article.
Thank you for supplying these details.
Quote
0 #144 anyo ng musika 2022-05-06 19:36
Having read this I thought it was very informative. I appreciate
you finding the time and effort to put this content together.
I once again find myself spending a lot of time both reading and leaving comments.
But so what, it was still worth it!
Quote
0 #145 abszolút monarchia 2022-05-06 20:33
Hi just wanted to give you a quick heads up and let you know a few of the pictures
aren't loading properly. I'm not sure why but I think its a linking issue.
I've tried it in two different internet browsers and both
show the same results.
Quote
0 #146 parisukat shape 2022-05-07 16:35
This is very interesting, You're a very skilled blogger.
I've joined your rss feed and look forward to seeking more of your
wonderful post. Also, I have shared your web site in my social networks!
Quote
0 #147 urinsystemet 2022-05-08 21:02
I feel that is one of the so much vital information for me.
And i'm happy studying your article. However should statement on few basic issues, The website taste
is perfect, the articles is truly great : D.

Just right activity, cheers
Quote
0 #148 flyff 2022-05-09 03:37
What's up everybody, here every one is sharing these
kinds of experience, therefore it's good to read this blog, and I used to go to see this webpage daily.
Quote
0 #149 urbanears スピーカー 2022-05-09 22:52
Fantastic post however , I was wanting to know if you could write a litte more on this subject?
I'd be very thankful if you could elaborate a little
bit further. Appreciate it!
Quote
0 #150 9208381649 2022-05-09 23:10
Someone necessarily lend a hand to make critically articles I might state.
This is the very first time I frequented your web page and so far?

I surprised with the analysis you made to make this actual publish amazing.
Excellent job!
Quote
0 #151 洋葱 浏览 器 2022-05-11 03:20
This design is wicked! You definitely know how to
keep a reader entertained. Between your wit and your videos, I was
almost moved to start my own blog (well, almost...HaHa!) Fantastic job.
I really enjoyed what you had to say, and more than that, how
you presented it. Too cool!
Quote
0 #152 sv388 2022-05-11 14:42
Hey there! I've been reading your website for a while
now and finally got the courage to go ahead and give you
a shout out from Austin Tx! Just wanted to say keep up the excellent work!
Quote
0 #153 mmorpg 2022-05-11 20:33
This text is invaluable. When can I find out more?
Quote
0 #154 sv388 daftar 2022-05-13 03:02
Hey I am so delighted I found your webpage, I really
found you by error, while I was looking on Yahoo for something else, Anyways I am here now and would just like to say cheers for a marvelous post and a all round entertaining blog
(I also love the theme/design), I don’t have time to read through it all at
the minute but I have saved it and also included your
RSS feeds, so when I have time I will be back to read a
great deal more, Please do keep up the great work.
Quote
0 #155 formasi 4-5-1 2022-05-13 11:46
I know this web page presents quality based articles or
reviews and extra data, is there any other web site which offers these stuff
in quality?
Quote
0 #156 sv388 apk 2022-05-13 19:55
I have read a few excellent stuff here. Definitely worth bookmarking for revisiting.
I wonder how so much effort you place to make this sort of fantastic informative website.
Quote
0 #157 sabung ayam 24 jam 2022-05-13 21:19
These are actually wonderful ideas in regarding blogging.
You have touched some good things here. Any way keep up wrinting.
Quote
0 #158 sv 388 2022-05-14 06:18
This is a very good tip especially to those new to the
blogosphere. Simple but very precise info… Thanks for sharing this one.
A must read post!
Quote
0 #159 Regalos originales 2022-05-14 15:13
Una te representa a ti, nombre novio/a y todo lo que aportas de tu ser y la otra te representa a ti, nombre novia/o y
todo lo que aportas también. Novio: "(Nombre de la Novia), a partir de ahora somos uno. La arena (color del novio) y la arena (color novia) representa lo que fuisteis y al vaciarla en el nuevo recipiente (se empieza a verter el resto de arena) representará lo que sois a partir de hoy, donde los granos de arena se mezclarán para no separarse nunca más, como vuestra nueva vida en común. Detalles Invitados Bautizo busca el tipo de detalle que quieras entregar a tus invitados, un bonito recuerdo que no les haga olvidar que tu bebé ha venido al mundo y que tendrá una bonita y larga vida llena de felicidad y de salud. Debido al significado tan potente que simboliza este ritual, normalmente son los novios los que aportan este elemento, ya que suele ser arena originaria de algún lugar especial o emblemático para la pareja, que les recuerda algún momento trascendental en sus vidas. Detalles de comunión para niños puedes aburrirte de mirar tantos y tantos detalles de comunión que tenemos para niños, puedes buscar algo que les sirva para el cole, un sí lo prefieres puedes optar por un pequeño juguete económico, sea lo que sea, seguro que a ellos les va a gustar.
Quote
0 #160 hüftfett 2022-05-14 15:44
For hottest news you have to pay a visit world wide web and on internet
I found this site as a best site for hottest updates.
Quote
0 #161 download sv388 apk 2022-05-15 04:50
Amazing! Its actually awesome post, I have got much clear idea
about from this post.
Quote
0 #162 daftar sv3888 2022-05-15 20:33
Do you have a spam issue on this website; I also am a blogger, and I was wondering your situation; many of us
have created some nice procedures and we are looking to trade strategies
with other folks, be sure to shoot me an e-mail if interested.
Quote
0 #163 dtmf kod çözücü 2022-05-16 11:11
There is certainly a lot to find out about this issue.
I really like all of the points you've made.
Quote
0 #164 spain-web.com 2022-05-16 13:27
I like reading a post that will make men and women think. Also, thanks for
allowing for me to comment!
Quote
0 #165 fire tv コントローラー ps3 2022-05-17 08:09
Great beat ! I wish to apprentice while you amend your web site, how can i subscribe
for a blog site? The account helped me a acceptable deal.
I had been a little bit acquainted of this your broadcast provided bright clear idea
Quote
-1 #166 appleby dental care 2022-05-17 20:22
I want to to thank you for this very good read!! I absolutely loved every
little bit of it. I've got you bookmarked to look at new stuff you post…
Quote
0 #167 קעקועים זמניים לחודש 2022-05-17 21:13
Having read this I believed it was really informative.

I appreciate you finding the time and energy to
put this content together. I once again find myself personally spending
a lot of time both reading and leaving comments. But so what,
it was still worthwhile!
Quote
0 #168 мазнини в тялото 2022-05-19 01:08
Hi, this weekend is good in favor of me, for the reason that this
moment i am reading this great informative paragraph
here at my residence.
Quote
0 #169 bmw 330e prestanda 2022-05-20 06:21
Aw, this was an extremely good post. Taking a few minutes and actual effort to generate a really good article… but what
can I say… I put things off a whole lot
and don't manage to get nearly anything done.
Quote
0 #170 pleuston 2022-05-21 17:56
I think the admin of this website is actually working hard in favor of his site,
for the reason that here every material is quality based material.
Quote
0 #171 אבצס במפשעה בהריון 2022-05-23 00:06
I enjoy what you guys are up too. This sort of clever work and reporting!

Keep up the superb works guys I've you guys to our blogroll.
Quote
0 #172 marahas kahulugan 2022-05-23 01:39
I like looking through an article that will make men and women think.
Also, thank you for allowing me to comment!
Quote
0 #173 mmorpg 2022-05-24 03:16
If some one wants to be updated with latest technologies afterward he
must be pay a visit this site and be up to date daily.
Quote
0 #174 geekbuying קופון 2022-05-25 09:32
When someone writes an post he/she retains the image of
a user in his/her brain that how a user can know it.
So that's why this post is perfect. Thanks!
Quote
0 #175 sv388 daftar 2022-05-25 15:54
Yes! Finally someone writes about sv388 daftar.
Quote
0 #176 kerri shaw 2022-05-26 20:17
Pretty! This has been an incredibly wonderful article.
Thanks for providing this information.
Quote
0 #177 Regalos originales 2022-05-27 08:31
Pueden ser jarrones de cristal, probetas o cualquier recipiente siempre que sea
de cristal y transparente. Ofrecemos también la arena en color rosa y
azul, en tarros de cristal y tapón de corcho (aprox.)250 grms.
De este modo, intentaremos evitar escoger fotografías con contrastes medios y altos que nos permitan reproducir todos los detalles, a diferencia de lo que ocurriría con imágenes oscuras, o
de tonos muy parecidos con pocas diferencias de matiz de color.
Es fundamental que la arena sea de diferente color para que, cada color, os
identifique a uno de vosotros. Todos los que nos hemos reunido hoy aquí, confiamos en que tendréis
el amor, la inteligencia, el valor y la sabiduría para gobernar vuestras
vidas. Ya sois muchos los que nos habéis
pedido que incluyamos en nuestro catálogo artículos de regalos baratos, Regalos sorprendentes para todos los eventos, para cumpleaños, para aniversarios, San Valentín, Santos, días especiales como el Día
del Padre, el Día de la madre… Si estáis buscando una ceremonia llena de significado para vuestro
día, la ceremonia de la arena es buena idea tanto para las bodas religiosas como civiles.
Quote
0 #178 mmorpg 2022-05-29 08:11
Hello, i feel that i noticed you visited my blog so i got here to go back the want?.I'm trying to to find things to enhance my site!I assume its good enough to
make use of some of your concepts!!
Quote
0 #179 Regalos originales 2022-05-30 11:58
Suele realizarse tras el intercambio de anillos.

Actualmente, en las ceremonias nupciales, este rito de la arena suele hacerse
después del intercambio de anillos y votos, como último acto de compromiso.
Por eso en este ritual el primer regalo que se hacen los ya maridos es una rosa.
La rosa ha tenido siempre un significado ligado al amor.
Los novios intercambian una rosa roja. 5. Para finalizar, los
novios vierten su arena al mismo tiempo, para conseguir una mezcla de colores en la parte superior
del jarrón. Luego entregará a cada miembro de la pareja un jarrón de arena de colores.
Cada uno irá añadiendo su arena al recipiente principal que
se irá combinando y formando ondas preciosas.
Una vez que los dos o más colores de arena se vierten en el frasco principal formando unas ondas muy bonitas, nunca
más se pueden separar. Una vez dicho todo esto ya si que
podemos decir…
Quote
0 #180 sv388.com 2022-06-01 20:08
I love it when folks get together and share opinions.
Great website, continue the good work!
Quote
0 #181 daftar akun sv388 2022-06-07 10:18
Definitely believe that which you stated. Your favorite justification seemed to be on the net the easiest thing to be
aware of. I say to you, I definitely get irked while people consider worries that they just do not know about.

You managed to hit the nail upon the top and also defined out the whole thing without having side-effects
, people can take a signal. Will likely be back to get more.
Thanks
Quote
0 #182 sv388.com 2022-06-07 11:10
Hello! Quick question that's entirely off topic.
Do you know how to make your site mobile friendly? My site looks weird when viewing from my iphone 4.
I'm trying to find a theme or plugin that might
be able to fix this problem. If you have any suggestions, please share.
With thanks!
Quote
0 #183 daftar sabung ayam 2022-06-07 11:32
Oh my goodness! Incredible article dude! Many thanks,
However I am having problems with your RSS. I don't know why I am unable to subscribe to it.
Is there anybody having similar RSS problems? Anybody who knows
the answer can you kindly respond? Thanks!!
Quote
0 #184 meizu pop ביקורת 2022-06-08 02:40
Fantastic site. A lot of useful information here.
I'm sending it to some friends ans also sharing in delicious.

And certainly, thanks on your sweat!
Quote
0 #185 sv388.com 2022-06-09 04:10
Ahaa, its pleasant discussion on the topic of this paragraph here at
this webpage, I have read all that, so at this time me also commenting here.
Quote
0 #186 sv388 2022-06-09 05:44
My brother recommended I might like this blog.
He was totally right. This post actually made my day.
You can not imagine just how much time I had spent for this information! Thanks!
Quote
0 #187 www sv388 apk 2022-06-09 08:54
I like what you guys are usually up too. This sort of clever work and exposure!

Keep up the great works guys I've incorporated you guys to our
blogroll.
Quote
0 #188 sv388 daftar 2022-06-09 09:06
Hi there, I check your new stuff daily. Your humoristic style is
awesome, keep doing what you're doing!
Quote
0 #189 my blog 2022-06-09 23:32
Hello there! I could have sworn I've been to your blog before but after looking
at many of the articles I realized it's new to me. Anyhow,
I'm definitely delighted I came across it and I'll be book-marking
it and checking back often!
Quote
0 #190 my blog 2022-06-09 23:34
Excellent beat ! I would like to apprentice whilst you amend your website, how can i subscribe for a
weblog web site? The account aided me a applicable deal.
I had been a little bit acquainted of this your broadcast provided brilliant transparent concept
Quote
0 #191 Zachary 2022-06-11 20:25
Hey very interesting blog!
Quote
0 #192 my blog 2022-06-18 09:52
Good day! This is my first visit to your blog!
We are a team of volunteers and starting a new initiative
in a community in the same niche. Your blog provided us valuable information to work on. You have done a marvellous job!
Quote
0 #193 sv388 2022-06-20 08:37
Right away I am going to do my breakfast, once having my breakfast coming
again to read additional news.
Quote
0 #194 my blog 2022-06-21 05:02
Thanks for another informative web site. The place else may I am getting that type of information written in such
a perfect manner? I've a challenge that I'm simply now running on, and
I have been at the glance out for such info.
Quote
0 #195 mmorpg 2022-07-02 01:59
Terrific article! That is the kind of info that are supposed to
be shared across the web. Disgrace on Google for now not positioning
this put up upper! Come on over and consult with my site .
Thank you =)
Quote
0 #196 my blog 2022-07-10 15:36
Fantastic goods from you, man. I have understand your stuff previous to and you
are just extremely great. I actually like what you have acquired here,
certainly like what you're saying and the way in which you say it.
You make it enjoyable and you still care for to keep
it smart. I can't wait to read far more from you. This is actually a great site.
Quote
0 #197 my blog 2022-07-15 20:42
It's fantastic that you are getting ideas from this piece of writing as well as from our discussion made here.
Quote
0 #198 my blog 2022-07-15 23:05
This is a very good tip especially to those fresh to
the blogosphere. Brief but very precise information…
Appreciate your sharing this one. A must read post!
Quote
0 #199 mmorpg 2022-07-15 23:22
I was wondering if you ever considered changing the structure of your blog?

Its very well written; I love what youve got to say. But maybe
you could a little more in the way of content so people could connect with it
better. Youve got an awful lot of text for only having 1 or two pictures.
Maybe you could space it out better?
Quote
0 #200 sv388 apk 2022-07-20 11:00
My partner and I stumbled over here coming from a different web address and thought I may as well check things out.

I like what I see so now i'm following you. Look forward
to looking into your web page for a second time.
Quote
0 #201 my blog 2022-07-22 19:16
Hi! Do you know if they make any plugins to protect
against hackers? I'm kinda paranoid about losing everything I've worked hard on. Any tips?
Quote
0 #202 my blog 2022-07-24 00:02
If some one needs to be updated with most recent technologies after that he must
be visit this site and be up to date all the time.
Quote
0 #203 link daftar sv388 2022-07-29 21:34
I constantly spent my half an hour to read this web site's posts all the
time along with a cup of coffee.
Quote
0 #204 my blog 2022-07-30 03:40
Post writing is also a excitement, if you know then you can write otherwise it is complex to write.
Quote
0 #205 daftar sv388 2022-08-04 00:51
Awesome! Its truly amazing article, I have got much clear idea regarding from
this piece of writing.
Quote
0 #206 sv 388 2022-08-04 11:31
I got this site from my pal who informed me about this web page and
at the moment this time I am browsing this site and reading very informative articles at this place.
Quote
0 #207 sv388 download 2022-08-04 18:39
Pretty! This has been an incredibly wonderful article.
Thank you for supplying this information.
Quote
0 #208 sv388.com 2022-08-04 19:17
It's going to be end of mine day, however before
ending I am reading this great paragraph to increase my experience.
Quote
0 #209 my blog 2022-08-13 19:49
Its like you learn my mind! You seem to understand a lot about this, like you wrote the
e-book in it or something. I feel that you just could do with some p.c.
to pressure the message home a little bit, but instead of that,
this is fantastic blog. A great read. I'll certainly be
back.
Quote
0 #210 my blog 2022-08-26 05:44
Thank you for another fantastic post. The place else may anybody get that type of info in such a perfect approach of writing?
I've a presentation subsequent week, and I am at the search
for such info.
Quote
0 #211 flyff 2022-08-29 03:01
Thanks , I've recently been looking for info about this subject for a while and yours is
the greatest I have came upon till now. However, what concerning the conclusion? Are you positive
concerning the source?
Quote
0 #212 mmorpg 2022-08-30 03:38
My partner and I stumbled over here by a different page and thought I
should check things out. I like what I see so now i am following
you. Look forward to looking into your web page again.
Quote
0 #213 my blog 2022-09-18 16:17
Hey There. I found your blog using msn. This is an extremely well written article.

I'll make sure to bookmark it and return to read more of
your useful information. Thanks for the post. I'll
definitely return.
Quote

Add comment


Security code
Refresh

Search Trainings

Fully verifiable testimonials

Apps2Fusion - Event List

<<  Apr 2024  >>
 Mon  Tue  Wed  Thu  Fri  Sat  Sun 
  1  2  3  4  5  6  7
  8  91011121314
15161718192021
22232425262728
2930     

Enquire For Training

Related Items

Fusion Training Packages

Get Email Updates


Powered by Google FeedBurner