BPS Post Processing Question

Dear All,
We have an EXIT function which resides in one planning level and the planning layout in another planning level.
The EXIT function is calculating the numbers correctly which creates internal table XTH_DATA and passes it to function module UPF_PARAM_EXECUTE. When we check XTH_DATA, the data records are as we need the records to be generated.
The issue we are having is that, when the EXIT funciton has completed, the data in XTH_DATA looks perfect. However, the data saved to infocube is not exactly the same as it created. For example, the EXIT creates data for 2007/001 - 012. The resulting data in infocube contains many entries of fiscal period 2006001 through 2006006. The posting period is left blank from EXIT function. The resulting data has posting period of blank, 1 through 6, etc.
We use request ID to diaplay data and makes sure the data source is correct.
Planning level for EXIT function data model:
Characteristics are:
Assortment Type
Base Unit
Climate Zone
Concept
Department
Distribution Channel
Fiscal year
Fiscal year/period
Fiscal Year Variant
Hierarchy ID
Lifestyle
Local currency
Plng Area
Posting period
Sales Organization
Version
Volume Group
Key Figures are:
Balanced Receipts
Number of Stores
Stock Index
Any helps, comments, and/or hints are greatly appreciated.
Best regards,
Sam

Highly frustrating. I've got the IPlanetDirectoryPro SSO token being set, but the custom code to add additional domain cookies...those are not re-written by the cdservlet, and even if hard-coded for testing (I assume I can parse the domain/URI being requested by parsing the HttpServletRequest, but am just testing now) to the 'new domain,' they are sent but discarded by the browser.
This is bad, as those custom cookies are required by several apps. Is there any documentation on writing a custom cdcservlet, sample code, code for the existing one, or any other means to do this?
To be clear - 'basic' CDSSO seems to be working, if a request is made to a resource on Domain B, it directs to the AM host, which is in Domain A. The IPlanetDirectoryPro cookie is being set for Domains A and B in this case, and accepted by the browser. That setting I finally found in AMAgent.properties, here:
com.sun.am.policy.agents.config.cookie.domain.list (in case this helps someone else in the future)
However, I have post-process code implementing AMPostAuthProcessInterface which was setting custom cookies required by some apps, and I am unable to change the domain these are set in. More accurately, I can change the domain, and the data is sent, but the browser is then rejecting it, presumably as it's seeing it as a cross-domain cookie, and thus bad/discarding.
This seems to only leave me with trying to use a custom cdcservlet, assuming I can find the existing code or similar to start with, as I have no idea how it's avoiding the cross domain cookie issue..
Anyone?

Similar Messages

  • OIM 11.1.1.5: Post Process Event Handler, change password notification

    Hi,
    Products
    OIM 11.1.1.5 BP02
    OAM 11.1.1.5
    OID 11.1.1.5
    Problem
    I have written a post-process event handler which fires when a role is assigned to a user. The event handler calls a plugin which uses the UserManager API to generate and change the user's password.
    I've tested this by assigning a role to the user via the OIM web console. I can see my log messages indicating that the event handler has fired and that the password has been changed.
    However, I expected that when UserManager.changePassword completed, a notification email would then be sent to the user informing them of the new password, but no notification email has been sent.
    The email notifications have been set up correctly, because I have changed the same user's password via the OIM web console and successfully received a Reset Password email.
    So, my questions are:
    1) Am I right in thinking that when you call UserManager.changePassword(), an out-of-the-box ResetPassword email notification should be sent to the user?
    2) Has anyone got this working in 11.1.1.5?
    Some more detailed info
    In my plugin class I'm calling the following from both execute methods (EventResult and BulkEventResult):
    char newpasswd[] = new RandomPasswordGeneratorImpl().generatePassword(user);
    getUserManager().changePassword(userKey, newpasswd, false, null, true);
    logger.info(("Successfully changed password"));
    plugin.xml
         <oimplugins xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
         <plugin
         pluginclass="oracle.iam.PostInsertPlugin"
         version="1.0"
         name="PostInsertPlugin">
         </plugin>
         </plugins>
         </oimplugins>
    $OIM_HOME/server/bin/weblogic.properties
              wls_servername = oim_server1
              app = OIMMetadata
              metadata_from_loc=/home/oracle/eventhandlers
              metadata_file=/metadata/roleuser/custom/EventHandlers.xml
    /home/oracle/eventhandlers/import/metadata/roleuser/custom/EventHandlers.xml
    <?xml version='1.0' encoding='utf-8'?>
    <eventhandlers
    xmlns="http://www.oracle.com/schema/oim/platform/kernel"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.oracle.com/schema/oim/platform/kernel orchestration-handlers.xsd">
    <action-handler
    class="oracle.iam.PostInsertPlugin"
    entity-type="RoleUser"
    operation="CREATE"
    name="PostInsertPlugin"
    stage="postprocess"
    order="1002"
    sync="TRUE"/>
    </eventhandlers>
    There are no errors in the OIM out and diagnostic logs apart from the following which occur at OIM startup:
    [2013-01-07T16:29:23.425+00:00] [oim_server1] [ERROR] [IAM-0080075] [oracle.iam.platform.kernel.impl] [tid: [ACTIVE].ExecuteThread: '13' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: oiminternal] [ecid: 2e903d7ef060ab65:66b2de91:13c15d6d9ce:-8000-0000000000000002,0] [APP: oim#11.1.1.3.0] XML schema validation failed for XML /metadata/iam-features-OIMMigration/EventHandlers.xml and it will not be loaded by kernel.
    [2013-01-07T16:29:24.267+00:00] [oim_server1] [ERROR] [IAM-0080075] [oracle.iam.platform.kernel.impl] [tid: [ACTIVE].ExecuteThread: '13' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: oiminternal] [ecid: 2e903d7ef060ab65:66b2de91:13c15d6d9ce:-8000-0000000000000002,0] [APP: oim#11.1.1.3.0] XML schema validation failed for XML /metadata/iam-features-callbacks/event_configuration/EventHandlers.xml and it will not be loaded by kernel.
    Thanks
    dty
    Edited by: oim_user on Jan 7, 2013 5:37 PM

    No notification will be sent if you changepassword using the method from usermanager api.
    You have to trigger the resetpassword event manullay in your code.
    Here is a sample code to create an event for reset password. Once you create event, invoke it from notification service - notify method.
    NotificationEvent event = new NotificationEvent();
    String[] receiverUserIds= {userLogin};
    event.setUserIds(receiverUserIds);
    event.setTemplateName("ResetPasswordNotification");
    event.setSender(null);
    HashMap<String, Object> resolvedData = new HashMap<String, Object>();
    resolvedData.put("userLoginId", userLogin);
    event.setParams(resolvedData);

  • Workflow for post processing offline images

    I'm a professional real estate photographer who normally edits his own images after a photoshoot. I've recently become so busy that I'd like to outsource the post processing of my images to another individual who also uses Photoshop.
    Is there a way to send this individual lower resolution images so he can work on them and then have him send me the metadata from his edits, so I can apply them to the images I have on my system? The reason for this question is because I'd like to minimize the size of the images I'm sending to the editor, but still be able to produce high resolution stills.
    I understand there is a way to work with RAW images and save the metadata, but that doesn't fix the file size issue, and you can only save certain aspects like white balance, levels, etc... I really need a way to capture his history and save that to a file, that way if he were to use a certain filter, or brush on the image, the same results would be applied to my images.
    Thanks in advance for your help!

    You can't apply the history log, it is just information on what has been done to the file. You would have to read this file and simply repeat the same steps on the higher resolution version of the file.
    As for the replacement work flow I mention: you would open the low resolution file that your worker created. Then you would use the Place command (under the File menu) to add your original high resolution version of the image as a new layer. This will make your image a Smart Object layer. Move this layer to the bottom of the layer stack, just above Background, if that is an option. Make sure your smart object is at 100% scale (when you place the file, it is shrunk to fit the existing document boundaries), you can do this by using Free Transform (under the Edit menu) and verifying the values at the top. Then use the Reveal All command (under the Image menu) to resize the canvas to fit the full resolution version of the image. However, this really will only work if the editing involved was pretty much nothing by adjustment layers. Any pixel edits will have to be resized as well and may loose detail or not line up correctly once enlarged.

  • Formatting / Post Processing of Exported Excel Sheet

    Hi ,
    Issue:
    The Columns in the Excel Sheet are not fully visible when we export Report from CR viewer  to Excel Sheet. So we had planned for Post processing of the Excel Sheet using VBA or .NET etc to format the Excel Sheet, which would be on the server side, meaning the End user will never see the formatting process, but only the End Report. Is it possible to achieve this ??
    NOTE:
    1) VBA or .NET could not be run on the Linux Server but we could take advantage of the windows server in the presentation layer.
    Architecture:  
    Presentation Layer                    
    Linux Server <--> Windows .Net Server <--
    > End User
    {Crystal RAS Server} <-->{GUI CR Viewer Application}<--
    >
    Our Proposed Solution:
    1) Create an GUI Application that has CR viewer in it .
    2) Create a Separate Excel Export button on the webpage.
    3) when the user wants to export the report , he clicks the button.
    4) The GUI/ application saves the Exported Excel Sheet from the Ras server to the windows server.
    5) Then the .Net or the Vba code is applied to process/Format the Excel Sheet.
    6) When complete the End user is prompted for saving the report to a local disk.
    My questions:
    1) Can this be achieved ?
    2) what would be the best way to handle this ?
    3) what should be the process flow ?
    4) what are the things to be considered while planning for such a design ?
    Regards,
    Ramkumar Govindasamy

    So you're looking at using RAS .NET SDK on the Application Layer to export a Crystal Report to Excel, save to temp file on the Application Layer machine, process that temp file, and stream that back out to the client web browser.
    Considerations:
    1. You need to create your own custom UI button to trigger the process, since the .NET Web Forms Crystal Reports viewer won't have the hooks to customize the Excel export.
    2. Running Excel VBA from your Web App may be problematic - you'd have to be particularly careful if the system is under load, since the Excel VBA - COM-Interop isn't necessarily designed for high throughput.  Under high load, you may get file locking or COM-Interop layer just refuse to process.  It's pretty common to try and catch exceptions and retry if you encounter this.
    You'd likely not find anyone here familiar with 2 above, but 1 is fairly common.
    Sincerely,
    Ted Ueda

  • Post Processing Time

    Hi
    Just had a general question about post processing. We have moved in BI Publisher ((5.6.3) E-Business 12.1.1)) in a big way meaning we now have hardly any concurrent programs of sql*plus, Oracle Reports or PL/SQL type. This means we have a lot of post processing - 2500 approx. reports a day with more to come I imagine.
    Is there any danger in adopting BI Publisher this aggressively? Is there an optimal time which reports should be running with post processing for instance a percentage of total time of the concurrent request for example if a report takes 5 minutes to run how long should it take to post process 10% of the total time or is it depend on the size of the output?
    Thanks in Advance

    HTML is a simple format (Text).
    Excel is more complicated and requires more time to generate. The same applies for Word and PDF output.
    Maybe the processing power and memory of the server are not high and this does not help generate the output faster.
    I have a workaround for you, generate an XML file (which should finish faster) and open it in Excel.

  • Post processing PDF to XML.

    Topic
    Post-processing PDF into XML.
    Compton MacKenzie - 08:48am Oct 29, 2008 Pacific
    Hi,
    Sorry for the basic question... We want to have users fill out a fillable PDF form using Aacrobat Reader and then upload it to a web page. Once we get the PDF, we need to extract the data that they have entered. Short of using LiveCycle Data Services (not currently feasible as we have no Java presence on our server platform), is there any API that I can use to extract the data or convert the PDF to XML. I understand that it is possible to export XML using the Acrobat client (and it might be possible to script this with COM) but I don't think this would work reliably in a server environment.
    (We need both the PDF and the data as the PDF will contain an electronically captured image of a customer's signature and need to preserve the actual image of the document.)
    Any suggestions?
    Thanks!

    There are server based products under the LiveCycle banner for this but they all run on a Java based app server. You can use a turn key install where the app server (JBoss) and a Database (MySql) are provided for you but you need to have the Java SDK present. The LiveCycle servers can run on Windows, Linux, AIX to name a few.
    Note that if you script Acrobat to do this on the server you are in violation of your license agreement.

  • Lumia 1020 - Disable Post Processing?

    Preface:  I've only had the Lumia 1020 for 48 hours.
    Problem:  I've noticed that when taking pictures with the Nokia Pro Camera application, the preview after capturing the image is awesome.  If I then go to look at the captured image, there is a short pause, and suddenly the picture goes soft, detail is lost, colors become horribly skewed.   It would seem that there is some massive post processing being done after the image is archived.
    Request:  Is there any way to disable this post processing?  It's taking wonderful pictures and destroying them.
    I'll see if I can take a screen capture to show what I'm talking about and I'll post again after work.
    Lumia 1020 Quirks.
    - Post processing done even on "raw" 34MP images.
    - The entire screen is powered when using Peek. Despite being OLED and Nokia specifically stating otherwise.
    - Can turn on (but not off) camera in the background on a call. App doesn't open but shutter does and spins up CPU.

    So after looking at the 5MP version (attached) it seems that it is indeed post processing it after the fact and saving it that way.  Which begs the question.... Why?  Isn't the photo review going through the Nokia Pro Camera app anyway?  Why is it doing post processing (I've also had it remove red-eye automatically when reviewing photos)?
     Stil, I want to know; how can I disable it?
    *Edit:  Trying to attach the large format photo as well...
    *Edit2:  After uploading both and flipping back and forth between the "review" image, the 5MP saved image, and the highres saved image, they are all the same, meaning that it is doing the post processing as it is saving the 5MP & 34MP image.  This means there is no way to truly undo it.  (It also means things like auto-redeye reduction are permanent, and can't be undone, tweaked, etc.)
    So.... thoughts?
    Lumia 1020 Quirks.
    - Post processing done even on "raw" 34MP images.
    - The entire screen is powered when using Peek. Despite being OLED and Nokia specifically stating otherwise.
    - Can turn on (but not off) camera in the background on a call. App doesn't open but shutter does and spins up CPU.
    Attachments:
    WP_20130812_12_46_36_Pro.jpg ‏2045 KB
    WP_20130812_12_46_36_Pro__highres.jpg ‏10902 KB

  • Row-Based Only option for post processing operator

    Hi,
    Have a question on the role of the "Row-base Only" option for post processing operators. I am trying to understand how a post-processing operation can be done in a row-based mode. A coded PLSQL procedure in a post processing operator is expected to run only once. So I am not clear on how this option might affect the execution of the transformation. Any clarifications would be appreciated.
    Thanks,
    Mazen

    Hi Carsten,
    My question is more on what is the use of the "Row-based only" checkbox that shows up in the properties window for a post-processing operator. How does this checkbox affect the execution of the post-processing transformation?
    Regards,
    Mazen

  • Post-processing error Template code: ARXCMGJR

    Hi
    SR 6648071.994
    CAP GEMINI ERNST & YOUNG UK PLC
    ISSUE: Customer is testing for a major upgrade to 11.5.10.2, and receive an error when submitting ARXCMGJR module: On Account Credit Memo Gain and Loss Journal report in post processing of concurrent:
    [12/20/07 12:03:51 PM] [399437:RT7371897] Starting XML Publisher post-processing action.
    [12/20/07 12:03:51 PM] [399437:RT7371897]
    Template code: ARXCMGJR
    Template app: AR
    Language: en
    Territory: US
    Output type: PDF
    12/20/07 12:03:57 PM] [UNEXPECTED] [399437:RT7371897] java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:558)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:228)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:247)
    at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    Caused by: java.lang.ClassCastException: oracle.xdo.parser.v2.XSLNode
    at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:782)
    at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:564)
    ... 17 more
    [12/20/07 12:03:57 PM] [399437:RT7371897] Completed post-processing actions for request 7371897.
    [12/20/07 12:10:36 PM] [OPPServiceThread0] Post-processing request 7371902.
    [12/20/07 12:10:36 PM] [399437:RT7371902] Executing post-processing actions for request 7371902.
    [12/20/07 12:10:36 PM] [399437:RT7371902] Starting XML Publisher post-processing action.
    [12/20/07 12:10:36 PM] [399437:RT7371902]
    Template code: ARXCMGJR
    Template app: AR
    Language: en
    Territory: US
    Output type: PDF
    [12/20/07 12:10:37 PM] [UNEXPECTED] [399437:RT7371902] java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:558)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:228)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:247)
    at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    Caused by: java.lang.ClassCastException: oracle.xdo.parser.v2.XSLNode
    at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:782)
    at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:564)
    ... 17 more
    Any Help on cause of this error is appreciated.
    Thank you
    JM

    Hi Jean-Marc
    Please use the internal xmlp mailing list for such questions - this forum is for customers and partners.
    If you dop not know the ML drop me a mail.
    To be able to investiage further we need the template and the XML data for the report.
    Regards
    Tim

  • Post processing after system copy from standalone to cluster enviornment

    Hi,
    I have done a system copy(Backup restore method) from a standalone quality BW (QBW) system to cluster environment (TBW).
    The steps I have followed as follows.
    . setup the machines in the cluster environment  ( Windows 2003 EE server,sql 2005 SP3)
    . Backup the current database in the source system
    . Given a different SID (TBW) during the System copy installation .its a dual stack installation.
    . Restore the database in the target system and select the back up restore method during the system copy database installation step.
    .The installation completed successfully and i m having some doubts regarding the post processing steps after this .
    We want to retain the same client in the target system ,for this i need to rename the  logical name .Kindly assist me for changing the logical name for the extraction of BW delta process from extraction server to BW system and also the other steps I have to follow after system copy.
    Thanks
    Arun Padikkal

    Hi Arun,
    You should probably post this question in a basis forum.
    Cheers,
    Diego

  • Best Practice Reuse - Post Processing

    I have a Query Canvas that I would like to use over and over again in my different form modules. I created an object group and put the group into the object library. All of the code is located in program units.
    I want some "post" processing done which differs depending on which form I am reusing it on. I first created a post_query procedure and called it as a hook, but when I use it on a form, it gets overwritten as I update the reusable object group.
    I then thought I would just call my post processing after I called the query procedure, but the "post" code is executing BEFORE query code executes - which I am completely confused as to why.
    So my basic question is, how do you add "hooks" or pre and post procedures to your reusable code and prevent that code from being overwritten as you update your objects?

    Hi,
    I also want to know what kind of monitoring scripts I can use to setup as cron jobs to monitor or detect any failure or problems?
    To monitor Cluster (OS Level):
    I suggest you use a powerful tool "CHM" that already comes with product Grid Infrastructure.
    What do you do to configure? Nothing ... Just use.
    Cluster Health Monitor (CHM) FAQ [ID 1328466.1]
    See this example:
    http://levipereira.wordpress.com/2011/07/19/monitoring-the-cluster-in-real-time-with-chm-cluster-health-monitor/
    To monitor Database:
    PERFORMANCE TUNING USING ADVISORS AND MANAGEABILITY FEATURES: AWR, ASH, and ADDM and Sql Tuning Advisor. [ID 276103.1]
    The purpose of this article is to illustrate how to use the new 10g manageability features to diagnose
    and resolve performance problems in the Oracle Database.
    Oracle10g has powerful tools to help the DBA identify and resolve performance issues
    without the hassle of analyzing complex statistical data and extensive reports.
    Hope this help,
    Levi Pereira
    Edited by: Levi Pereira on Nov 3, 2011 11:40 PM

  • Retry "Bulk Load Post Process" batch

    Hi,
    First question, what is the actual use of the scheduled task "Bulk Load Post Process"? If I am not sending out email notification, nor LDAP syncing nor generating the password do I still need to run this task after performing a bulk load through the utility?
    Also, I ran this task, now there are some batches which are in the "READY FOR PROCESSING" state. How do I re-run these batches?
    Thanks,
    Vishal

    The scheduled task carries out post-processing activities on the users imported through the bulk load utility.

  • Post Processing List

    Hello all,
    I have a question related to the Post Processing List (transaction MF47), where they appear the backlogs resulted from backflush.
    If, by mistake, I deleted some postrocessing records (instead of processing them), how could I see later these deleted records? And how could I process them later on, if they need to be processed? --> do it exists an "undo", related to the action of deleting postprocessing records?
    Thank you very much,
    Edith

    Dear Catalin Ignat,
    Once if the Post Processing Record is deleted in MF47,
    in no way you can fetch the data back.
    It will not show either in AFFW or AUFM or COGI.
    SAP has given a temporary means to use this Reprocessing allowed in REM
    Profile.
    So once deleted unknowingly its lost.
    Reward points and close the thread.
    Regards
    Mangal

  • Post processing a report

    The report attributes page has a section for External Processing with a online help of
    "Specify the URL to a server for post processing of a report. See documentation for instructions."
    I couldnt find anything in the documentation abou this.
    Can someone from Oracle please explain what this is with an example?
    Thanks

    Oh Man that's really sad...I've been working on SOA for that last 9 months and just getting back into APEX. Carl helped me heaps and answered alot of my questions. I'm an oracle instructor and have been teacing/using the product since it started. Carl's name was synonymous with APEX...
    I've just checked out quite a few blogs and it seems he helped many other people as well.
    thanks Tony
    Paul P : (
    By the way I eventually found out about FOP it's all explained at http://www.oracle.com/technology/pub/notes/technote_htmldb_fop.html and numeous postings.

  • Post-processing after errors in CAT5

    I had few CO errors during CAT5 transfer, so financial postings were not executed.  Errors were fixed in PS, but next time we run CAT5 there are no confirmation foir transfer.
    The question is how it is possible to re-process or post process the transferred confirmations that are missing financial postings?
    Thank you!

    Hi Kabir,
    Many thanks for your input.  Now I would like to do something that is probably not possible.
    I had a closed period, so CO postings failed.  It was decided that the period will remain closed, so I want to re-process same confirmations, but with another posting date (that is in the open period).  Is it possible?
    Or I'd need to change the data in each time report to trigger new confirmations?
    Many thanks!

Maybe you are looking for

  • Why is iCal synching (and freezing)?

    Gang, I'm new to the forum. I tried to search but didn't find anything related to my question. If it's been covered elsewhere, please point me in the right direction. I recently set up a new iMac at home, using Target Disk Mode to transfer the user a

  • How to Post Intercompany line items- DP93 ?

    hi, I am trying to do intercompany billing using DP93. In DIP profile   source is given as Intercompany line items. i have posted activity confirmation.But while doing DP93, i am getting error as non expenditure items found. Can any one tell  , how t

  • Streaming audio not working

    Streaming audio from radio stations not working since 7/11/2014. Adobe flash player update stalls during installation. MacBook Pro OSX 10.9.4 Safari Version 7.0.5 (9537.77.4)

  • How to process and imbedded JPEG image data

    I am using a flowable XFA form . and i would like to embed some JPEG images in a subform. My form is working but I need this additional behavior/capability. Can you direct me to where i would find a good example of how to do it or to good documentati

  • FPGA Sampling probe display error

    In LabView 2014F1, I discovered a very disturbing bug.  Take a sampling probe window I've been working with in order to ferret out issues with an FPGA sub-vi: Scrolling left and right using the mouse results in changes to signal alignment! Which one