Export scenerios issues

Hi Guys,
I am trying to export scenerios which are marked as 'TEST' through marked group.
and iam selecting them as through following query in ODI Porcedure on the source tab and technology oracle:-
SELECT
scen_name AS pack_name
FROM (
SELECT
LAST_VALUE(d.scen_name) OVER
(PARTITION BY c.pack_name ORDER BY scen_version) AS scen_name,
MAX(scen_version) OVER
(PARTITION BY c.pack_name ) max_scen_version,
scen_version,
c.pack_name
FROM
snp_obj_state a
join snp_state2 b on (a.i_state = b.i_state)
JOIN snp_package c ON (a.i_instance = c.i_package)
JOIN snp_scen d ON (c.i_package = d.i_package)
WHERE state_code = 'TEST'
WHERE scen_version = max_scen_version
and query is selecting one record when i run it in oracle session,so there is data.
on the target tab of the ODI Porcedure where technology is ODI Tools iam doing following:
OdiExportScen "-SCEN_NAME=#pack_name" "-SCEN_VERSION=-1" "-FILE_NAME=C:\code\SCEN\SCEN_#pack_name Version 001.xml" "-FORCE_OVERWRITE=YES" "-RECURSIVE_EXPORT=YES" "-XML_VERSION=1.0" "-XML_CHARSET=ISO-8859-1" "-JAVA_CHARSET=ISO8859_1"
and i keep getting following error:-
SnpScen does not exist
but as i said already, if we run the query it is getting a row back and samething is(OdiExportScen) working if i hard code the scenerio name for -SCEN_NAME=,so something on the source query it is not liking.
any thaughts here guys?
Cheers

1. Don't judge you titles on anything but a broadcast television monitor.
2. Make sure that your sequence is fully rendered before exporting.
rh

Similar Messages

  • KIMYONG : basic  Export / Attachment issues  가이드

    Purpose
    ======
    이 문서는 Support Analayst / DBA에게 Export /Attachments issues 발생시
    조치할수 있는 기본적인 Troubleshooting Guide를 소개하고자 합니다.
    Explanations
    ======
    Export Analysis
    Turn on export debug,
    Go to Help -> Diagnostics -> Examine
    Set Block = GLOBAL
    Set Field = FND_EXPORT_DEBUG
    Set Value = TRUE
    Then export and observe the messages that are generated during the export process
    Important Parameters.
    set serveroutput on
    declare
    plsql_agent varchar2(200);
    web_server varchar2(200);
    dad varchar2(200);
    gfm_agent varchar2(200);
    protocol varchar2(200);
    database_id varchar2(200);
    jsp_agent varchar2(200);
    check_enabled varchar2(200) ;
    begin
    plsql_agent := fnd_web_config.plsql_agent ;
    dbms_output.put_line('PL SQL Agent ->'||plsql_agent);
    web_server :=fnd_web_config.web_server ;
    dbms_output.put_line('Web Server ->'||web_server);
    dad := fnd_web_config.dad ;
    dbms_output.put_line('DAD ->'||dad);
    gfm_agent := fnd_web_config.gfm_agent ;
    dbms_output.put_line('GFM Agent ->'||gfm_agent);
    protocol := fnd_web_config.protocol ;
    dbms_output.put_line('Protocol ->'||protocol);
    database_id := fnd_web_config.database_id ;
    dbms_output.put_line('Database Id ->'||database_id);
    jsp_agent := fnd_web_config.jsp_agent ;
    dbms_output.put_line('JSP Agent ->'||jsp_agent);
    check_enabled := fnd_web_config.check_enabled('FND_GFM.GET') ;
    dbms_output.put_line('FND_GFM.GET ->'||check_enabled);
    end ;
    Examining SQL Trace for the sequence of events that happen in the Export process
    SQL >alter session set events '10046 trace name context forever, level 12';
    Then run the following block of pl/sql code
    set serveroutput on
    declare
    db_file number;
    mime_type varchar2(255) :='text/plain' ;
    out_string varchar2(32767) :='Just some plain text that is stored' ;
    web_server_prefix varchar2(500);
    url varchar2(500);
    begin
    db_file :=fnd_gfm.file_create(content_type =>mime_type,program_name=>'export');
    fnd_gfm.file_write_line(db_file,out_string);
    db_file :=fnd_gfm.file_close(db_file);
    url:=fnd_gfm.construct_download_url(fnd_web_config.gfm_agent,db_file,TRUE);
    dbms_output.put_line(url);
    end;
    Exit the sql plus session and study the sql trace file as being there in USER_DUMP_DEST
    $ ls -lrt
    Refer to Note # 282806.1 Performance Tuning Approach for Oracle(8.1.6 - 9.2.0.5) on
    UNIX for more information on how to obtain sql tracing .
    Example of download URL :-
    http://finance.sriratu:8001/pls/SR/fndgfm/fnd_gfm.get/776537528/202595/fnd_gfm.tsv
    http://aoltest2.idc.oracle.com:8000/pls/VIS/fndgfm/fnd_gfm.get/820067633/298941/Screen_shots.doc
    Example of Upload Attachment URL:
    http://aoltest2.idc.oracle.com:8000/pls/VIS/OracleSSWA.Execute?
    E=%7B!2DAF44968EBBEC83211B5D5F27F58334FBFB2B90E38AD205&P=%7B!BEFD8114A932C86A1548EC73FFCF6EADB4F7826B217EDCE92719B62BDA9FF0AF193DC7BC64A2C60AFC5123B50C8C78F9E6807695ED9A7FE7AE87F8E49E80807223756706B3FC777F645FA5A07C7A467B
    http://aoltest2.idc.oracle.com:8000/pls/VIS/OracleSSWA.Execute?
    E=%7B!2DAF44968EBBEC83211B5D5F27F58334FBFB2B90E38AD205&P=%7B!BEFD8114A932C86A5525987DB9C8D9785657497306AAE1FD25D1CC352ADF38DFD69C21355096CBC38D285B083D24F261701F5F278E199044D603A5A8B1D588292099782AC4AF3D97E23B95936809D280
    To check the row being created in the table FND_LOBS during Export or Attachment
    SQL>create table fnd_lobs_bak as
    select file_id,file_name from fnd_lobs ;
    SQL>select * from fnd_lobs
    where file_id not in
    (select file_id from fnd_lobs_bak );
    SQL>select * from fnd_lobs
    where to_char(upload_date,'DD/MM/YYYY')=to_char(sysdate,'DD/MM/YYYY')
    Analysis on an Attachment
    Help -> Diagnostics -> Examine
    Block : DOCUMENT_HEADER
    Field : ATTACHED_DOCUMENT_ID
    Note down <Value>
    SQL>select document_id
    from fnd_attached_documents
    where attached_document_id=<Value>;
    SQL>select media_id
    from fnd_documents_tl
    where document_id=<document_id>;
    SQL>select *
    from fnd_lobs
    where file_id=<media_id>;
    SQL>select *
    from fnd_documents_short_text
    where media_id=<media_id>;
    from fnd_documents_long_text
    where media_id=<media_id>;
    SQL>select *
    from fnd_documents_long_raw
    where media_id=<media_id>;
    FND_LOBS stores information about all LOBs managed by the Generic File Manager (GFM).
    Each row includes the file identifier, name, content-type, and actual data. Each row also
    includes the dates the file was uploaded and will expire, the associated program name and
    tag, and the language and Oracle characterset.
    The file data, which is a binary LOB, is stored exactly as it is uploaded from a client browser,
    which means that no translation work is required during a download to make it HTTP compliant.
    Therefore uploads from non-browser sources will have to prepare the contents
    appropriately (for instance, separating lines with CRLF).
    The program_name and program_tag may be used by clients of the GFM for any purpose,
    such as striping, partitioning, or purging the table if the program is de-installed.
    They are otherwise strictly informative.
    These columns and the expiration date are properly set when the
    procedure FND_GFM.CONFIRM_UPLOAD is called. If not called, the column
    expiration_date remains set, and will eventually be purged by the procedure
    FND_GFM.PURGE_EXPIRED.
    FND_DOCUMENTS_LONG_RAW stores images and OLE
    Objects, such as Word Documents and Excel
    spreadsheets, in the database. If the user elects
    to link an OLE Object to the document, this table
    stores the information necessary for Oracle Forms
    to activate the OLE server, and it saves a
    bit-mapped image of the OLE server's contents.
    If the user does not elect to link an OLE Object,
    the entire document will be stored in this table.
    FND_DOCUMENTS_LONG_TEXT stores information about
    long text documents.
    FND_DOCUMENTS_SHORT_TEXT stores information about
    short text documents.
    To know which Forms provide Attachment feature
    SQL>select *
    from fnd_attachment_functions
    where function_name like '%FND_%';
    Examining FND_LOBS tablespace
    SQL>select tablespace_name
    from dba_tables
    where table_name='FND_LOBS';
    SQL>select *
    from fnd_profile_options_tl
    where profile_option_name='FND_EXPORT_MIME_TYPE';
    SQL>select a.tablespace_name TABLESPACE_NAME , a.bytes TOTAL_BYTES,
    sum(b.bytes) FREE_BYTES , count(*) EXTENTS
    from dba_data_files a, dba_free_space b
    where a.file_id = b.file_id AND A.TABLESPACE_NAME=<TABLESPACE_NAME>
    group by a.tablespace_name, a.bytes
    order by a.tablespace_name ;
    Examing Profile Option value
    SQL>select *
    from fnd_profile_options_tl
    where profile_option_name='FND_EXPORT_MIME_TYPE' ;
    SQL>select b.profile_option_name,level_id,profile_option_value
    from fnd_profile_option_values a, fnd_profile_options b
    where a.application_id=b.application_id
    and a.profile_option_id=b.profile_option_id
    and b.profile_option_name in ('FND_EXPORT_MIME_TYPE') ;
    Procedure FND_GFM.GET ANALYSIS
    http://aoltest2.idc.oracle.com:8000/pls/VIS/fndgfm/fnd_gfm.get/560074272/298951/fnd_gfm.doc
    access
    SQL>select substr('/560074272/298951/fnd_gfm.doc',instr('/560074272/298951/fnd_gfm.doc','/',1)+1,instr('/560074272/298951/fnd_gfm.doc','/',2)-2) access from dual ;
    560074272
    file_id
    SQL>select substr('/560074272/298951/fnd_gfm.doc',instr('/560074272/298951/fnd_gfm.doc','/',2)+1,(instr('/560074272/298951/fnd_gfm.doc','/',-1)-instr('/560074272/298951/fnd_gfm.doc','/',2)-1)) from dual ;
    298951
    Profile Options being referenced in the package FND_GFM
    FND_EXPORT_MIME_TYPE
    FND_NATIVE_CLIENT_ENCODING
    Lookup Type Being used in the package FND_GFM
    SQL>select tag,lookup_code,meaning
    from fnd_lookup_values_vl
    where lookup_type='FND_ISO_CHARACTER_SET_MAP';
    Reference
    ========
    Note 338651.1

  • SUBCONTRACTING SCENERIO ISSUE

    HI,
    TO ALL EXPERTS,
                              This is Manish.I am here with one subcontracting scenerio issue which as follw explain -
    1)I have a material which is set for subcontracting.It have its own bom which includes raw material.
    2)Suppose price of that semifin. Material is10 /- & ration with raw matrl. Is 3:2 I.e
    3 kg of raw = 2kg finish & remain 1kg. is scrap.
    3)So I made a BOM in which I maintained 3 kg raw & 1kg scrap (in minus I.e -1 kg.)
    4)now I made P.O of semifin. Material in Kg. for jobwork to for XYZ vendor (I.e raw material will issue in kg & also return material I.e semif. Material is also in kg.)suppose raw I sending to vendor is of 200 kg. Means semifin. Will of 133.33kg & remain 66.67 kg. Will scrap.
    5)It means if I will send 200 kg raw then it will returns as 133.33kg of semifinsh.
    6)Then I made transfer posting to vendor by mb1b in which I send 200 kg of raw & create a challan.
    7)Note : the material both at while sending & receiving it weighted on weighing bridge,as it contains small diff. In weight.(because even u purchase the ms plate12 mm for a weight of 706kg. Standard,U will never get as exact as 706 kg.,there will some diff. in weight may it will be more or less)
    8)Then I got the material from vendor after some days as semifin. Material with bill.
    9)But as I told earlier u will never get exact material as expect. i.e if send 200kg u will never get 133.33 kg semifin. There will be some difference of 5-10kg.
    10) Suppose I received semifin. @ 125 kg instead of 133.33 kg as mentioned in bill.
    11) So when I will take G.R it will deficit by 8.33 kg.
    12)Now if I reconcile the challan it will give status as u201Cassignedu201D I.e partial reconcile means it shows there will 8.33kg. Of material still at vendor side,whereas practically it is completely delivered by vendor to us.
    13)The scrap generated in material will at vendor, he will sale it & we will include the rate of it in the material price.
    So finally as with reference with above scenario, is there is any chance to correct the system?
    As I know if u want to make it complete u will have to take separate GR. of scrap &/or to to take GR of semi matrl. As complete receive even if there is diff in weight.
    So is there any tolerances or process so we can put & make challan as complete reconcile?
    Please suggest appropriate solution.
    Thanks in advance,
    Manish.

    Dear,
    At the time of MIGO
    ur refering the s/c challan right ?
    at that time u r giving receiving qty say X for that consumption of raw material is Y which is as per BOM ok.
    now u find that instead of Y consumption is somthing (Y+1KG)
    fine
    now what u have to do ,
    for consumption line item in GR (which posts the 543 movt type) overwright the amount from Y to (Y+1KG).
    hope this will help u to understand the scanario.
    regards,
    Sujit

  • Export license issue-URGENT

    We need to cancel Outbound Delivery 1234566 due to a GTS Export License issue.
    This delivery was created before the GTS license was complete.
    This delivery is for a Military Sales Order 123456 to ABCD for Thales shipped from XYZ
    2 Proforma Invoices were created, 123456on 9/18 and 9301154276 and 9/24. 
    GTS License 100000000000000011 was updated on 9/24.  However, the delivery needs to be canceled in order for GTS to assign a Proforma to a license.
    The accounting document, F2 Invoice 123456 has been issued but not cleared.
    Thanks
    Sitanshu

    Use Transaction code /SAPSLL/CL_CP_CUS_EX to display the custom declaration in Customs management. Select the dcoument in change mode. In the menu path, there is an option for 'Cancel' or 'Request Cancellation'. Request cancellation option is used when the declaration has been sent out to authorities for permission and in the meatime, the user decided to cancel..
    For assigning the license, use transaction /SAPSLL/LCD_CHANGE in License determination of Compliance..

  • Export import issue from higher version to lower version

    Hi,
    I have an export dump file which was taken from 11g database(11.2.0.2.0) and trying to import into lower version of the database 9i(9.2.0.6.0), unable to complete the process.
    Two ways i have found and tested in my test db
    1)TNS entry of 9i database has been put into 11g database
    a)Export dump was successfuly taken from 11g db
    b)Getting below error,while import into 9i database
    IMP-00058: ORACLE error 6550 encountered
    ORA-06550: line 1, column 33:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredIMP-00000: Import terminated unsuccessfully
    2)TNS entry of 11g database put into 9i database version.
    a)During export (trying to take exp dump from 11g db in 9i exp utility),getting below error
    EXP-00008: ORACLE error 1455 encountered
    ORA-01455: converting column overflows integer datatype
    EXP-00000: Export terminated unsuccessfully
    Kindly advice me to overcome from this issue.
    Regards,
    Faiz

    mafaiz wrote:
    Hi,
    I have an export dump file which was taken from 11g database(11.2.0.2.0) and trying to import into lower version of the database 9i(9.2.0.6.0), unable to complete the process.
    Two ways i have found and tested in my test db
    1)TNS entry of 9i database has been put into 11g database
    a)Export dump was successfuly taken from 11g db
    b)Getting below error,while import into 9i database
    IMP-00058: ORACLE error 6550 encountered
    ORA-06550: line 1, column 33:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredIMP-00000: Import terminated unsuccessfully
    2)TNS entry of 11g database put into 9i database version.
    a)During export (trying to take exp dump from 11g db in 9i exp utility),getting below error
    EXP-00008: ORACLE error 1455 encountered
    ORA-01455: converting column overflows integer datatype
    EXP-00000: Export terminated unsuccessfully
    Kindly advice me to overcome from this issue.This has nothing to do with APEX. Post on the {forum:id=61} forum.

  • [Suggestion/Issue] GPO "Start Menu Layout" / PS Export-StartLayout Issue

    To start off with, I have already submitted this to Windows via the Windows Feedback option provided in the client version of Tech Preview.  I have decided to post this on here anyways as this might yield a suggested fix from someone else in the Microsoft
    Community.  I also was unsure if this was a Windows 10 Tech Preview issue (Export-StartLayout is done on the client), or a Server Tech Preview issue as I'm using GPO's.
    When using Export-StartLayout after adding "Network and Sharing Center" and "Devices and Printers" to the start menu, it exports these two tiles with different AppID #'s depending on which user account I'm exporting from.  As a result
    of this, when using the GPO "Start Menu Layout", users do not get the two tiles in question setup, and also locks down the Start Menu so they can't add it.  The lockdown of the Start Menu is by design, however the loss of the tiles presents
    an issue.
    It would be helpfull if they were assigned set AppID's so they can be easily mapped to the Start Menu via the GPO. 

    Hi,
    >> I also was unsure if this was a Windows 10 Tech Preview issue (Export-StartLayout is done on the client), or a Server Tech Preview issue as I'm using GPO's.
    Based on my test, this is not a Windows 10 Tech Preview issue. This situation also happens to Windows 8.1. At this moment, I have to admit that there is no solution known to me for this situation, and thanks for sending a feedback about this
    situation to Microsoft.
    Best regards
    Frank Shen

  • IDcs3 export PDF issues when viewing in Preview

    I appear to be having issues when exporting PDFs from IDcs3. I have drop shadows on text and objects. When i export as a PDF and view it in 'Preview', I get a shadow that extends the area of the object. Drop shadows are not defined, they just have a block blur effect.
    The thing is when I transfer the file over to my MS machine, Acrobat displays the PDF perfectly. Is this a problem with Preview or is it something to do with the export PDF settings.
    Cheers

    Preview is not capable of handling the advance features of exported PDFs.
    Bob

  • InDesign PDF Export Color Issues

    So I've encountered a frustrating problem that I know others have experienced. It involves the PDF export from InDesign where the PDF color is not matching the document view. It's a critical issue regarding soft proofs for designs where color needs to match the desired result. I never had any issues before but now it's kicked in after upgrading to Mountain Lion and CS6.
    Let me preface a few things first...
    Yes, I've callibrated my monitor
    Yes, Creative Suite color settings are in sync.
    Yes, I've tried the changing transparency blend space... makes no difference.
    In my case I have an RGB TIFF placed which has dark midnight blue to light blue tones. When I do an export and it doesn't matter what PDF settings I use the color shifts making it more purplish bllue and the lighter blue tones go away.
    BUT, when I export a JPEG, the JPEG looks PERFECT, just like it should and matches the document view.
    So I figured the problem must've been solved with the new Acrobat XI... I download the trial and installed it. I created a new PDF and it comes up looking like it should. GREAT, except for the price to update to Acrobat Pro XI!
    THEN, some message comes up about trusted certificates?! I click ok... and the color on the PDF goes wrong again! What is the problem with this CRAP? HOW DO I FIX THIS GARBAGE? Is it fixable on the old version (Acrobat X)?
    I've worked in Adobe products for years but they are going backwards and becoming more problematic by the day. Not to mention it's ridiculous to have to pay $200 to get a new version of Acrobat Pro after recently buying CS6. This is an insult to long time professional customers, you should be providing this update FREE to makeup for your broken, out of sync with Apple CRAP.

    Well any local application change to the color settings is going to show up out of sync
    All syncing does is match the application's Working CMYK and RGB settings, but the only case where a Working profile color manages a document is when the doc has no profile assignment. So if I sync to North American General my Working CMYK space is US SWOP, but if I open a document with US Sheetfed assigned, US Sheetfed manages the preview not US SWOP.
    I'm not saying you aren't experiencing a bug, but you have to be sure of what profile assignments or simulation profiles are driving the preview and syncing doesn't do that. How you export (are  you including profiles?, making a conversion?), and what device you are simulating in both programs can make syncing meaningless for existing document's previews.
    I can't test X but with XI if you export a PDF/X-4 (where there's no conversion and all profiles are included), the  preview with Output Preview closed shows RGB objects unchanged—same as ID with Overprint/Sep Preview Off.
    When I open Output Preview the initial Simulation profile is the PDF/X-4 output intent which is the ID doc's assigned profile, in that case  RGB objects preview in the output intent's CMYK space—same as ID with Overprint on.

  • HELP!  Exporting pdf issues - no email links and gray boxes around text

    I'm a newbie to indesign, and trying to learn the program as I go.  I need to export my pdf for onscreen viewing.  When I "print" it works, but I get no email links, and those annoying white lines here and there.  I read that exporting would solve the email link issue, but it opened another can of worms for my project.  Now all my graphics have black or gray boxes across them, almost like censor boxes.  But my email links work. 
       Learning Adobe is like learning a new language, and I have far from mastered it.  So when I exported, I used the lowest resolution presets, assuming it knew what worked better than I did.  After dozens of unsuccessful exports, can someone please help??
         Also, I've been reading posts that say to convert all spots to color to resolve the white line issue.  But it's grayed out in the ink manager.  What is the secret to unlock it?
    Thank you!!

    Thank you for any and all help!
    I have CS5.5, running on windows 7.  It is up to date as of 1 month ago.  Here's a sample of my problem pages.  Also, a screen shot of what it should look like.  My guess is it has something to do with the transparencies, since it's 2+ layers of embossed objects.  If I export in Acrobat 4 (1.3) these boxes don't happen. But then I get the thin white lines across my graphics, and no email links.  As for spot colors, I confess complete ignorance on all color issues,  but  I'm trying to learn as I go.  How can I export this correctly?

  • Excel Export Formatting Issue

    HI,
    I am working with CR XI R2 and asp.net2.0.
    I am facing some formatting issue when the report is exported to excel.
    I have to maintain the same formatting as in the crystal report ,when the data is exported to excel.
    My report is a tabular report.I tried exporting the report from Crystal report designer.Not via web application.
    I have used the data only option.When i used the other option (Excel 97-2000(xls)) the text was getting rotated at 90 degree but other formatting was not exported correctly.So i found data only option was more appropriate in my case.
    I hope same things can be achieved by asp.net also one we get it in the designer.
    while exporting from the designer,the main issues i am facing are
        1) In the report some headings i have put at 90 degree rotation.
            When it gets exported to excel the headings are getting exported with 0 degree rotation.
    2) I have applied some back groud color for groupfooter and page header.
         This setting is also not getting exported .the report is getting exported with out any back ground color formatting
    Is there any way to attach the exported pdf and excel file ,so that the issue would be more clear for you all.
    Please let me know if you require more information.
    Regards,
    smitha
    Edited by: smitha thomas on Jul 3, 2009 6:12 AM
    Edited by: smitha thomas on Jul 3, 2009 7:43 AM

    Hi Smitha,
    Use the  other option of Microsoft Office Excel Workbook(*.xls) instead of (Excel 97-2000(xls))
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • Preview Monitor and Exporting Quality Issues

    Hello, in a previous life I was a video editor from the world of Avid and I just picked up Premiere for an emergency side mission at my current place of employment and I have run into a couple issues with CS4.
    1. The preview monitor for the Sequence displays a lower quality of the video that comes from the uploaded Clip and it also does not play back at a steady frame rate. However, when I look at the Clip in the secondary preview monitor that is reserved for clips, titles, etc, the video quality is as high as what is expected. How do get the sequence monitor to playback at the quality the clips are uploaded as and how do I get the playback to do so at a steady 30fps?
    2. My exporting experience was based around dubbing directly to Beta tapes and I never really had to do any digital file exporting. I need some tips on what to export a Sequence as that will retain a high amount of the quality while also keeping the file size to what will fit on a disk. The video length in this case would never be more than 5 minutes as I am only working on sales videos. Also, the file needs to be playable in Windows Media Player.
    Thank you in advance for any help on these issues.

    Please provide
    these details to help us help you.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • ES11X-G4-H essbase export adapter issue

    Hello,
    i have this problem with essbase export adapter for FDM:
    When i perform export step everything seems to be fine but /APPS/myFdmApp/myFile.dat doesn't contain records that i can find with both on web interface and with a query on oracle fdm's system views "VDATAFACT" or "VDATA" (on repository database).
    No errors or reject records infos are shown nor in fdm neither in essbase (system and app) log.
    This happens with very large input file (300mb). Anyone has some ideas on what's happening?
    Thank you in advance,
    Daniele
    FDM: v11.1.2.1
    EsbAdapter: ES11X-G4-H
    S.O.: Win2008 SE R2 (x64)
    RDBMS: Oracle 11.2.0.1.0 (on linux)

    I've opened a service request. Here it is the last message i got from them. Please note that this SR had lasted over 2 month.
    What they say basically is: it doesen't work but FDM is not designed for big amount of data, so we are not going to fix it.
    Which is the max filesize handled by FDM is unknown....
    Daniele
    Hi Daniele,
    Good Morning!
    I tried to Reach you on the Number Mentioned in the SR.We Discussed This Issue With the Product Specialist and They have Suggested Not to Use 200Mb File, because it is too Big for FDM to Handle it, Please Try to Split the File and Load it, FDM is not a ETL tool to Handle Such big File.Please let me know if you want anything Else on This.
    With Regards,
    xxxxx.
    Hello xxxxx,
    could you please provide me the max file size handled by fdm? I'd like to have some docs on that also.
    regards,
    Daniele
    Hi Daniele,
    There is No Limitation as such FDM is not designed to load Millions of records. It's a End user fiinancial tool, not designed to be used as an ETL tool, so there is not a restriction per say, but it's not designed to be used in that manner.
    With Regards,
    xxxxx

  • CSV Export delimeter issues

    Hi,
    I have column in report which contains comma,tab and various special characters. The report displays fine on dashboard but when it is exported via CSV or tab delimited option the cells values shift sideways where it encounters a comma ( in case of csv) which gives incorrect result for the rest of the columns when report is downloaded. Is there a workaround to resolve the issue at OBIEE level?
    Version OBIEE 11g
    Thanks.

    Hi all,
    Thanks for the inputs.
    The issue is now resolved.
    I had amended the " before and after the field in the mapping by writing a simple udf.
    str = '"' + str + '"';
    return str;
    The csv file is now generating properly.
    Since the file has to open as an excel file other options like fixed field lengths and having a different delimiter that , were not working properly.
    This approach works perfectly.

  • Weired apex  export application issue

    Very weired problem.
    My app works fine in apex3.2.
    I exported it to apex 4.0 and there I face following issue without making any change to the apex 3.2 version of the app:
    I am assigning some value to an application item in the login process.
    When I sign into the workspace and loginto the app and try to display the application item on any page, it shows nothing. But there are some authorization based tabs, which display correctly as expected.
    But then when I log out of the app and log back again(while I am still in that workspace), I see the value of the application item. But some tabs disappear.
    Any clue?

    I tried to debug a lot but ...
    Let me narrow down my questions and start again:
    USING APEX 4.0
    I have custom authentication.
    In the login process, code stucture is like this:
    declare
    begin
    custom_login_prc_call();
    :some_app_item:='some value';
    wwv_flow_custom_auth_std.login();
    end;
    The problem is that I am not able to pass the value of application item "some_app_item" to another page. I tried to put some debug statements in the login process code. For example, tried to insert the value of this application item to a table and it worked. But when I tried to pass it some other page, I don't see the value of this item.
    Is there any situation an application item gets cleared? I think not. Thats why its a global variable.
    Any and all suggestions are welcome.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • DRM Export creation issue

    Hi all, I'm facing issue with POC at the customer site.
    I cannot create any type of export.
    DRM 11.1.2.1.000 has been installed on Win 2008 server 64 bit machine - polish locale.
    I applied straight away after installtion 105 patch. Repositor has been created. We needed later to change server locale to english US.
    I imported customer's hierarchies fine and when I tried to create any type of export I'm getting following message:
    There was an error proressing your request
    The server returned an error: The added or subtracted value results in an un-representable DateTime. Parameter name: value
    I tried to google the issue - not successful - only one thread on OTN but not with resolution.
    I applied 106 patchset and still getting the same issue.
    Other things work slick in DRM in range I needed so far.
    Could you please forward to somebody that faced that issue if you're not familiar with
    Edited by: jastrzab on 2012-05-30 09:01

    Hi,
    We encountered the same problem running DRM exports in Ireland.
    Subsequently discovered the following SR opened by Oracle :
    SR: 3-5740964101 opened for the issue are having with running exports from DRM.
    Problem Description: Trying to run or save an export in DRM gives the following error message:
    +"The added or subtracted value results in an unrepresentable DateTime. Paramater name: value"+
    This error only occurs for non-US (in Ireland) where the DRM instance is hosted in the US; this error does not occur for US based users.
    We resolved this by installing patch Hyperion Data Relationship Management 11.1.2.1.107 Patch Set Update

Maybe you are looking for

  • How can i change my verification email address

    i used a foney email address but i didn't know it would have me verify it so how can i change the verification email address to send to a active email address. And i tried making a yahoo account for the foney email i used but yahoo says that email is

  • Connecting ipad2 to viera TV without HDMI cable

    Is it possible to use viera Panasonic tv as iPad 2 second monitor without using HDMI cable.

  • Dynamically loading the url of a web reference object in C#

    Hi, We have a number of assemblies (C# - VS 2010) that access third party web services via SOAP.  The url to access the site is part of the web reference object. We have need to be able to change the url used to access the service at run runtime when

  • Split Directory Packaging and Deployment Question

    Hello Rob Woollen and All, I have a question about packaging and deployment with the "split directory structure" in WebLogic Server 8.1. Specifically, how does one go about deciding which classes to put in myEnterpriseApp/myWebApp/WEB-INF/classes, ve

  • Recievr Comunication chaneel is showing some error

    hi all. while iam trying a file to file scenario. it is showing the error  at reciever CC like. Conversion initialization failed: java.lang.Exception: java.lang.Exception: Error(s) in XML conversion parameters found: Parameter '1.fieldFixedLengths' o