Fault handling from MDS is not working for messagerejection

Hi All,
I am sorry if i am asking simple things, but after trying i couldn't figure out the problem so i reached here.
In my project i am using file adapter in many places, so rejection handler is very important in finding out the missing files at the time of reading the file.So i created fault policies and bindings and i created simple process and placed the polices and binding files in the project, as expected it is working fine but if i referred the same files from my mds path rejection is not working.
here is my fault polices and binding files.
faultpolices.xml
<?xml version='1.0' encoding='UTF-8'?>
<faultPolicies version="2.0.1" xmlns="http://schemas.oracle.com/bpel/faultpolicy">
<faultPolicy version="2.0.1" id="BpelFaultMechanism" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.oracle.com/bpel/faultpolicy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Conditions>
<faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension" name="bpelx:bindingFault">
<condition>
<action ref="retry-action"/>
</condition>
</faultName>
<faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension" name="bpelx:remoteFault">
<condition>
<action ref="retry-action"/>
</condition>
</faultName>
<faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension" name="bpelx:selectionFailure">
<condition>
<action ref="retry-action"/>
</condition>
</faultName>
</Conditions>
<Actions>
<Action id="retry-action">
<retry>
<retryCount>4</retryCount>
<retryInterval>2</retryInterval>
<retryFailureAction ref="rethrow-action"/>
</retry>
</Action>
<Action id="human-intervention-action">
<humanIntervention/>
</Action>
<Action id="abort-action">
<abort/>
</Action>
<Action id="replay-action">
<replayScope/>
</Action>
<Action id="rethrow-action">
<rethrowFault/>
</Action>
<Action id="ora-terminate">
<abort/>
</Action>
</Actions>
</faultPolicy>
<faultPolicy version="2.0.1" id="RejectedMessages">
<Conditions>
<faultName xmlns:rjm="http://schemas.oracle.com/sca/rejectedmessages" name="rjm:Messagerejection">
<condition>
<action ref="writeToFile"/>
</condition>
</faultName>
</Conditions>
<Actions>
<Action id="writeToFile">
<fileAction>
<location>/u01/textdata/SOADEV/rejection</location>
<fileName>Messagerejection_%ID%_%TIMESTAMP%.xml</fileName>
</fileAction>
</Action>
</Actions>
</faultPolicy>
</faultPolicies>
Note:-In the above xml fault policy BpelFaultMechanism is used in all composite for common remote and binding fault errors and this one is working fine from mds location.
Fault-Binding.xml
<?xml version='1.0' encoding='windows-1252'?>
<faultPolicyBindings version="2.0.1" xmlns="http://schemas.oracle.com/bpel/faultpolicy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<composite faultPolicy="BpelFaultMechanism"/>
<service faultPolicy="RejectedMessages">
<name>Messagerejection</name>
</service>
</faultPolicyBindings>
Composite.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Generated by Oracle SOA Modeler version 1.0 at [30/09/12 5:41 PM]. -->
<composite name="Messagerejection"
revision="1.0"
label="2012-09-30_17-41-29_597"
mode="active"
state="on"
xmlns="http://xmlns.oracle.com/sca/1.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
xmlns:ui="http://xmlns.oracle.com/soa/designer/">
<import namespace="http://xmlns.oracle.com/pcbpel/adapter/file/Correlation/Messagerejection/Messagerejection"
location="Messagerejection.wsdl" importType="wsdl"/>
<service name="Messagerejection" ui:wsdlLocation="Messagerejection.wsdl">
<interface.wsdl interface="http://xmlns.oracle.com/pcbpel/adapter/file/Correlation/Messagerejection/Messagerejection#wsdl.interface(Read_ptt)"/>
<binding.jca config="Messagerejection_file.jca"/>
<property name="oracle.composite.faultPolicyFile">oramds:/apps/Faultpolicyfiles/fault_policies.xml</property>
<property name="oracle.composite.faultBindingFile">oramds:/apps/Faultpolicyfiles/fault_binding.xml</property>
</service>
<component name="Messagerejectionservice" version="1.1">
<implementation.bpel src="Messagerejectionservice.bpel"/>
<property name="bpel.config.oneWayDeliveryPolicy" type="xs:string"
many="false">async.cache</property>
</component>
<wire>
<source.uri>Messagerejection</source.uri>
<target.uri>Messagerejectionservice/Messagerejection</target.uri>
</wire>
</composite>
Also in some cases i am going with De-batching option,in which my xml file contains multiple record and publishing each record to the target service. In this case if any record has improper content then that particular record from should move to the custom folder.Please let me know how can i do this.
I hope some one will help me here.
Regards,
Tarak

Hi Kalyan,
Thanks for helping me here.
Now i am able to resolve the issue after restarting the server i place the properties of the files as below
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Generated by Oracle SOA Modeler version 1.0 at [30/09/12 5:41 PM]. -->
<composite name="Messagerejection"
revision="1.0"
label="2012-09-30_17-41-29_597"
mode="active"
state="on"
xmlns="http://xmlns.oracle.com/sca/1.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
xmlns:ui="http://xmlns.oracle.com/soa/designer/">
<import namespace="http://xmlns.oracle.com/pcbpel/adapter/file/Correlation/Messagerejection/Messagerejection"
location="Messagerejection.wsdl" importType="wsdl"/>
<service name="Messagerejection" ui:wsdlLocation="Messagerejection.wsdl">
<interface.wsdl interface="http://xmlns.oracle.com/pcbpel/adapter/file/Correlation/Messagerejection/Messagerejection#wsdl.interface(Read_ptt)"/>
<binding.jca config="Messagerejection_file.jca"/>
</service>
<property name="oracle.composite.faultPolicyFile">oramds:/apps/Faultpolicyfiles/fault_policies.xml</property>
<property name="oracle.composite.faultBindingFile">oramds:/apps/Faultpolicyfiles/fault_binding.xml</property>
<component name="Messagerejectionservice" version="1.1">
<implementation.bpel src="Messagerejectionservice.bpel"/>
<property name="bpel.config.oneWayDeliveryPolicy" type="xs:string"
many="false">async.cache</property>
</component>
<wire>
<source.uri>Messagerejection</source.uri>
<target.uri>Messagerejectionservice/Messagerejection</target.uri>
</wire>
</composite>
Regards,
Tarak

Similar Messages

  • Custom URL Handler in Java does not work for JavaFX

    Hi,
    for the purpose of playing Media Files that are decrypted on the fly and then hold in memory with the JavaFX MediaPlayer we are trying to register a custom URL Handler. The thought behind that would be that with the handler JavaFX should be able to open a stream and play back the file (a bit like jar://). In a testcase isolated from JavaFX my handler including registration at JVM is working fine, but once i plug it into JavaFX it stops to do so. I'm calling the Media(String) constructor. It fails with "Unsupported scheme". It seems like that JavaFX is not relying on the JVM URLStreamFactory but rather implementing a separate mechanism to figure out which handler it should use thus failing in my use case.
    Is this expected behavior and if so can anybody suggest a work around?
    EDIT: Actually read the Javadoc for Media. It explicitly says that it only supports File, HTTP and Jar. So it is expected behavior however I am still open for suggestions on this.
    cheers,
    andreas
    Edited by: Andreas Mohrhard on 01.11.2011 03:26

    I believe that the connection details are stored as part of the CR itself. Therefore if you update a connection in the CMC that might not change the parameters and credentials, especially when using sub-reports.
    Hope this helps...
    Martijn van Foeken
    Focuzz BI Services
    http://www.focuzz.nl
    http://nl.linkedin.com/in/martijnvanfoeken
    http://twitter.com/mfoeken

  • Database MDS personalization not working for ADF

    NA
    Edited by: Mukesh S Patil on May 28, 2013 1:52 PM

    Hi Frank and all
    1] The issue is when i deploy from console uploading the .ear file ( which has adf-config.xml ) , the application never connects to MDS database. I feel that it is not reading adf-config.xml at all
    2] However when i deploy same using JDeveloper, a window pop up asking the MDS partition name. This time it works . :-)
    But in production i can not deploy through JDeveloper. Then how to tell the application that there is configuration file,read it and store data ???
    Mukesh

  • Copying links from published forms - not working for all!

    I currently have two web based forms open.  I am trying to allow others to view the results and feedback and have therefore published both forms.  I have then copied the links from each forms and created links to them via a Sharepoint site.  One of these links works fine whilst the other states 'That URL is not in the correct format for an Acrobat.com document link.'.
    Any advice on how to fix this?

    Hi;
    When you paste the URL directly into a web browser does it display the results correctly?  If it does then it seems it would be related to how the link is embedded in the sharepoint site.  Double check that you've copied and pasted the URL correctly.  Is the Sharepoint site a public site you could share the URL with me to take a look at it?  If so you can email me at [email protected]
    Thanks,
    Josh

  • Keyboard shortcuts from Greek Input not working for my account only

    I just upgraded to Leopard from Tiger 10.4.11 on my MBP 2.4 listed below. The Installer took care of everything, and after it was finished, my own account, the only Admin account, misbehaves when it comes to keyboard shortcuts in the Finder or any other app. To use the shortcuts, the Input flag must US English. If it's Greek, nothing works.
    If I switch to the other two accounts on my Mac, one of which was carried over from the Tiger setup, the other I setup after the OS upg, both of which are Std accounts, not Admin, shortcuts work regardless of the keyboard input flag.
    Tips, anyone?

    That's alright, folks, problem solved:
    Ran Leopard Cache Cleaner, and selected from Caches the third option (deep clean).
    Thanks, anyway. Hope this may help some other poor sod.

  • Consuming PI Webservice from Webdynpro Java Not working

    Hello SAP,
    Environment: CE 7.2.
    Resolution expected immediately, Helpful answer is highly appreciated.
    Is the namespace should not exceed 60char for PI Webservice, for executing the webservice from Webdynpro Java.
    I tried with all the options in executing the PI Service from Webdynpro Java, None of the options worked. I am facing the below error while I was calling the PI Webservice.
    I don't see any problem from Webdynpro Java, what ever the procedure I have followed is the standard procedure.
    Fortunately when I execute the service from Webservice Navigator, it is working as expected. The same webservice when I consume it from Webdynpro Java it is not working
    Options tried so far:
    1) Published the Services to Service Registry and there by consuming the PI Service from Service Registry - Not worked
    2) Tweaked the URL with few options - Not worked (Tweaking the URL, ex: portType, Binding)
    3) Changing the Business Systems in PI and there after calling the service - Not worked
    4) Initializing the code, instead of creating Service Controller and calling the PI Service - Not worked.
    5) Created a Provider System and tried to call the PI Webservice from Provider System - Not Worked
    For all the Options, I am facing the same error which is provided in the screenshot.
    Below procedure which I have followed for calling the PI Webservice:
    1) Created Adaptive Webservice Model
    2) Provided PI Webservice URL (It prompts for PI System UserId and Password)
    3) Selected Option - No Service Group Configuration
    4) Provided Logical Destination
    6) Completed creation of Model
    7) Added the model as a UsedModel
    8) Right Click on Comp Contr. and selected Apply Template and Created a ServiceController for the model (Entire mapping to comp contr, Initializing the nodes is taken care by Service Contr.)
    9) Created an Template Action button and there by calling execute method which is auto rendered from CompContr..
    10) Build the project.
    11) Activated the code and Run the Application.
    12) Getting the below error which is showed in the message.
    ERROR MESSAGE:
    Exception on execution of web service on destination 'GetPIHRPeopleData' for operation 'SI_CreateHRPeopleData_OS' in interface 'SI_CreatePeopleCompany_OS'

    Hi Sankar,
    If the webservice is working fine in the Wsnavigator then there is some problem with importing the webservice in webdynpro for Java. Please check the required parameter for creating the Adaptive Webservice Model. After adding in the used model and compoent controller binding, you need to write code for to execute the webservice model.
    Please check the code for initialization and execution for the webservice and then test it.
    Best Regards,
    Arun Jaiswal

  • Converting from 2D to 3D not working for me

    I am trying to follow the tutorial "Converting from 2D to 3D" and it is 'not working for me.'  When I open the image 'archer...' I do not get layers, but only the background image, and consequently no 3DAxis widget appears.
    This is my first try at this, and I am stuck trying to figure out what is wrong.
    I am running Adobe Photoshop CS4 Extended, version 11.01 on Vista, with 4GB of RAM, 500GB HD
    Processor speed 2200MHz
    NVIDIA GeForce 7100
    Memory available to PS 3255MB
    Memory used by PS 70 percent
    If anybody could please point me in the right direction, I would greatly appreciate it!
    christian

    it can work with the Background layer just fine, go to 3d->New Shape from Layer->Cone (or whatever) and then select one of the 3D tools and it should appear. Note though that OpenGL drawing must be enabled in Edit->Preferences->Performance to be able to see it.
    Using the 3D Axis: http://help.adobe.com/en_US/Photoshop/11.0/WS0FB519CE-94B2-44d0-AFBE-7227747D20B9.html

  • Continuity not working for iWork from iPhone to Mac

    Continuity not working for iWork. When I open numbers on my mac it can be continued to iPhone, however if I open numbers on iPhone the extended dock for numbers is not showing on mac please help!
    Iphone 5s iOS 8.0.2
    MacBook Air on Yosemite

    If you mean photo stream, that's because they only remain in iCloud for 30 days (even though your last 1000 photo stream photos remain on your iOS devices until you delete them).  When you first enable photo stream, you only get the photos from the last 39 days as older photos are no longer in iCloud.
    If you want to stream your old photo stream photos to iPhoto, add them to a shared photo stream on your phone and invite yourself as a subscriber, as explained here: http://help.apple.com/icloud/#/mmc0cd7e99.  Alternatively, you can import them using your usb cable as explained here: http://support.apple.com/kb/HT4083.

  • Since the last update yesterday to firefox 4.0.1 my program "asus security protect manager" doesn't work properly. That means, that the saved keys from several websites not remembered for lock in.

    since the last update yesterday to firefox 4.0.1 my program “asus security protect manager” doesn’t work properly. That means, that the saved keys from several websites not remembered for lock in.

    Sorry you are having problems. First of all try Fifrefox's safemode.
    *[[Troubleshoot Firefox issues using Safe Mode]]
    If that works post back for further advice.
    Next step, if safe mode did not work.
    <u>First: Try a clean install, <sub>(you have had a none standard version installed previously)</sub></u><br /> that involves deleting the program files. Then if necessary try troubleshooting by creating and using a clean empty Firefox profile.
    See
    * this recent post [/questions/940399#answer-377134]
    * http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall
    <u>Second: try a New Profile</u>
    *http://kb.mozillazine.org/Profile_Manager#Creating_a_new_profile
    * this will be an additional profile, it is still worth backing up any existing or currently working profile on a regular basis
    **[[Back up and restore information in Firefox profiles]]
    * Until you are absolutely confident about the repercussions I suggest
    ** always use an empty folder when creating a new profile
    ** never delete or rename profiles, just disable or remove shortcuts
    ** after creating a new test profile open it and check for any addons or plugins that may be have been included by default

  • HT1766 no sound from my speaker, headphones play normal, phone rings normal, alarm sound normal, re-installed software, will not play sound when music is played from speaker but speaker works for everything else....

    No sound from my speaker iphone 4S, headphones play normal, phone rings normal, alarm sound normal, re-installed software, will not play sound when music is played from speaker but speaker works for everything else....(phone ring and alarm)... no notification sound for text messages......
    I checked all settings..... good...
    confused???
    please advise,

    it's a hardware issue read more about it here
    https://discussions.apple.com/thread/1343532?start=315&tstart=0
    more hits
    https://www.google.dk/search?client=opera&q=4:3&sourceid=opera&ie=utf-8&oe=utf-8 &channel=suggest#client=opera&hs=UGk&channel=suggest&sclient=psy-ab&q=iphone+stu ck+in+headphone+mode&oq=iphone+stuc&gs_l=serp.3.3.0l4.412779.418971.0.420896.16. 9.2.5.5.0.86.545.9.9.0...0.0...1c.1.9.psy-ab.HHtp6aEcO5U&pbx=1&bav=on.2,or.r_cp. r_qf.&bvm=bv.45175338,d.bGE&fp=43d9a4347e8aaeda&biw=1535&bih=773

  • I started the OS system from a backup hard drive. Now My Adobe products doesnt work. "the licensing does not work for this product" Error code 150:30. Help me please!!

    I started the OS system from a backup hard drive. Now My Adobe products doesnt work. "the licensing does not work for this product" Error code 150:30. Help me please!!

    Reinstall the software properly. migration/ backups do not work due to the specific requirements of the activation system.
    Mylenium

  • IPhone 6 External Mic not working for Siri/Dictation

    I am finding that the external mic on my iPhone 6 works for phone calls and voice memos, but does not work for Siri/Dictation.  When I plug in the earbuds, they work for everything (including Siri/Dictation).
    Was chatting to Apple support who had me reset all settings.  I thought that worked, but realized that after a reset, Siri is off and I was talking to "Voice control" (which works).  When I turned Siri back on, it does not work.
    I have two questions for the community to see if you can help:
    1- I have been assuming this must be a software problem since the mic does work for non-Siri access.  But is that true?  Is there a hardware component that Siri depends on which could be faulty here?
    2- If it is software, what action should I try to address it?  I have done a reset all settings already and that did not help.
    Doug

    Hi, everyone.  I talked to Apple Genius at Apple Store last week, she said it should be a software issue and I needed to reset my iphone 6 plus as a new device and I can not use the backup restore from my iCloud, it was because the microphone bug or glitch can be in the backup also. Ok, followed her advice, erased all contents and set my iphone as a new device , the microphone worked for an hour, but went bad again.  I used "voice memo" app from Apple to test the microphone. It is the best tool since it doesn't involve any provider's network and it doesn't need another person's phone to listen and test.  If you can hear your voice recording clearly, then the mic works.  I tested it 3-4 times a day for a few days now, half of the time the mic doesn't work.  So, set as a new device isn't working. The issue is intermittent and it comes and goes as it likes, so very annoying. I carry my Apple EarPods with me in these past few days ust in case I need to make important phone calls.  Will need to go back to Apple Genius this weekend for sure.  Will give update after the weekend.

  • CALLER ID not working for International incoming calls

    Hi,
    I've a strange issue where CALLER ID not working for International incoming calls, it shows INTERNATIONAL UNKNOWN NUMBER in the phone display, but the number shows correclty in Verizon Call assistant !!!
    Any clue?

    yashshankar wrote:
    Hi
    I recently  purschased an Online number but the caller id does not work for incoming calls.How do we resolve this problem?.
    Regards
    Yash
    You didn't mention what country your Online Number is in.  Not all of Skype's Online Numbers are eligible for use as Caller ID when calling telephones or sending SMS messages.  If your number is from one of these countries (Chile, Denmark, Estonia, Hong Kong, Poland, Sweden, the UK and the US), then it can be used this way.  Otherwise, you can use a mobile number from countries other than Japan or Mexico as Caller ID with Skype, after the number goes through a verification process where Skype sends SMS messages with codes to that number.
    To get to these settings, log into your Skype account here on the Skype web site using the "Account" link at the top of this page.  You'll see a screen that would include your current Caller ID settings, and a link to change that.  If your Online Number is from one of those countries I referenced above, just select it and you're done. 
    Hope that helps!
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • Select All in a table does not work for Drag and Drop

    Hi. I am using Jdeveloper 11.1.1.2 but have also reproduced in 11.1.1.3.
    I am trying to implement drag and drop rows from one table to another. Everything works fine except when I do a Select All (ctrl-A) in a table, the table visually looks like all rows are selected, but when I try to click on one of the selected rows to drag to the other table, only the row I click on is dragged.
    I tried setting Range Size -1, fetch mode to FETCH_ALL, content delivery to "immediate" but nothing works.
    I even have reproduced not using a view object but just a List of beans with only 5 or 10 beans showing in the table.
    Does anyone know how to get Select All to work for a Drag Source?
    Thanks.
    -Ed

    Frank-
    OK, thanks for looking into that. I also submitted this service request, which includes a simple sample app to demonstrate the problem:
    SR #3-2387481211: ADF Drag and Drop does not work for rows in table using Select All
    Thanks again for the reply.
    -Ed

  • Form Designed in LiveCycle will not work for End User

    Please Help!
    I am a newbie to Adobe LiveCycle but recognized the utility in the program, so decided to give it a while to try and streamline some of my employer's forms.  After spending too much time learning how to design a form (much to the dislike of my boss), I am finally going to have to ask for some help.  So here's the deal:
    I've designed a dynamic pdf in LiveCycle with two master pages and two repeating flowed subforms.  The first repeating subform is basically an expanding table intended to be used as a photographer's log where they can log each photo taken with the camera.  The expanding table has some code with a button at the top for the end user to enter the number of photos on the photo roll, click submit, and table expands to however many instances of rows are needed for each photo that was taken.  The second subform is basically an image field and text fields used as photo captions/photo compilation pages.  When the end user clicks submit on the first subform to expand the table, I also have javascript in that click event to also create same amouint of instances of the second subform (the photo compilation page(s)).  Each text field for the photo caption on the second subform is populated by the data entered into the photo log table cells.  I was able to find a script to correctly populate those fields for each instance of the table.  Wish I had the form here, but it's at work at the moment.
    My problem is this: I've scratched and clawed to get all of the forms expanding correctly and the scripts populating each instance of the fields correctly and everything works great in LiveCycle preview.  I then saved the form as PDF for use by my field crew personnel (whom all use, at the very least, Adobe Pro 9, but most Pro X).  I sent the new form to them and they move it to their desktop, open it with Adobe Pro, and populate all of the fields and everything works swimmingly.  However, once they save it, it gets all jumbled and they can't even print it.  We even thought we found a workaround by entering all data and printing to PDF, but even that has turned out to not work.  I checked to make sure that I designed and saved the form in LiveCycle for use with the Adobe Pro versions, but still not working for my end users.
    Anyone have any thoughts on my long explanation??  Please HELLLLPPPP!

    The error(s) occur when trying to save the document.  I want each user to tell the first page how many rows they will need in the photo log table, so they would enter however many photos were taken in the box: "Number of Photos on Roll:"  ---> Then click the "Submit" cmd button.  That should expand the table.  Once it expands, it should also add the same amount of instances of the photo compilation page (2nd Page) as there are rows in 1st page table.  Then the user will populate each cell of the table on page 1 with data.  The data entered into the page 1 table cells will populate the text fields (photo caption) in Page 2 once the user clicks on the "Populate Captions!" cmd button in the lower left corner of the table on Page 1. 
    The problem is in the distributing of the form to the user so they can save the form after populating the data.  I did a test run this morning and for some reason it did do the "print to PDF" correctly for 5 photos on the roll (though this has not been happening every time and especially for a large number of pages, ie. 80 photos).  However, after entering the data for 5 rows on page 1 and then populating the 5 photo compilation pages, I saved a copy as "Save As PDF" and closed the document.  Then re-opened the copy in Acrobat Pro X.  The new copy:
    -had 5 additional rows added to Page 1
    -Duplicates of some of the fields
    -Only retained the 1st instance of the Second Page (Photo w/ Caption) and not all fields were populated
    Again, this all works fine in the LiveCycle Preview but not anywhere else.  I do not have this set up to be linked to an external data source (YET) but there is javascript in the cmd buttons.  I also do not want to distribute this form to end users and then collect the data back from them.  I want them to be able to save a copy of my LiveCycle designed form, open in Adobe Pro, populate the data and save as many copies as needed for form production.

Maybe you are looking for

  • Help using /AFS/BAPI_PO_CREATE with multiple schedule lines

    I'm using /AFS/BAPI_PO_CREATE to create POs and everything works fine until I pass an item with multiple schedule lines.  When you pass multiple schedules it is giving each of the schedule lines under an item the same grid value!  So if I want to ord

  • Events related to ISU Dunning Procedure.

    Hi all, Scenario: I have a requirement to start a workflow for Dunning procedure in IS Utilities module. Problem: Now my problem is after doing transactions FPVA and FPVB no event is generated or to be prcise in transaction SWEL no events r recorded.

  • When I run the same query for the second time it's faster, I want to reset this behavior

    I am running a query in oracle 11g select A from B where C = ':D' B has millions of records. The first time i run it it takes about 30 seconds, the second time i run the query it takes about 1 second. Obviously it's caching something and i want it to

  • Interactive Report based on a function returning SQL query?

    Hi guys! I'm wondering if the IR based on a function returning SQL query will be available on the final release of APEX 4.0..I can't see this functionality in EA1 and EA2 and I think it should be there..dont you think? With regards, PsmakR

  • Re-populating values in data block after commit

    I have a form with 2 tabs. The user can create an event in first tab and then associate/disassociate the event to data_points in the second tab (associate_event data block). Say, I create an event, and query the records affected by the event in secon