Login
Register

Home

Trainings

Fusion Blog

EBS Blog

Authors

CONTACT US

Authors
  • 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

×

Warning

JUser: :_load: Unable to load user with ID: 872

Creating custom Web ADI Integrators.
Using custom Web-ADI integrators, you can create custom excel spreadsheets that can be integrated with Oracle Applications Menus. The structure of this excel will be as per your business needs. This excel will have fields validated by LOV, DropDown Lists etc. The data entered into this excel will then be further validated and gives errors in Excel. Once the valid values entered the data will be loaded into tables via PL/SQL. This is a great feature in Oracle Applications, and many of the functional & business users would love to have this functionality. Using this article, you will be able to implement a custom web-adi integrator to meet the data entry requirements of your business users via excel screen. Standard Web ADI gives General Ledger Journals for 11.0 and 11i.

This document explains about how to create custom integrators, and how to integrator with the functions. After added the custom integrators how to use the custom integrators and insert the data into database through the integrators. This document assumes that the reader has a basic knowledge of PL/SQL procedure and functions.


Background
Web ADI gives functionality with desktop productivity applications to create a more effective working environment.
Traditional enterprise application users can leverage productivity tools such as Microsoft Excel to complete their tasks. This proves helpful when users have a large number of records to enter into the system. Rather than creating records row by row in an HTML form or using a back-end data loader, a formatted Excel worksheet can be created that allows the free-form entry of data - all Excel functionality such as copy/paste, fill-down and data import. And extra functionalities like drop down, List of values are available to help one quickly create, view and edit Information.
Users are made more productive, yet the accuracy of their work is not compromised. All business rules these users encounter in the main application are enforced within the Web ADI worksheet. For example, if the wrong cost center is entered for a journal, the data will not be "committed" to the database; a message will be returned directly to the worksheet where the invalid data exists; the user can then quickly make the correction and save their Excel data to Oracle General Ledger. If a column has more values you can start the search from excel sheet, the results you can get in a OAFramework page and select the value will return to excel sheet.
Web ADI uses the Internet Computing Architecture (ICA). This means no client side install and great performance over WAN, VPN and even dial up connections.

Steps:

1) Develop an Integrator for your own excel template and assign it to the user.

2) User login and launch the excel from Web ADI and enters the values in excel directly (he can enter the values, choose the values from Poplist or List of Values.

3) Choose oracle->upload option in excel and upload the data into the database. When the data gets uploads you can write a PL/SQL to insert the data directly into database or you can do some process of the entered data and then update the database table accordingly.

This document should be used to develop custom integrators. Custom integratos will be used for a case of having a requirement of launching an excel templete from apps and fill the values in the excel file and we will get an option to upload the values into the database table. At the time of uploading the data we can define that where the data should go and we can manupulate the entered data and insert into the database table.


.
Creation of the custom integrator
Usage of custom integrator
Custom integrator will be used to upload the excel values into database tables.
For Example the user wants to upload the data from an excel sheet with a formatted way, and when it uploads the data should be validated and should be returned back if any error occurs or data should do some other calculation with other tables, that can be done.
The template excel can have defaulted values, LOV values and POPList values to select the values.
Once we have the custom integrator we can define as a function and assign to the FND_USER.


Steps to create the custom integrator
.
Step 1. Using bne_integrator_utils.CREATE_INTEGRATOR package create the custom integrator
Step 2. Using bne_integrator_utils.CREATE_INTERFACE_FOR_API package create the interface for the created integrator.
Step 3. Using bne_integrator_utils.CREATE_DEFAULT_LAYOUT package create the default layout for the created integrator with the interface.
Step 4. Adding POPList for the required columns.
Step 5. Change the excel column prompts, by default the column headers will come as Database column name.


Now lets see the above steps in detail
Step 1. Create Integrator
Using the standard package bne_integrator_utils.CREATE_INTEGRATOR we can create the integrator, with the following parameters,
PROCEDURE CREATE_INTEGRATOR
(P_APPLICATION_ID IN NUMBER,
P_OBJECT_CODE IN VARCHAR2,
P_INTEGRATOR_USER_NAME IN VARCHAR2,
P_LANGUAGE IN VARCHAR2,
P_SOURCE_LANGUAGE IN VARCHAR2,
P_USER_ID IN NUMBER,
P_INTEGRATOR_CODE OUT NOCOPY VARCHAR2);
P_APPLICATION_ID
--Is the application Id of the application where we are going to create the integrator.
--Use the query, SELECT application_id FROM fnd_application WHERE application_short_name = '<CUSTOM_SHORT_NAME>';
P_OBJECT_CODE – Integrator Code, which will be used internally.
P_INTEGRATOR_USER_NAME – Integartor Name, which will be displayed in the application.
P_LANGUAGE, P_SOURCE_LANGUAGE are the language codes, (US for english).
P_USER_ID – FND_USER id, (0 for sysadmin)
P_INTEGRATOR_CODE – Return parameter, which will be used for the furter steps.



Step 2. Create Interface
PROCEDURE CREATE_INTERFACE_FOR_API
(
P_APPLICATION_ID IN NUMBER,
P_OBJECT_CODE IN VARCHAR2,
P_INTEGRATOR_CODE IN VARCHAR2,
P_API_PACKAGE_NAME IN VARCHAR2,
P_API_PROCEDURE_NAME IN VARCHAR2,
P_INTERFACE_USER_NAME IN VARCHAR2,
P_PARAM_LIST_NAME IN VARCHAR2,
P_API_TYPE IN VARCHAR2,
P_API_RETURN_TYPE IN VARCHAR2 DEFAULT NULL,
P_UPLOAD_TYPE IN NUMBER,
P_LANGUAGE IN VARCHAR2,
P_SOURCE_LANG IN VARCHAR2,
P_USER_ID IN NUMBER,
P_PARAM_LIST_CODE OUT NOCOPY VARCHAR2,
P_INTERFACE_CODE OUT NOCOPY VARCHAR2);

P_APPLICATION_ID – Application Id, which we are creating the custom integrator.
P_OBJECT_CODE – Interface Code for internal use.
P_INTEGRATOR_CODE – Code for the integrator, which we created in the step1.
P_API_PACKAGE_NAME - When the user uploads the excel sheet this package being called.
P_API_PROCEDURE_NAME - When the user uploads the excel sheet this procedure being called.
In this procedure the columns will be mapped with the excel sheet. From this procedure the data needs to be inserted into the database table.
P_INTERFACE_USER_NAME – Name of the Interface, which we are creating now.
P_PARAM_LIST_NAME - Parameter list.
P_API_TYPE - API type, PROCEDURE or FUNCTION.
P_API_RETURN_TYPE - What is being returned from the API
P_UPLOAD_TYPE
Type of upload, (Set to 0, 1 or 2. 0 = Custom Upload Type (uses
BNE_INTERFACES_B.UPLOAD_OBJ_NAME to obtain class name to load). 1= upload to Table.
2 = Upload to PL/SQL API)

P_LANGUAGE, P_SOURCE_LANG - Language being used in the upload(US-English)
P_USER_ID - User Id for the reference (0 – Sysadmin)
P_PARAM_LIST_CODE - Return code for the parameter list.
P_INTERFACE_CODE - Return code for the created Integrator.





Step 3. Creating default layout.
PROCEDURE CREATE_DEFAULT_LAYOUT
(
P_APPLICATION_ID IN NUMBER,
P_OBJECT_CODE IN VARCHAR2,
P_INTEGRATOR_CODE IN VARCHAR2,
P_INTERFACE_CODE IN VARCHAR2,
P_USER_ID IN NUMBER,
P_FORCE IN BOOLEAN,
P_ALL_COLUMNS IN BOOLEAN,
P_LAYOUT_CODE IN OUT NOCOPY VARCHAR2);
P_APPLICATION_ID –Application Id, which we are creating the custom integrator.
P_OBJECT_CODE – Default Layout code, for internal use.
P_INTEGRATOR_CODE - Integrator code which we have created in the step1.
P_INTERFACE_CODE - Interface code, which we have created in the step2.
P_USER_ID - User Id (0 – Sysadmin)
P_FORCE - If the layout name exists over write or error out(true or false)..
P_ALL_COLUMNS - Layout to be created for all the columns (true or false).
P_LAYOUT_CODE - Out parameter for the created default layout.





Step 4. Creating POPLIST for the required columns.
Now we are ready with the custom integrator, if we want to create POPLIST, User hint for any of the created integrator columns, use the following sql,

Create POPLIST for a column UNIT_OF_MEASURE
UPDATE bne_interface_cols_b
SET val_id_col = 'UNIT_OF_MEASURE',
val_mean_col = 'UNIT_OF_MEASURE',
val_type = 'TABLE',
lov_type = 'POPLIST',
val_obj_name = 'MTL_UNITS_OF_MEASURE_VL',
val_addl_w_c = 'DISABLE_DATE > sysdate or DISABLE_DATE is null'
WHERE interface_col_name = 'P_UNIT_OF_MEASURE'
AND application_id = lc_application_id_result
AND interface_code = lc_interface_code;
val_obj_name is the table name where the values should come from and val_addl_w_c is the where clause for the POPLIST restriction.

Check bne_integrator_utils for more details about creating LOV, Calender LOV and Chapter 5 of Web ADI Integrator Developer’s Guide for Java LOV.

Adding User Hints
UPDATE bne_interface_cols_tl
SET user_hint = '*(Eg.Miscellaneous)'
WHERE prompt_left IN ('CATEGORY_NAME')
AND application_id = <CUSTOM_APPLICATION_ID>
AND interface_code = <CREATED_INTERFACE_CODE>;



Step 5. Changing the PROMPTS for the columns
UPDATE bne_interface_cols_tl
SET prompt_above = 'Item Description',
prompt_left = 'Item Description'
WHERE prompt_above = 'ITEM_DESCRIPTION'
AND application_id = lc_application_id_result
AND interface_code = lc_interface_code;
bne_interface_cols_tl, bne_interface_cols_b are the main tables used for the above changes and for holding integrators info.




Prerequisities.
The following are the prerequisites for Web ADI (11i.BNE.D):
One of the following operating systems must be installed on the client PC
Windows ME
Windows NT 4.0 with Service Pack 3 or later
Windows 2000
Windows XP
Windows 98
Windows Server 2003

Internet Explorer 5.0 or greater installed on your machine.
Set the browser security settings to allow a document to be created on the desktop
Navigate to Tools -> Internet Options and choose the Security tab
Select Local Intranet and choose the Custom Level button
Set the option ‘Initialize and script Active X controls not marked as safe’ to Prompt

One of the following versions of Excel is required if using the General Ledger - Journals Integrator:
Microsoft Excel 97
Microsoft Excel 2000
Microsoft Excel XP
Microsoft Office 2003


For Web ADI to work with Excel XP and 2003 users will have to:
Open Excel
Go to Tools -> Macro -> Security -> Trusted Sources
Check the "Trust access to Visual Basic Project"


Setting the layout and create the Integrator as a function.
We can create our own layout for the excel sheet, Please check the following screen shots. To do the following steps the user should have System Adminstrator responsibility and Web ADI Responsibility or Web ADI’s Main menu.


Manual Setup for Created Integrator Layout and Create Document Function:
This document describes about creating Required Layout from the existing Default Layout. Login into the instance and select the Web ADI responsibility.

Click Define Layout, and select our XXT NCR Upload integrator in the poplist.
You can see the Integrator, which we have created just now in the poplist.

You will get the existing default Layout; take a copy of the layout by clicking the Duplicate button.

Click Update button for the newly copied layout(Eg. NCR Catalog Upload6).

Click Continue.

That will display all the columns available in the table.

Select only required columns(which will be in UnitCap) , the following columns needs to be put into Header Placement.

1) Please enter ----(User Hint)
2)
--------------------(Header Underline)
3)
Currency
4)
Exchange Rate
5)
Requisition Description

 

And Set Default Value for

1) Currency as
SELECT
gsb.currency_code
FROM gl_sets_of_books gsb, hr_operating_units hou
WHERE gsb.set_of_books_id = hou.set_of_books_id
AND
hou.organization_id = fnd_profile.VALUE ('ORG_ID')

 

And Default Type as SQL
And then click apply.


Now our required layout is ready.


Assigning “Create Document” function to the Menu Tejari POR NCR Catalog Upload (Code: XXT_NCR_UPLOAD_MENU)

The following screenshots will give the steps to create the function and shortcut to create the NCR Upload function.

Click Create Document. 

 

 

You will get viewer as Excel 2000, Click Next. And the next will give option to select the Integrator, select our custom integrator (Eg. XXT NCR Upload)



 

 

Next screen will give the Layout selection, and you will get the newly defined Layout. Select the newly created layout and click next.

 


 

Select None as the Content. And click next. The next screen will give the Summary of the current Create Document.

 

Click on save to save the defined Create Documents so that we can create the Function and the shortcut.

In FND_FORM_FUNCTIONS you can get the newly created function, the FORM_NAME will be BNE_NCR TEMPLATE – 8 (All in caps and prefixed with BNE_), This needs to be added with the custom menu Tejari POR NCR Catalog Upload

(Code: XXT_NCR_UPLOAD_MENU)

You can use Functional Administrator Resonsponsibility (Self Service: Core Services -> Menus) or System Administrator(Forms: Application ->Menu)

 

Now the Menu XXT: NCR Web ADI Integrators Menu will have the functions of Catalog Upload, Catalog Update.

Now you can remove the Web ADI prompt in the menu XXT: NCR Web ADI Integrators Menu, so that users will not see the Web ADI Functions.

 

You can download the sample PL/SQL used for this article from link below
http://www.apps2fusion.com/training_demo/kalimuthu/web-adi/XXT_NCR_UPLOAD_PKG.sql

 


Comments   

0 #1 Anton Alexeyev 2008-07-15 05:20
Intresting article, but are u able to create integrator with LOVs like in standart integrators?
Quote
0 #2 Kalimuthu Vellaichamy 2008-07-15 06:27
Yes, We can create LOV's like standard integrators. There are two types of LOV.
Once is just a simple where clause that can be done without using a java file,
If you want to build a complex query for the search you can do it with the help of java files.

Thanks.

With Regards,
Kali.
Quote
0 #3 Anton Alexeyev 2008-07-15 22:55
Java? nice. I use standart tools for it, like inserting into bne_attributes, bne_param_list_ items and etc for create LOVs like in a seeded "Create integrator" integrator.
But it's have only 3 fields for data(like Lookup_code, Meaning, Description), but i don't need to create a Java class and i'm able to create integrator with simple pl/sql call like:
p_lov_list :=
xxbne_cols_arra y_t (xxbne_cols_t ('P_TEST_ID' -- NAME_package
,'TEST_ID' -- NAME_view
,'test_id' -- CAPTION
,'pay_element_t ypes_v a' -- obj_name
,'' --addl_w_c
,'ELEMENT_TYPE_ ID' --id_col
,'ELEMENT_NAME' --mean_col
,'DESCRIPTION' --desc_col
)
,xxbne_cols_t ('P_TEXT1' -- NAME_package
,'TEXT1' -- NAME_view
,'Text1' -- CAPTION
,'FND_APPLICATI ON_VL' -- obj_name
,'' --addl_w_c
,'APPLICATION_S HORT_NAME' --id_col
,'APPLICATION_N AME' --mean_col
,'' --desc_col
)
,xxbne_cols_t ('P_DATE1' -- NAME_package
,'DATE1' -- NAME_view
,'Date1' -- CAPTION
,'' -- obj_name
,''
--addl_w_c
, '' --id_col
,'' --mean_col
,'' --desc_col
)
);
xxbne_integrato r_utils.create_ integrator (p_object_code
,p_integrator_u ser_name
,p_api_package_ name
,p_api_procedur e_name
,p_view_name
,p_lov_list
);

And i have a question. Are u able to create LOV with more then 3 columns??
Quote
0 #4 Kalimuthu Vellaichamy 2008-07-16 08:35
Anton,

The question is, Can I have more than 3 LOVs in the excel?

Thanks.

With Regards,
Kali.
Quote
0 #5 Anton Alexeyev 2008-07-16 08:46
Nope can u have a more then 3 columns in ur Java functio based LOV?
Quote
0 #6 AboutOracleApps 2008-07-16 22:03
Great article.


--Ch ris Martin
Quote
0 #7 ram c 2008-07-17 03:49
I want to migrate 11.5.10 to R12 for GL Daily rates?
Do we need to create custom Integrator or is there any integartor available in R12?
We I just have a gray area on the ADI stuffs.
It would be great if suggest me on same.

Regards,
Ram
Quote
0 #8 rekaprasannakumar 2008-07-21 12:05
Can we use this feature to load AP Invoices using Web ADI?
Quote
0 #9 Tubai 2008-07-25 04:07
Great article. It seems veru helpful to me. I am facing the following problem while developing a custom integrator. Please help me in this regard. This is urgent.

I am developing a custom integrator for uploading Bills of Material details. After creating the custom integrator following the steps as given in your article, i defined layout for the new custom integrator. But when I click on 'Create Document' in Oracle Web ADI responsibility, the custom integrator is not visible in the select integrator drop-down list. So I am unable to create the document.

Plea se help.
Quote
0 #10 Kali 2008-07-25 04:23
Hi,

Can you please check the entries in the Web ADI tables, for integrator and interface.

Wit h Regards,
Kali.
Quote
0 #11 Kali 2008-07-25 23:18
Hi,

You can check the created Integrator, and Interface from the following tables.

Select * From BNE_INTEGRATORS _B order by creation_date desc

Select * From BNE_INTEGRATORS _TL order by creation_date desc

Select * From BNE_INTERFACES_ B order by creation_date desc

Select * From BNE_INTERFACES_ TL order by creation_date desc

If still you are facing issues to create the integrator, please give me your email id, I can give you a sample script which is working fine.

Thanks.

With Regards,
Kali.
OSSI.z
Quote
0 #12 Kali 2008-07-25 23:19
Hi,

I never tried to create more than 2 java function based LOVs.
You are facing any issues, when you are creating the fourth LOV?

Thanks.

With Regards,
Kali.
OSSI.
Quote
0 #13 Kali 2008-07-25 23:21
rekaprasannakum ar ,

I am not aware of the functionality of the AP invoices, if it is a excel sheet. You can define a custom integrator which is of the same format
and upload it.

Before create custom integrator, check the standard integrators, there are many inbuilt integrators which will support the standard export.

Thanks .

With Regards,
Kali.
OSSI.
Quote
0 #14 somisettyramana 2008-07-28 14:13
Hi,
Very good article.
Thank you very much.
Can you please tell how to create java based LOV. Please email the sample adi scripts to .

Thanking you,
Ramana.
Quote
0 #15 somisettyramana 2008-07-29 07:14
Hi,
Can you please suggest:
1) How the message text will be populated in the excel sheet after the uploading process, if we are calling API for the interface.
2) In the jounrals upload , we will get one screen where we can select options like all lines to upload. How to enable this for custom integrator.
3) If we want to provide two options like validate the data , upload the data, validate & upload the data. How do we achieve this. In case of validate , which api will be called.

Thanks ,
Ramana.
Quote
0 #16 Kali 2008-07-29 09:18
Ramana,

I sent the sample scripts and the developer guide for Web ADI.

That gives more info.

Thanks.

With Regards,
Kali.
Quote
0 #17 Anton Alexeyev 2008-07-29 23:06
somisettyramana
1. Just raise a message and u will see it after the uploading process.
2. I have by default in my ingerators, but i create it with my own script.
3. U mast use same package for validation, in case it's not seccided just Raise a error and u will see it in ur integrator.

Ka li
Hey, can u email me this java Based Lov sample too plz??
W wiil gave u may package for integrator creation.
Quote
0 #18 Rehan Yusuf 2008-08-04 01:02
Hello Kali,

Thanks for this article. I've tried building a custom integrator and it works just fine, however, it only takes the data from my XLS to a destination table in the Database. What if I wanted to process this data using concurrent processing once I have staged it ?
A point of reference to what I'm talking about would be the "Fact Loader" integrator in Enterprise Profitability Manager. The algorithm for the same is like this:
1.) User enters data into XLS
2.) User uploads data from XLS by selecting the "Upload" function from the Oracle menu
3.) Data is loaded to the open interface table
4.) Integrator also calls a seeded Open Interface Program to load data to base tables
5.) Integrator shows the request ID of the submitted request to the user.

Half of the above algorithm is done, if you could please provide inputs as to how we could do the second half ?
Also, could you please direct me as to where I can find the BNE developer guide ?

Thanks and regards,
Rehan Yusuf
Quote
0 #19 Kali 2008-08-04 01:51
Hi Rehan,

You want to start a concurrent program once the Web ADI excel uploads the data into the interface table?
Please check the "Defining an Importer" in the developer's guide.
I don't remember the metalink note number, give me your email id.
I will send you the document.

Than ks.

Give
Quote
0 #20 Shailaja 2008-08-05 13:02
I want to display error message in the "Messages" column in the spreadsheet for each data row which had error ..can we even do this ?. We have to do some custom validations and if not validated display some custom message..
I am using Custom Procedure which inserts data to my custom table. How do i this ?
Quote
0 #21 Shailaja 2008-08-06 18:06
Please can you send me the document too..
How do we determine the End of File..Once it has finished parsing through all the rows I have to total the amount column in spreadsheet and make sure total is greater than 0. If greater than 0 then only commit all the rows else rollback..
How can I do this ?
Quote
0 #22 Kali 2008-08-06 20:40
Hi,

>>I want to display error message in the "Messages" column in the spreadsheet for each data row which had error ..can we even do this ?.
>>We have to do
>>some custom validations and if not validated display some custom message..
>>I am using Custom Procedure which inserts data to my custom table. How do i this ?

I am not sure how to do this, But the developer guide will give more idea.
Give me your maili id, I will send you the doc.

>>How do we determine the End of File..Once it has finished parsing through all the rows I have to total the amount
>>column in spreadsheet and make
>>sure total is greater than 0. If greater than 0 then only commit all the rows else rollback..

Thi s can be done at your procedure, You can have a global variable and count every time of insert and if the total is
Quote
0 #23 Anton Alexeyev 2008-08-06 23:06
>I want to display error message in the "Messages" column in the spreadsheet for each data row which had error ..can we even do this ?. We have to do some custom >validations and if not validated display some custom message..
>I am using Custom Procedure which inserts data to my custom table. How do i this ?

Just Raise a custom Error message in ur package -- and u will get in ur Message column
Quote
0 #24 Shailaja 2008-08-07 12:47
Thanks Kali. my email id is
Quote
0 #25 Kali 2008-08-07 20:31
>>Thanks Kali. my email id is
'>
I sent the document to you.

Please check.

Thanks.

With Regards,
Kali.
Quote
0 #26 vivien 2008-08-15 13:49
Hi Kali, great article and subject.

Can you also email me the webadi developer guide?

Any api integrator example would be greatly appreciated also, I'm on EBS 11.5.10.2 and my BNE_INTEGRATOR_ UTILS header line is:

/* $Header: bneintgs.pls 115.59.1013.3 2006/07/26 04:04:19 dagroves noship $ */
Quote
0 #27 Kali 2008-08-15 13:58
Hi

Can you give your email id.

Thanks.

W ith Regards,
Kali.
Quote
0 #28 vivien 2008-08-15 14:05
yes, my email id is:
Quote
0 #29 Pri 2008-08-18 03:08
I want to display the error messages in Messages column of Web Adi Excel. How can we do this?

Can u mail me sample script for this & a copy of the web adi developers's guide to ?
Quote
0 #30 somisettyramana 2008-08-18 15:43
Hi,
Can you please provide your gmail id. I lost it.

Thanks,
Ra mana.
Quote
0 #31 Kali 2008-08-18 20:21
Sent a test mail to you.

With Regards,
Kali.
OSSI.
Quote
0 #32 Anton Alexeyev 2008-08-19 05:46
Hey m8s.
Can anyone tell me how can i create a read only or hidded column in my integrator??
Quote
0 #33 Anton Alexeyev 2008-08-19 06:17
I was found u can control it in bne_interface_c ols_b table.
But it's work realy bad -- if u setting up a Read_only flag -- it's clear it after user editing.
Quote
0 #34 Pri 2008-08-22 01:32
I am developing a WEB ADI integrator for Bill of material upload. The integrator will populate the data in a temporary table, validate it & write the error messages back to the table . On succesful validation the data will be sent to interface tables & then to base table.

The integrator uses a procedure & sends data to the procedure. Procedure then loads data in temporary table & does the rest of work.

To do this i need to know the following thinngs:

1. How i can track the line no of Excel?
2. How do I know that all data are loaded in temporaray table because the validation & rest of work will be done once all the rows of excel are transfered to temporaray table. i.e. How do i determine the End of File in Excel?
3. How do i write error messages from the table to the excel in web adi?

Any help will be appreciated. Please send me the sample scripts & web adi developer guide at ,.
Quote
+1 #35 Sneha 2008-08-29 18:14
Im printing error messages using the RAISE APPLICATION ERROR in the Messages Column of webadi upload spreadsheet. However the error message is getting truncated to 100 characters. Does anyone know why ?
eg: RAISE_APPLICATI ON_ERROR(-20001 ,V_MESSAGE);

I saw in oracle that v_message length can be 2048 bytes (512 characters)..th en why is it truncating it

Thanks
Quote
+1 #36 Rehan Yusuf 2008-09-12 16:02
Hello Kali,

Thanks for your response, you can send me the details on this id :
Your efforts are much appreciated !

regards,
Reh an Yusuf
Quote
0 #37 Rajteva 2008-09-24 11:33
Hi Kali,

Can you please email me the web adi developer guide to .

Thanks

Raj
---------
Quote
0 #38 Rajteva 2008-09-24 14:18
Hi Kali,

Can you please email me the web adi developer guide to .

Thanks

Raj
---------
Quote
0 #39 veni 2008-09-29 16:46
Hi can i have the web adi developers's and if possible script to display custom error messages in message column in excel. My email id is

Thanks in advance
veni
Quote
0 #40 Jake 2008-10-14 12:12
Can I also get a copy of the developers guide? Can't find it anywhere on-line. Thanks.
Quote
0 #41 Rosemarie Vitales 2008-10-14 15:09
Can I also get a copy of the developer's guide. My email is
Quote
0 #42 Priscila Moreira 2008-10-17 10:55
Could you send me a copy of he developer's guide too.
My e-mail:
Thank´s

Prisc ila Moreira
Quote
0 #43 Jerry 2008-10-27 04:03
Hi Kali,
Now, I used Oracle R12, when i tried to create document with standard Integrator in Oracle, there is only few integrator that i can use, and i've allready check table BNE_INTEGRATORS _VL and there is many integrator in the data. Could you give me a clue, where i must setup so i can use general integrator which oracle allready has.
thq
my email is
Quote
0 #44 GeorgeS 2008-10-27 15:31
Hi Kali,
Excellent article. Please send me the WebADI Developers Guide.

My email:

Thanks,
Georg e
Quote
0 #45 sudhir 2008-10-29 06:34
Hi Kali,

Thanks for the article, its very helpful.

I have following questions?
1. When i use the seeded general ledger journals integrator to upload the data, there are fields in the template where list of values are available. Where you do the configuration to attach an lov to the field.
2.Is it possible to show an example where the data is downloaded from the system, corrections are made and uploaded back.
3.Please send me the webADI developers guide

Thanks for the help.
Sudhir
Quote
0 #46 Venkatesh 2008-11-03 21:29
Hi Kali,

Can you please mail me the developer guide document?
.

Thanks a lot.
Navin.
Quote
+1 #47 Venkatesh 2008-11-03 21:32
Kali,

Can you send sample scripts for updating the excel sheet with error messages?

Than ks.

Navin.
Quote
0 #48 Abhishek1 2008-11-13 04:09
Hi Kali,

Please send me the user guide on my email address .

Thanks much!
Abhishek
Quote
0 #49 Geethana 2008-11-17 03:31
Hi Kali,
Please send me the ADI developer guide and the sample script to my e-mail address

Thanks a lot!

Geetha
Quote
0 #50 Sneha 2008-11-18 14:32
Does Poplist work with Excel 97 for webadi ? does anyone know ? I cant test this because I dont have Excel 97 in my machine.
Quote
0 #51 Lokesh 2008-11-21 14:17
Hi Sneha,

Are you ablel raise the error message with more than 100 characters.

if so can you pls share with us.
Quote
0 #52 Sneha 2008-11-25 17:15
No. im still not able to error messages more than 100 chars..Our user is ok with it. But as of now dont think there is any solution.
Quote
0 #53 Dillibabu 2008-11-26 03:18
Hi Kali,

Can you please send me the web adi developer guide.

Thanks
R.Dillibabu
Quote
0 #54 veerakm 2008-12-05 13:08
Hi
can i have the web adi developers's and if possible script to display custom error messages in message column in excel. My email id is
This e-mail address is being protected from spambots. You need JavaScript enabled to view it '>
Thanks in advance
veera
Quote
0 #55 Dillibabu 2008-12-05 20:56
Hello,

I have a requirement to run the concurrent program automatically after the upload is complete. Can you please tell me how to do this.

Thanks
R .Dillibabu
Quote
0 #56 Aleksandar 2008-12-10 10:26
Hi,

I am also interested in how can I know in my upload procedure that upload reached the last row in excel template so I can start some concurrent program like import?

Thank you,

Aleksanda r
Quote
0 #57 Aleksandar 2008-12-11 05:53
Hi,

Can you please send me the web adi developer guide.


Thank you,
Aleksandar
Quote
0 #58 Aneel kumar 2008-12-16 02:31
Kali,

It’s a nice article. I have a problem with web ADI. I have created an integrator pointing to custom API. This API calls inside Seeded API.
I am passing 43 parameters to this custom API, when I upload 4-5 records it’s working fine. But when I am trying to upload more than 20 records
I am getting an error “The server is unable to complete the upload.”
Any help is much appreciated.

T hanks,
Aneel
Quote
0 #59 Abdul Rahman 2009-01-01 05:09
Great Article Mr. Kali, please continue this good work.

Dear Aneel,

i had the same issue, we found out that the lenght of text to be inserted in a column is more than the length of the column, it does not highlight this and gives “The server is unable to complete the upload.”

i was able to insert successfully after i truncated the text from the parameter to map it to the lenght of the column (in the integrator API).

My Requirement is to add Calendar LOV and validate data can i have the Developer Guide please. if somebody can post the link that would be lot more better.

my id is , thanks in advance.

btw i use this form function to call my WEBADI directly from Application navigator Menu.

in the form function enter the Relevant User-Form-Funct ion name, and select the type as " SSWA servlet function'' and in the parameters column enter '' bne:page=BneCre ateDoc&bne:view er=BNE:EXCEL200 3&bne:reporting =N&bne:integrat or=GNE:GENERAL_ 81_INTG&bne:lay out=GNE:GNE_SHI PMENT&bne:conte nt=GNE:GENERAL_ 81_CNT&bne:nore view=Yes "
And the HTML call will be "oracle.apps.bn e.webui.BneAppl icationService' '

in the Parameters column

we got the integrator name ''GNE:GENERAL_8 1_INTG'' from

Select * From BNE_INTEGRATORS _B order by creation_date desc

Select * From BNE_INTEGRATORS _TL order by creation_date desc

we got the layout name ''GNE:GNE_SHIPM ENT'' from Selcet USER_NAME from BNE_LAYOUTS_TL;

we got the content name ''GNE:GENERAL_8 1_CNT'' from Select CONTENT_CODE from bne_contents_tl ;

good work guys.

Abdul Rahman
P.S : Please mail developer guide to
Quote
0 #60 JOSE FERREIRA 2009-01-02 14:08
Hi,
First of all great article !
I've got a web adi only for update mode and the message above appears always at the bottom of spreadsheet. Do you know if there is a way to remove this message once the users must not insert any row in my webadi ?
Please could you send me the webadi develper guide ?
Thanks,
Jose ()
Quote
0 #61 Syed_ZN 2009-01-06 16:32
Hi Kali

Appreciat ing your work on this article. I am looking for a sample script to create LOV to show on Excel and the possiblity of validating the data to upload to an interface table. Could you please send me relevant scripts and the developers guide? My email id is .

Thank you
Syed.
Quote
0 #62 Jwolters4 2009-01-15 14:38
Great article! Can you please send me the "Web ADI Developers Guide"?

Thanks !
Jason ()
Quote
0 #63 Servane 2009-01-21 18:14
Hi Kali,

Very interesting article!
We are in Release 12 and want to be able to upload AP Invoices through Web ADI.
I know we can use the AP Interface Tables but do we need to create temp Tables since we want to be able to upload multiples invoices with multiples lines in a single batch?
Please send me a sample script and any documentation that will be helpful in this matter.
Thank you so much and keep up the good work you do with your blog !

Cheers!
Serv ane
Quote
0 #64 Dillibabu 2009-01-22 21:34
Hello,

can anyone tell me how to create the Java Lov in a custom integrator.

Th anks
R.Dillibab u
Quote
0 #65 RRaghuRaman 2009-01-27 11:39
How Do You Handle Output Parameters? Could This be part of The Document? Also type Boolean?
Quote
0 #66 Sam Wang 2009-03-16 23:17
Hello Kali,

I am facing the problem of creating java function based LOV. There also need dependent relationship between LOVs. Do you know how to deal with it?
Also please send me your java LOV scripts and Web ADI Development guide.


Thanks a lot!

Sam
Quote
0 #67 Cj 2009-03-18 09:43
Hi Kali,
Very helpful article.
Can you send me the ADI developer guide and sample scripts to my e-mail address at
.

Thanks a lot!
Chris
Quote
0 #68 trista 2009-03-19 02:43
Thank you for your explanation
But I can't found the developer guide on oracle website
Could you send me the developer guide to my e-mail?
Thank you
Quote
0 #69 Lakshmi Narayanan 2009-03-20 08:06
Hi,

We have a requirement to uploaded the Receiving data to the Receiving Interface Table. Is it possible to create the Integrator for 'RCV_TRANSACTIO NS_INTERFACE'

expecting your reply.

Thanks!
()
Quote
0 #70 Harrod 2009-03-31 07:09
Hi
kali
I 'am facing the problem that i have to creating the JAVA LOV,But I don't know how to do it,could you please send me some example scripts ?And could you please send me The copy of WebADI developer's guide? Thanks you.
My E-mail:
Quote
0 #71 jayashree 2009-04-02 16:31
Excellent article. Can you please send me the ADI Developer guide to my email id
Quote
0 #72 rejeswari 2009-04-03 13:30
Hi Kalimuthu,

cou ld u please email me the web adi developer guide. I need some help in this. Please email me your email id so that I can send me the error I am getting

thanks

rajeswari
Quote
0 #73 Ian Towey 2009-04-09 18:39
Hi,

Very good article, could you forward the Web ADI dev guide to me.

Thanks

Ia n
Quote
0 #74 shweta naugaiya 2009-04-14 02:16
Hi I tried creating a Cistom ADI Integrator. It is visible at front end. But when I am selecting the integrator on the screen, it is giving the following error:
"you do not have permission to acess this functionality".
Please mail the relevant docs to
It'll be great if you can help.

Regards
Shweta
Quote
0 #75 Vishala 2009-04-14 02:56
I need to call a function from in WEB ADI

My requirement is that I have to provide the LOV for CONVERSION_TYPE and CONVERSION_DATE and when the user selects the values from the LOV, the value in the Exchange Rate should pop up automatically.
So I was thinking to make a function at database which will do the calculations on the basis of conversion_rate and conversion_date provided and will give the Exchange_Rate as output.
I want to know how can I call a custom function in WEB ADI.

Regards

Vishala
Quote
0 #76 anton 2009-04-14 03:59
u need create a function and add it in to column SECURITY_VALUE from bne.bne_securit y_rules table, after u will add this function to ur user menu it will be able to open integrator
Quote
0 #77 SnehaR 2009-04-17 11:09
Im getting the messages with more than 100 char. Infact the whole message is displayed but along with that unnecessary info is also displayed which we dont need. Not sure how to get rid of that.

Format of the output in the MESSAGES Column in Excel spreadsheet is below -

APPLICATION NAME MESSAGE NAME N -- not sure what this stands for TOKEN NAME -- token if any TOKEN VALUE -- token values : ERROR MESSAGE -- The actual error message

We need the TOKEN because we have to display list of the Error Customer Numbers along with the error message.

Code Snippet used -
FND_MESSAGE.SET _NAME('BNE','WE BADI_ERROR');
FND_MESSAGE.SET _TOKEN('P_UPD_F ILE',p_upload_f ile,false);
FND_MESSAGE.RAI SE_ERROR;

Also tried below

1. FND_MESSAGE.set _encoded('Error message greater than 100 chars');
FND_MESSAGE.RAI SE_ERROR;

RESULT -- Truncates it to 100 characters

2. -- Created Application Message WEBADI_ERROR using Application Developer.

FND_MESSAGE.SET _NAME('BNE','WE BADI_ERROR');
FND_MESSAGE.SET _TOKEN('P_UPD_F ILE',p_upload_f ile,false);
RAISE_APPLICATI ON_ERROR(-20004 , fnd_message.get );

RESULT -- truncates to 100 characters.
Quote
0 #78 Karthikeyan Kumaran 2009-04-24 07:39
Hi Kali,

Nice Article,
It would be great if you could share the dev guide.

Hope so you remember this karthik from OSSI. ;)

Regards,
Ka rthik
Quote
+1 #79 srikanthreddy 2009-04-30 02:50
Hi,

At the time of creting new web integator we are facing one problem system is showing the error like:"you dont have permissions to access to this functionality" this error will happen after selceted HR integator setup option from list of values.so wih this error I can not able to proceed further.Please advice me how to resolve this issue.

I will list up the steps which I have followed for creating a new custom integrator for AP Invoice...
---- ---------

1.I selected desk top integator
2.cre ate document
3.Next
4.Selected HR integrator setup

Here after click on next button I am getting this error"You dont have permission to access this functionality". ..

And we need to create new column in the existing layout ,please explain the procedure this is very urgent....

Tha nks
Srikanth
ma il:
Quote
0 #80 Hieu Le 2009-05-04 04:15
Hi Kali,
I checked data in these table, however the integrator still invisible. Could you please send me the script to active the integrator
Sele ct * From BNE_INTEGRATORS _B order by creation_date desc

Select * From BNE_INTEGRATORS _TL order by creation_date desc

Select * From BNE_INTERFACES_ B order by creation_date desc

Select * From BNE_INTERFACES_ TL order by creation_date desc

Best Regards
Hieu
Quote
0 #81 S 2009-05-20 20:56
Hi,

Can you send me the We ADI developer guide to my email address?

Thank s,
S
Quote
0 #82 Guy B 2009-05-22 09:02
Hi,

Can someone tell me how I can add an additional column to the accounting flexfield LOV? This is a key flexfield. I want to add the start date from the code combinations to be shown in the LOV.

Thanks for your help!!!
br
Guy
Quote
0 #83 M 2009-05-26 22:53
Great article!!!
Can you please e-mail me the dev guide at

Appreciate your help.
Thanks,
M
Quote
0 #84 Hrishika 2009-06-03 05:57
Hi Kali ,

Many thanks for the awesome article. I am new to WEB ADI . And I did follow all your step. After creating the integrator , Interface and Layout thru backend , I could update the layout but when I clicked on Create document the integrator list that comes up does not show me the custom integrator created by me .I did check in the tables as follows :
select * from bne_integrators _b where integrator_code like 'HXT_TIME_ASG_I NTG' order by creation_date desc

select * from bne_integrators _tl where integrator_code like 'HXT_TIME_ASG_I NTG'
order by creation_date desc

select * from bne_interfaces_ b where integrator_code like 'HXT_TIME_ASG_I NTG'
order by creation_date desc
select * from bne_interfaces_ tl where interface_code like 'HXT_TIME_ASG_I NTF' order by creation_date desc
and it shows records to be existing . At this step I am stuck and need your help .

Also , it will be great if you can send me the Developer Guide.My id is

Thanks,Hrishi ka
Quote
0 #85 Cesar 2009-06-04 12:38
Hi Kali

Thanks for taking the time to write this article.

Can I also please get a copy of the developers guide? Can't find it anywhere on-line.
My email is

Thanks Again!
Quote
0 #86 Ayaz 2009-06-17 02:41
Hello,
Can u please provide me the sample script to create an LOV on custom Integrator. Also I would like to know how to display cutom error message on excel sheet.

Thanks
Ayaz
Quote
0 #87 Ayaz 2009-06-17 02:42
Hello,
Can u please provide me the sample script to create an LOV on custom Integrator. Also I would like to know how to display cutom error message on excel sheet. My email address is

Thanks
Ayaz
Quote
0 #88 vinay kumar 2009-06-19 01:18
Hi kali,

i'm new to this web adi tool..i've a requirement...i 've a custom integrator..the re are 12 layouts in that..i want to restrict the layouts based on user type(full time/part time)is there any way to restrict the users?

thanks in advance
Quote
0 #89 vinay kumar s 2009-06-19 02:53
hi,

can u mail me the developer guide

Quote
0 #90 Kalimuthuv 2009-06-19 03:14
The Dev Guide is an Internal Document(Oracle ), which cannot be disclosed.
Sorr y for the inconvenience.

Thanks.

With Regards,
Kali.
Quote
0 #91 Ayaz 2009-06-19 07:47
Mr. Kali,
thanks for your effort. i have some queries:

1. Can we display out variable back on to excel ?
2. Can we return back to message field on excel excel when our record insert successfully ?

Thanks in Advance
Quote
0 #92 M 2009-06-30 13:42
Hi,

I am using 'Raise Application Error' to populate error messages in the Excel sheet while uploading data to APC. However, the messages are truncated to 100 characters. I have also tried to use 'FND_MESSAGE.RA ISE_ERROR however, I face the same problem. Please suggest why is this happenning and what can be done?

Thanks,
M
Quote
0 #93 Mario 2009-07-02 12:55
Hi Kali

great article!

Can I also please get a copy of the developers guide?
My email is

Thanks again.

Mario
Quote
0 #94 Zig Balodis 2009-07-09 12:30
Can you please provide a copy of the Web ADI developers guide.
Quote
0 #95 Zig Balodis 2009-07-09 12:35
I have created a custom integrator. Each account is validated using some custom validation rules, this works as expected,
valid lines have green icon, invalid lines the red icon, nothing gets uploaded. How can I perform a final validation after all detail
lines have been processed to check if the journals are balanced?
Quote
0 #96 Sushmitha 2009-07-22 15:41
Hi

I need to create a custom integrator, for doign this I am doing a simple integrator in which I can insert data into a custom table which I have defined already. When I am creatign a layout and updating the field it throws me an error by saying:

Inform ation

No columns have been defined in the column list.

Can you please let me know as how to proceed further from here. I am working on R12 web ADI

Thanks
Quote
0 #97 Kalimuthuv 2009-07-23 00:26
Hi,

Could you please check, you are creating the integrator and interface on a table or view.
If you are creating on a view, please change into a table and then check the issue.

Thanks.

With Regards,
Kali.
Quote
0 #98 Adish Jain 2009-07-26 06:10
Hi Kali,

Nice Article on Web ADI.

I am calling a custom Package from a a Custom Integrator. I need to diaplay the custom error messages from package to Excel sheet.

1. How to display the custom error messages to Excel Sheet Columns.
2. How to put LOV to Excel Sheet Column.

This is the urgent requirement. Kindly help me out. You can mail me solution to my mail ID also. It is

Regards
Adish Jain
Quote
0 #99 Yudhvir Singh 2009-07-27 10:32
Hi Kali.
Great article.
can you please e-mail Web-ADI developer's guide to
Thanks,
Yudhvi r Singh
Quote
0 #100 Ankit@erp 2009-07-27 10:33
HI Kali,

Thanks for the document.It is highly informative.

I need to update an existing lov with my custom one.

Basically the COA segments accounts,locati on,department are to be fetched from custom tables instead of the standard ones.
But when i checked the bne_interface_c ols table, the existing type for Segment1,Segmen t2 are not LOV"S.they are marked as flexfields.I wanted to know if we can change them to our custom LOV's too??

I basically need to fetch the values of department,loca tion etc from my custom table instead of the standard table.

Highly appreciate any pointers in this direction
Quote
0 #101 Yan Pechenik 2009-07-29 10:12
Thanks for putting together this web page tutorial. It was very helpful to me in setting up a custom integrator.
Can you please send me the Web ADI Integrator Developer’s Guide? I haven't been able to find it on metalink or otn. My email address is .

Also, I have the following question.
I was able to successfully create a custom integrator which calls a custom package for each row in the ADI spreadsheet and performs validation and returns error messages.
Now my problem is that each row in the ADI spreadsheet represents an invoice line which needs to be created. For invoices which have 2 lines, there are 2 records in the ADI spreadsheet. This makes it problematic to group the 2 invoice lines together and create a single invoice with 2 lines. Is there a way to have a package, concurrent request,... executed after the upload of the entire spreadsheet is complete?

Than ks,
Yan
Quote
0 #102 Paul Thien 2009-08-03 20:48
Hi Kali,
Can you email me a copy of the Web ADI developer's Guide to please?
Thanks for your help.
Paul
Quote
0 #103 Srinivas_r 2009-08-10 18:08
Hi ,
This article is really good and very informative. Can you please email me the WEB ADi developer's guide. I really appreciate your help.

Thanks
S rini
Quote
0 #104 Srinvas Rao 2009-08-11 11:46
Hi Kali,
Good article. I created a ADI interface for creating invoices and when I'm attaching LOVs as per the document you laid out. It works for one lov as soon as i add another pop list the ADI can't create a document and errors our. If I remove the secong POP List Lov it works fine. Is the procedure same for adding a STANDARD lov? When I tried to add a standard lov thru the procedure it's not showing up in the excel spread sheet. Can you please email me the Web ADI Developr's document to my address

Thanks
Srinii vas Rao
Quote
0 #105 Jags Viswanathan 2009-08-14 12:24
Kali,

Can you send me the WebADI developer user guide which does not exist at any Oracle sitse

Thanks
Quote
0 #106 Uma_P 2009-08-19 20:13
Hi Kali , Could you please email me a copy of the WebADI Developer User guide , I could not find it in any Oracle site. Thanks
Quote
0 #107 AkhilJain 2009-08-26 15:59
Hi Kali,
Can you please email me a copy of the WebADI Developer User guide.

Thanks,
Akhil
Quote
0 #108 mayur 2009-08-29 11:50
Hi Kali,
Can u please forward me the developer's guide

my id is :-

Thanks,
Mayur
Quote
0 #109 rohit kumar pandey 2009-09-02 09:21
Hi Kali,

Can you please mail me the metalink note for defining the importer. Actually, i am trying to replace the GL import program with a custom concurrent program. Thanks in advance.
My email id is :-

Regards,
Rohi t
Quote
0 #110 Nini1 2009-09-10 23:07
Hello Kali
Can u plz explain How u can create a Custom JAVA LOV for Web ADI

thanks
Quote
0 #111 P 2009-09-11 16:48
I think I found a way to get around the 100 character truncation issue.

So, I used the following code:

FND_MESS AGE.SET_NAME('B NE','WEBADI_ERR OR');
FND_MESSA GE.SET_TOKEN('M SG', 'error message goes here');
--FND_M ESSAGE.RAISE_ER ROR;

Just try commenting out the call to FND_MESSAGE.RAI SE_ERROR. This will prevent the eventual call to RAISE_APPLICATI ON_ERROR which truncates to 100 characters.

I think what happens is that whenever a message gets pushed onto the stack, the Oracle database treats this as an error state even if you don't invoke FND_MESSAGE.RAI SE_ERROR. When your program finishes running, I think it will return an error code and the message from the stack is also returned.

Hope this helps.

P
Quote
0 #112 siva_adi 2009-09-17 14:50
Hi Kali,

Could u please let me know how to add a total field in custom integrator. Eg If i have a enter_dr field and number of rows is
10 , how do i add a total field
Quote
0 #113 Iva Bartek 2009-09-23 17:19
Thank you for the excellent article. I'm having troubles with making my tabel LOV work. Could you please send me a copy of the WebADI Developer's guide?
Quote
0 #114 Kumar111 2009-09-28 02:00
Hi Kali,
Can you please email me a copy of the WebADI Developer User guide to email
?

I will also need some sample WebADI scripts.

Thank s
Kumar
Quote
0 #115 SergiuP 2009-09-30 04:38
Hi Kali,

Can you give me some information about how to secure a custom integrator so that it can be used only from one, or several responsabilitie s?
I've created a custom form function, which I've added to the custom menu associated with my responsability. I have set the BNE_ALLOW_NO_SE CURITY_RULE to No
and I used de "HR Maintain Integrator Form-Function Associations" to secure my integrator and assign it to the function I defined.
I must have missed something, because I still cannot se the integrator in the poplist when I select Create Document.
Also, I am using R12.1

Thank you
Quote
0 #116 Sreeabcd985 2009-10-07 04:30
Wonderful article. Although I've worked with standard integrators before, it was interesting to know about custom integrators.

E ven before I start working with custom integrators I have 2 questions:

1) Can we create a custom integrator to populate an interface table instead of passing the parameters directly to an API ?
( Let's suppose there is a standard import program to upload records from this interface table )
2) Let's say we want to upload data with a header-lines scenario. And let's say we have 2 different interface tables for headers and lines. Is it possible
to create a custom integrator for this scenario ?
( Let's suppose the single standard import program picks up records from both headers and lines interface tables )

Note: Please mail the sample web ADI scripts and Developer's guide to >>

Thanks and regards,
Sree
Quote
0 #117 venugopal 2009-10-09 10:03
Hi Kali,

This is a wonderful article. However, I am a bit lost as I am trying to create an Integrator for the Employee Assignment EITs for updating the records. I created one with an Update EIT API with package and procedure name. However, I am not sure of the other values required like the View Name. I wanted to create a DOWNLOAD Metadata Type for the EIT function so taht I can download the data, Update it and upload it back. I am not sure if this is possible. Can you help me with it please?

If you have any related document please email me at

Thanks & Regards,
Prasha nth
Quote
0 #118 Carmen 2009-10-28 03:52
Hello Kali,

Thanks for the article. Ii's very helpful.

I'm making a custom integrator for Proyect Management. I need to make some calls to the package: PA_CLIENT_EXTN_ BUDGET to calculate budgets.
Can i pick the data which the user introduces and call the functions (passing that data as a parameter). With the value returned by the function fill out other columns inside the spreadsheet.

P lease could you mail me the sample web ADI scripts and Developer's guide to:

thanks in advance! :)
Quote
0 #119 Sanjay Prasad 2009-10-29 01:08
Nice article, Thanks, I learn lot of new things from your WEB ADI article. Can you please send me the WEB ADI developer's guide to my mail id ' '

Regards,
sanjay prasad
Quote
0 #120 Thu Nguyen 2009-10-30 11:27
I would really appreciate if you could send the WEB ADI devl guide and the sample scripts. My email is .

Thanks
Quote
0 #121 Thu Nguyen 2009-11-04 11:06
We're thinking of implementing a custom budget system using Web ADI to download and upload data from spreadsheets that users will enter. The application will be heavily used by 100+ users during budget season (for about 3 weeks) and the data load will have about 500 records each. Is Web ADI a good fit or will we encounter performance issues?

Thanks
Quote
0 #122 terry 2009-11-11 22:48
Hello Kali,
Thanks a lot for your amazing article.
Would you please send me the Web ADI developer guide and sample scripts ?
My Email is .
Thanks again!

terry
Quote
0 #123 NGNEETU 2009-11-17 12:03
I have created a custom integrator which inserts records in custom staging table. I want to define a LOV for one of its field. When I tried the code that you have specified above, I get Jave null pointer error.

Could you guide me how to solve this issue?
Quote
0 #124 NGNEETU 2009-11-17 12:42
Could you mail me the WEB ADI documentation
Quote
0 #125 rafeeque 2009-11-24 06:35
I am trying to create an Upload integrator for AR. Used CREATE_INTEGRAT OR then CREATE_INTERFAC E_FOR_API and then CREATE_DEFAULT_ LAYOUT . The document created not showing any columns. It is only showing Upl and Message columns.
Please let me know whether I am missing anything.

Than ks in advance.
Quote
0 #126 Nalumachu 2009-12-08 17:18
I really appreciate your help here, I need sample scripts along with the developer guide so that I can fulfill a client requirement on creating custom Web ADI
Quote
0 #127 Nalumachu 2009-12-08 17:19
My Email is
Quote
0 #128 James Kim 2009-12-14 15:05
Hey Kali! This is James Kim.

So surprised to find your picture here....you're so famous now! hahaha.

Hope you're doing well..
Quote
0 #129 Roberto 2009-12-22 16:53
Hi,

Could you send me WebAdi Developer's Guide ()
and if you have some example where you want to add a validation to a Key Flexfield before to import using GL Journal Import WebADI ?

thanks in advance,
Roberto.
Quote
0 #130 Manojram 2010-01-04 12:35
Hi can some one send the webADI developer guide to my email ?

thanks
Manoj
Quote
0 #131 krish01 2010-01-04 13:30
can you please email me the webADI developer guide . my email id
Thanks
Quote
0 #132 Vijay Addanki 2010-01-08 15:21
I would really appreciate if you could send the WEB ADI devl guide and the sample scripts. Email address
Quote
0 #133 Krish01 2010-01-12 10:20
Hi,

I see that you mentioned having a global variable to track total. I tried doing that but it’s not working. Can you please elaborate more on how to know eof , how to total all rows to check if the total = 0 . And can you please email me DEV Guide at

------------- --------------- ----------
>>How do we determine the End of File..Once it has finished parsing through all the rows I have to total the amount
>>column in spreadsheet and make
>>sure total is greater than 0. If greater than 0 then only commit all the rows else rollback..

This can be done at your procedure, You can have a global variable and count every time of insert and if the total is

------------- -------------
Quote
0 #134 Dazza 2010-01-18 18:52
Hi Kali / anyone

Interes ting article, however I'm after a definitive yes/no answer as to whether you can create custom integrators for any module. E.g. Accounts Receivables has no seeded WebADI integrator defined (seeded integrators seem to be HR, FA, GL, and Projects only).

I am assuming the answer is Yes, in which case I'm happy. In this case, are these custom integrators ever over-ridden by patching?

In addition, if anyone has ever done this for AR invoices or receipts before then I would love to talk to you for some pointers!

Kind regards,
Dazza
Quote
0 #135 China 2010-01-19 15:17
Hi All

Can anybody please send me the Web ADI Integrator Developer Guide? I am searchig for that so long time, but I could not able to find it.
Thanks in Advance. Please help me out.

My Email ID:

Thanks China
Quote
0 #136 China 2010-01-20 14:29
Hi

Anybody have the Developer guide? please respond. Its urgent

Thanks
Venkat
Quote
0 #137 Kenny Miller 2010-01-25 10:50
I'd appreciate it if someone could email the Developers Guide to

Thanks,
Kenny
Quote
0 #138 akkirajukiran 2010-01-29 14:21
Could some body Please send me the Developers guide.

Thanks
Kiran
Quote
0 #139 akkirajukiran 2010-01-29 16:25
Could you please email me Developers Guide
Quote
0 #140 sri L 2010-02-01 17:20
Could you please email me "WEB ADi developer's guide"?
Quote
0 #141 Vish 2010-02-02 19:49
I'd appreciate it if someone could email the Developers Guide to
Quote
0 #142 AT 2010-02-10 20:53
I do really appreciate it if someone could email the developer guide
I also do have a question on how to create lov on parameters and use the lov to validate the entries
Thanks
Quote
0 #143 PrasannaNarayananMankali 2010-02-17 22:42
Hi Kali,
Though in couple of places i saw that this question came up, I could not find anywhere how they did it.

I want to submit a concurrent program right after the Upload is done ... How can I do it ?
or I want to know how many rows are there in the XL file that got uploaded ?

please let me know - my email id is

Thx a lot for your blog/website and instructions. it was pretty impressive.

Pr asanna.
Quote
0 #144 Vikas Pandey 2010-02-18 09:44
Hi Guys,

I am not able to see the changes in the layout after changing my package procedure.
The changes in layout columns are visible from backend in BNE_LAYOUT_COLS _VL but while defining the layout I am able to see the old laout only. I have cleared cache and tried again but no results.

I ll be thankfull if any one helps me out in this.

Regards,

Vikas
Quote
0 #145 Vikram S V 2010-02-24 04:05
Hi Kali,

A cery good material. I was able to create a custom integrator which calles a custom PL/SQL package. It would be of great help if you can send me the developer guide document.
We are trying a launch a concurrent program (A standard API) ofet the XLS uploads the data into an Interface table.

My mail ID is

Thanks,
Vikra m S V
Quote
0 #146 Sheila Najmi 2010-03-02 02:26
Hi Kali,
Am trying to develop a custom integrator that is identical to the Fixed Assets -Additions integrator...
The client wants to be able to update the FA Mass Additions table instead of insert.
I have been tring to locate the web adi developer's guide but didnt have any luck, is it on some oracle site(i work for oracle partner so if u tell me the site i will have access).
Am trying to find out how i can reuse the LOV's used by Assets inetrgator and call my custom package to do update to Mass Additions table instead of insert...
I have tried POPLIST and it works as per ur article but Key Flexfields cant really be POPLISTS..
Can u please help me out, i will really appreciate it
Thanks
sheil a
Quote
0 #147 John Trautman 2010-03-16 16:03
Hi: We created an ADI for uploading salary increases to Oracle HRIS. This worked until this year. Now we are getting the following error which doesn't really tell us where to look: The connection to the server is unavailable. Please contact your support representative. Where should I look first? Also if you could send me the developer's guide that would be helpful.
Quote
0 #148 Krishna B 2010-03-17 12:34
I am working custom Web ADI. I created a package and procedure. I want to Call API after loading all the records from Excel into PL/SQL Table. Please let me know if it is possible. I have Plan B to create custom table and load all the records in a table and then call API. I am not sure how to identify last record on Excel. Please let me know.


Thanks,

Krishna
Quote
0 #149 J 2010-04-17 13:04
Could you send me the example you have for creating a java based LOV please together with the developer's guide. Thanks.
Quote
0 #150 J 2010-04-17 13:10
My email id is .
Quote
0 #151 sayed Moinuddin 2010-04-22 13:13
Great could you please email the document

Thanks in advance
Quote
0 #152 sayed Moinuddin 2010-04-22 13:15
Kali we are getting the belwo problem can u please suggest....

On : 12.1.1 version, ATG Technical Issues

When attempting to create a WebADI document the following error occurs when the integrator selection screen is opened

ERROR
- --------------- -------
HTML Page is not created properly and the following Internet explorer error is fired

"Errors on this webpage might cause it to work incorrectly"

S TEPS
---------- -------------
T he issue can be reproduced at will with the following steps:

1:- Log into the application
2:- Choose the "Desktop Integrator" responsibility
3:- Choose Desktop Integrator >> Create Document

Thank s in advance
Quote
0 #153 Walter 2010-04-22 15:52
Kali

Your article was really helpful in filling in some holes. I cannot find the WebADI Developers Guide you referenced - could you please email me a copy?

email:

Thanks again for the great article.

-Walt er
Quote
0 #154 Uday Jadhav 2010-04-27 05:49
Hi,
I have written packaged procedure to execute after uploading the data in the interface. currently the data is getting uploaded but api is not working. where would be the problem.

thank s,
Uday
Quote
0 #155 Usha2345 2010-04-29 11:58
Hi Kali

Thanks for a great article. It gave me lot of insight on various Oracle web adi implementation options.

Can you please send me the Web ADI Integrator Developer’s Guide guide.

I appreciate your help.

Thanks a lot
Quote
0 #156 slokam_L 2010-04-29 17:55
Hi,

Did anybody get an answer for following question? If so can you please let me know , we need to implement the Total field in our custom Integrator.

== =============== =============== ==
Hi Kali,

Could u please let me know how to add a total field in custom integrator. Eg If i have a enter_dr field and number of rows is
10 , how do i add a total field
============== =============== ======

Thanks
slokam
Quote
0 #157 Karthik_Rajasekaran 2010-04-29 21:50
Hi Kali,

Your insight into the custom integrator development is excellent. Can you please send me a copy of the WebADI developer guide to my gmail id ? I would like to use WebADI custom integrators in R12.1.1. Is there a new dev guide for this version?

Regards,
Kart hik
Quote
0 #158 Wonderful document and thanks guys.Please send me the web adi developers guide for R12 2010-05-04 19:26
Wonderful document and thanks guys.Please send me the web adi developers guide for R12 to
Quote
0 #159 Vyagh 2010-05-19 09:15
Is there a way to create dependant LOV in Web ADI Spread Sheet.
My requirement is : I have two columns one is Proj number and Tack numbe columns. I created an LOV for Proj Number.
For Lov of Task number, i want all the tasks of the Project Number i selected in the other cell.

Please let me know the working scenario how to handle this.

Thanks
V yaghresh
Quote
0 #160 Vyagh 2010-05-21 07:37
Hi Kali,

Can you please send us teh Web ADI Developer's Guide to mail my
Quote
0 #161 Sachin Singh 2010-05-21 20:57
Is it possible to change the List of Values in the Standard integrators.
Quote
0 #162 Rubayat Newaz 2010-05-23 06:20
Dear Kali,

Can you please send me the web adi developer guide? Can you also tell me How can I load invoice into apps using xls files.

Regards
Rubayat Newaz
Quote
0 #163 hari krishna 2010-06-02 16:53
This article is very useful. Appreciate Web ADI developeres guid. I need to develop custom integator with custom API.

Please provide your inputs on this.

My email id:

Regards,
Hari
Quote
0 #164 kris 2010-06-12 12:29
I want to know abt the java default type implementation in the integrator
Quote
0 #165 Mukesh Singh 2010-06-17 10:43
I am unable to add LOV to custom web ADI. Please provide some handson material or guidelines.

I have followed you steps. But didn't work out.
Quote
0 #166 Sheena Sidhu 2010-06-23 16:55
I am on Web ADI 12i on Oracle 10g. On the spreadsheet, some rows error out. As per Oracle, no rows will load until all the errors
are fixed in the spreadsheet. But I am seeing that the ones w/o an error load fine, although there is no message against the
loaded records and the 'update flag' is not cleared. So the next time the file is upload again, the correct reccords that were
not supposed to load the first time, load again and error out.
Any ideas on how to fix this?

Thanks
Quote
0 #167 Pradeep.moganti 2010-07-05 07:12
Hi All,

I am trying to create a Web ADI for PA. Here I am using a view for downloading and uploading data. I am good upto this point. Now I have two challanges in my hand
1) I need to provide a LOV for a column which will take the major role in Update
2) I need to populate a message based on the Update statement.
So, please help to acheive these two challanges.
And please help me to get a developer guide
EMail :

Thanks,
Prade ep
Quote
0 #168 Sheena Sidhu 2010-07-05 09:17
Pradeep,
For #1, I know in 12i there are ways to do it as I have across documents on the web to do it, although I have not done it myself...

For# 2, I am not sure what you mean by. Can you please be more explicit? Is it the custom error messages you are talking about? If so, that ca n be done from within your pl/sql code by raising an exception.
Quote
0 #169 Pradeep.moganti 2010-07-05 10:19
Hi Sheena,

I am using Oracle 11i and I need some details about LOV's in Excel sheet.

I have to display some custom messages like ( Invalid Project Number) in the excel sheet. Can I acheive it trhough Raise_Applicati on_Error? If so, please provide me some basic systax to capture that message in excel and also please provide me some documents on this.

Thank You So Much,
Pradeep
Quote
0 #170 Pradeep.moganti 2010-07-06 05:59
Hi,

If I use Raise_Applicati on_Error() then the program will exit when ever an error occurs right?
Here I need to show messages for each line to show the status like Successful , Fail.

Please help me on this.

Thanks,
Pradeep
Quote
0 #171 Sheena Sidhu 2010-07-06 09:08
Pradeep, Web ADI does the success part anyway. Not sure how else you can change it to add a message there, I have never seen it been done before.
Will surely require a lot of research and development. Not sure if its worth the effort..A success is a success anyway. What the user should be more interested in is the errors!
Good luck!
Quote
0 #172 Pradeep.moganti 2010-07-07 08:06
Hi Kali,

I am searching for the Web ADI Developer Guide since very long time still I am not able to get any documet.
So, please send me Web ADI Developer Guide and some userful documents to me.
Mail ID :

Please.....

Th anks,
Pradeep
Quote
0 #173 Pradeep.moganti 2010-07-08 14:24
Hi All,

I got some errors while I am adding one LOV to the excel.

I have a view "pa_ra_invoice_ v" with "tag_value"

Now, I am updating the base table like this

UPDATE bne_interface_c ols_b
SET val_id_col = 'TAG_VALUE'
,val_mean_col = 'TAG_VALUE'
,val_type = 'TABLE'
,lov_type = 'POPLIST'
,val_obj_name = 'PA_RA_INVOICE_ V'
WHERE interface_col_n ame = 'P_TAG_VALUE'
AND application_id = 20011
AND interface_code = 'GENERAL_16_INT F'

But, while downloading the data I am getting some exception like "java.nullpoint er.exception"
and in the screen I am getting oracle.apps.bne .exception.BneF atalException - A system error has occurred.

So, If anyone aware of this error please help me to get a solution..

Tha nks,
Pradeep
Quote
0 #174 Manoveg Saxena 2010-08-02 01:24
Hi Pls mail me Web ADI developer guide and some working examples in java classes so that I can implement
depen dent LOV .

Thanks,
Manov eg
Quote
0 #175 Manoveg Saxena 2010-08-02 01:26
Hi Pls mail me Web ADI developer guide and some working examples in java classes so that I can implement
dependent LOV .
My mail id is

Thanks,
Manov eg
Quote
0 #176 sreekanths 2010-08-17 00:59
Hi Pls mail me Web ADI developer guide..its very urgent
Quote
0 #177 sreekanths 2010-08-17 01:01
Hi Pls mail me Web ADI developer guide..its very urgent to
Quote
0 #178 Leo Ameal 2010-08-19 09:11
Hi Pls mail me Web ADI developer guide..its very urgent
Quote
0 #179 Naveen Azad 2010-08-19 09:22
Hi,

I want to use WED ADI to upload Approved Cost Budget in Projects.

Plea se help me on this.

Regards,
Nave en
Quote
0 #180 Sheena Sidhu 2010-08-19 10:15
Naveen, ps be more specific what you need help with. Is it finding the right api or something else?

Sheena
Quote
0 #181 Ram M. 2010-08-25 09:23
We are on R12.1.1 and we would like to create a xls sheet bases om a simple sql query.

select invoice_num, creation_date from ap_invoices
whe re creation_date < ¶meter


So the xls output should look like


invoice created till : 10-AUG-2010 (¶meter)

i nvoice_num creation_date
- --------------- - --------------- ----
75893454 01-JAN-2010
435 74859 11-JAN-2010

et c...


We are not very familiar with WEBADI. Could you provide screenshot how to create such xls sheet?
We appreciatie your support.

Regar ds,
Ram
Quote
0 #182 Ram M. 2010-08-25 09:48
Could you send me the WEB ADI Developer Guide?

Thanks and regards,
Ram
Quote
0 #183 Kaouther 2010-09-10 12:17
Hi,
Very helpful article.
Can you send me the ADI developer guide and sample scripts to my e-mail address at
Best regards,
Kaouth er
Quote
0 #184 T Simkiss 2010-09-23 15:45
Very well written article. we are trying to create an AP integrator and have it working to load the headers and lines, but we can't create the java LOVs for any of the fields. If you could send some instructions on that it would be most appreciated.
Quote
0 #185 sajsanr 2010-10-01 11:31
Here is a working example that will help for simple LOVs:
UPDATE bne_interface_c ols_b
SET val_id_col = 'ORGANIZATION_I D',
val_mean_col = 'ORGANIZATION_N AME',
VAL_DESC_COL='ORGANIZATION_N AME',
VAL_OBJ_NAME = 'ORG_ACCESS_VIE W',
val_addl_w_c = 'RESPONSIBILITY _ID = $env$.respid AND RESP_APPLICATIO N_ID = $env$.appid',
VAL_TYPE = 'TABLE',
LOV_TYPE = 'POPLIST',
offline_lov_ena bled_flag = 'N',
mapping_enabled _flag = 'N'
WHERE interface_col_n ame = 'P_OPER_UNIT'
AND application_id = 20003
AND interface_code = 'GENERAL_8_INTF ';

the value retrieved is the id while in the spreadsheet the actual value is displayed.


2. If you want to change the column name display on the spreadsheet:


UPDATE bne_interface_c ols_tl
SET PROMPT_ABOVE = 'OPERATING UNIT'
WHERE
application_id = xxxxx
AND prompt_left = 'OPER_UNIT'
AND interface_code = 'INTF_NUM_INTF' ;

3. User hint for a column heading:


UPDA TE bne_interface_c ols_tl
SET PROMPT_ABOVE = 'AMOUNT',
USER_HINT = 'LINE'
WHERE
application_id = xxxx
AND prompt_left = 'PARM_AMOUNT'
AND interface_code = 'INTF_NUM_INTF' ;

4. Once the changes are commited, in order to view these, apache services need to be bounced.

5. Issues noted.
256 rows are only retrieved. If any suggestions on how to extend this, will appreciate the information for R12.
Quote
0 #186 Tina 2010-10-21 06:22
Hello,

Very helpful article.
Can you please send me the web adi developer guide?
My Email is :

:D
Quote
0 #187 vasu 2010-11-07 06:50
Dear i am having 11.5.9 version. I want to download employee data (hrms) based on time period id(parameter) can you please suggest me how to do this. Because i am not understanding where i have to give parameter user need 2 parameters like time_period_id and employee_no based on this they want to download data. please mail me steps.
Quote
0 #188 vasu 2010-11-07 06:53
Dear i am having 11.5.9 version. I want to download employee data (hrms) based on time period id(parameter) can you please suggest me how to do this. Because i am not understanding where i have to give parameter user need 2 parameters like time_period_id and employee_no based on this they want to download data. please mail me steps.
Quote
0 #189 VosKon 2010-11-26 05:29
Can anyone help me with Web ADI?
I have system administrator responsobility, but our users haven't, and so they can't call function and create web adi document. They get error like below.
"Please resolve the following error to continue.
140:X XFA_BNE_TEST_IN TG is an invalid Integrator Key."

I thought that error is in profile iptions, responsobilitie s, application_id in my integrators.

I'm sorry about mistakes in my english..
Quote
0 #190 Kish 2010-12-01 02:07
Can anyone suggest me a work around to use Web ADI for asset additions where we have the employee numbers as alpha-numeric values, but the web ADI is throwing as error saying "Enter only numeric values" for Employee Number field.

Thanks in advance.
Quote
0 #191 cheran 2010-12-22 07:59
Hi Kali,

We are trying to upload CRV in a new instance, we created Custom integrator layout in WEB ADI, when we are trying to select the integrator it is not available in the LOV. so we created custom function but when I click this function it is showing noserach found.

could you please explain which step we missed to use the layout while creating document time.

Regards
Cheran
Quote
0 #192 Amit garg 2011-01-13 00:55
hi,
i want to design dependent lov ..please send the sample java class file and developer guide to
it surgent

Amit
Quote
0 #193 Pal 2011-01-18 05:20
Hi,

I need developer guide for web ADI..Pls do send me
But very well defined and elaborated above description.

T hanks,
Pallavi
Quote
0 #194 sajsanr 2011-02-03 10:05
Here is how to go about creating standard LOV or poplist.
If you have created custom ADI using Desktop Integrator; and in R12 if you want to create a component and add it to the the custom integrator; there is a bug in Desktop Integration Manager. It flags these integrators as 'Oracle' and due to hardcoded security rules, one cannot update. If any one has any information on how to disable that security feature, a post is welcome.

The API works well.

-- BNE_INTEGRATOR_ UTILS.CREATE_TA BLE_LOV --
-- (P_APPLICATION_ ID => 231, --
-- P_INTERFACE_COD E => 'MY_INTERFACE', --
-- P_INTERFACE_COL _NAME => 'COL_NAME', --
-- P_ID_COL => 'LOOKUP_CODE', -- LOOKUP CODE UPLOADED --
-- P_MEAN_COL => 'MEANING', -- Shown in sheet --
-- P_DESC_COL => 'DESCRIPTION', --
-- P_TABLE => 'FND_LOOKUPS', --
-- P_ADDL_W_C => 'lookup_type = ''FND_CLIENT_CH ARACTER_SETS''' ,
-- P_WINDOW_CAPTIO N => 'Yes/No/All with Meaning and Description, selecting Meaning, Meaning sortable',--
-- P_WINDOW_WIDTH => 400, --
-- P_WINDOW_HEIGHT => 300, --
-- P_TABLE_BLOCK_S IZE => 10, --
-- P_TABLE_SORT_OR DER => 'yes,no', -- sortable by meaning, not description--
- - P_USER_ID => 2,
-- P_POPLIST_FLAG => 'Y' --- this by default is null and results in Table based LOV, if set to 'Y', it will result in POPLIST.
); -- SEED USER --
-- --

Assuming, you had created your spreadsheet thru Desktop Integrator.
a. p_application_i d can be looked up as defined in the bne_interface_c ols_b.applicati on_id.
b. p_interface_cod e will be in bne_interface_c ols_b.interface _code column.
c. p_interface_col _name will be in bne_interface_c ols_b.interface _col_name
d. p_id_col, p_mean_col, and p_desc_col are self explanator; the p_desc_col is useful if you want to have a description column so that users can make informed choice.

For standard lov, you need not have p_poplist_flag in the parameter list. If you want a poplist, then this needs to be set to 'Y' as noted above. No hardcoded update to bne_interface_c ols_b is required to make this as a POPLIST.

Pleas e note, a poplist will result is 256 row limit.

Once the changes are executed, bounce apache services before generating the spreadsheet.

Thanks
Sajid
Quote
0 #195 Jeroen 2011-02-04 00:57
Hi Guys,

I developed my own PL/SQL wrapper to upload Web ADI data.
Works great... if no exceptions occur.
However, if they do occur I only get one error in the Messages column:

"SQL exception occurred during PL/SQL upload."

I tried:
hr_utility.set_ message (808, 'XXLCHXC_WEBADI _GRADE_NF');
hr_utility.set_ message_token ('ERR_MSG' , p_error_message );
hr_utility.rais e_error;

I tried:
FND_MESSAGE.SET _NAME('BNE','WE BADI_ERROR');
FND_MESSAGE.SET _TOKEN('P_UPD_F ILE','HELLO 123',false);
FND_MESSAGE.RAI SE_ERROR;

but it seems WebADI is overwriting my custom errors in some way.
Am I missing something?
Quote
0 #196 Sheena Sidhu 2011-02-04 15:12
Hi- try using: raise_applicati on_error(-20000 ,'ur custom mesg');
Quote
0 #197 pal1901 2011-02-11 07:14
Hi ,

I need the DFF columns in WEB ADI as it is there in ADI....can u please let em know how and wheer it is done.It would be great help.

Thanks,P allavi
Quote
0 #198 sam.jmd 2011-02-15 19:40
Hi
Thanks for this excellent article

I have a question regarding standalone integrator (not associated to a function form). This is a "GENERAL" integrator; we are not supposed to call it form a screen.

I duplicate the BNE_CREATE DOCUMENT function and setup the parameters (calling the integrator_code )

And I added this function to a menu; I can call my new integrator.

Wh at is the usage of the seeded integrator : HR Maintain standalone query" ?

Thank you
seham
Quote
0 #199 ariel 2011-03-02 11:10
Hello Kali,
Can you please send me the dev guide and sample scripts ?

Thank you,
Ariel
Quote
0 #200 Vikram 2011-03-09 05:36
Its a great article ..

I want to use web adi for Class enrollments in OLM. We are having all the data in excel. So our users are asking interface to load it direclty to the OLM enrollments for a class.I am not sure whether we can use web adi for OLM or not .. because .. OLM enrollments are not form based .it is jsp page .. and more over we are currently in 11.5.10.2 version whethere there is no standard API for enrollments . Can you please guide me how can i achiecve solution for this requirment .

Thanks in advance
Regards
Vicky
Quote
0 #201 Sateeshapp 2011-03-18 01:06
Hello Kali,

This is a Excellent article. We are planning to develop the Custom integrator for uploading the AP invoices

Can you please send me the dev guide and sample scripts?

Regards
Satee sh
Quote
0 #202 Sateeshapp 2011-03-18 01:10
Hi Kali,

My email id is .

Please send the WEBADI devloper guide and sample scripts.

Regar ds
Sateesh
Quote
0 #203 Igor 2011-04-03 03:12
Hi, Kali,
Great article!
Can you please send the sample script & the developer guide for Web ADI to > ?
Thanks.
Regards,
Igor
Quote
0 #204 Uprale 2011-04-15 15:13
Hi Kali,
Thank you for the article. I am trying to create the LOVs for WEB ADI, could you please send me those sample java files.
Thanks in advance.
Pramod Uprale
Quote
0 #205 VRaju 2011-04-20 07:46
Hi..

Great article. Can you please tell us how to find the total number of records entered in the spreadsheet.

A lso, is there a way to stop any record from getting uploading even if one record is in error.

Thanks in advance,
Vidya.
Quote
0 #206 Vijay Nurani 2011-04-28 16:05
Kali,

Is their need to have PLM installed for loading items?
Quote
0 #207 VijayN 2011-04-29 08:29
Hi Kali,
I have 2 questions. From your article it looks like you can create WebADI for any open API. Is that true? For Item load /update do you need PLM installed?
Quote
0 #208 herdanto 2011-05-16 00:28
Hi
I'm using 11.5.10 and the WEB ADi has not been working for excel 2007 yet. I've been able to create a layout but when I opened the layout, I get a pop up window saying "Your document is being created" and it stays there forever...
the document created has .xls extension and not .xslx like 2007 extension.
I have followed the setup as you recommended above.
Currentl y I have no idea what went wrong.. can anyone help me please... thank you.
regards
He rdanto
Quote
0 #209 kalimuthu V 2011-05-16 01:44
Hi Herdanto,
For excel 2007 check you have done the mentioned changes in the URL,
http://appssupport.com/2010/05/07/working-with-web-adi-and-excel-2007/

And try from IE browser.

Thank s,

With regards,
Kali.
Quote
0 #210 xyz1 2011-05-19 09:31
When uploading Asset using Additions Integrator getting Error "Enter a valid Employee Number."
Please suggest how to accept alphanumeric Employee Numbers

Regard s,
Rahul
Quote
0 #211 RKGMAIL 2011-06-17 19:24
I have a custom integrator and would like to display the error messages for the failed records. Could you guide me what are the things that we need to do on the ERRORED_ROWS step to see the error messages on the spreadsheet. The user guide is not that helpful. THanks.

We are in R12 - 12.1.3. Custom Integrator calling a custom PL/SQL API as an interface.
Quote
0 #212 Alex Reyderman 2011-07-11 17:28
Great article! This is the most comprehensive and detailed description of the process that found thus far. I'm looking to build a custom intergrator for AP invoices. If you have any code samples for it and you can share them I would highly appeciate it! Also, can you please send me a copu of Web ADI developer's guide? I do not see it included with Oracle R12 documentation.
Thanks a lot!!
Alex Reyderman
Quote
0 #213 saravanan.j 2011-07-17 12:35
Hi gurus,

We upgraded from 11.5.9 to 12.1.3 and we already created some Letter request in HRMS using ADE and now upgradation, it is not working. Giving Error as ":oracle.apps.b ne.exception.bn efatal.exceptio n" and also we are not able to create Integrator also. Any idea about this ?.
Hope now ADE is not available and WEbAdi came into the picture.

Thank s
Quote
0 #214 Chandra123g 2011-07-26 17:43
Hello, Thanks for a nice article. I am trying to understand if I can add some additional validation to the existing pre-validation to a copy of a seeded Oracle web ADI...Please assist. Can you also send me the Web ADI Developer Guide to ? Thanks
Quote
0 #215 nabil 2011-09-07 03:05
thanks for sharing your knowledge.. this was helpful...
i would appreciate if you send me the ADI developer guide and sample scripts to

regards
Nabil
Quote
0 #216 nabil 2011-09-27 23:59
Hi...
i would appreciate if anyone can send the developer guide to

regards
nabil
Quote
0 #217 KRama 2011-10-03 03:33
Hi Kali ,

Could you please email me a copy of the WebADI Developer User guide and sample scripts for HRMS salary_proposal _api to

Regards
Ramar ao
Quote
0 #218 topbagscenter 2011-10-13 03:48
It's good to see this information in your post, I was looking the same but there was not any proper resource, thanks now I have the link which I was looking for my research.
topbagscenter
Quote
0 #219 Swarna Gowri 2011-10-13 06:23
Hi,

I have a problem where a User has uploaded data through Web ADI in a date format MM/DD/YYYY.
But when the User uploads an error comes in the validation and date is trasnformed to format MM-DD-YYYY.

As per the logic date from sheet would format to DD-MON-YYY after the upload is successful.
Whe n I upload the same file,the dates are in correct format in Interface Table.(DD-MON-Y YY)

User and myself are using Excel 2007.
I am unable to reproduce the Issue he faces because the same file works for me.

Any help in this regard would be highly appreciable.

T hanks,
Swarna
Quote
0 #220 Aannatjot 2011-10-14 16:31
Hi Kalimuthu ,

I am looking for a solution to Define 10K Mass Allocation Formula in r12. I am functional consultant with only SQL knowledge to suffice my needs.
Is there any source or sample document , which i can use to build WEB ADi Integrator for my requirement.

A nantjot
Quote
0 #221 debarchan 2011-10-17 16:45
We are in R12.1.1. We have facing following problems;

1. ORG_NAME LOV from HR_OPERATING UNIT. Using above dummy LOV not appearing on document.
2. Select Customer name & account number depending on ORG_NAME using LOV separately.
3. Separate LOV for Transaction Type depending on ORG_NAME.
4. One Date LOV.
5. One LOV for account code combination.

P lease help to resolve this LOV related.
Quote
0 #222 Ravinder R 2011-10-18 03:35
Hi Kali,

I am developing interface using web adi. I am able to create LOV using table. But not able to create LOV using KFF for account flexfield.

In my requirement i need to submit the Import program as well. Once all the records validated and inserted then only we need to submit the import program.

I am facing 2 issues.

1. Not able to create LOV using KFF for account flexfield.
2. How to count the records in excel template, which are validated and successfully uploaded to interface table.

Please hlep me.

Thanks
Ravinder
Quote
0 #223 michael kors tote 2011-11-16 00:45
michael kors outlet
michael kors toteIt makes me feel so surprise.I never know there is such a place that I can find The site offers different kinds.
Quote
0 #224 suni 2011-12-14 00:31
hello,

Please send me the sample script . my email id :

Thanks
Sunil
Quote
0 #225 suni 2011-12-19 02:25
hi,

I have built a custom integrator to insert values into custom table. i have one query..

1. I am unable to create the document.. When i click on create document button, excel opens and after some time i see the error in my jsp pages..

Thanks
Sunil
Quote
0 #226 Ajs 2012-02-15 11:21
Is there standard web ADI for loading manual journal entries into FAH ?
Quote
0 #227 Nupur Garg 2012-02-21 04:13
Hi,
Is there a way to create dependent LOV in excel sheet?
Please can you mail me the steps.

Thanks,
Nupur
Quote
0 #228 AppsDeveloper 2012-03-06 23:01
We run a report out of Oracle ADI which is used for overall GL account review and tie-out of our file transfer to Essbase. There were new GL accounts added to Oracle in February. How do I change the report parameters to pull these new accounts?
Quote
0 #229 VikasMehra 2012-04-25 01:25
Hi,

I modified a standard integrator 'Project - Transaction Import'. I modified the Layout also accordingly. But when i go to Create Document, same integrator is not coming in the list. I did bounce the Apache and OA core but still i could not able to see same integrator in create document list. Can you please let me know what I could do to show that integraotr in create document list.

Any kind of help will be highly appriciable.

T hanks,
Vikas
Quote
0 #230 SaurabhGoel85 2012-05-01 13:47
This is a great article no doubt it helped me a lot.
But still I am facing following issue.

1. Columns I defined as POPList displays a dropdown with limited number of values. The Dropdown is for employee names. We need search ability for the same hence dropdown will not help me could you please suggest what could be possibly wrong.
Code used is
UPDATE
BNE_INTERFACE_ COLS_B
SET
VAL_ID_COL = 'PERSON_ID',
VAL_DESC_COL = 'FULL_NAME',
VAL_MEAN_COL = 'FULL_NAME',
VAL_TYPE = 'TABLE',
LOV_TYPE = 'POPLIST',
VAL_OBJ_NAME = 'PER_ALL_PEOPLE _F',
VAL_ADDL_W_C = 'SYSDATE BETWEEN EFFECTIVE_START _DATE AND NVL(EFFECTIVE_E ND_DATE,''31-De c-4712'') and CURRENT_EMPLOYE E_FLAG = ''Y''',
OFFLINE_LOV_EN ABLED_FLAG = 'N'
WHERE 1=1 AND APPLICATION_ID = 200
AND INTERFACE_CODE = 'JHA_AP_CARD_AD ILOAD7_INTF'
AN D INTERFACE_COL_N AME like 'P_EMPLOYEE_NAM E'

Regards
Sau rabh Goel
Quote
0 #231 SaurabhGoel85 2012-05-01 15:22
Continuing previous post.

2. I have defined the Poplist for yes and no using a value set but the same is not appearing in the excel while all other lov's are appearing on the excel.
UPDATE
BNE_INTERFACE_ COLS_B
SET
REQUIRED_F LAG = 'N',
VAL_ID_COL = 'FLEX_VALUE_ID' ,
VAL_MEAN_COL = 'FLEX_VALUE',
V AL_DESC_COL = 'FLEX_VALUE',
V AL_TYPE = 'TABLE',
LOV_TYPE = 'POPLIST',
VAL_OBJ_NAME = 'FND_FLEX_VALUE S',
VAL_ADDL_W_C = 'FLEX_VALUE_SET _ID = 1010300',
OFFLI NE_LOV_ENABLED_ FLAG = 'Y'
WHERE 1=1 AND APPLICATION_ID = 200
AND INTERFACE_CODE = 'JHA_AP_CARD_AD ILOAD7_INTF'
AN D INTERFACE_COL_N AME like 'P_PAPER_STMT_W ANTED'

3. I need sample files for creating dependent LoV's

If someone can help I would really appriciate the same.
You can mail me samples at

Thanks and Regards
Saurabh Goel
Quote
0 #232 andrushell 2012-05-14 09:38
Could anyone describe the steps for implementing java LOV's, some scripts examples ... .
It would be very helpful. Share your experience.
Tha nks.

If someone would like to help me, email me at
Thanks.
Quote
0 #233 Ravi Manchu 2012-07-05 06:52
Hello,

We have one requirement to restrict the LOV values based on certain condition.So when i checked it is JAVA LOV.So can some one guide me how we can acheive this requirement.

T his is the standard webadi integrator.



Regards,
Ravi M
Quote
0 #234 Ravi Manchu 2012-07-05 06:52
Hello,

We have one requirement to restrict the LOV values based on certain condition.So when i checked it is JAVA LOV.So can some one guide me how we can acheive this requirement.

T his is the standard webadi integrator.



Regards,
Ravi M
Quote
0 #235 Deepak Kandpal 2012-08-23 01:06
We can use Java APi to create JAVA LOV.. here is the code



-- LOV for Project
bne_integrator_ utils.create_ja va_lov(p_applic ation_id => v_application_i d,
p_interface_cod e => v_interface_cod e,
p_interface_col _name => UPPER ('p_c_project_i d'),
p_java_class => 'oracle.apps.xb ol.excelupload. lov.XxneProject Lov',
p_window_captio n => 'Project',
p_window_width => 400,
p_window_height => 400,
p_table_block_s ize => 10,
p_table_columns => 'FLEX_VALUE,DES CRIPTION',
p_table_select_ columns => NULL,
p_table_column_ alias => NULL,
p_table_headers => NULL,
p_table_sort_or der => 'YES',
p_user_id => fnd_global.user _id
);
Quote
0 #236 Gaurav Kumar 2012-08-29 13:04
Hi Kali.

Great article. It seems very helpful to me.
I need to know some technical information about web adi like,
In a custom web adi, we can know the procedure name used from the table 'BNE_INTERFACES _B' as the field 'INTERFACE_NAME ',
but can you tell me from where we can get the package name. because with the same procedure name there can be many package.

Then how can we decide which package is using in web adi.

Thanks,
G aurav
Quote
0 #237 Nageshwar Reddy 2012-11-01 14:07
Hi ,

Good Morning everyone...
I am working in R12.
My Custom WEB ADI 11i Templates are not working in R12.
Please let me know is there any steps to resolve the issue.
Thanks and Regards,
Nagesh war Reddy Porla.
Quote
0 #238 Jinal Shah 2012-11-26 08:32
Hi,

I am new to web ADI and facing problem in the following:

I have created the parameterized web ADI report using “HR Create Standalone Query “Integrator. However, by this we can only add 5 parameters. Can anybody suggest how to add more than 5 parameters in the web ADI report?
Quote
0 #239 Pradeep Rayapudi 2013-01-09 15:00
Hi Kali,

Great article. It seems very helpful to me. I am facing the following problem while developing a custom integrator. Please help me in this regard.

I am developing a custom integrator for uploading AP invoice. After creating the custom integrator following the steps as given in your article, i defined layout for the new custom integrator. But when I click on 'Create Document' in Desktop Integration responsibility, the custom integrator is not visible in the select integrator drop-down list. So I am unable to create the document.

Do I need to bounce the Apache? or some thing else

Please help.

Thanks,
-Prad eep.
Quote
0 #240 vijay_b 2013-03-29 12:23
Please could you help me to achieve the below functionality using WEB ADI ?
My requirement is like to load large data from Excel sheet to Oracle Tables.
Validat e the loaded data, It has to allow to review data and it also to update the data.

Please help me.

Thanks,
Vi jay
Quote
0 #241 vijay_b 2013-03-29 12:25
My work environment is 11.5.10
Quote
0 #242 Rajan M Kalam 2013-12-12 17:37
Hello Kali,
Great article, I owed a lot to you. :)
What is the PL/SQL package/procedu res for the "General Ledger- Journal" integrator? What is the table that the integrator?
If I need to modify the Journal Integrator in Web ADI, how can i achieve this? For example, I don't need to upload all field to the table, change the integrator name to e.g., XXXGeneral ledger - Journal--in the dropdown list of 'Integrator' field.

Also, would you please send me the sql for the Interface (step2) and default layout (step 3)?
Thank you,
Rajan K M
Quote
0 #243 saranya 2014-07-08 13:30
Hi,

My requirement is to add additional field to the integrator. I have modified the integrator and its corresponding package. And I have changed the layout to use the added field. Now when I upload the layout, am getting Exception during parsing of uploaded document.

Can any of you please help to resolve this error.

THanks
Quote
0 #244 NRaghavan 2014-08-07 04:47
How to know the total number of rows uploaded?
User uploads in validate mode and uploads the same set in validate and import mode. Duplicate sets of records are getting imported.

How to get to know in plsql the total no of records uploaded?
Quote
0 #245 Hari V 2014-09-01 06:20
Hi Kalimuthu,

I've two custom integratos Customer WebADI & Contracts WebADI for uploading the data. My rquirement is, if the user wants to uplod Customer data the only that integrator should be displayed in the LOV of the Integrator page. The contracts integrator should not be displayed in the LOV and vice-versa.
Is this possible, if so kinldy let me know.
Quote
0 #246 Smita 2014-10-21 15:50
Hi
Thank you very much.
Can you please tell how to create java based LOV for Web ADI. Please email the guide to

Many Thanks
Smita
Quote
0 #247 Rejula 2015-01-02 11:41
Hi,

I have a integrator,inte rface,layout to upload AP invoices. Now client have come up with new requirement to add one more column in existing layout as LOV.

I have added field in interface and layout.
But while uploading shows an sql exception in Excel rather than Error message.

Can anyone help me out.
I want to know how to add column in existing one step by step and also how to show error message in excel.

My email id is .
Please send me any documents regarding this.
Thanks and Regards,
Rejula
Quote
0 #248 item cost - webadi 2015-01-16 15:56
HI kali

please kindly send to me webadi -item cost upload script with out fail , can you help me how to display error messages in excel when ever item failed to upload .jyotshna2004gm ail.com
Quote
0 #249 PLZ HELP 2015-03-04 10:31
HI All,

I had creatd a integrator based on the table, I am downloading the data using mapping, my requirement is to upload the same data , if I am doing any updation. It is inserting as a new record.

cn any one help me out , how can i perform insert update delete on a table
Quote
0 #250 Gopi 2015-04-23 20:22
Hi All,

I have a interface attribute in my integrator with LOV. I want this field not to be free text. It should allow the user only to select the values from the LOV.

Any help is appreciated.

Regards,
Gopi
Quote
0 #251 LOV HELP 2015-06-18 15:47
Hello

I am developing a lov, but i am getting nullpointerexception

any advice?

thanks
Quote
0 #252 LOV HELP 2015-06-18 15:47
Hello

I am developing a lov, but i am getting nullpointerexception

any advice?

thanks
Quote
0 #253 Meena 2015-10-29 10:47
Hi Kali,
I am developing custom integrator. I have defined 2 table type LOV's to derive org_id and vendor_id. I need to create a dependant java lov based on these 2 values. Can you please share sample reference scripts to create dependant java lov.
Quote
0 #254 dijetalni recepti 2022-01-27 06:01
What's Happening i'm new to this, I stumbled upon this I have found It positively useful and it has helped me out loads.

I am hoping to contribute & help other users
like its aided me. Great job.
Quote
0 #255 logga ut från icloud 2022-02-01 13:26
Why visitors still make use of to read news papers when in this technological
globe everything is available on web?
Quote
0 #256 פצעים בזווית הפה 2022-02-02 20:03
Good day! I simply wish to give you a big thumbs up for the excellent information you have right here on this post.
I will be returning to your website for more soon.
Quote
0 #257 kalóriabevitel 2022-02-03 07:30
I have been exploring for a bit for any high quality articles or blog
posts in this kind of house . Exploring in Yahoo I ultimately stumbled upon this
web site. Reading this information So i'm glad to express that I've a very good uncanny feeling I came upon exactly what I needed.
I most definitely will make sure to do not forget this website and provides it a glance regularly.
Quote
0 #258 أولغا كوريلنكو 2022-02-03 10:07
Hello, I think your site might be having browser compatibility issues.
When I look at your website in Opera, it looks fine but
when opening in Internet Explorer, it has some overlapping.
I just wanted to give you a quick heads up! Other then that,
amazing blog!
Quote
0 #259 niume 2022-02-03 20:50
Do you have a spam issue on this website; I also am
a blogger, and I was wondering your situation; we have created
some nice procedures and we are looking to exchange solutions
with other folks, be sure to shoot me an email if interested.
Quote
0 #260 บริษัท ey 2022-02-03 23:20
Way cool! Some very valid points! I appreciate you writing this post and the rest of the site
is very good.
Quote
0 #261 øyeklinikk trondheim 2022-02-04 00:13
Howdy, i read your blog from time to time and i own a similar one and i was just wondering if you get a lot of spam
responses? If so how do you protect against it, any plugin or anything you can recommend?
I get so much lately it's driving me crazy so any support
is very much appreciated.
Quote
0 #262 belcika malinois 2022-02-04 18:01
I blog often and I truly appreciate your information. The
article has truly peaked my interest. I'm going to book mark your site
and keep checking for new information about once
a week. I opted in for your Feed too.
Quote
0 #263 butas na eardrum 2022-02-05 13:15
Yes! Finally something about kegunaan asthin force.
Quote
0 #264 acestream להורדה 2022-02-05 19:21
Pretty! This was an extremely wonderful article. Many thanks for supplying this information.
Quote
0 #265 hund med feber 2022-02-05 21:31
I think this is one of the most important info for me.
And i am glad reading your article. But should remark on some general things, The web site style is perfect, the articles is really nice : D.
Good job, cheers
Quote
0 #266 burger clicker 2022-02-07 13:29
Hello, I would like to subscribe for this weblog to get most up-to-date updates, therefore where can i
do it please assist.
Quote
0 #267 masak kari ayam 2022-02-07 13:48
Excellent site you have here but I was wanting to know if you
knew of any discussion boards that cover the same topics discussed here?
I'd really love to be a part of 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 #268 בובת תינוק אמיתית 2022-02-07 16:05
Have you ever considered creating an e-book or guest authoring
on other blogs? I have a blog based on the same ideas you discuss and would really like to have you share some stories/informa tion.
I know my readers would value your work. If you are even remotely interested, feel free to send me an e-mail.
Quote
0 #269 kuukausi horoskooppi 2022-02-07 18:56
always i used to read smaller articles which also clear their motive, and that is
also happening with this post which I am reading now.
Quote
0 #270 إيفانجلين ليلي 2022-02-08 01:23
I am regular reader, how are you everybody? This paragraph posted at this site is really
fastidious.
Quote
0 #271 larawan ng mga hayop 2022-02-08 03:31
Useful info. Fortunate me I discovered your website unintentionally , and I'm surprised why this coincidence didn't
came about in advance! I bookmarked it.
Quote
0 #272 viskis jack daniels 2022-02-08 04:45
My spouse and I stumbled over here different web address and thought I should check things out.

I like what I see so now i am following you. Look forward to checking out your web page
yet again.
Quote
0 #273 berkongsi kereta 2022-02-08 07:30
I know this if off topic but I'm looking into starting my own weblog and was
wondering what all is required to get setup? I'm
assuming having a blog like yours would cost a pretty penny?
I'm not very internet savvy so I'm not 100% certain. Any suggestions or advice would
be greatly appreciated. Appreciate it
Quote
0 #274 tetovanie leva 2022-02-08 09:43
constantly i used to read smaller posts which also clear their motive, and that is also happening with
this paragraph which I am reading at this place.
Quote
0 #275 serranoskinka gravid 2022-02-08 09:45
Hi there I am so happy I found your website, I really found you by error, while
I was searching on Google for something else, Nonetheless I am here now and would just like to say
cheers for a fantastic post and a all round thrilling blog
(I also love the theme/design), I don’t have
time to browse it all at the moment but I have saved it and also included your
RSS feeds, so when I have time I will be back to read much more,
Please do keep up the excellent jo.
Quote
0 #276 ano ang renaissance 2022-02-08 09:58
It's actually a nice and useful piece of info.

I am glad that you simply shared this useful information with us.

Please stay us informed like this. Thanks for sharing.
Quote
0 #277 excel絕對值 2022-02-08 14:21
Hi to every , because I am in fact eager of reading this weblog's post to be updated regularly.
It contains nice information.
Quote
0 #278 apa itu retrovirus 2022-02-08 16:27
Thanks for sharing your info. I really appreciate
your efforts and I will be waiting for your next post thanks once again.
Quote
0 #279 איך לנסח מכתב בקשה 2022-02-08 17:26
I've been exploring for a little for any high quality articles
or blog posts in this sort of house . Exploring in Yahoo I finally stumbled upon this web site.
Reading this information So i'm satisfied to show that I've an incredibly excellent uncanny feeling I found out just what I needed.
I most undoubtedly will make certain to don?t omit this
web site and provides it a glance on a constant basis.
Quote
0 #280 boot manager 2022-02-08 17:46
I'll immediately grasp your rss as I can't in finding your e-mail subscription link or newsletter
service. Do you have any? Please let me recognise in order that I
may subscribe. Thanks.
Quote
0 #281 mi7 özellikleri 2022-02-09 00:56
That is a great tip especially to those fresh to the blogosphere.
Brief but very accurate info… Appreciate your sharing this one.
A must read post!
Quote
0 #282 пепко акції 2022-02-09 06:55
Definitely imagine that which you stated. Your favourite justification seemed to be on the internet the easiest factor to be mindful
of. I say to you, I definitely get annoyed even as other folks consider issues that they just do not realize about.
You managed to hit the nail upon the top as neatly as outlined out
the entire thing with no need side-effects ,
folks could take a signal. Will probably be again to get more.
Thanks
Quote
0 #283 מזותליומה 2022-02-09 13:29
Howdy! Someone in my Facebook group shared this site with us
so I came to check it out. I'm definitely enjoying the information. I'm book-marking and will be tweeting this to my
followers! Excellent blog and terrific design and style.
Quote
0 #284 empalme autocad 2022-02-09 14:16
Howdy! Would you mind if I share your blog with my twitter group?

There's a lot of folks that I think would really
appreciate your content. Please let me know.

Many thanks
Quote
0 #285 ketoconazole 洗頭水 2022-02-09 18:05
I was wondering if you ever considered changing the structure
of your website? 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 one or two pictures.
Maybe you could space it out better?
Quote
0 #286 bearish engulfing 2022-02-09 22:30
It's fantastic that you are getting thoughts from this paragraph as well as from our discussion made at this place.
Quote
0 #287 perikoroniitti 2022-02-10 01:44
I like the helpful info you provide in your articles.
I will bookmark your blog and check again here regularly.
I am quite sure I will learn a lot of new stuff right here!

Good luck for the next!
Quote
0 #288 opcom kopen 2022-02-10 04:39
Wow, fantastic blog layout! How long have you been blogging for?
you make blogging look easy. The overall look of your site is
fantastic, as well as the content!
Quote
0 #289 bulkmat 2022-02-10 07:14
Excellent beat ! I wish to apprentice while you amend your site, how could i subscribe for a blog web
site? The account aided me a acceptable deal. I had been tiny
bit acquainted of this your broadcast provided
bright clear idea
Quote
0 #290 isabelle caro 2022-02-10 07:58
It's actually a nice and useful piece of info. I
am glad that you just shared this helpful info
with us. Please stay us up to date like this.
Thank you for sharing.
Quote
0 #291 koliko se kuha jaje 2022-02-10 22:31
I'm very happy to uncover this site. I want to to thank you for ones time due to
this wonderful read!! I definitely loved every part of it
and I have you bookmarked to look at new stuff in your blog.
Quote
0 #292 tetraciklino tepalas 2022-02-11 05:56
Informative article, exactly what I needed.
Quote
0 #293 årsaker til struma 2022-02-12 13:11
For most recent information you have to visit internet and on web I found this web page as a best website for newest updates.
Quote
0 #294 버스fc2 2022-02-12 16:23
Having read this I believed it was extremely enlightening.
I appreciate you finding the time and effort to put this short
article together. I once again find myself spending a lot of time both reading
and leaving comments. But so what, it was still worthwhile!
Quote
0 #295 iphone 6s renkleri 2022-02-13 07:20
What's up, just wanted to tell you, I loved this article.
It was inspiring. Keep on posting!
Quote
0 #296 teclast p20hd ár 2022-02-13 09:14
I am sure this article has touched all the internet users, its really
really nice article on building up new website.
Quote
0 #297 lacná talianska móda 2022-02-13 09:37
I like the valuable info you supply on your articles.
I'll bookmark your weblog and take a look at once more here regularly.
I am reasonably certain I'll learn plenty of new
stuff right right here! Best of luck for the following!
Quote
0 #298 larawan ng mga hayop 2022-02-13 16:00
For most up-to-date news you have to pay a visit the web and on internet I found this website
as a most excellent website for most up-to-date updates.
Quote
0 #299 फाइबर चेयर 2022-02-13 22:11
An interesting discussion is worth comment. I think that
you ought to publish more about this subject, it may not be a
taboo matter but usually people don't speak about these topics.
To the next! All the best!!
Quote
0 #300 สูตรสารประกอบไอออนิก 2022-02-14 00:56
Excellent article. I am dealing with a few of these issues as well..
Quote
0 #301 xiaomi mi 9t hinta 2022-02-14 12:28
I know this website provides quality depending content and extra data, is there any other site which presents these data in quality?
Quote
0 #302 taronja de metil 2022-02-14 14:06
Thanks for some other magnificent article.
The place else may just anybody get that kind of
info in such a perfect method of writing? I've a
presentation subsequent week, and I'm at the search for such information.
Quote
0 #303 bridging loan คือ 2022-02-14 17:31
Hi there, I want to subscribe for this blog to obtain most
up-to-date updates, so where can i do it please assist.
Quote
0 #304 vitali uniclinica 2022-02-14 21:10
I was wondering if you ever thought of changing the layout of your site?
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 one or two images.
Maybe you could space it out better?
Quote
0 #305 курса на паунда 2022-02-15 08:57
When I originally commented I clicked the "Notify me when new comments are added" checkbox and now each time
a comment is added I get four emails with the same comment.
Is there any way you can remove people from that service?
Cheers!
Quote
0 #306 agregacija 2022-02-15 18:27
My partner and I absolutely love your blog and find almost all of your post's
to be precisely what I'm looking for. Would you offer guest writers to write content in your case?
I wouldn't mind creating a post or elaborating on some of the subjects you write regarding here.

Again, awesome website!
Quote
0 #307 harga moto g5s 2022-02-15 20:35
Right now it seems like Drupal is the top blogging platform available right now.
(from what I've read) Is that what you are using on your blog?
Quote
0 #308 וורן ביטי 2022-02-15 21:14
Wow! This blog looks just like my old one! It's on a
entirely different topic but it has pretty much the same page layout and design. Great choice of colors!
Quote
0 #309 klupe od paleta 2022-02-16 03:12
Nice blog! Is your theme custom made or did you download it from
somewhere? A design like yours with a few simple adjustements would really make my blog shine.
Please let me know where you got your theme. Kudos
Quote
0 #310 uri ng halaman 2022-02-16 04:34
I would like to thank you for the efforts you've put in writing this website.
I'm hoping to see the same high-grade blog posts from you later on as well.
In fact, your creative writing abilities has encouraged
me to get my own, personal website now ;)
Quote
0 #311 s 128 2022-02-16 16:11
Amazing! Its genuinely amazing paragraph, I have got much clear idea about from this article.
Quote
0 #312 xiaomi vaaka 2022-02-17 02:02
It's fantastic that you are getting thoughts from this piece of writing as well as from our dialogue made
at this place.
Quote
0 #313 บทความน่ารู้ 2022-02-17 21:18
It's amazing for me to have a web site, which is helpful
designed for my knowledge. thanks admin

My page; บทความน่ารู้: https://wakelet.com/@eaa78org
Quote
0 #314 hyra film på youtube 2022-02-17 23:23
Just wish to say your article is as astonishing. The clearness
in your post is simply great and i could assume you're an expert on this subject.

Well with your permission let me to grab your RSS feed to keep updated with forthcoming
post. Thanks a million and please keep up the rewarding
work.
Quote
0 #315 nedostatak b12 2022-02-19 06:31
Magnificent web site. Plenty of useful info here.
I'm sending it to several buddies ans also sharing in delicious.

And of course, thank you for your effort!
Quote
0 #316 маргарита рецепта 2022-02-21 07:25
There's certainly a great deal to learn about this issue.
I really like all the points you have made.
Quote
0 #317 horario de officemax 2022-02-21 12:35
Great blog here! Additionally your web site lots up fast!
What web host are you using? Can I am getting your affiliate hyperlink on your host?
I desire my web site loaded up as fast as yours lol
Quote
0 #318 retropie kurulumu 2022-02-21 12:36
Howdy! I understand this is sort of off-topic however I needed to ask.
Does running a well-establishe d blog like yours take a massive amount work?
I am completely new to running a blog but I do write in my journal on a daily basis.

I'd like to start a blog so I can easily share my experience
and feelings online. Please let me know if you have any kind of recommendations or tips for new aspiring blog owners.
Thankyou!
Quote
0 #319 פטאיה פרי 2022-02-21 15:03
Hi, I do think this is a great web site. I stumbledupon it ;)
I may return once again since I bookmarked it. Money and freedom is the greatest way to change, may you be rich and continue to guide others.
Quote
0 #320 läckande bröstmjölk 2022-02-21 15:28
Keep on working, great job!
Quote
0 #321 เฮอร์บาไลฟ์หลอกลวง 2022-02-21 17:51
Good information. Lucky me I recently found your site by accident (stumbleupon).
I have bookmarked it for later!
Quote
0 #322 mybrazilinfo.com 2022-02-21 18:50
certainly like your web-site however you need to test the spelling on several of your
posts. Several of them are rife with spelling problems and
I in finding it very troublesome to tell the truth on the other
hand I will surely come again again.
Quote
0 #323 citaty o dovere 2022-02-21 20:30
Hi there, just became aware of your blog through
Google, and found that it is really informative. I'm going to watch out for brussels.

I'll appreciate if you continue this in future. A lot of people will be benefited from your writing.
Cheers!
Quote
0 #324 shawn phillips 2022-02-22 01:13
This piece of writing is in fact a pleasant one it assists new
internet viewers, who are wishing in favor of blogging.
Quote
0 #325 nedväxling 2022-02-22 01:27
It's very trouble-free to find out any matter on web as compared to textbooks, as I found this
piece of writing at this website.
Quote
0 #326 brutto plat 2022-02-22 02:44
When I initially commented I clicked the "Notify me when new comments are added" checkbox and now each time
a comment is added I get four emails with the same comment.
Is there any way you can remove me from that service?
Thanks!
Quote
0 #327 imei broj 2022-02-22 02:52
I every time spent my half an hour to read this website's posts every
day along with a mug of coffee.
Quote
0 #328 obat herbal ganglion 2022-02-22 05:17
Hello there, I discovered your website by way of Google whilst searching for
a similar topic, your website got here up, it appears to be like great.
I have bookmarked it in my google bookmarks.
Hi there, just was alert to your blog via Google, and found that it's truly
informative. I'm gonna be careful for brussels. I will be
grateful in case you continue this in future. A lot
of people will be benefited from your writing. Cheers!
Quote
0 #329 delmergate wayfield 2022-02-22 05:38
Hi there! Someone in my Myspace group shared this website with us so I came to give it a look.

I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my
followers! Exceptional blog and brilliant design and style.
Quote
0 #330 lisa fleming 2022-02-22 05:45
Ahaa, its fastidious discussion regarding this paragraph at this place at
this blog, I have read all that, so at this time me
also commenting here.
Quote
0 #331 bodyboard desenho 2022-02-22 08:24
Do you have a spam problem on this blog; I also am a blogger, and I was wondering your situation; we have developed some nice methods and we
are looking to trade solutions with others, please shoot me an email
if interested.
Quote
0 #332 חבייר בארדם 2022-02-22 10:06
Hey! This is kind of off topic but I need some help from an established blog.
Is it difficult to set up your own blog? I'm not very techincal but I can figure things out pretty fast.
I'm thinking about creating my own but I'm not sure where to begin. Do you have any points
or suggestions? Thanks
Quote
0 #333 860 evo 2022-02-22 21:52
Hello, i think that i saw you visited my website so i came to “return the favor”.I am trying to
find things to enhance my web site!I suppose its ok to use a few of your ideas!!
Quote
0 #334 kändisar med cancer 2022-02-22 23:02
Hi there! I just wanted to ask if you ever have
any problems with hackers? My last blog (wordpress) was hacked and I
ended up losing several weeks of hard work due to no data backup.
Do you have any solutions to stop hackers?
Quote
0 #335 insalata con papaya 2022-02-22 23:57
Hi there to all, the contents existing at this web page are genuinely awesome for people
experience, well, keep up the nice work fellows.
Quote
0 #336 goglefordito 2022-02-23 00:54
I really like reading an article that will make people think.
Also, thank you for permitting me to comment!
Quote
0 #337 neutroni 2022-02-23 01:52
It's going to be ending of mine day, but before end I am reading this fantastic paragraph to increase my experience.
Quote
0 #338 halimbawa ng akronim 2022-02-23 06:30
Aw, this was a really 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 nearly anything done.
Quote
0 #339 apák napi vers 2022-02-23 12:53
Great delivery. Solid arguments. Keep up the amazing work.
Quote
0 #340 ang larawan plot 2022-02-23 13:13
Howdy just wanted to give you a quick heads up.
The words in your post seem to be running off the screen in Internet explorer.
I'm not sure if this is a format issue or something to do with browser compatibility but
I figured I'd post to let you know. The design and style look great
though! Hope you get the problem fixed soon. Many thanks
Quote
0 #341 ikk saalfeld 2022-02-23 13:31
I was able to find good information from your content.
Quote
0 #342 애니메트론 2022-02-23 19:01
Normally I do not learn article on blogs, however I wish to say that this write-up very compelled me to take a look at and do
it! Your writing taste has been amazed me. Thank you, very great
article.
Quote
0 #343 ostéopathe ste-julie 2022-02-23 23:44
Thanks for sharing your info. I truly appreciate your efforts and I am waiting for
your next post thanks once again.
Quote
0 #344 broughshane pharmacy 2022-02-24 00:28
Hi there! I just wanted to ask if you ever have any
problems with hackers? My last blog (wordpress) was hacked and I ended
up losing months of hard work due to no data backup. Do you have any solutions to protect against
hackers?
Quote
0 #345 삼성 tv mkv 재생 2022-02-24 07:31
excellent put up, very informative. I wonder why the other experts of this sector do not realize this.
You should continue your writing. I'm confident,
you have a huge readers' base already!
Quote
0 #346 scleroza amiotrofica 2022-02-24 09:13
What's up to every one, because I am actually keen of reading this
blog's post to be updated regularly. It carries pleasant material.
Quote
0 #347 vernee apollo test 2022-02-24 09:29
I'll right away clutch your rss as I can't in finding
your email subscription hyperlink or newsletter service.
Do you have any? Please permit me realize in order that I may subscribe.
Thanks.
Quote
0 #348 فريدا بينتو 2022-02-24 10:59
When someone writes an piece of writing he/she retains the image of a user in his/her mind that how a user can be aware of it.
So that's why this paragraph is perfect. Thanks!
Quote
0 #349 watak kartun 2022-02-24 13:02
Hi! I know this is sort of off-topic but I had to ask.
Does running a well-establishe d website like yours require a lot of work?

I am completely new to running a blog but I do write in my journal on a daily basis.

I'd like to start a blog so I can share my experience and feelings online.

Please let me know if you have any recommendations or tips for new aspiring blog owners.
Appreciate it!
Quote
0 #350 cc vest apotek 2022-02-24 15:39
May I simply say what a comfort to uncover someone who really understands what they're discussing on the web.
You actually realize how to bring a problem to light and make it important.
More and more people need to read this and understand this side of your
story. I can't believe you are not more popular
since you most certainly have the gift.
Quote
0 #351 sinaunang lampara 2022-02-24 16:57
It is really a great and helpful piece of information. I'm glad
that you just shared this useful info with us. Please stay
us up to date like this. Thanks for sharing.
Quote
0 #352 mittelbach binz 2022-02-24 18:35
Awesome article.
Quote
0 #353 ösa zeitz 2022-02-25 09:05
There's certainly a lot to learn about this topic. I really like all of the points you've made.
Quote
0 #354 rgb кабел 2022-02-25 18:45
Good information. Lucky me I ran across your website by accident (stumbleupon).
I've bookmarked it for later!
Quote
0 #355 usbtreeview 2022-02-26 00:33
of course like your website but you need to test the spelling on several of your posts.

A number of them are rife with spelling issues and I find
it very troublesome to tell the reality however I will definitely come again again.
Quote
0 #356 줄리아 가너 2022-02-26 06:49
Hi it's me, I am also visiting this site on a regular basis, this site is
truly nice and the people are in fact sharing fastidious thoughts.
Quote
0 #357 动词 2022-02-26 18:44
I'm pretty pleased to uncover this page. I wanted to
thank you for ones time for this wonderful read!!
I definitely loved every part of it and i also have you
book-marked to see new things on your site.
Quote
0 #358 фільм у серці моря 2022-02-27 02:19
Pretty nice post. I just stumbled upon your blog
and wanted to say that I've truly enjoyed browsing your
blog posts. After all I'll be subscribing to your feed and I hope you write again very soon!
Quote
0 #359 mybrazilinfo.com 2022-02-27 11:40
This is very interesting, You're a very skilled blogger.
I've joined your feed and look forward to seeking more of
your great post. Also, I've shared your website in my social networks!
Quote
0 #360 figli stallone 2022-02-27 14:13
This is a good tip especially to those new to the blogosphere.
Brief but very accurate info… Many thanks for sharing this one.
A must read post!
Quote
0 #361 aspen dental calgary 2022-02-27 20:14
Hi fantastic website! Does running a blog like this require a massive amount work?
I have no expertise in programming but I was hoping to start my own blog soon. Anyway,
should you have any recommendations or tips for new blog owners please share.

I know this is off subject however I just needed to ask.
Thanks!
Quote
0 #362 neuralna cijev 2022-02-28 00:23
I've been exploring for a bit for any high-quality articles or weblog
posts on this kind of area . Exploring in Yahoo I ultimately
stumbled upon this site. Studying this information So i am happy to show that I have an incredibly excellent uncanny
feeling I came upon just what I needed. I most surely will make certain to do not forget
this site and provides it a glance regularly.
Quote
0 #363 o que é orogênese 2022-02-28 04:41
I have been browsing online more than 4 hours today, yet I never
found any interesting article like yours. It's pretty worth enough for me.
Personally, if all site owners and bloggers made good content as you did,
the web will be much more useful than ever before.
Quote
0 #364 nstemi hoito 2022-02-28 09:20
I will immediately seize your rss feed as I can't in finding your email subscription hyperlink or newsletter service.
Do you've any? Please let me understand so that I may subscribe.

Thanks.
Quote
0 #365 oleīnskābe 2022-02-28 09:39
What's Happening i'm new to this, I stumbled upon this I've found
It absolutely helpful and it has helped me out loads.
I hope to give a contribution & aid other users like its helped me.
Great job.
Quote
0 #366 flexcare therapy 2022-02-28 11:58
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 wrote and say, I'm thoroughly enjoying your blog.
I too am an aspiring blog writer but I'm still new to everything.
Do you have any suggestions for novice blog writers?
I'd really appreciate it.
Quote
0 #367 tawa medical clinic 2022-02-28 13:50
Having read this I believed it was extremely informative.
I appreciate you spending some time and effort to put this short
article together. I once again find myself personally spending a lot of time both reading and posting comments.
But so what, it was still worthwhile!
Quote
0 #368 real hantu 2022-02-28 18:15
A person necessarily lend a hand to make seriously articles I
would state. That is the very first time I frequented your web
page and up to now? I surprised with the analysis you made to create this particular publish amazing.
Excellent activity!
Quote
0 #369 recuva for android 2022-03-01 07:21
I love your blog.. very nice colors & theme.
Did you design this website yourself or did you hire someone to do it for you?

Plz respond as I'm looking to design my own blog and would
like to find out where u got this from. cheers
Quote
0 #370 ما هو الجذر 2022-03-01 10:21
Good day! 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 #371 חד קרן אמיתי 2022-03-01 20:34
I have learn some just right stuff here. Certainly
price bookmarking for revisiting. I surprise how much effort you put
to make the sort of magnificent informative website.
Quote
0 #372 pagmimina kahulugan 2022-03-02 00:03
Wonderful items from you, man. I have take into accout your stuff
previous to and you're simply extremely great. I actually like
what you've got here, really like what you're
stating and the best way during which you assert it.
You make it enjoyable and you still take care of to keep it sensible.
I can't wait to learn far more from you. This is actually a
great website.
Quote
0 #373 automasi 2022-03-02 02:36
I got this web site from my friend who shared with me regarding this web page and now this time I am visiting this site and reading very informative articles at this time.
Quote
0 #374 mybrazilinfo.com 2022-03-02 04:55
Sweet blog! I found it while surfing around on Yahoo
News. Do you have any tips on how to get listed in Yahoo News?

I've been trying for a while but I never seem
to get there! Thanks
Quote
0 #375 орда или альянс тест 2022-03-02 12:14
I’m not that much of a internet reader to be honest but your sites really nice, keep it up!
I'll go ahead and bookmark your site to come back in the future.
Many thanks
Quote
0 #376 кристофър мелони 2022-03-02 12:39
Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates.
I've been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this.

Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to
your new updates.
Quote
0 #377 sus2 コード 2022-03-02 14:32
hello there and thank you for your info – I have definitely picked up something new from
right here. I did however expertise several technical issues using this
site, since I experienced to reload the website many times previous to I
could get it to load correctly. I had been wondering if your web hosting is OK?
Not that I'm complaining, but sluggish loading instances times will very frequently affect your placement in google and could damage your quality score if ads
and marketing with Adwords. Anyway I'm adding this RSS to my email and could look out for much more of your respective fascinating content.
Make sure you update this again soon.
Quote
0 #378 penyakit kulit putih 2022-03-10 14:16
Incredible! This blog looks exactly like my old one! It's on a totally different subject but
it has pretty much the same layout and design. Superb choice of colors!
Quote
0 #379 cara menulis laporan 2022-03-11 10:16
If you want to grow your knowledge only keep visiting this web site and be updated with the hottest news update
posted here.
Quote
0 #380 tempoh darah nifas 2022-03-12 05:43
I do not even know how I ended up right here, however I assumed this publish used to be good.
I don't recognize who you're but definitely you're going to a famous blogger in the event you aren't already.
Cheers!
Quote
0 #381 mort rickon stark 2022-03-12 18:17
Hey There. I discovered your weblog the usage of msn. That is a really neatly written article.
I will make sure to bookmark it and come back to read extra of your useful information. Thank
you for the post. I'll definitely return.
Quote
0 #382 besafe izi flex 2022-03-13 04:01
Hi, this weekend is pleasant for me, as this moment i am reading this impressive informative article here at my
house.
Quote
0 #383 hedge fondovi 2022-03-13 11:52
Oh my goodness! Incredible article dude!

Many thanks, However I am experiencing difficulties with your RSS.

I don't understand the reason why I can't
join it. Is there anybody else having similar RSS issues?
Anybody who knows the answer will you kindly respond?
Thanx!!
Quote
0 #384 wwe לצפייה ישירה 2022-03-13 12:27
I think this is one of the most vital info for me. And i'm glad reading your article.
But wanna remark on some general things, The site style is wonderful, the articles is really excellent : D.
Good job, cheers
Quote
0 #385 e akoru ukulele 2022-03-13 16:04
Thanks to my father who shared with me on the topic of this weblog,
this blog is actually amazing.
Quote
0 #386 bezbebek 9 2022-03-13 23:08
Hey I know this is off topic but I was wondering if you knew of any widgets I could add
to my blog that automatically tweet my newest twitter updates.
I've been looking for a plug-in like this for quite some time and
was hoping maybe you would have some experience with something like
this. Please let me know if you run into anything. I truly
enjoy reading your blog and I look forward to
your new updates.
Quote
0 #387 בולי גולי 2022-03-14 05:05
Hi it's me, I am also visiting this website regularly, this
website is truly nice and the visitors are in fact sharing pleasant thoughts.
Quote
0 #388 trigonometriq 2022-03-14 07:30
Hello, I log on to your blogs regularly. Your story-telling style is
awesome, keep it up!
Quote
0 #389 sem legekontor 2022-03-14 09:48
May I just say what a comfort to discover a person that really understands what they're discussing on the internet.
You certainly know how to bring a problem to light and make it important.

More and more people should read this and understand this side of
your story. I was surprised you aren't more popular since you most certainly have
the gift.
Quote
0 #390 yogurt untuk gastrik 2022-03-14 13:40
A fascinating discussion is definitely worth comment. There's no
doubt that that you should publish more about
this subject matter, it might not be a taboo subject but usually folks don't speak about such subjects.
To the next! Cheers!!
Quote
0 #391 animali testardi 2022-03-14 15:47
Heya i'm for the first time here. I came across this board and I find It really
useful & it helped me out a lot. I hope to give something back and
help others like you helped me.
Quote
0 #392 מה זה אמזון 2022-03-15 03:44
I am not sure where you're getting your info, but great topic.
I needs to spend some time learning much more or understanding more.
Thanks for wonderful information I was looking for this information for my mission.
Quote
0 #393 консолидация 2022-03-16 12:39
The other day, while I was at work, my sister stole my iPad and tested to see if it can survive a twenty five foot drop, just so she can be
a youtube sensation. My apple ipad is now destroyed and she
has 83 views. I know this is entirely off topic but I had to share
it with someone!
Quote
0 #394 பொறுப்பு 2022-03-16 16:45
My programmer is trying to convince me to move to .net from PHP.
I have always disliked the idea because of the costs.

But he's tryiong none the less. I've been using Movable-type on a variety of websites for
about a year and am concerned about switching to another
platform. I have heard fantastic things about blogengine.net.
Is there a way I can import all my wordpress posts into it?
Any help would be greatly appreciated!
Quote
0 #395 إلين بومبيو 2022-03-16 18:16
The other day, while I was at work, my cousin stole my apple ipad and tested to see if it can survive a twenty five
foot drop, just so she can be a youtube sensation. My apple
ipad is now destroyed and she has 83 views.

I know this is totally off topic but I had to share it with someone!
Quote
0 #396 грустный картинки 2022-03-16 18:23
I'm not positive the place you are getting your information, but good topic.
I must spend a while finding out more or understanding more.

Thank you for great info I used to be searching
for this info for my mission.
Quote
0 #397 quaderni decorati 2022-03-16 23:41
Your style is unique in comparison to other folks I have read stuff
from. Thank you for posting when you've got
the opportunity, Guess I will just bookmark this blog.
Quote
0 #398 bahçe lavaboları 2022-03-17 06:56
My brother recommended I might like this web site. 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 #399 sv 388 2022-03-26 02:45
What's Taking place i am new to this, I stumbled upon this I have discovered It absolutely helpful and it has helped me out loads.
I am hoping to give a contribution & assist other customers like its aided me.

Great job.
Quote
0 #400 atmateria blog 2022-03-26 04:23
It's an amazing post in support of all the online visitors; they will obtain benefit from
it I am sure.
Quote
0 #401 noć vještica iii 2022-03-26 14:18
always i used to read smaller posts that as well clear their motive, and that is also happening with this post which I am
reading here.
Quote
0 #402 hund med feber 2022-03-27 13:05
I read this post completely regarding the comparison of
most recent and previous technologies, it's remarkable article.
Quote
0 #403 ซื้อหวยออนไลน์ 2022-03-28 11:21
Hi friends, nice article and nice arguments commented here, I am really enjoying by these.
Quote
0 #404 Bangkok AQ 2022-03-29 04:11
Hi! I could have sworn I've been to this site before but after browsing through
some of the post I realized it's new to me. Anyhow, I'm definitely delighted I
found it and I'll be bookmarking and checking back
often!
Quote
0 #405 dr rameen molavi 2022-03-29 13:18
Good post. I learn something new and challenging on websites I stumbleupon every day.

It will always be exciting to read articles from other authors and use something from other web sites.
Quote
0 #406 kartoffelomelet 2022-03-29 18:14
Every weekend i used to pay a quick visit
this website, for the reason that i wish for enjoyment, since this this website conations really pleasant
funny material too.
Quote
0 #407 klasszikus omlett 2022-03-29 21:01
It's amazing designed for me to have a website, which is helpful designed for my know-how.

thanks admin
Quote
0 #408 sandeep sobti 2022-03-29 22:19
Howdy! I could have sworn I've been to this site before but after checking through some of the
post I realized it's new to me. Anyhow, I'm definitely delighted I found it and I'll be
book-marking and checking back often!
Quote
0 #409 companiesbritain.com 2022-03-30 01:58
A person necessarily assist to make critically posts I might state.
This is the first time I frequented your web page and to this point?
I surprised with the research you made to make this actual post extraordinary.
Fantastic job!
Quote
0 #410 sanjati drva 2022-03-30 14:06
Hi! I just wanted to ask if you ever have any trouble with hackers?
My last blog (wordpress) was hacked and I ended up losing many months of hard work due to
no back up. Do you have any solutions to protect against hackers?
Quote
0 #411 at bakımı 2022-03-30 21:06
Hi! This is my 1st comment here so I just
wanted to give a quick shout out and tell you I genuinely enjoy reading your articles.
Can you recommend any other blogs/websites/ forums that go over the
same subjects? Thanks a ton!
Quote
0 #412 dr lerman ansonia ct 2022-03-31 05:51
This paragraph provides clear idea in favor of the new visitors
of blogging, that actually how to do blogging and site-building.
Quote
0 #413 1celular e71 2022-03-31 13:37
First of all I want to say excellent blog! I had a quick question in which I'd
like to ask if you don't mind. I was curious to find out
how you center yourself and clear your head before writing.
I have had a tough time clearing my thoughts in getting my thoughts out.
I truly do enjoy writing however it just seems like the first 10 to 15 minutes are generally lost just trying to figure out how to begin.
Any suggestions or hints? Cheers!
Quote
0 #414 appendicit 2022-03-31 15:15
Hi there everyone, it's my first go to see at this web page,
and paragraph is in fact fruitful in support of me, keep up posting such content.
Quote
0 #415 ผมสีช็อกโกแลต 2022-03-31 17:48
Thanks , I have recently been searching for information about this topic for a long time and
yours is the best I have found out till now. But, what concerning the conclusion? Are you positive about the supply?
Quote
0 #416 bento laatikko 2022-03-31 22:18
An intriguing discussion is definitely worth comment. I do believe that you ought to
write more on this subject, it may not be a
taboo subject but usually people don't talk about
such topics. To the next! Cheers!!
Quote
0 #417 perifere nervesystem 2022-03-31 22:22
Hey there just wanted to give you a quick heads up.
The words in your content seem to be running off the screen in Internet explorer.
I'm not sure if this is a format issue or something to do
with browser compatibility but I thought I'd post to let you know.
The design and style look great though! Hope you get the problem solved soon. Cheers
Quote
0 #418 companiesbritain.com 2022-03-31 23:27
If you wish for to take a great deal from this paragraph then you have
to apply such strategies to your won website.
Quote
0 #419 hemayatkar bopfingen 2022-04-01 07:20
Wow! After all I got a blog from where I be able to really take helpful information concerning my study and knowledge.
Quote
0 #420 esp8266 at komutları 2022-04-01 11:53
It is appropriate time to make some plans for the future and it is time to be happy.
I have read this post and if I could I wish to suggest you few interesting things or tips.
Maybe you can write next articles referring to this article.
I want to read more things about it!
Quote
0 #421 קורי מונטית 2022-04-01 12:18
I’m not that much of a internet reader to be honest but your sites
really nice, keep it up! I'll go ahead and
bookmark your website to come back later on. All the best
Quote
0 #422 italia-info.com 2022-04-01 21:34
Post writing is also a excitement, if you be familiar with after
that you can write if not it is complex to write.
Quote
0 #423 aleris røntgen oslo 2022-04-01 23:57
whoah this blog is magnificent i like studying your articles.
Stay up the great work! You recognize, lots of people are searching round for
this information, you could aid them greatly.
Quote
0 #424 sazazzle 2022-04-02 01:27
Hi, I read your blogs daily. Your humoristic style is awesome, keep it up!
Quote
0 #425 naprapat brumunddal 2022-04-02 02:06
For the reason that the admin of this web site is working, no question very quickly it will be famous, due to its quality contents.
Quote
0 #426 spain-web.com 2022-04-02 02:40
This site was... how do I say it? Relevant!! Finally I've found something which helped me.
Thank you!
Quote
0 #427 big mac kalori 2022-04-02 05:29
Hey there! Someone in my Facebook group shared this site
with us so I came to check it out. I'm definitely loving the information. I'm book-marking and will
be tweeting this to my followers! Great blog
and excellent design and style.
Quote
0 #428 засаждане на лалета 2022-04-02 20:26
Greetings! I know this is kinda off topic however I'd figured
I'd ask. Would you be interested in exchanging links or maybe guest authoring a blog post or vice-versa?
My site discusses a lot of the same topics as yours and I feel we could greatly benefit from each other.
If you happen to be interested feel free to send me an email.
I look forward to hearing from you! Terrific blog by the way!
Quote
0 #429 ซิลิคอนวัลเลย์ 2022-04-03 01:03
Hi! I'm at work surfing around your blog from my new iphone 4!

Just wanted to say I love reading your blog and look forward
to all your posts! Keep up the outstanding work!
Quote
0 #430 l.com 2022-04-03 02:52
What's up to every body, it's my first visit of this website; this website includes remarkable and really excellent information in support of readers.
Quote
0 #431 ブラックフライデー xbox 2022-04-05 02:40
This excellent website truly has all the information and facts I needed about
this subject and didn't know who to ask.
Quote
0 #432 test per fidanzati 2022-04-06 05:44
I think this is one of the so much significant information for me.
And i'm happy reading your article. However wanna observation on few normal issues, The site taste
is ideal, the articles is in point of fact great : D.
Excellent job, cheers
Quote
0 #433 adenokarcinom pljuč 2022-04-06 16:50
Pretty nice post. I just stumbled upon your weblog and wanted to say that I have really enjoyed surfing around
your blog posts. In any case I will be subscribing to your rss feed and
I hope you write again soon!
Quote
0 #434 slemdal legesenter 2022-04-06 23:53
Write more, thats all I have to say. Literally, it seems as
though you relied on the video to make your point.

You definitely know what youre talking about, why throw away your intelligence on just posting videos to your weblog when you could be giving us something enlightening to read?
Quote
0 #435 tengeri szerzetes 2022-04-07 04:58
I do not even understand how I stopped up here, but I thought this post was once good.
I don't know who you might be but certainly you are going to a well-known blogger for
those who aren't already. Cheers!
Quote
0 #436 דילן מקדרמוט 2022-04-07 05:57
Howdy I am so delighted I found your blog, I really found you
by mistake, while I was searching on Askjeeve for something
else, Anyhow I am here now and would just
like to say thanks for a incredible post and a all round thrilling blog (I also love the theme/design), I don't have time to read through it all at the moment but I have book-marked it and also added your RSS feeds, so when I have time I will be
back to read more, Please do keep up the fantastic
job.
Quote
0 #437 jnlp fájl megnyitás 2022-04-07 06:16
Very energetic article, I liked that bit. Will there be a part 2?
Quote
0 #438 مطعم سبأ فرجينيا 2022-04-07 08:37
Hi everyone, it's my first go to see at this site,
and piece of writing is genuinely fruitful designed for me, keep
up posting these articles or reviews.
Quote
0 #439 цефаклор 2022-04-07 11:16
Its like you read my mind! You appear to know a lot about
this, like you wrote the book in it or something.
I think that you could do with some pics to drive
the message home a bit, but instead of that, this is fantastic blog.
A great read. I will certainly be back.
Quote
0 #440 badekar med dør 2022-04-07 13:33
I could not refrain from commenting. Well written!
Quote
0 #441 มหภาค คือ 2022-04-07 13:42
fantastic points altogether, you simply received a logo
new reader. What could you recommend in regards to your put up that you
simply made some days in the past? Any certain?
Quote
0 #442 budget מכירת רכב 2022-04-07 14:19
I have been exploring for a little for any high-quality articles or weblog posts on this sort of house .
Exploring in Yahoo I finally stumbled upon this website.
Studying this information So i'm satisfied to exhibit that I have
a very excellent uncanny feeling I found out just what I needed.
I so much no doubt will make certain to do not fail to remember this web site and give it a look on a relentless
basis.
Quote
0 #443 klädnypor ikea 2022-04-07 19:44
I'm extremely impressed with your writing talents
as smartly as with the format in your weblog. Is this a paid
theme or did you customize it your self? Either way stay up the nice
quality writing, it's uncommon to peer a nice weblog like this one today..
Quote
0 #444 εξυπνα ονοματα 2022-04-07 22:11
Howdy! I understand this is somewhat off-topic however I had
to ask. Does managing a well-establishe d blog such
as yours require a massive amount work? I'm brand new to blogging however I do write in my journal on a daily basis.
I'd like to start a blog so I can share my own experience
and views online. Please let me know if you have any kind of suggestions or tips for brand new aspiring blog owners.
Thankyou!
Quote
0 #445 stefanovic oitnb 2022-04-07 22:19
Awesome article.
Quote
0 #446 spain-web.com 2022-04-07 23:23
I'm amazed, I must say. Seldom do I come across a
blog that's both equally educative and entertaining, and let me tell you,
you've hit the nail on the head. The problem is an issue that
not enough folks are speaking intelligently about.
Now i'm very happy I came across this during my search for something concerning this.
Quote
0 #447 kad kredit terbaik 2022-04-07 23:27
Great blog here! Also your website loads up fast!
What host are you using? Can I get your affiliate link to
your host? I wish my web site loaded up as fast as yours lol
Quote
0 #448 קספר סמארט 2022-04-08 00:30
I do not even know how I ended up right here, however I assumed this put up was great.
I do not understand who you might be however certainly you are going to a
famous blogger for those who are not already. Cheers!
Quote
0 #449 aok friedrichshafen 2022-04-08 01:45
Great web site you have here.. It's hard to find high-quality writing like yours
nowadays. I really appreciate individuals like you!
Take care!!
Quote
0 #450 1keittiö ikea 2022-04-08 02:57
Hi terrific blog! Does running a blog like this take a large amount of work?
I've absolutely no knowledge of coding but I was hoping to start my own blog soon. Anyways, should
you have any recommendations or tips for new blog owners please share.

I understand this is off topic but I just needed to ask.
Appreciate it!
Quote
0 #451 morski sadeži rižota 2022-04-08 05:50
Hi, I do think this is a great blog. I stumbledupon it
;) I may revisit yet again since i have saved as a favorite
it. Money and freedom is the greatest way to change, may you be rich and continue to guide others.
Quote
0 #452 spain-web.com 2022-04-08 07:39
Thanks for the marvelous posting! I certainly enjoyed reading it, you might
be a great author. I will make sure to bookmark your blog and definitely will come back down the
road. I want to encourage yourself to continue your great work, have a nice weekend!
Quote
0 #453 คำสั่ง ro exe 2022-04-08 08:16
I'm not sure why but this web site is loading incredibly
slow for me. Is anyone else having this problem or is it
a problem on my end? I'll check back later and see if the problem still exists.
Quote
0 #454 spremnik za igračke 2022-04-08 10:35
What's up, just wanted to say, I liked this article.

It was practical. Keep on posting!
Quote
0 #455 andreli veículos 2022-04-08 10:56
Hmm is anyone else having problems with the pictures on this blog loading?

I'm trying to find out if its a problem on my end or if it's the blog.
Any suggestions would be greatly appreciated.
Quote
0 #456 bull serija 2022-04-08 15:38
Fantastic website. Plenty of useful information here.
I'm sending it to some pals ans also sharing in delicious.

And of course, thanks in your sweat!
Quote
0 #457 katangian ng agenda 2022-04-08 15:57
Just wish to say your article is as surprising. The clearness in your post is simply nice
and i could assume you're an expert on this subject. Well with your permission allow me to
grab your RSS feed to keep updated with forthcoming post. Thanks a million and please continue
the enjoyable work.
Quote
0 #458 arm64 2022-04-08 17:20
If you would like to improve your experience just keep visiting this web site
and be updated with the most recent information posted here.
Quote
0 #459 arti emerging market 2022-04-08 18:12
Thank you a lot for sharing this with all folks you actually understand what you're talking approximately!
Bookmarked. Please additionally consult with my site =).
We could have a hyperlink trade agreement between us
Quote
0 #460 ano ang bisexual 2022-04-08 18:22
Appreciate the recommendation. Will try it out.
Quote
0 #461 rom android 2022-04-08 22:21
It's remarkable designed for me to have a site,
which is good for my experience. thanks admin
Quote
0 #462 kropli do oczu 2022-04-09 05:41
I got this web page from my pal who told me concerning this web site and now this time I am browsing this web page and reading very informative articles or reviews at this place.
Quote
0 #463 anda penyanyi 2022-04-09 14:08
Thank you for every other magnificent article. Where else may just anyone get
that type of information in such an ideal method of writing?

I have a presentation subsequent week, and I'm at the search for such information.
Quote
0 #464 অর্থনীতি 2022-04-10 02:55
My partner and I absolutely love your blog and find many of your post's to be precisely what I'm looking for.
can you offer guest writers to write content for you?

I wouldn't mind producing a post or elaborating on most of the subjects you
write concerning here. Again, awesome weblog!
Quote
0 #465 파인애플 익스프레스 2022-04-10 13:23
You really make it appear so easy with your presentation however I find this matter
to be actually something which I feel I might by no means understand.
It kind of feels too complicated and very huge for me. I am having a look
ahead on your subsequent submit, I will try to get the grasp of
it!
Quote
0 #466 farmacia sistiana 2022-04-10 17:52
Howdy! 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 #467 валутни ку 2022-04-11 10:09
I'm no longer positive the place you're getting your info, but good
topic. I needs to spend some time finding out more or figuring out more.
Thank you for great information I used to be searching for this info for my mission.
Quote
0 #468 bodyzone gym 2022-04-11 11:32
I was very pleased to find this web site. I want to to
thank you for ones time for this wonderful read!! I definitely enjoyed every bit of it and I have you book-marked to see new things on your website.
Quote
0 #469 araken maternidade 2022-04-11 18:34
My brother suggested I may like this blog. He was once totally right.
This publish truly made my day. You can not consider simply how a lot time
I had spent for this info! Thank you!
Quote
0 #470 julia adamian 2022-04-11 19:03
What's Happening i am new to this, I stumbled upon this I've found It absolutely helpful and it has helped me out
loads. I am hoping to contribute & help other customers
like its aided me. Good job.
Quote
0 #471 pictochart 2022-04-11 19:40
I always used to study piece of writing in news papers but now as I am a user of
web therefore from now I am using net for articles or reviews, thanks to web.
Quote
0 #472 ubat cirit birit 2022-04-11 19:42
I absolutely love your blog and find the majority of your
post's to be precisely what I'm looking for. Does one offer guest writers to write
content for yourself? I wouldn't mind creating
a post or elaborating on many of the subjects you write concerning here.

Again, awesome web site!
Quote
0 #473 mavi tarantula 2022-04-11 20:08
I loved as much as you'll receive carried
out right here. The sketch is tasteful, your authored subject
matter stylish. nonetheless, you command get bought 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 increase.
Quote
0 #474 sazazzle 2022-04-11 20:40
Hello colleagues, its great paragraph on the
topic of tutoringand fully explained, keep
it up all the time.
Quote
0 #475 coop opticians 2022-04-11 23:18
Amazing issues here. I'm very satisfied to look
your post. Thank you a lot and I am having a look ahead to touch
you. Will you please drop me a mail?
Quote
0 #476 huawei p10 plus 2022-04-12 06:14
Great web site you have here.. It's difficult to find good quality writing like yours nowadays.
I truly appreciate people like you! Take care!!
Quote
0 #477 jamie oliver knjige 2022-04-12 06:46
My brother suggested I might like this website. He was entirely right.
This post truly made my day. You can not imagine just how much time
I had spent for this info! Thanks!
Quote
0 #478 companiesbritain.com 2022-04-12 09:53
Hello! Someone in my Facebook group shared this website with
us so I came to look it over. I'm definitely loving the information. I'm bookmarking and will
be tweeting this to my followers! Exceptional blog and excellent design and style.
Quote
0 #479 বিয়ে 2022-04-12 11:19
Hmm is anyone else experiencing problems with the images on this blog loading?

I'm trying to determine if its a problem on my end or if it's the blog.
Any responses would be greatly appreciated.
Quote
0 #480 коди тв 2022-04-12 14:21
fantastic issues altogether, you just gained a new reader.
What might you recommend in regards to your post that you just made
a few days in the past? Any positive?
Quote
0 #481 vera farmiga 2022-04-12 22:01
Howdy! This blog post couldn't be written any better! Reading through this article reminds me of my previous roommate!
He continually kept preaching about this.
I will forward this article to him. Fairly certain he will have
a very good read. I appreciate you for sharing!
Quote
0 #482 גלובוס הזהב 2019 2022-04-12 22:03
No matter if some one searches for his required thing, thus he/she wants to be available that in detail,
so that thing is maintained over here.
Quote
0 #483 clinica oleiros 2022-04-12 23:13
Hi! 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 iphone4. I'm trying to find a theme or plugin that might
be able to resolve this issue. If you have any suggestions, please share.
With thanks!
Quote
0 #484 pilottikellot 2022-04-13 09:38
Wonderful website. Plenty of useful info here. I am sending
it to a few pals ans additionally sharing in delicious.

And obviously, thanks in your effort!
Quote
0 #485 dr.amling ohsu 2022-04-13 18:12
Appreciate the recommendation. Will try it out.
Quote
0 #486 netbook preços 2022-04-13 18:56
It's very easy to find out any topic on net as compared to books, as I found this article at this site.
Quote
0 #487 милиграм 2022-04-13 19:23
I like the helpful info you provide in your articles.
I'll bookmark your weblog and check again here regularly.
I'm quite sure I will learn many new stuff right
here! Good luck for the next!
Quote
0 #488 калории банан 2022-04-14 00:23
This is a topic which is close to my heart... Cheers!
Exactly where are your contact details though?
Quote
0 #489 vpn subscription uk 2022-04-14 05:44
i only got 7 days bro not 184 and im a new user
Quote
0 #490 portfolio maksud 2022-04-15 10:48
My partner and I stumbled over here coming from a different web address and
thought I should check things out. I like what I see so now i am following
you. Look forward to looking over your web page again.
Quote
0 #491 xanax ilaç 2022-04-15 13:19
Awesome article.
Quote
0 #492 buwitre english 2022-04-15 13:35
I visited multiple sites except the audio feature for audio
songs present at this web site is in fact fabulous.
Quote
0 #493 projek kayu pallet 2022-04-15 13:58
Good way of describing, and pleasant post to get facts concerning my presentation subject matter, which
i am going to deliver in academy.
Quote
0 #494 shelton primary care 2022-04-15 14:50
Good day! This post could not be written any better!

Reading through this post reminds me of my previous room mate!
He always kept talking about this. I will forward this article to him.
Pretty sure he will have a good read. Thank you for sharing!
Quote
0 #495 lobo na hayop 2022-04-15 18:04
Hi to every , because I am truly eager of reading this blog's post to be updated regularly.
It consists of pleasant data.
Quote
0 #496 גהי 2022-04-15 22:25
Undeniably imagine that that you stated. Your favourite justification appeared to be at the internet the
easiest thing to have in mind of. I say to you, I certainly get annoyed
at the same time as other folks consider issues that they plainly do not understand about.
You managed to hit the nail upon the highest and also defined out the entire
thing without having side-effects , folks can take a signal.

Will probably be back to get more. Thanks
Quote
0 #497 420519790391 2022-04-16 08:52
These are really impressive ideas in regarding blogging.
You have touched some fastidious points here. Any way keep up wrinting.
Quote
0 #498 meningosel 2022-04-16 10:49
Hey There. I found your weblog the use of msn. That is a very
well written article. I'll make sure to bookmark it and come back to learn more of your helpful info.
Thank you for the post. I'll definitely return.
Quote
0 #499 apotek klepp 2022-04-16 11:32
Pretty nice post. I just stumbled upon your blog
and wished to say that I've really enjoyed surfing around your
blog posts. After all I will be subscribing to
your rss feed and I hope you write again very soon!
Quote
0 #500 patologi definisjon 2022-04-16 12:03
I am in fact thankful to the holder of this web page who has shared this wonderful paragraph at at
this place.
Quote
0 #501 kozmetoloji nedir 2022-04-16 19:00
Peculiar article, exactly what I wanted to find.
Quote
0 #502 yaz oje renkleri 2022-04-16 20:08
Nice post. I was checking continuously this weblog and I am impressed!
Extremely useful info particularly the ultimate phase :) I handle such info a lot.
I used to be looking for this particular information for a very long
time. Thanks and good luck.
Quote
0 #503 dr koll niedernberg 2022-04-16 21:06
I know this if off topic but I'm looking into starting my own blog and
was curious what all is required to get set up?
I'm assuming having a blog like yours would cost a pretty
penny? I'm not very web savvy so I'm not 100% sure. Any suggestions or advice would be greatly appreciated.
Thanks
Quote
0 #504 1lumang lampara 2022-04-17 13:03
Great post. I was checking continuously this blog and I'm impressed!
Very useful info specially the last part :) I care for such
information a lot. I was seeking this particular info for a very long time.

Thank you and best of luck.
Quote
0 #505 koktel margarita 2022-04-17 20:52
Definitely consider that that you said. Your favorite justification seemed to
be at the internet the simplest factor to consider of.
I say to you, I certainly get irked even as people think about concerns that they plainly do not recognise about.
You managed to hit the nail upon the highest and defined out the whole thing with
no need side effect , people can take a signal. Will probably be
again to get more. Thank you
Quote
0 #506 سمكة كليب ارت 2022-04-18 00:09
Thanks designed for sharing such a pleasant thinking, article is good, thats why i have read it entirely
Quote
0 #507 אלכסיס אוהניאן 2022-04-18 19:48
Keep this going please, great job!
Quote
0 #508 scotts gym melksham 2022-04-19 05:59
Having read this I thought it was rather enlightening. I appreciate you spending some time and
energy to put this short article together.

I once again find myself personally spending a significant amount of time both reading
and commenting. But so what, it was still worthwhile!
Quote
0 #509 8002336136 2022-04-19 09:40
If some one wants to be updated with newest technologies afterward he must be go to see this site and be up to date daily.
Quote
0 #510 helix piercing 2022-04-19 12:33
I pay a quick visit every day a few sites and sites
to read articles or reviews, but this webpage gives quality based posts.
Quote
0 #511 pink room newcastle 2022-04-20 00:43
Good day I am so delighted I found your website,
I really found you by accident, while I was browsing
on Bing for something else, Anyways I am here now and would just like to say thank you
for a fantastic post and a all round enjoyable blog
(I also love the theme/design), I don’t have time to go through
it all at the minute but I have bookmarked it and
also added your RSS feeds, so when I have time I
will be back to read a great deal more, Please
do keep up the excellent jo.
Quote
0 #512 p8 max huawei 2022-04-20 06:12
If you are going for finest contents like me, just go to see this web site
all the time because it gives feature contents, thanks
Quote
0 #513 geçmişi sil tuşu 2022-04-20 09:02
I love your blog.. very nice colors & theme.

Did you create this website yourself or did you hire someone to do it for you?
Plz answer back as I'm looking to construct my own blog and would like to find
out where u got this from. kudos
Quote
0 #514 brokula kao prilog 2022-04-20 14:38
Wow! This blog looks just like my old one! It's on a completely
different topic but it has pretty much the same page layout
and design. Outstanding choice of colors!
Quote
0 #515 www.tbmg.nhs.uk 2022-04-20 17:59
Hey there just wanted to give you a quick heads up.
The text in your post seem to be running off the screen in Safari.
I'm not sure if this is a format issue or something to do with
web browser compatibility but I figured I'd post
to let you know. The layout look great though!
Hope you get the issue solved soon. Kudos
Quote
0 #516 standardna napaka 2022-04-20 19:18
What's up, this weekend is good for me, as this time i am reading this fantastic informative
article here at my residence.
Quote
0 #517 octa core מה זה 2022-04-21 02:24
Fantastic website you have here but I was wanting to know if you knew of any
forums that cover the same topics talked about here? I'd really love to
be a part of group where I can get feed-back from other knowledgeable individuals that share
the same interest. If you have any recommendations,
please let me know. Appreciate it!
Quote
0 #518 robot jelmez 2022-04-21 03:52
This paragraph will help the internet visitors for building up new webpage or even a weblog from start to end.
Quote
0 #519 yoga calorie 2022-04-21 06:29
I am really impressed along with your writing skills
and also with the structure to your weblog. Is that this a paid subject
matter or did you customize it your self? Anyway keep up the nice quality writing, it's uncommon to look a nice blog like this one nowadays..
Quote
0 #520 kukuruzni štirak 2022-04-21 08:36
Your style is really unique compared to other people I have read stuff from.
Many thanks for posting when you have the opportunity, Guess I'll just bookmark this site.
Quote
0 #521 define unalome 2022-04-21 09:17
I am really impressed with your writing skills and also with the layout on your blog.
Is this a paid theme or did you modify it yourself? Anyway keep up the nice quality writing,
it is rare to see a nice blog like this one nowadays.
Quote
0 #522 selamat malam jerman 2022-04-21 09:48
Right here is the right webpage for everyone who wishes to understand this topic.

You realize so much its almost tough to argue with you
(not that I actually would want to…HaHa).
You certainly put a fresh spin on a subject that has been discussed for years.

Wonderful stuff, just excellent!
Quote
0 #523 eik legekontor 2022-04-21 11:40
Do you mind if I quote a few of your articles as
long as I provide credit and sources back to your webpage?
My blog is in the very same niche as yours and my visitors
would really benefit from a lot of the information you provide here.
Please let me know if this alright with you.
Thank you!
Quote
0 #524 איך לצאת מחובות מהר 2022-04-21 12:08
Touche. Sound arguments. Keep up the great work.
Quote
0 #525 oneplus 9 teszt 2022-04-21 16:24
Its like you read my mind! You appear to know so much about this, like you wrote the book in it or something.

I think that you could do with a few pics to drive the message home a little bit, but other than that, this is fantastic blog.
A great read. I'll certainly be back.
Quote
0 #526 mga uri ng batas 2022-04-21 17:10
What's up to every one, the contents present at this website are in fact amazing
for people experience, well, keep up the good work fellows.
Quote
0 #527 תספורת לצבא 2022-04-21 17:39
Hi I am so excited I found your weblog, I really found you by mistake, while I was searching on Aol for something else, Regardless I am here now and would just like to say cheers
for a tremendous post and a all round enjoyable blog (I also love the
theme/design), I don’t have time to read 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 more, Please do keep up the
fantastic b.
Quote
0 #528 חדשות בטלוויזיה 2022-04-21 22:31
This is very attention-grabb ing, You're an overly skilled blogger.

I have joined your feed and stay up for in the hunt for more of your magnificent post.
Additionally, I have shared your site in my social networks
Quote
0 #529 james heltibride 2022-04-22 01:23
Hi it's me, I am also visiting this site daily, this website
is really pleasant and the people are genuinely sharing nice thoughts.
Quote
0 #530 najbolji doručak 2022-04-22 12:55
This is really interesting, You're a very skilled
blogger. I've joined your feed and look forward to seeking more
of your excellent post. Also, I have shared your site in my social networks!
Quote
0 #531 ยาน ยนต์ หมาย ถึง 2022-04-22 16:50
I all the time emailed this website post page to all my contacts, since if
like to read it after that my links will too.
Quote
0 #532 dentista laives 2022-04-22 22:01
Hello, I enjoy reading through your post. I like to write a
little comment to support you.
Quote
0 #533 oprofessionellt 2022-04-23 06:26
I always spent my half an hour to read this weblog's content
all the time along with a cup of coffee.
Quote
0 #534 electrum wallet คือ 2022-04-23 12:13
Excellent way of explaining, and fastidious post
to take information regarding my presentation subject,
which i am going to convey in institution of higher education.
Quote
0 #535 hantavirus symptomen 2022-04-23 13:00
Hello, I read your new stuff on a regular basis. Your writing style is
witty, keep doing what you're doing!
Quote
0 #536 tabel nilai sekarang 2022-04-23 13:18
Very good post. I'm facing some of these issues as well..
Quote
0 #537 sarımsak confit 2022-04-23 15:09
I pay a visit everyday some web sites and sites to read content, however this
website provides quality based writing.
Quote
0 #538 komut bloğu ile ev 2022-04-24 01:09
Simply wish to say your article is as astonishing.
The clarity to your submit is just great and i could suppose you are an expert on this subject.
Well with your permission let me to take hold of your RSS feed to keep updated with approaching post.

Thank you a million and please keep up the enjoyable work.
Quote
0 #539 pop significado 2022-04-24 03:24
Remarkable! Its in fact amazing paragraph, I
have got much clear idea concerning from this piece of writing.
Quote
0 #540 arild birkeland 2022-04-24 13:49
Hello to all, it's really a fastidious for me to pay a quick visit this website, it contains valuable Information.
Quote
0 #541 facce buffe animali 2022-04-24 15:55
Cool blog! Is your theme custom made or did you download it from somewhere?
A theme like yours with a few simple tweeks would really make my
blog jump out. Please let me know where you got your design. Appreciate
it
Quote
0 #542 gamot sa bukol 2022-04-24 17:24
all the time i used to read smaller posts which as well clear their motive, and that
is also happening with this article which I am reading
at this time.
Quote
0 #543 drs. schulenberg dds 2022-04-25 03:34
I am sure this post has touched all the internet visitors,
its really really nice piece of writing on building up new web site.
Quote
0 #544 tuzsuz soya sosu 2022-04-25 23:00
Outstanding post however , I was wondering if you could write a
litte more on this subject? I'd be very grateful if you could elaborate a
little bit further. Appreciate it!
Quote
0 #545 christina dolhaniuk 2022-04-26 16:19
Hello to every one, as I am really keen of reading this web site's
post to be updated daily. It consists of pleasant stuff.
Quote
0 #546 farmacia em manilha 2022-04-28 01:32
Thanks to my father who shared with me about this web site, this web site is genuinely amazing.
Quote
0 #547 larawan ng aso 2022-04-28 04:58
Thanks for sharing your thoughts about Custom Integrator.
Regards
Quote
0 #548 דרק שפרד מת 2022-04-28 20:55
You made some good points there. I looked on the internet for more information about the issue
and found most people will go along with your
views on this web site.
Quote
0 #549 フリー・ザ・ニップル 2022-04-29 01:40
Hi, all is going perfectly here and ofcourse every one is
sharing data, that's actually fine, keep up writing.
Quote
0 #550 darkcoin kurs 2022-04-29 07:43
Hi there outstanding blog! Does running a blog such as this take a massive amount
work? I have no expertise in computer programming but I was hoping to start
my own blog in the near future. Anyhow, if you have any recommendations or tips for new blog owners please share.
I understand this is off topic nevertheless I just needed to ask.
Thanks a lot!
Quote
0 #551 neobank 2022-04-29 10:10
Hey guys! I checked amazing resource about online banks.
Check it out!

My page; neobank: https://www.adminer.org/redirect/?url=https://gdmig-naturesbesttrees.com/
Quote
0 #552 תסרוקות מגניבות 2022-04-29 11:51
An impressive share! I have just forwarded this onto a coworker
who had been conducting a little homework on this.
And he in fact bought me lunch due to the fact that I stumbled
upon it for him... lol. So allow me to reword this.... Thanks
for the meal!! But yeah, thanx for spending the time to talk about this issue here on your internet site.
Quote
0 #553 аккорды для гитары 2022-04-29 16:12
I'm not certain where you're getting your info,
however great topic. I needs to spend some time learning much more
or figuring out more. Thank you for wonderful information I used
to be on the lookout for this info for my mission.

Here is my blog аккорды для гитары: https://worldgigants.ru/
Quote
0 #554 telefony od t mobile 2022-04-29 21:04
Nice blog here! Also your site loads up fast! What host
are you using? Can I get your affiliate link
to your host? I wish my web site loaded up as
quickly as yours lol
Quote
0 #555 ikigifo 2022-04-30 10:35
http://slkjfdf.net/ - Aqewif Uuwifay prr.ufwu.apps2f usion.com.suk.c w http://slkjfdf.net/
Quote
0 #556 ewihayecelde 2022-04-30 10:47
http://slkjfdf.net/ - Agicuhed Uhawojuco jvb.xauz.apps2f usion.com.vyk.u a http://slkjfdf.net/
Quote
0 #557 akufejvop 2022-04-30 10:59
http://slkjfdf.net/ - Hucfurad Amoqamgd kda.ihbc.apps2f usion.com.pup.m j http://slkjfdf.net/
Quote
0 #558 umijodaqe 2022-04-30 11:12
http://slkjfdf.net/ - Inucisuhu Eldixaso yqn.znwm.apps2f usion.com.qnz.b i http://slkjfdf.net/
Quote
0 #559 средства для макияжа 2022-04-30 19:40
Доброго времени суток
Нашел очень неплохой ресурс, сами посмотритет, , тут l достаточно много информации о всякого рода косметике
Я уверен вам это понравится
Сам много раз заказывал тут средства для
макияжа: http://allspravki.ru девушки подарки
Глянь и сам убедишься
Quote
0 #560 witch themed tattoos 2022-04-30 20:18
Awesome blog you have here but I was curious if you knew of
any user discussion forums that cover the same topics discussed in this article?
I'd really love to be a part of group where I can get opinions from other experienced people that share the same interest.
If you have any suggestions, please let me know. Cheers!
Quote
0 #561 jock wick 2022-05-01 15:32
Heya! I just wanted to ask if you ever have any issues with hackers?

My last blog (wordpress) was hacked and I ended up losing months
of hard work due to no backup. Do you have any methods to
stop hackers?
Quote
0 #562 spojleri 2022-05-01 18:59
Wonderful blog! I found it while searching on Yahoo News.
Do you have any suggestions on how to get listed in Yahoo
News? I've been trying for a while but I never seem to
get there! Many thanks
Quote
0 #563 choice store reviews 2022-05-02 09:27
Good day very nice web site!! Man .. Excellent ..
Wonderful .. I'll bookmark your site and take the feeds additionally?
I'm happy to seek out numerous helpful info here within the post, we need develop more
techniques on this regard, thanks for sharing.
. . . . .
Quote
0 #564 john legend esi 2022-05-02 09:44
Hello There. I discovered your weblog using msn. This is a really neatly written article.
I'll make sure to bookmark it and come back to read extra of your useful information. Thanks for the post.
I'll certainly comeback.
Quote
0 #565 معنى الفلسفة 2022-05-02 11:32
It's not my first time to go to see this web site, i am
browsing this web site dailly and take nice data from here every
day.
Quote
0 #566 breadwallet 2022-05-02 18:28
It's really a nice and useful piece of information. I am satisfied that you shared this helpful
info with us. Please keep us up to date like this. Thanks for sharing.
Quote
0 #567 legevakt florø 2022-05-02 18:44
I'm not sure why but this blog is loading incredibly slow for me.
Is anyone else having this issue or is it a problem
on my end? I'll check back later on and see if the problem still exists.
Quote
0 #568 saláta vacsorára 2022-05-02 21:36
I think the admin of this web page is actually working hard for his web page, because here every
data is quality based stuff.
Quote
0 #569 masalah komputer 2022-05-03 00:59
Good post! We are linking to this great article on our site.
Keep up the great writing.
Quote
0 #570 disopiramid ilaç 2022-05-03 08:10
Thanks a lot for sharing this with all people you actually realize what you
are talking approximately! Bookmarked. Kindly additionally talk over with my website =).
We may have a link exchange arrangement among us
Quote
0 #571 pag inom ng tubig 2022-05-03 23:00
I will immediately clutch your rss as I can not find your email subscription link or newsletter service.
Do you've any? Please permit me realize so that
I may subscribe. Thanks.
Quote
0 #572 kilen legesenter 2022-05-04 11:01
Thank you for any other informative blog. Where
else may just I get that type of information written in such a perfect means?
I have a challenge that I am just now running on, and I've
been on the look out for such information.
Quote
0 #573 пролапс на сърцето 2022-05-04 12:28
Everything is very open with a very clear explanation of the issues.
It was definitely informative. Your site is extremely helpful.
Thanks for sharing!
Quote
0 #574 hızlı öfkeli3 2022-05-04 12:50
Hi there, its fastidious paragraph on the topic of media print, we
all understand media is a great source of data.
Quote
0 #575 ロージーマック 2022-05-04 13:28
Excellent goods from you, man. I've understand your stuff previous to and you are just too wonderful.
I actually like what you've acquired here, certainly like what you
are saying and the way in which you say it. You make it entertaining
and you still take care of to keep it sensible.
I cant wait to read far more from you. This is really a wonderful web
site.
Quote
0 #576 gatekeeper ne demek 2022-05-04 23:45
I was recommended this website via my cousin. I'm not sure whether this post is written via him
as nobody else recognise such specified approximately
my trouble. You are incredible! Thank you!
Quote
0 #577 agropecuaria azenha 2022-05-04 23:51
Oh my goodness! Awesome article dude! Thank you so much, However I am having
issues with your RSS. I don't understand why I am unable to join it.
Is there anybody getting identical RSS problems? Anyone that
knows the solution will you kindly respond? Thanx!!
Quote
0 #578 анемона 2022-05-05 01:40
Howdy this is kinda of off topic but I was wanting
to know if blogs use WYSIWYG editors or if you
have to manually code with HTML. I'm starting
a blog soon but have no coding knowledge so I wanted to get
guidance from someone with experience. Any help would be
enormously appreciated!
Quote
0 #579 aksesori kucing 2022-05-05 10:31
It's the best time to make some plans for the future and it's time to
be happy. I've read this post and if I could I wish to suggest you some interesting things or advice.
Perhaps you can write next articles referring to this article.
I wish to read even more things about it!
Quote
0 #580 economy of scale คือ 2022-05-05 16:44
Heya outstanding website! Does running a blog like this require
a great deal of work? I have virtually no expertise in coding but I was hoping to start my own blog in the near future.
Anyways, if you have any ideas or tips for new blog owners please
share. I understand this is off topic but I just wanted to ask.
Cheers!
Quote
0 #581 కరువు 2022-05-06 11:55
Asking questions are truly good thing if you are not understanding anything fully, however this paragraph
presents nice understanding yet.
Quote
0 #582 geldmarktfonds 2022-05-06 13:55
I was able to find good advice from your content.
Quote
0 #583 קעקועים לאחים 2022-05-06 21:58
I have read so many posts about the blogger lovers however this paragraph is actually
a pleasant piece of writing, keep it up.
Quote
0 #584 androidversioner 2022-05-07 04:47
I was more than happy to uncover this website.
I wanted to thank you for your time due to this wonderful
read!! I definitely loved every bit of it and i also
have you bookmarked to check out new stuff on your website.
Quote
0 #585 1insulina effetti 2022-05-07 20:08
Ahaa, its fastidious dialogue on the topic of this article here at this blog, I have
read all that, so now me also commenting at this place.
Quote
0 #586 chụp màn hình ipad 2022-05-08 20:12
It's awesome in favor of me to have a web page,
which is helpful for my know-how. thanks admin
Quote
0 #587 gaspriser 2022-05-09 12:00
Quality articles or reviews is the important to attract the people to go to see the site, that's what this web page is providing.
Quote
0 #588 mybrazilinfo.com 2022-05-10 01:31
continuously i used to read smaller content which as well clear their motive, and that is also happening with this post which I am reading here.
Quote
0 #589 ongar war memorial 2022-05-10 03:45
Thanks for the marvelous posting! I seriously enjoyed reading it, you could be a great author.I will be sure to bookmark
your blog and will often come back sometime soon. I want to encourage you to ultimately
continue your great writing, have a nice weekend!
Quote
0 #590 gmac waterloo iowa 2022-05-10 05:49
Yes! Finally someone writes about Keyword tamalpais pediatrics publix cane bay overlea personal physicians binter street pharmacy
cherrystone vet pepperell family practice spay neuter express chc nipomo publix halifax plantation ospta oyster point family practice brass eye center publix weaverville green mountain pediatrics gales ferry pediatrics kool smiles lex ky camino al norte animal hospital masseyeassociat es lacamas medical
group publix nocatee guthrie vestal elmridge animal
hospital thomas moore clinic el centro dermatology goodville notary crystal run rock hill ranch view family medicine northwest houston heart center ranchview family medicine smith clinic marion ohio arc buda
a&r solutions publix connerton publix seven hills mid rockland imaging chad weldon granbury vince gilmer bloomingdale medical associates west hernando diagnostic cvs glen mills abilene eye institute walgreens corydon east fishkill animal hospital comtrea dental total care crowley lassen medical group
vitality vet swansea walter michajlenko dds sandcrest family
medicine healtheast vadnais heights north pointe psychiatry bridgeview clinton ia rite aid williamsport pediatrics east deerfoot jay's bird barn payson rx express
publix port wentworth ga riteaid gainesville ga prime imaging chattanooga affordable dentures lima ohio publix port wentworth ennis endocrinology michelin family health center gental dental tigard eatrightdenture s east paulding pediatrics islandwide dermatology salma mazhar ohioic rummel orthodontics ossip carmel simca marion il brad siok womack pharmacy annex cvs pecan ave
platte river medical kidzaam iha pinckney gentle dental rio vista tc feathers smoke bomb hill
dental clinic north pinellas pediatrics greenvale pediatrics hoover prairie
star hutchinson kansas toypupsohio maui medical group pukalani lake
champlain obgyn sterling sharpe pediatrics champlain obgyn kroger brazil indiana waynesville urgent care oakland bay pediatrics williamston primary care
socorro general medical group cyndy myers rutland skin center
pain management associates of wny cvfp forest kool smiles
on candler road retina institute of virginia three little birds pediatrics cvam mesa bridgeview clinton iowa
chmg heartcare southern piedmont primary care south valley ent dds south
dekalb publix pharmacy crestview high country healthcare frisco thomas moore health
clinic fort carson dental clinic 260 international circle texas children's pediatrics rayford sarha troy al noah's ark goleta
northwest women's healthcare kalispell imagix dental norcross
blue laser group ryan ranch physical therapy coral springs holistic pediatrics 13 area dental camp
pendleton pharmacy lafayette la longleaf dental
dr yeshlur rock springs wy cvs elizabethton tn 303-861-2121 303-861-2121 rite aid steptoe dr okolocha valley radiology angier dr.zittel lake mary dr.sandknop rockwall dr.alberto dominguez bali dr.soodini dr.chung cleveland tn dr.springle medicos on covington pike dr.stormont lexington ohio soledad medical clinic stu bonnin healthquest cordova life circle
cleveland tn bomgaars preston idaho surgi center of
central virginia 100 campus drive scarborough maine st vincent northside crossing publix on washington road geisinger
grays woods prairie star hutchinson ks dr seo dayton tn publix at thornblade pronto insurance harlingen tx affordable dentures hopkinsville ky corpus christi urology group
moore insurance blairsville ga thomas crossroads dental wow clinic piney flats urgent care highlander family medicine golden doodle
dandy publix loch leven kool kids pediatrics slocum dickson pediatrics affordable dentures odessa tx nystrom
and associates eden prairie 1-800-355-2470 everett clinic harbour pointe worknet harrisburg publix washington rd oregon state hospital junction city healtheast oakdale clinic imaging consultants of essex redimed bluffton indiana
custer pharmacy 19005 wiley s well road.
Quote
0 #591 לעבוד בגוגל 2022-05-10 10:11
What a material of un-ambiguity and preserveness of valuable familiarity on the topic of
unexpected feelings.
Quote
0 #592 tan90 kaçtır 2022-05-10 14:02
This is my first time go to see at here and i
am genuinely impressed to read all at alone place.
Quote
0 #593 pagkain quotes 2022-05-10 15:39
An outstanding share! I've just forwarded this onto a co-worker who has been conducting
a little homework on this. And he actually ordered me breakfast simply because
I discovered it for him... lol. So let me reword this....

Thanks for the meal!! But yeah, thanks for spending time to discuss this subject here on your internet site.
Quote
0 #594 lois spears 2022-05-10 19:40
I am genuinely pleased to glance at this web site posts which includes tons of helpful facts, thanks for providing such statistics.
Quote
0 #595 sajtdaráló 2022-05-10 21:27
Currently it appears like BlogEngine is the top blogging platform out there right
now. (from what I've read) Is that what you are using on your blog?
Quote
0 #596 דולינגו 2022-05-11 17:58
When some one searches for his essential thing, therefore he/she wishes to be available
that in detail, therefore that thing is maintained over here.
Quote
0 #597 500 euro in aud 2022-05-11 18:27
Thаnk you fоr tһe good writeup. It in fact waѕ a amusement account it.
Looқ advanced tⲟ more ɑdded agreeable fгom үou! By
the way, how ⅽould we communicate?
Quote
0 #598 filmovi2018 2022-05-12 05:54
Does your site have a contact page? I'm having problems locating it but, I'd like to shoot you an email.

I've got some recommendations for your blog you might be interested in hearing.
Either way, great site and I look forward to seeing
it grow over time.
Quote
0 #599 schuleit brome 2022-05-15 02:24
Peculiar article, totally what I needed.
Quote
0 #600 horoskop srpanj 2022-05-15 14:29
Hey! Would you mind if I share your blog with my twitter
group? There's a lot of people that I think
would really appreciate your content. Please let
me know. Cheers
Quote
0 #601 אפליקציית משימות 2022-05-16 20:43
Thanks designed for sharing such a good thinking, post is nice, thats why
i have read it fully
Quote
0 #602 160 borough drive 2022-05-17 06:25
Pretty! This has been a really wonderful post. Many thanks for providing this information.
Quote
0 #603 ซื้อหวยออนไลน์ 2022-05-17 09:16
Great post. I was checking continuously this blog and
I'm impressed! Very useful information particularly the last part :)
I care for such information much. I was looking
for this particular information for a long time.
Thank you and best of luck.

Feel free to visit my blog; ซื้อหวยออนไลน์: https://newmalabon.depedmalaboncity.ph/community/profile/lottoshuay/,%E0%B9%80%E0%B8%A7%E0%B9%87%E0%B8%9A%E0%B8%AB%E0%B8%A7%E0%B8%A2
Quote
0 #604 handwerk großheirath 2022-05-18 06:55
WOW just what I was searching for. Came here by searching for Web ADI
Quote
0 #605 rollei 550 test 2022-05-20 15:08
I'm really enjoying the design and layout of your website.
It's a very easy on the eyes which makes it much more pleasant for me to come here and
visit more often. Did you hire out a developer to create your theme?
Great work!
Quote
0 #606 pll sæson 7 2022-05-21 23:46
Definitely believe that which you stated. Your
favorite justification appeared to be on the internet the easiest thing to be aware of.

I say to you, I certainly get irked while people think about worries that they plainly do not
know about. You managed to hit the nail upon the
top as well as defined out the whole thing without having side-effects , people could take a signal.
Will probably be back to get more. Thanks
Quote
0 #607 triple x syndrom 2022-05-22 11:10
Hello, I do think your blog might be having internet browser compatibility problems.

Whenever I look at your web site in Safari, it looks fine however
when opening in Internet Explorer, it's got some overlapping issues.
I merely wanted to provide you with a quick heads up! Besides that, fantastic website!
Quote
0 #608 muntplant snoeien 2022-05-23 06:38
Fantastic beat ! I would like to apprentice at the same time as you amend your web site, how can i
subscribe for a weblog website? The account helped me
a acceptable deal. I were a little bit familiar of this your broadcast offered bright transparent idea
Quote
0 #609 חוויאר בארדם 2022-05-23 09:04
I always spent my half an hour to read this website's content everyday along with a mug of coffee.
Quote
0 #610 asur 3 fano 2022-05-23 22:46
My developer is trying to persuade me to move to .net from PHP.

I have always disliked the idea because of the costs. But he's
tryiong none the less. I've been using WordPress on several websites for about a year and am concerned
about switching to another platform. I have heard excellent things about blogengine.net.
Is there a way I can transfer all my wordpress posts into it?
Any help would be really appreciated!
Quote
0 #611 dr safia pirani 2022-05-24 19:15
Hi there! This post could not be written any better!

Looking at this post reminds me of my previous roommate!

He always kept talking about this. I'll send this information to him.
Fairly certain he will have a great read. I appreciate you
for sharing!
Quote
0 #612 goedemorgen schat 2022-05-25 15:13
What's Happening i am new to this, I stumbled upon this I have found It absolutely helpful and it has helped me out loads.
I'm hoping to give a contribution & help
different users like its aided me. Good job.
Quote
0 #613 смартфони цена 2022-05-25 18:28
Thank you, I have just been searching for information approximately this subject for a
long time and yours is the greatest I've came upon till
now. However, what in regards to the bottom line? Are you
sure concerning the source?
Quote
0 #614 korma kana 2022-05-25 19:26
I will immediately seize your rss as I can't in finding your email subscription hyperlink or e-newsletter service.
Do you've any? Please let me know so that I may just subscribe.
Thanks.
Quote
0 #615 метроном онлайн 2022-05-25 21:06
I feel this is one of the such a lot important info for me.

And i'm glad studying your article. However want to
commentary on few basic issues, The website taste is ideal, the articles is
truly great : D. Good activity, cheers

Feel free to visit my site: метроном онлайн: https://akb-b.ru/
Quote
0 #616 най добрите джипове 2022-05-26 05:11
Undeniably consider that that you stated. Your favorite reason seemed to
be on the net the easiest thing to remember of. I say to you,
I definitely get irked at the same time as people think about concerns that
they just don't recognize about. You managed to hit the nail upon the highest and defined out the
entire thing with no need side effect , other folks could
take a signal. Will probably be back to get more.
Thank you
Quote
0 #617 швейцарски франк 2022-05-26 07:54
At this time I am ready to do my breakfast, when having my breakfast coming again to read more news.
Quote
0 #618 fürdőruha rajz 2022-05-26 13:23
Hi there, You've done an excellent job. I will definitely digg it and personally recommend to my friends.
I'm sure they'll be benefited from this site.
Quote
0 #619 minecraft recettes 2022-05-27 03:51
I'm not sure exactly why but this blog is loading extremely slow for me.
Is anyone else having this problem or is it a problem on my end?
I'll check back later and see if the problem still exists.
Quote
0 #620 emlakçı sloganları 2022-05-27 20:55
I used to be able to find good info from your blog articles.
Quote
0 #621 puppp in gravidanza 2022-05-29 17:31
I absolutely love your blog and find nearly all of your post's to be what precisely I'm looking for.

can you offer guest writers to write content to suit
your needs? I wouldn't mind writing a post or elaborating on many
of the subjects you write in relation to here. Again, awesome weblog!
Quote
0 #622 triangoli 30 60 2022-05-30 00:31
What i don't realize is actually how you are now not really much more neatly-favored than you may be now.

You are so intelligent. You already know therefore significantly in terms of this subject, made me individually
believe it from numerous numerous angles. Its like men and women are not involved until it's one thing to do with Lady gaga!
Your individual stuffs great. Always maintain it
up!
Quote
0 #623 csi ne demek 2022-05-30 15:59
Neat blog! Is your theme custom made or did you download it from somewhere?
A design like yours with a few simple tweeks would really make my blog jump out.
Please let me know where you got your design. Kudos
Quote
0 #624 phenazopyridine 中文 2022-05-30 17:32
There's definately a great deal to know about this issue.
I love all the points you made.
Quote
0 #625 spain-web.com 2022-05-31 01:30
Hi, after reading this remarkable paragraph i am as well
cheerful to share my know-how here with colleagues.
Quote
0 #626 utal angolul 2022-05-31 08:07
It's hard to come by educated people in this particular
subject, but you seem like you know what you're talking about!
Thanks
Quote
0 #627 เครื่องย่อยขยะ 2022-06-22 01:05
Howdy! I could have sworn I've been to this site before but after reading through some of the post I realized it's
new to me. Anyways, I'm definitely glad I
found it and I'll be book-marking and checking back often!

Look at my web page; เครื่องย่อยขยะ: https://www.codechef.com/users/foodcomposter
Quote
0 #628 แทงหวยออนไลน์ 2022-07-18 12:43
I am no longer certain the place you're getting your information, but good topic.
I needs to spend a while studying much more or understanding more.
Thanks for excellent information I was looking for this
information for my mission.

My web blog - แทงหวยออนไลน์: https://www.thabo-mu.go.th/public/webboard/data/listcomment/forum_id/1/topic_id/42/page/1/menu/1228
Quote
0 #629 เครื่องย่อยขยะ 2022-07-26 20:23
Just want to say your article is as amazing. The clarity in your submit is simply spectacular
and i can think you are knowledgeable in this subject.
Well together with your permission let me to grasp your
RSS feed to stay updated with coming near near post.
Thank you a million and please continue the gratifying work.


my site - เครื่องย่อยขยะ: https://padlet.com/garbageferz/Bookmarks
Quote

Add comment


Security code
Refresh

Search Trainings

Fully verifiable testimonials

Apps2Fusion - Event List

<<  Mar 2024  >>
 Mon  Tue  Wed  Thu  Fri  Sat  Sun 
      1  2  3
  4  5  6  7  8  910
11121314151617
18192021222324
25262728293031

Enquire For Training

Fusion Training Packages

Get Email Updates


Powered by Google FeedBurner