Parameter missing Informatica 8.6.0 SDE_ORA_Reverse_GLJournals from EBS

Hi all
I have a POC environment which is a 150G vm instance on a esx server, the OS is 32 bit Windows 2003 SP2, I am using OBIEE 10.1.3.4.1 and 7.9.6 BI apps with Infa 8.6.0 hotfix 4. The DB is Oracle version 10.2.3
I have successfully run the etl's from the eBusiness Suite 11.5.10 for supply chain subject areas. I created a custom execution plan to include some sales and finance areas and when I run it I get a failure where infa seems to drop the parameter being passed from the src lkp file which has been generated. I see from other posts that this was an issue in infa 8.5 before a patch was applied. In the log files there is a warning about the DTM buffer pool and block size being too small as follows:
MAPPING> TM_6007 DTM initialized successfully for session [SDE_ORA_Reverse_GLJournals]
DIRECTOR> PETL_24033 All DTM Connection Info: [<NONE>].
MANAGER> PETL_24004 Starting pre-session tasks. : (Mon Jul 13 11:18:05 2009)
MANAGER> PETL_24027 Pre-session task completed successfully. : (Mon Jul 13 11:18:05 2009)
DIRECTOR> PETL_24006 Starting data movement.
MAPPING> TM_6351 WARNING: Insufficient number of data blocks for adequate performance. Increase DTM buffer size of the session. The recommended value is 42760801.
MAPPING> TM_6660 Total Buffer Pool size is 32000000 bytes and Block size is 1280000 bytes.
I have the DTM settings on auto.
Then two sql insert statements are executed successfully after which the following sql statement fails because two parameters are not inserted
*($$SET_OF_BOOKS_ID_LIST=1*
*$$SET_OF_BOOKS_TYPE_LIST='NONE')*
The sql from the log is:
*mplt_BC_ORA_GLXactsJournalsExtract.SQ_GL_JE_LINES] User specified SQL Query [SELECT*
GL_JE_LINES.JE_HEADER_ID,
GL_JE_LINES.JE_LINE_NUM,
GL_JE_LINES.LAST_UPDATE_DATE,
GL_JE_LINES.LAST_UPDATED_BY,
GL_JE_LINES.SET_OF_BOOKS_ID,
GL_JE_LINES.CODE_COMBINATION_ID,
GL_JE_LINES.PERIOD_NAME,
GL_JE_LINES.EFFECTIVE_DATE,
GL_JE_LINES.STATUS,
GL_JE_LINES.CREATION_DATE,
GL_JE_LINES.CREATED_BY,
GL_JE_LINES.ENTERED_DR,
GL_JE_LINES.ENTERED_CR,
GL_JE_LINES.ACCOUNTED_DR,
GL_JE_LINES.ACCOUNTED_CR,
GL_JE_LINES.REFERENCE_1,
GL_JE_LINES.REFERENCE_2,
GL_JE_LINES.REFERENCE_3,
GL_JE_LINES.REFERENCE_4,
GL_JE_LINES.REFERENCE_5,
GL_JE_LINES.REFERENCE_6,
GL_JE_LINES.REFERENCE_7,
GL_JE_LINES.REFERENCE_8,
GL_JE_LINES.REFERENCE_9,
GL_JE_LINES.REFERENCE_10,
GL_JE_LINES.GL_SL_LINK_ID,
GL_JE_HEADERS.JE_CATEGORY,
GL_JE_HEADERS.JE_SOURCE,
GL_JE_HEADERS.NAME,
GL_JE_HEADERS.CURRENCY_CODE,
GL_JE_HEADERS.POSTED_DATE,
GL_JE_BATCHES.NAME,
GL_PERIOD_STATUSES.START_DATE,
GL_PERIOD_STATUSES.END_DATE,
GL_PERIOD_STATUSES.ADJUSTMENT_PERIOD_FLAG,
GL_SETS_OF_BOOKS.MRC_SOB_TYPE_CODE
FROM
GL_JE_BATCHES,
GL_JE_LINES,
GL_JE_HEADERS,
GL_PERIOD_STATUSES,
GL_SETS_OF_BOOKS
WHERE
GL_JE_LINES.CREATION_DATE > TO_DATE('01/01/1753 00:00:00', 'MM/DD/YYYY HH24:MI:SS')   AND
GL_JE_LINES.JE_HEADER_ID = GL_JE_HEADERS.JE_HEADER_ID  AND
GL_JE_HEADERS.ACTUAL_FLAG = 'A'  AND
GL_JE_LINES.STATUS = 'P'  AND
GL_JE_HEADERS.JE_BATCH_ID = GL_JE_BATCHES.JE_BATCH_ID(+) AND
GL_JE_LINES.PERIOD_NAME = GL_PERIOD_STATUSES.PERIOD_NAME AND
GL_JE_LINES.SET_OF_BOOKS_ID = GL_PERIOD_STATUSES.SET_OF_BOOKS_ID AND
GL_PERIOD_STATUSES.APPLICATION_ID = 101 AND GL_JE_LINES.SET_OF_BOOKS_ID =
GL_SETS_OF_BOOKS.SET_OF_BOOKS_ID AND
DECODE(, 'Y',
GL_SETS_OF_BOOKS.SET_OF_BOOKS_ID, 1) IN ()
AND DECODE(, 'Y', GL_SETS_OF_BOOKS.MRC_SOB_TYPE_CODE, 'NONE') IN ()]
READER_1_1_1> RR_4049 SQL Query issued to database : (Mon Jul 13 11:18:05 2009)
READER_1_1_1> CMN_1761 Timestamp Event: [Mon Jul 13 11:18:06 2009]
READER_1_1_1> RR_4035 SQL Error [
ORA-00936: missing expression
Database driver error...
The two parameters that are missing are in the decode portions where you will notice there are only commas within the parenthesis....
I am wondering if this has anything to do with the DTM block size and buffer pool size error mentioned before the run? Any feedback would be appreciated.

Found the issue:
No underscore in label between Reverse and GLJournals
[SDE_ORA_Reverse GLJournals]
$$DATASOURCE_NUM_ID=2
$DBConnection_OLAP=PARAM_OLAP
$DBConnection_OLTP=PARAM_OLTP
mplt_BC_ORA_GLXactsJournalsExtract.$$INITIAL_EXTRACT_DATE=01/01/1970
mplt_BC_ORA_GLXactsJournalsExtract.$$LAST_EXTRACT_DATE=01/01/1970
mplt_BC_ORA_GLXactsJournalsExtract.$$FILTER_BY_LEDGER_ID='N'
mplt_BC_ORA_GLXactsJournalsExtract.$$LEDGER_ID_LIST=1
mplt_BC_ORA_GLXactsJournalsExtract.$$FILTER_BY_LEDGER_TYPE='N'
mplt_BC_ORA_GLXactsJournalsExtract.$$LEDGER_TYPE_LIST='NONE'
mplt_BC_ORA_GLXactsJournalsExtract.$$FILTER_BY_SET_OF_BOOKS_ID='N'
mplt_BC_ORA_GLXactsJournalsExtract.$$SET_OF_BOOKS_ID_LIST=1
mplt_BC_ORA_GLXactsJournalsExtract.$$FILTER_BY_SET_OF_BOOKS_TYPE='N'
mplt_BC_ORA_GLXactsJournalsExtract.$$SET_OF_BOOKS_TYPE_LIST='NONE'
[SDE_ORA_GLJournals_ImportReference_Derive]
$DBConnection_OLAP=PARAM_OLAP
$DBConnection_OLTP=PARAM_OLTP_ORA11I
Issue found in the parameter file -- parameterfileOLTP.txt
Bug No: 8673433 has been logged

Similar Messages

  • 'Driver]Parameter missing' Error while trying to pass parameter to MS query & Return Data to Microsoft Excel

    I am trying to set up a parameter query using ODBC-Microsoft Query
    to BMC Remedy The ODBC connection is "AR System ODBC Data Source".
    I want to pass a parameter to modified date field and get all the remedy tickets for which the modified date is<= to the passed parameter date.
    So in MS query, SQL- 
    the query looks like
     WHERE ("Trouble Ticket"."Create Date">={ts '2014-10-01 00:00:00'}) AND ("Trouble Ticket"."Modified-date"<=?)
    I am getting the data fetched from database in the MS query window, but unfortunately
    When I click File-Return Data to Microsoft Excel, its showing an error: Driver]Parameter missing
    I set the connection properties- parameter-Prompt for value using the following string.
    Please help

    Hi,
    Based on the error message, I recommend we try the suggestion: Replace all "..."  with [...]
    http://www.pcreview.co.uk/forums/error-parameter-query-odbc-remedy-bmc-software-com-t3232964.html
    Then, if you want to connect the Remedy's oracle database, please see the thread:
    http://www.tek-tips.com/viewthread.cfm?qid=1123112
    We may try the workaround: Write an Excel macro which connects to the database and fetch the data based on the SQL query.
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If you have further question about write macro, I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Have mutli ver of LV -7.1 to LV10sp1 on XP PC. DAQmx - nilvaiu.dll missing when try to open CODE from WIN7 32 bit LV10?

    Have mutli ver of LV -7.1 to LV10sp1 on XP PC.  DAQmx - nilvaiu.dll missing when try to open CODE from WIN7 32 bit LV10?
    What Driver do I need?  VERSION Please -- DAQmx works fine in LV8.6.
    Solved!
    Go to Solution.

    Hi Briana,
    I believe I understand what you're asking, but which current DAQmx driver are you using with LV 2010?  Only the 9.1.5 and above drivers are compatible with LV 2010, while many of the older drivers will still work for you in LV 8.6.  Below, I've linked a compatibility chart for DAQmx drivers and Labview versions. 
    http://digital.ni.com/public.nsf/allkb/F4E76EC05118F72D8625773000672298
    Does this answer your question?
    Regards,
    Austin S.
    National Instruments
    Academic Field Engineer

  • {"success":false,"msg":"package file parameter missing"} while trying to upload a package via python

    Hello,
    I try to write a command line script for administrating CQ5 via command line not using curl or wget. When I try to upload a package I get the following error message: {"success":false,"msg":"package file parameter missing"} So what parameter (sure "file") is missing or how do I have to "put it in"?
    To be more precise:
    When using curl, everything works fine, so I looked at the header and body curl sends and rebuilt both via python - without success. And curl does not send a "file" parameter by the way, or I didn't see it.
    Best regards,
    Rene

    For RMA Line. I am assuming you have already created a 'RETURN' type transaction Type, and tied that to the AR transaction type. if yes, then just follow the COPY UTILITY to copy the original line into a RMA line using the Copy Utility as below. Let me know if that was helpful.
    debug_message('Start Copying order..');
    l_copy_rec.api_version_number := 1;
    l_copy_rec.init_msg_list := 'T';
    l_copy_rec.COMMIT := 'T';
    l_copy_rec.Copy_Order := 'T';
    l_copy_rec.hdr_count := 1;
    l_copy_rec.append_to_header_id:= NULL;
    l_copy_rec.hdr_info := 'T';
    l_copy_rec.hdr_type := l_refund_order_type_id;
    l_copy_rec.hdr_descflex := 'T'; -- changed to 'T'; Dipanjan; 03/06/2012
    l_copy_rec.hdr_credit_card_details := 'F';
    l_copy_rec.hdr_scredits := 'T';
    l_copy_rec.hdr_attchmnts := 'T';
    l_copy_rec.hdr_holds := 'F';
    l_copy_rec.manual_order_number:= NULL;
    l_copy_rec.all_lines := 'F';
    l_copy_rec.line_count := l_line_ids.count;
    l_copy_rec.line_type :=&l_refund_line_type_id; -- replace with the 'Return' type transaction type Id
    l_copy_rec.incl_cancelled := 'T';
    l_copy_rec.line_price_mode := 1;
    --l_copy_rec.line_price_date := NULL;
    -- l_copy_rec.line_discount_id := NULL;
    l_copy_rec.line_descflex := 'T';
    l_copy_rec.line_scredits := 'F';
    l_copy_rec.line_attchmnts := 'T';
    l_copy_rec.line_payments := 'T';
    l_copy_rec.return_reason_code := 'WRONG ITEM';
    l_copy_rec.default_null_values:= 'F';
    l_copy_rec.copy_complete_config := 'T';
    l_header_id(1).id1 := &l_orig_header_id;--- replace with original header Id
    Oe_order_copy_util.copy_order( p_copy_rec => l_copy_rec
    ,p_hdr_id_tbl => l_header_id
    ,p_line_id_tbl => l_line_ids
    ,x_header_id => l_query_header_id
    ,x_return_status => l_return_status
    ,x_msg_count => l_msg_count
    ,x_msg_data => l_msg_data);
    debug_message('End Copying order..');

  • Cannot find specified parameter file informatica

    Hello
    I am running DAC for the first time.Then i went through Workflow monitor.
    N it is showing This error
    cannot find specified parameter file informatica!!!

    Fi,
    See the below link will helful to you,
    Informatica Start Workflow failed in Workflow Manager
    Note: FYI this is not right area to get answers for your questions related to ETL.
    Thanks,
    Balaa...

  • I missed the second day free application from itune 12 Days of Gifts.  Where can I download again.  What was the second day free application ?

    I missed the second day free application from itune 12 Days of Gifts.  Where can I download again.  What was the second day free application ?

    Yesterday's app here in the UK still appears to be free (at the moment) to download (I don't know what the app's normal price is) : Score! Classic Goals. If it's not free in your country's store then if you want you will need to buy it.

  • Missing list of previously purchased iTunes from 2012? How do I recover that?

    I'm missing list of previously purchased iTunes from 2012? How do I recover that? Thanks for ideas.

    All of your music should be in itunes on your computer.
    Select it to sync and sync.

  • Missing attachements on iPhone when sending from mail.app

    I am with 3 collegeas and we are missing attachements when mail is send from mail.app on the mac.
    We use different mail all based on imap.
    google apps (exchange mail)
    dovecot imap server
    both will sometimes not receive attachements.
    this happens in 4.2.1 and in 4.3
    it's helll!!

    Sorry i forgot to tell the attachment is missing on the iphone4 4.2.1 or 4.3.
    The mail is send from a mac with mail.app

  • How to  Initiate Demantra Workflw from EBS SPP ?

    Hi ,
    I need to know ;
    1. How to kick start a "Demantra Workflow " from within EBS ? ( A step wise approach is appreciated) ( opening Demantra workflow manager and manually doing starting is workflow is not an option for me)
    2. When we kick start the workflow from SPP , I need to pass a parameter to the workflow ( the first step of workflow is a Stored procedure Step) , Is that possible , and how to do that ?

    Hi,
    Please find the answers inline
    1.We can use the package utl_http.request to call demantra workflows from EBS. Develop a custom procedure similar to msd_dem_collect_history_data.run_load (this standard procedure has all the logic required to launch demantra workflow) and register it as a concurrent program in EBS which accepts workflow name as a parameter.
    Using this concurrent program you can launch any demantra workflow just by passing the workflow name as a parameter to the concurrent program. No need to log in to workflow manager to launch a workflow :)
    2.We can only pass arguments to workflow through methods but to use methods one needs to login to collaborator workbench , but to pass an argument from SPP(EBS) without logging into Workflow Manager or Collaborator workbench , you can follow below workaround
    a.Hard the parameter in the workflow(procedure step) as P_PARAM
    b.Accept the parameter which you want to pass to the workflow say ACT_PARAM from the concurrent program which launches workflow
    c.update the table wf_schemas (this stores the workflow definition)
    UPDATE wf_schemas
    SET schema_data = replace (schema_data,'P_PARAM','ACT_PARAM')
    WHERE schema_name='xx_workflow_name';
    commit;
    d.Launch workflow using the custom procedure developed to launch workflows
    e.Rollback the changes done to the wf_schemas
    Please try this workaround on a test instance thoroughly before progressing it to Prod.
    Thanks,
    Sudeep.
    Edited by: Sudeep Bemidigi on Aug 26, 2012 11:45 PM

  • Data import from EBS failed via FDMEE in fdm . Getting error message as "Error connecting to AIF URL.

    FDM Data import from EBS failed via FDMEE after roll back the 11.1.2.3.500 patch . Getting below error message in ERPI Adapter log.
    *** clsGetFinData.fExecuteDataRule @ 2/18/2015 5:36:17 AM ***
    PeriodKey = 5/31/2013 12:00:00 AM
    PriorPeriodKey = 4/30/2013 12:00:00 AM
    Rule Name = 6001
    Execution Mode = FULLREFRESH
    System.Runtime.InteropServices.COMException (0x80040209): Error connecting to AIF URL.
    at Oracle.Erpi.ErpiFdmCommon.ExecuteRule(String userName, String ssoToken, String ruleName, String executionMode, String priorPeriodKey, String periodKey, String& loadId)
    at fdmERPIfinE1.clsGetFinData.fExecuteDataRule(String strERPIUserID, String strDataRuleName, String strExecutionMode, String strPeriodKey, String strPriorPeriodKey)
    Any help Please?
    Thanks

    Hi
    Getting this error in ErpiIntergrator0.log . ODI session ID were not generated in ODI / FDMEE. If I import from FDMEE its importing data from EBS.
    <[ServletContext@809342788[app:AIF module:aif path:/aif spec-version:2.5 version:11.1.2.0]] Servlet failed with Exception
    java.lang.RuntimeException
    at com.hyperion.aif.servlet.FDMRuleServlet.doPost(FDMRuleServlet.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • Login from ebs to apex directly .

    Hi All,
    I have been using the Cabot consulting paper for login to apex from ebs directly .
    i placed the following code as onload process
    BEGIN
    wfa_sec.getsession(:P101_USERNAME);
    :P101_PASSWORD :=
    XXAPX_SECURITY_PKG.generate_hash
    (FND_GLOBAL.user_name);
    IF :P101_PASSWORD IS NOT NULL THEN
    APEX_CUSTOM_AUTH.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_APP_PAGE => :APP_ID||':1'
    END IF;
    EXCEPTION WHEN OTHERS THEN NULL;
    END;
    But the wfa_sec.getsession(:P101_USERNAME); is not working properly , its redirecting me to ERP home page .
    Kindly! help me.
    Regards,
    Nandini Thakur.

    This is how we do it...
    1) Call a function from apps, passing in the app number and page separated by a pipe symbol:
      PROCEDURE launch_application(app_page IN VARCHAR2)
      IS
        l_url          VARCHAR2(256);
        l_page         NUMBER;
        c              OWA_COOKIE.cookie;
        l_application  NUMBER;
      BEGIN
        l_application  := TO_NUMBER(SUBSTR(app_page, 1, INSTR(app_page, '|') - 1));
        l_page         := TO_NUMBER(SUBSTR(app_page, INSTR(app_page, '|') + 1));
        OWA_UTIL.mime_header('text/html', FALSE);
        OWA_COOKIE.send(
          name     => 'APEX_EBS_' || l_application,
          VALUE    =>   fnd_global.user_name
                     || ':'
                     || generate_hash(fnd_global.user_name)
                     || ':'
                     || fnd_global.user_id
                     || ':'
                     || fnd_global.resp_id
                     || ':'
                     || fnd_global.resp_appl_id
                     || ':'
                     || fnd_global.resp_name
                     || ':'
                     || fnd_global.application_short_name,
          expires  => SYSDATE + 1 / (24 * 60 * 6), --Expire in 10 seconds
          PATH     => '/'
        l_url          :=
             fnd_profile.VALUE('APPS_FRAMEWORK_AGENT')
          || '/pls/apex/f?p='
          || l_application
          || ':'
          || l_page
          || '::LAUNCH';
        OWA_UTIL.redirect_url(l_url);
      END launch_application;Then the APEX login page has a on-header process:
    DECLARE
      c OWA_COOKIE.cookie;
      a wwv_flow_global.vc_arr2;
    BEGIN
      c:=OWA_COOKIE.get('APEX_EBS_'||:APP_ID);
      a:=apex_util.string_to_table(c.vals(1));
      :P101_USERNAME:=a(1);
      :P101_PASSWORD:=a(2);
      :GBL_USER_ID:=a(3);
      :GBL_RESP_ID:=a(4);
      :GBL_RESP_APPL_ID:=a(5);
      :GBL_RESP_NAME := a(6);
      :GBL_APPLICATION_SHORT_NAME:=a(7);
      wwv_flow_custom_auth_std.login(
        P_UNAME       => :P101_USERNAME,
        P_PASSWORD    => :P101_PASSWORD,
        P_SESSION_ID  => v('APP_SESSION'),
        P_FLOW_PAGE   => :APP_ID||':1'
      EXCEPTION WHEN OTHERS THEN NULL;
    END;We set up the globla variables you see above.
    We then have an authentication scheme which calls an authentication function:
    RETURN xxfnd_apps_to_apex_pk.authorise_userwhich looks like this:
      FUNCTION authorise_user(
        p_username  IN VARCHAR2,
        p_password  IN VARCHAR2
        RETURN BOOLEAN
      IS
      BEGIN
        IF fnd_web_sec.validate_login(p_username, p_password) = 'Y' --This part not really requried but kept in for compatibility
        OR validate_hash(p_username, p_password) THEN
          RETURN TRUE;
        ELSE
          RETURN FALSE;
        END IF;
      END;Our validate hash function is checking hashes over a period of time against the calculated hash. This means that the hash is only valid within 10 seconds of being generated - makes things more secure. We also use a salt value which is based on a hash of the apps password. You will have to chose what level of complexity to go into.
    Then we have a VPD entry in the APEX Application Security definition:
    BEGIN
        fnd_global.apps_initialize(NVL(:gbl_user_id,0),
                                 NVL(:gbl_resp_id,0),
                                 NVL(:gbl_resp_appl_id,0)
    END;This ensures that apps context is maintained throughout the application.

  • Calling a xml publisher report from Ebs - question

    Hi,
    I know how to call a xml report from ebs using concurrent manager. But i want to open it from a form in application.
    My situation is this:
    There is a form in the payables modelue, where i search for all the invoices.
    There is also a button action in this form wich take the id of the row in wich it is my position and open a rtf raport with this id.
    What i need to do is to call my xml report in this button . To pass my raport the id of the row in wich i am and open my report with paramateres.
    Can this be done? Has anyone tried this before?
    Thanks in advance,
    Best regards

    Hi,
    You can use FND_REQUEST.SUBMIT_REQUEST for submitting the report. The syntax is as follows:
    function FND_REQUEST.SUBMIT_REQUEST
    (application IN varchar2 default NULL,
    program IN varchar2 default NULL,
    description IN varchar2 default NULL,
    start_time IN varchar2 default NULL,
    sub_request IN boolean default FALSE
    argument1,
    argument2, ..., argument99,
    argument100) return number;
    Here is the code that I used for submitting XML Report Publisher from within my Oracle Report's AfterReport trigger. The parameters are explained.
    a:=FND_REQUEST.SUBMIT_REQUEST('XDO', 'XDOREPPB','Varun XML Report Printing', NULL, FALSE, :P_CONC_REQUEST_ID , 'MYONT','MY_PREPACK_XML','en-US' ,'N', 'RTF', :p_output_format,NULL, NULL, NULL, NULL,
    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,NULL );
    srw.message(123,'Value of New Request : ' || a ||' Output Format :'||:p_output_format);
    Hope it helps.
    Thanks
    Varun

  • Print to multifunction printers from ebs

    Dear all,
    we run ebs 11.5.10.2 on Windows and we would like to install multifunction printers. We would like ebs users to logon to multifunction printers in order to print reports from ebs. The question is that since printing is be done via one database user, multifunction printers wouldn't know which is the user, therefore users couldn't receive their printouts. Do you have any ideas on how to solve this?
    Kind regards,
    George

    Hi,
    Normally Outlook rules only print via the default printer, selecting the printers is beyond the control of Outlook build-in rules.
    If you have a rule written via a script, I suggest you post the question and the script to MSDN forum, in which you can get script specific support:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?category=officedev
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Melon Chen
    TechNet Community Support

  • Getting error while hitting weblogic server from EBS client instance

    Hi,
    We are trying to hit weblogic server from EBS client instance.
    Steps Done from our side :-
    1. Created a self signed key store and certificate (.cer file) with server host name and used it for SSL enabling on weblogic server.
    2. Created a self signed key store and certificate (.cer file) with client host name and used it for SSL enabling on oracle EBS client.
    3. Imported client certificate .cer file in Server Side Trust Store.
    4. Used Server keystore for client side verification.
    We are getting these logs from Client Side (Oracle EBS AS) :-
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    javax.net.ssl.SSLKeyException: [Security:090542]Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.ClientStateReceivedServerHello.handle(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessage(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessages(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
    at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
    at com.certicom.tls.record.WriteHandler.write(Unknown Source)
    at com.certicom.io.OutputSSLIOStreamWrapper.write(Unknown Source)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)
    at java.io.FilterOutputStream.flush(FilterOutputStream.java:123)
    at weblogic.net.http.HttpURLConnection.writeRequests(HttpURLConnection.java:158)
    at weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:363)
    at oracle.apps.nmc.filetransmission.DigitalSigner.sendSignedFileToBank(DigitalSigner.java:532)
    at oracle.apps.nmc.filetransmission.DigitalSigner.signXmlFile(DigitalSigner.java:330)
    at oracle.apps.nmc.filetransmission.DigitalSigner.invokerInit(DigitalSigner.java:437)
    at oracle.apps.nmc.filetransmission.DigitalSigner.runProgram(DigitalSigner.java:390)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    We are getting these logs from Server Side (Weblogic server) :-
    <Nov 9, 2012 10:34:51 AM AST> <Warning> <Security> <BEA-090482> <BAD_CERTIFICATE alert was received from whjed-apstest3.nmc.com - 192.168.100.246. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    Kindly suggest on this.
    Regards
    Deepak Gupta

    Hi;
    Please make a search BEA-090482 Check the peer to determine why it rejected at metalink. There are 8 docs avaliable, please review them
    Regard
    Helios

  • Numbers are not formatted when run report from EBS

    I am opening a new thread to solve my problem of formatting the number in xml report
    I dont understand i format the field number in rtf template and the number is displayed correctly when i preview it in pdf.
    The situation is like this :
    1. i have a field which calculate the sum for every page.
    i am using this code to calculte the sum for every page
    *<?if:(position()>=$start) and (position()<($start+$lpp))?>*
    *<?xdoxslt:set_variable($_XDOCTX,’var’,xdoxslt:get_variable($_XDOCTX,var’)+translate(CF_amount,',',''))?>*
    *<?end if?>*
    and i diplay this field in this way
    *<? format-number: xdoxslt:get_variable($_XDOCTX,’var'); '999G999D99' ?>*
    When i preview it from word this sum is displayed correctly : 444,444.34
    But when i run this report from ebs the sum amount is displayed like this 444,44434 wich means that the dot is nt displayed .
    Can anyone tell me what am doing wrong or how can i resolve this problem ?
    Thanks in advance
    REgards

    Hi,
    Check your previous thread , i responded there ;)
    Regards,
    Colectionaru

Maybe you are looking for

  • Philips TV and MiniDVI-VGA

    I bought a MiniDVI to VGA adaptor to connect my 32plf9705h/12 TV (Philips) to my macbook and with much disappoint, i realised that it's not working. All the cables are brand new, and everything is working with a PC monitor and a Samsung HD-Ready TV..

  • Save 97-2003 doc as pdf, the images get lost

    Hi, I have two images in 97-2003 doc file and i am trying to save it as pdf, it save the pdf but the iamge get lost? I tried so many solution mention on the blogs but nothing work. The thing is i can't change this doc, if i change this image little b

  • Urgent -Create  RFC for update the database and delete from the database

    Hi Guy's, Please help me how  to create the RFC for update to databse and delete from database(step-by-step) procedure. Thanks and Regards, Sai.

  • Install error with Photoshop CS6

    I am trying to install the trial version of Photoshop cs6. I have attempted the install three times now and if keeps finishing with the same message, "Some items for the following product(s) could not be installed successfully." The programs does not

  • Service Call Call ID number

    Hi, When I choose customer in Service Call screen with out Saving  i cancel the Service Call  Window Call ID Number is Changed.when i click on Last record It is not displaying the details. Again am booking the Service Call it is taking next Call ID n