Login
Register

Home

Trainings

Fusion Blog

EBS Blog

Authors

CONTACT US

Senthilkumar Shanmugam
  • 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: 881

MSCA/MWA Framework in Oracle Apps EBS

 

Mobile Web Application development in Oracle eBusiness Suite is very niche skill. You can count the number of consultants with this expertise on your fingertips.

One of those experts is a freelance consultant Senthil Shamungham. Senthil has done extensive development on this technology, both on 11i and 12i environments. Currently Senthil is working on a R12 project in Germany.

Please find first article in this series, whereby Senthil explains the basic fundamentals of Mobile Web Applications in Oracle eBusiness Suite.




Oracle Mobile Supply Chain applications(MSCA) enable users to perform many common warehouse and shop floor transactions through hand-held radio frequency devices, personal digital assistants and truck-mounted radio frequency scanners. Oracle Mobile Supply Chain is part of the Oracle E-Business Suite, an integrated set of business applications that delivers complete process automation and complete information.

 

Mobile Supply Chain Applications (MSCA) enables automated mobile user operations. This is performed using hand held radio frequency (RF) devices, PDA’s, and lift truck mounted RF scanners. Oracle has leveraged standard Internet technologies such as Java, XML, TCP/IP and Telnet to create a device independent technology platform to support these types of applications. In general, these mobile devices will be connected to the network using the radio frequency (RF) standard of 802.11b and will communicate using TCP/IP. The figure below explains the communication flow using Mobile Devices.

 




Functional Areas Covered by Mobile Applications

  • Manufacturing: Moves, Issues, Returns, Scrap, Completions etc

  • Receiving: Direct, Standard, Inspect, Cross-Dock, Print etc

  • Inventory: Transactions, Transfers, Counts, Labelling etc

  • Shipping: Pick confirm, Ship Confirm etc

 

Advantages of Using Mobile Devices

  • Improve operational productivity and reduce costs through process automation

  • Ensure accurate, up to date inventory information by using barcode scanning for data entry.

  • Increase customer satisfaction by improving inventory accuracy, shipment confirmation and quality tracking

  • Real Time Validations




Technical Overview of MSCA/MWA Framework

Oracle has built MSCA/MWA framework in order to develop Mobile Applications. A mobile application, as defined by MSCA, is built using the following Java Beans:

  1. 1) A MenuItemBean is needed to attach the mobile application to the Oracle Desktop ERP. It contains no page layout information on its own, but is a necessary conduit to connect the Desktop ERP to mobile transactions. At the leaf node of the FND menu structure lays an FND Form Function that points to the MenuItemBean. The MenuItemBean in itself points to the first page in the application, which is represented by a Page Bean.

  2. 2) A PageBean represents the unit of display (i.e. a single screen on a mobile client). To define a new page, the developer must extend the PageBean, and make a new page bean class. Within this new class, the developer must use the new PageBean's constructor to instantiate FieldBeans (graphical components), and add them to the page.

  3. 3) The FieldBean is a super class for all data collection/display graphical components that the developer can use in their pages. When the mobile server loads a new page, it calls the user defined PageBean's constructor, which in turn creates all of the graphical components on that page. Examples of FieldBeans are TextFieldBean, ButtonFieldBean, LOVFieldBean, MultiListFieldBean, ListFieldBean, HeadingFieldBean, SeparatorFieldBean.





MSCA/MWA Framework is based on existing Java Event-Listener Model.

An application's runtime logic is specified through the mobile applications event model, a set of interfaces that provide an infrastructure for handling events in an organized and modularized fashion. A listener can be added to any field, page, or application of your mobile transaction. The following is a list of listeners available:

  1. FieldEntered – this is called when a particular field is entered. For example, prior to entering a particular field, there may be a need to reinitialize some variables.

  2. FieldExited – this is called when a particular field is exited. The most common of the listeners, this is used for validation of user input.

  3. PageEntered – called when the page is entered, this can be used to initialize values on the page.

  4. PageExited – called when the page is exited, this can perform page level validation logic.

  5. AppEntered – called when the entire transaction is entered, this can be used to initialize transaction level variables.

  6. AppExited – called when the entire application is exit, an example use can be to close resources.

  7. SpecialKeyPressed – this is called when the user presses any special character, such as a Control character. Pressing CTRL-G to generate LPNs or Lots is one example of when this gets called.

 


Comments   

0 #1 Vani 2008-01-30 10:17
Dear Mr. Senthil,

It would be gr8 if you could attach a nugget of code for any flow. That will be of gr8 help.
Quote
0 #2 Anil Passi 2008-01-30 10:23
Hi Vani

Senthil will do that, but he will do it in setp by step approach.
I think he is trying to cover the fundamentals first, before jumping onto the code.

Thanks
A nil
Quote
0 #3 Veera 2008-01-30 17:17
Hi senthil,

I was worked on some MSCA customizations in 11i. Now I am working on 12i MSCA extensions.
I succesfully extend the RcptTrxPage. When I select the Item Lov in extended RcptTrxPage It is showing no results is found. I got a problem with extended page only. Vanilla version worked fine. Please share your thoughts on this.

Thanks
V eera
Quote
0 #4 Rohini 2008-01-30 19:02
Hi veera,

Did u get any meaningful information from the log files?

Can you please check the parameters passed and the output of PL/SQL procedure when the LOV is clicked?

I hope you know that the log files are .INV.log and .system.log

Th anks,
Senthil
Quote
0 #5 Veera 2008-01-31 16:15
Hi Senthil,

There is no Info in .system.log and INV.log. I verified in both Vanilla and Custom files, Bothe are same. Do you have any Idea, Why Item LOV is working in Vanilla why not in Extended page. I just add two more Texfield Beans in Page. Do I need to Implement any Listener code, to resolve this. If you want look at the Code I will send you my files.

Advance Thanks for your Help.

Thanks
V eera
Quote
0 #6 Rohini 2008-01-31 16:24
Hi Veera,

I faced a similiar problem in some other page which I have extended and figured out that the '%' substitution for the where clause of the LOV query was missing in the extended page. Can you check whether all the variables of your extended page binds correctly?

Tha nks and Regards,
Senthi l
Quote
0 #7 Sreeni 2008-02-01 18:22
Hi Anil,

Senthil' s article is very nice.I had worked on MWA customizations for around 2 years at GE C&I.I really thank you for bringing MSCA/MWA consultants together.
Quote
0 #8 Anil Passi 2008-02-01 19:44
Good to hear from you Sreeni.
Please feel free to email me, it is good to keep in touch in this small world.

Cheers
Anil Passi
Quote
0 #9 Veera 2008-02-04 17:18
Hi Senthil,

I tried many ways to get resolve the issue. can you give me some direction how do I find all the bind variables are extended correctly.

Tha nks
Veera
Quote
0 #10 Rohini 2008-02-04 20:12
Hi Veera,

All the bind variables will be logged in the port_no.system. log file. Compare the log for the LOV click event for standard page and the extended page. You can easily find the variables bound for each of them.

use the command tail -f port_no.system. log and monitor it when you click the LOV.

Hope this helps.

Thanks,
Senthil
Quote
0 #11 Veera 2008-02-04 23:25
Hi senthil,

I found that there is one parameter is passing null instead of '%' to Item LOV. That is causing the issue for No results are found. Please find the sutem log for both vanilla and extended class.

I tried to manually passing the parameter like
String as3[] = { " ", "ORGID", "%", " and mtl_transaction s_enabled_flag = 'Y' and bom_item_type=4 " };
super.mItemLOV .setInputParame ters(as3);
for Item LOV. Still getting the same issue. Can you please share your experince how you over come this issue. I am getting this error in Subinventory Transfers, Mislaneal recept, accout alias receipt page. Right now I am working on SubXferPage and RcvTrxPage, and IssueTrxPage.



Extended Page :
loadPage: done loading 'oracle.apps.mw a.beans.LOVRunt imePageBean' (pageIx = 5, fieldIx = 0)
handleEvent: entering new page (pageIx = 5)
callListeners: executing 1 listeners, action = 0
callListeners: PageBean
Entering pageEntered of LOVRuntimePageH andler
lov stmt :INV_UI_ITEM_LO VS.GET_ITEM_LOV
inputParams[0] :
inputParamsType [0] :C
value of inputParams[0] :null
inputParams[1] :ORGID
inputParamsType [1] :N
value of inputParams[1] :367
inputParams[2] :xx.oracle.apps .inv.invtxn.ser ver.XxSubXferPa ge.INV.ITEM
inputParamsType [2] :S
value of inputParams[2] :null
inputParams[3] : and mtl_transaction s_enabled_flag = 'Y' and bom_item_type=4
inputParamsType [3] :AS
No result is found

Vanilla Page

loadPage: done loading 'oracle.apps.mw a.beans.LOVRunt imePageBean' (pageIx = 5, fieldIx = 0)
(SGARAPATI) handleEvent: entering new page (pageIx = 5)
(SGARAPATI) callListeners: executing 1 listeners, action = 0
(SGARAPATI) callListeners: PageBean
Entering pageEntered of LOVRuntimePageH andler
lov stmt :INV_UI_ITEM_LO VS.GET_ITEM_LOV
inputParams[0] :
inputParamsType [0] :C
value of inputParams[0] :null
inputParams[1] :ORGID
inputParamsType [1] :N
value of inputParams[1] :367
inputParams[2] :oracle.apps.in v.invtxn.server .SubXferPage.IN V.ITEM
inputParamsType [2] :S
value of inputParams[2] :%
inputParams[3] : and mtl_transaction s_enabled_flag = 'Y' and bom_item_type=4
inputParamsType [3] :AS
addFieldBean: type = 13



Thanks & Regards
Veera
Quote
0 #12 nisha 2008-04-17 02:52
Hi Senthil,
We are trying to put a new page in the INBOUND Menu,Please let us know the way forward.If possible,Please publish u'r number so that we can reach!
Quote
0 #13 nisha 2008-04-17 03:18
Hi Everyone,
It would be nice if the e-mail addressses or contact numbers are published so that we can clarify the issues in MSCA Very effectively!

R gds
Quote
0 #14 Rohini 2008-04-17 03:28
Hi Nisha,

You can reach me at . However, i would suggest you to post the questions over here so that we get a wider audience.

Rega rding the new page development, you can refer to my article "hello world" application in MSCA and the deployment for new page, you can refer to my article name "MWA Setup, Testing, Error Logging and Debugging ".

Please feel free to email me for any issues.

Thanks and Regards,
Senthi l
Quote
0 #15 nisha 2008-04-17 03:50
Hi Senthil,

Thank you so much for your reply. Could you please let me know the level of expertise in java one would need to work on this.

Regards,
Nisha
Quote
0 #16 Rohini 2008-04-17 04:02
Hi,

Basic Knowledge of Java Application development is sufficient. If you have knowledege on ActionListener and EventHandlers it will be an added advantage.

Tha nks and Regards,
Senthi l
Quote
0 #17 nisha 2008-04-17 05:45
Hi Senthil,

Can you please let me know, how does data get populated in a custom screen in MSCA when a scan is done using a hand held
device

Regards,
Nish a
Quote
0 #18 Rohini 2008-04-17 05:48
Hi Nisha,

There are driver files in the Mobile Applications which decodes the information and populates the value into the Mobile screen.

Thanks and Regards,
Senthi l
Quote
0 #19 nisha 2008-04-17 06:22
Hi,
Would the driver files be able to take the data from the scanner and default into the custom screen as it does it in standard one in MSCA.

Thanks,
Nisha
Quote
0 #20 Rohini 2008-04-17 10:34
Yep ... It should work fine for both custom and standard forms. No additional effort is needed while developing the custom forms.

Thanks and Regards,
Senthi l
Quote
0 #21 nisha 2008-04-18 01:58
Hi l,

Thank you Senthil ! Your support has boosted our confidence.

Re gards
Nisha
Quote
0 #22 Himanshu Joshi 2008-04-21 02:54
Hi

Please privide patch 4205328 for MWA Testing, Error Logging and Debugging
Quote
0 #23 Ritesh M 2008-04-22 02:35
patch 4205328 is for GUI client setup. you can easily download it from oracle metalink....mak e sure that you have access to download patches. If you don't have access...DBA can do it on your behalf.

You can also directly connect to MWA server throught telnet to perform Testing, Error Logging and Debugging.

Tha nks,
Ritesh
Quote
0 #24 Synthia 2008-08-31 06:13
Hi Santhil,
I am not getting how to use scanned barcode in oracle application to track the inventory item.What is the setup to be done to map barcode
with item in the inventory.
Quote
0 #25 Rohini 2008-08-31 16:13
Hi Sarang,

Can you please eloborate your requirement?

I t would be great if you open a thread in our forum http://apps2fusion.com/forums/viewforum.php?f=145

Thanks and Regards,
Senthi l
Quote
0 #26 Synthia 2008-09-01 08:15
Hi Senthil
How to link scanned barcode obtained from any barcode scanner with oracle.What setup has to be done in application to map the the value obtained from barcode scanner and oracle.If the barcode value represent any item in the inventory....so how to save the barcode value in the database relating it to the item code.and when next time salesperson going to scan the barcode this value should get populate in the field where the cursor pointer is in the form.
Or can u just provide me with some idea about the barcode implementation in Oracle application.How we can implement the use of barcode in oracle application.
Quote
0 #27 Rohini 2008-09-01 08:24
Hi Sarang,

I hope metalink note 297992.1 would be a better start for you. You have to identify the type of barcode used by your client and do some setup based on that.

Please feel free to post your issues.

Thanks and Regards,
Senthi l
Quote
0 #28 suresh 2008-12-06 09:40
hi all,
please solve my problem. i am new to this OA framework. i am java resource. my requrement is i taking one value in a text filed when i press enter it validate gives one
flag and one value. if the flag is yes i have to add one new text filed for input from user. my problem is how to add a text field. if flag is flase then no need to add any new text filed.please explain how to add new filed.i have seen ur previous articals also. i am using 4 classes MotShipLPNPage. java,MotShipLPN FListener.java, MotShippingLPNL OV.java,MotShip LPNFunction.jav a in which file i have to chnage. after that where i have to compile my files. please help me . thanks in advance.

Thank s,
Suresh
Quote
0 #29 Rohini 2008-12-08 05:57
Hi Suresh,

You have to use MotShipLPNPage. java,MotShipLPN FListener.java, MotShipLPNFunct ion.java for your requirement.

D o an extension to the above files and add new fields in this extended files. For more details refer my article:

http://www.apps2fusion.com/at/ss/293-extend-a-standard-oracle-mscamwa-page

Please feel free to post any issues.

Thanks and Regards,
Senthi l
Quote
0 #30 sureshkumar 2008-12-14 00:44
Hi Senthil,

thank s for your response. i did same thing what your are given in that artical.but its not forwording next page. its directly showing the logout. not displying dock door filed and LPN files and some buttons. how to debug which pages are calling and where i have see the error message. i did't see any error messages on the black screen. actuallu in this application its not oracle forms its a black console where we are addinging this fields. when we are scan the part number then that value needs tob appear in that field which is we are adding.


the fileds display like this in black screen. this all values comes here when scan the corton.

Dock Door>
LPN >
my text files add here when LPN no enter it need to display Part no>



please do needful help. thanks in advance.

Thank s and Regards,

Sures hKumar
Quote
0 #31 Rohini 2008-12-15 04:47
Hi Sureshkumar,

C an you please upload your source file, log files (system.log and inv.log) in our forum.

The Link is :http://apps2fu sion.com/forums /viewforum.php? f=145

You can get more info on error logging/debuggi ng from my article:
http://www.apps2fusion.com/at/ss/225-mwa-setup-testing-error-logging-and-debugging


Hope this helps.

Thanks and Regards,
Senthi l
Quote
0 #32 bteague 2009-02-12 16:52
Hello Senthil,

I have a class that is an extension of the standard IssueTrxPage class which extends the functionality of the Project Issue in MSCA . I want to create a class that is an extension of the standard Project Return. What is that classes name?

Thank you.
Quote
0 #33 Rohini 2009-02-12 17:32
Hi,

Pressing Ctrl+X will give the Class name for the current page.

Hope this helps.

Thanks and Regards,
Senthi l
Quote
0 #34 tutu112 2009-03-13 12:25
Hi
I just wanted to know in brief what are the pros & cons of using GUI vs telnet scren in RF Gun.

Thanks
Quote
0 #35 Rohini 2009-03-13 12:33
Hi,

I dont see any pros and cons. As long as the device supports GUI you can use GUI version. It is upto the end user to decice what is comfortable to him. Afterall he/she is the person who is going to use the application.

H ope this helps.

Thanks and Regards,
Senthi l
Quote
0 #36 Deba 2009-03-16 07:00
Hi,

I am now starting to work on MSCM and I have developed some pages it is working fine.
But when I thinking about Customization I need the source code of the application.is it right??
Then where Can I find it.I have decomipled the class files for source but it is showing compilation errors.
Can u please help me to solve the problem.

Thank s,
Deba
Quote
0 #37 Rohini 2009-03-16 07:12
Hi,

Are you planning to extend a standard page or develop a new custom page?

Thanks and Regards,
Senthi l
Quote
0 #38 Abeer Zia 2009-04-06 15:47
Hi

I have installed MSCA, i can connect GUI MSCA Interface through Telnet session to MSCA server. I can preform MSCA transactions through desktop but i want to know how can i use mobile devices for bar code scanning?

Rega rds
Quote
0 #39 Rohini 2009-04-07 04:29
Hi,

your mobile device comes with the barcode scanner by default. Just scan the barcode by keeping the cursor on the field which you need to input the value.

hope this helps.

Thanks and Regards,
Senthi l
Quote
0 #40 Kaushik 2009-05-12 08:47
Hi,
I am calling quality plan in MSCA.In there i have a sql code to auto populate an element which is using FND_PROFILE pkg(to be exact FND_PROFILE.val ue('ORG_ID')).B ut it is not working.Can you give me any idea how to get profile values in sql code running in MSCA?
Thnx in advance.
Quote
0 #41 Kaukabss 2009-05-20 13:11
Hi
I had a similar reqmt where i had to fetch some data from the Oracle tables
I wrote a pl/sql procdure to get the value and called that procedure from the mobile page code.
You can have a look at any of the std page for knowing how to execute procedure from mobile page.
Thanks
Quote
0 #42 Amitaneja 2010-05-03 00:06
Hi Mate, We are implementing Oracle WMS 12.1 and the question I have is : Do I need to install any software application on the RF device to get it to talk to Oracle. The RF guns are connected to the network and are ready to be tested.
Quote
0 #43 Senthilkumar Shanmugam1 2010-05-04 04:25
I dont think there is any software needs to be installed. A simple telnet application on the RF device should be fine.

If you need a GUI version, I guess there is a patch available in metalink.

hope this clarifies.

Tha nks and Regards,
Senthi l
Quote
0 #44 J Anderson 2010-11-26 03:04
Hi

i am planning to extend a standard page .like new req Hide the so order no and add the line no

How to start this work. iam new to MSCA application


Thanks
akkireddy
Quote
0 #45 alen 2011-03-08 13:54
Hi ,

I just implemented the GUI version of the MSCA on Motorola 9090 Barcode Scanner with WINDOWS ME5 using IBM J9 vm. I've noticed that sometimes the GUI freezes after several minutes of inactivity.

Ha s anyone noticed this?? Any ideas what it can be?

thanks,
Al en
Quote
0 #46 Surya Chandra Sekhar 2011-06-21 08:38
Hi,

I want to personalize WMS subinventory Transfer form to Show Secondary UOM defined in Inter Class Conversion instead of Primary UOM. is there any way I can personalize the form with out the involvement of Technical People.

Thanks ,
Chandra Sekhar
Quote
0 #47 Rohini 2011-06-21 23:40
Hi,

MWA Personalization framework is available on 11.5.10 and 12.1. If it supports your page, you can do it without technical work. For more details on MWA personalization s, search metalink updates.

Hope this helps.

Thanks and Regards,
Senthi l
Quote
0 #48 Nareshkumar 2011-09-06 08:41
Hi Senthil,

I want to personalize the 'Enter Mobile Quality Results' (function name is QA_EQR) in MSCA. I am searching this function in the MWA Personalization s Framework.I am not finding this function.Is it possible to personalize the 'Enter Mobile Quality Results' in the R12?

Thanks,
N aresh.
Quote
0 #49 Rohini 2011-09-06 08:46
Hi Naresh,

MWA Personalization supports only certain pages in MSCA. If it is not specified in the MWA Personalization Framework, you cant personalize it.

Thanks and Regards,
Senthi l
Quote
0 #50 Nareshkumar 2011-09-06 09:31
Hi Senthil,
Thanks for your reply.

Regards ,
Naresh
Quote
0 #51 Rohini 2011-10-21 04:13
Hi,

I need to install oracle mobile GUI on an RF device(Symbol MC 9060). I have performed following steps:
1) I have installed Creme 3.29 personal profile option(Evaluati on Version)
2) I have created a startup file on device with command:
\Windo ws\CrEmein\CrE me.exe" -Ob -classpath '\Windows\CrEme \lib\AWTclasses .zip;\mwagui\li b\j4205328.zip' oracle.apps.mwa .awt.client.Sta rtGUI
3) When i try to lanuch the application:
it says
class 'Windows.CrEme. lib.AWTclasses. zip;mwagui.lib. j4205328.zip'' not found

The above files are present on the windows pocket pc.

Please let me know, what is missing here..!

Regards,
Punee t
Quote
0 #52 Rohini 2011-10-24 04:30
Hi All;

Its working fine with Windows Mobile :

Command is :
\Windows\CrEme in\CrEme.exe -Of -classpath \Windows\CrEme\ lib\AWTclasses. zip;\XONTMWA\li b\j4205328.zip oracle.apps.mwa .awt.client.Sta rtGUI

Wrong with -tiny.

Thanks You very much.

Regrads;
Piraba
Quote
0 #53 Vince Solis 2011-12-30 13:15
Piraba,

Did you have any key or key issues with j4205328 and CrE-ME 3.29? We are trying Motorola(Symbol ) MC9090 and 9190's. What RF device are you using? Would you recommend others that you have had success with?

Thanks,

-Vince
Quote
0 #54 madineni 2012-05-09 05:16
Hi Santil,

Can you please help me on MSCA field customization.

We are using MSCA inventory for Counting for that we are using Physical count. but basically, rather than entering just a count tag number, we want to enter item, lot, and sublot, not just the count tag.

Can you please help to incorporate the above requirement. And where exactly need include these fileds.

Ram
Quote
0 #55 Thiago 2012-08-10 16:44
I have a symbol MC9090, and would like to know how to operate the + to automatically generate a LPN. For it is not functioning.

T hanks,
Thiago
Quote
0 #56 Thiago 2012-08-10 16:47
I have a symbol MC9090, and would like to know how to operate the CTRL+G to automatically generate a LPN. For it is not functioning.

Thanks and regards,
Thiago
Quote
0 #57 Akshay 2015-02-10 13:55
Hi Senthil,

It is good you have shown the Hello World application and other programs.

I need your kind help. Can you plz tell me the installation of sws with respect to JDeveloper IDE and Configuring and SetUp accessing Oracle Ebusiness suite r12 server on my gui client device.

Your help will be deeply appreciated.

Thanks & Waiting for your response.
Quote
0 #58 Anksha 2015-06-08 05:49
Dear All,

Has anyone customized the Mainpickpage in MSCA. If yes, please share the process to be followed in order to customize/exten sion the page without impacting the standard functionality.

Thanks in advance for your response!
Quote
0 #59 Learn More Here 2022-05-07 08:11
Hi, i believe that i noticed you visited my blog so i got
here to go back the favor?.I'm trying to find issues to improve my website!I assume its ok
to make use of a few of your ideas!!
Quote
0 #60 Discover More Here 2022-05-12 04:52
Pretty! This has been an incredibly wonderful post. Many thanks for providing this info.
Quote
0 #61 Read My Reviews Here 2022-05-15 05:41
Hola! I've been following your weblog for a while now and
finally got the courage to go ahead and give you a shout out from Huffman Texas!
Just wanted to tell you keep up the good work!
Quote
0 #62 Read From The Link 2022-05-15 05:47
Hi just wanted to give you a brief heads up and let
you know a few of the pictures aren't loading properly.
I'm not sure why but I think its a linking issue. I've tried it
in two different browsers and both show the same outcome.
Quote
0 #63 Read From The Link 2022-05-15 09:32
I was recommended this web site by my cousin. I am not sure whether this
post is written by him as no one else know such detailed about
my difficulty. You're wonderful! Thanks!
Quote
0 #64 Websites 2022-05-16 09:01
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 several emails with the same comment. Is there any
way you can remove me from that service? Many thanks!
Quote
0 #65 Find Out More 2022-05-18 08:35
It's hard to come by experienced people in this particular topic, but you
sound like you know what you're talking about!
Thanks
Quote
0 #66 See Details 2022-05-24 13:56
I don't even know how I ended up here, but I
thought this post was good. I don't know who you
are but definitely you're going to a famous blogger
if you are not already ;) Cheers!
Quote
0 #67 Discover More 2022-05-28 03:03
Hmm is anyone else encountering problems with the images on this blog loading?
I'm trying to find out if its a problem on my end or if it's the blog.
Any responses would be greatly appreciated.
Quote
0 #68 MBS 2022-05-28 09:26
Kindly help me to get the instance for MSCA (Mobile supply chain application) oracle EBS thanks for your support.
Quote
0 #69 Websites 2022-05-29 11:41
Thanks for the good writeup. It in fact used to be a amusement account it.
Glance complex to more introduced agreeable from you!
By the way, how could we be in contact?
Quote
0 #70 Click Here 2022-07-02 09:32
It's remarkable to visit this website and reading the views of all mates on the topic of this article, while I
am also zealous of getting know-how.
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