Problem with dimension

I've got the following comment from a person that has faced the
following situation and he thinks that the OLAP team should be
aware of it :
*I am running Oracle 11g release 11.1.0.7 on an Acer laptop
running Vista Ultimate with Service Pack 1*
*I am maintaining an OLAP Analytical Workspace called Mobule using
Analytical Workspace Manager release 110.1.0.7A*
*I have created a Time dimension which has two hierarchies. The
definition is in the attached file TIME from one TABLE.XML. The
source table is described in TIME_Source.txt.*
*When I maintain the dimension the error contained in
TIME_Maintain Error.txt is displayed. This error does not appear
anywhere on OTN, Metalink or the internet in general so I presume
it has not yet been encountered by anyone else.*
*This dimension maintained quite happily under Oracle 11.1.0.6
(patched with the OLAP A patch) and AWM 11.1.0.6A.*
*I am not a current OLAP customer and do not expect to be
supported as such. I do, however, believe that the OLAP product
management and development teams should be made aware of the issue.*
*I have found that by removing either of the hierarchies (and
associated) levels, the dimension will maintain.*Thanks for your help,
Korina

Please paste the error.

Similar Messages

  • Obiee 11g problem with dimension time DATETIME

    Hi experts!
    I have a problem with a column of my time dimension. In my database I have a column called "DATE" and it has this format "01/12/2009 00:00:00" (property column is DATETIME) when I import this table in Oracle Administration I see the same format that my database but I want to see without any Hours,minutes...like this: "01/12/2009"
    How can I fix this??
    Thanks!!!

    Hi alex,
    check the column name your passing and then cast it....the error is not related to that i suppose as it is internal assertion.
    chk this http://tipsonobiee.blogspot.com/2009/06/error-nqserror-46036-internal-assertion.html
    UPDATED POST
    You can alternatively use oracle trunc function in the physical layer to trunc the timestamp.
    1) go to the table where the date column is coming in physical layer
    2) go to the general properties and select SQL and write the SQL of all the columns needed from that table like
    select x,y,z,trunc(date) from table_name.
    3) this truncates the timestamp
    UPDATED POST-2
    By the way which database are you using,if its oracle trunc works out....other databases it wont work
    select trunc(sysdate) from dual in your TOAD and check out.
    hope helps you,
    Cheers,
    KK
    Edited by: Kranthi.K on Jul 27, 2011 3:15 AM
    Edited by: Kranthi.K on Jul 27, 2011 4:01 AM

  • Problems with dimensions after upgrade to 11gRel2. VLD-0917 and ENT-06921

    Hi Gurus
    We´re testing the upgrade path from 10.2.0.5 to 11.2.0.2 and ran into a problem with the dimension-objects (ROLAP).
    When we open the dimension editor, the Structure window shows the correct relationship between the dimension levels and attributes. However, when we look into the details for each level, no attributes are checked, and validating the Dimension gives the following error stack:
    VLD-0917: An unknown error occured while generating DIM_ANSATT.
    An unknown error occurred while generating DIM_ANSATT. Error details: ENT-06921: Level Attribute NAVN does not refer to any Dimension Attribute.
    Translation:
    DIM_ANSATT => DIM_EMPLOYEE
    NAVN => NAME
    We´ve found a workaround, but it´s a bit scary that the objects get corrupted during an upgrade, so we would really like to find the cause and "a real solution" for this problem.
    We can reproduce this in both 11.2.0.1 on Windows and 11.2.0.2 on AIX.
    Any help would be appreciated.
    Best regards
    Helge

    Hi there,
    We have a similar issue.
    Diid you get a solution and what was your workaround?
    Many Thanks

  • Problem with Dimension created in Multiprovider

    Hi,
    I have a multiprovider which has 5 Infocubes in it.  There are seperate reports on both Infocube & Multiprovider.  I added 2 new fields in a Infocube under a new dimension.  I need this 2 fileds to be added to the Reports too.  When i open the Query written on Infocube in Query Designer, i could see the fields on the left panel under the new dimension.
    But, when i open the Query written on Multiprovider, i was not able to see the fields.  So, i went to the Multiprovider in Backend, created a new dimension in the Multiprovider and added the 2 fields there.  Now, i was able to see the fields in the Query written on Multiprovider too.  I could see the changes reflecting in both the Queries.  I did this in BI Development system.
    Now the problem comes when transporting the Object to BI Quality system.  When transporting the request, the transport is getting failed with the Error message "Dimension ZFIAA_MC14 not used; please delete".  This is the dimension i have created in the Multiprovider.  Now, if i delete the dimension in the Multiprovider the Multiprovider query will get affected.  If i dont delete the dimension, the request cant be moved to BI Quality system.  I am confused on how to proceed now.
    Can anybody suggest me on what to do now?  Thanks for your time.
    Regards,
    Murali

    Try to assign the infoobjects in that dimension to the respective infocube to fetch the data.
    This can be done by right click on the infoobject and select assign-- check the check box of relevant info provider.
    2. Transport first the infocube. then transport the Multi provider will resolve the issue.
    Hope this helps.
    Regards,
    Reddy

  • Problem with dimension of an image loaded from a database

    Hi,
    I succeed in saving image in a MSAccess database with this code:
    Image img;
    image = new ImageIcon("d:\\prova\\comore.jpg");
    img=image.getImage();
    try{
    int[] pix = new int[img.getWidth(null) * img.getHeight(null)];
    PixelGrabber pg = new PixelGrabber(img, 0, 0, img.getWidth(this), img.getHeight(this), pix, 0, img.getWidth(this));
    pg.grabPixels();
    System.out.println(pix.length);
    byte[] pixels = new byte[img.getWidth(this) * img.getHeight(this)*4];
    for(int j=0;j<pix.length;j++){
    pixels[j] = new Integer(pix[j]).byteValue();
    String sql="insert into Immagini values ('1',?)";
    PreparedStatement ps = con.prepareStatement(sql);
    ps.setBytes(1,pix);
    ps.executeUpdate();
    }catch(Exception except){
    except.printStackTrace();
    then, I've load the image with this code:
    try{
    String query = "select * from Immagini where IDprog = 1";
    Statement s = con.createStatement();
    s.executeQuery(sql);
    ResultSet rs=s.getResultSet();
    rs.next();
    Viaggio vi = new Viaggio(rs.getInt(1),rs.getBytes(2));
    byte[] b=vi.getBytesImage();
    int[] intImage = new int[b.length];
    for(int j=0;j<b.length;j++){
    intImage[j]=(int)b[j];
    Image img = createImage(new MemoryImageSource(124,100,intImage,0,124));
    ImageIcon imgic = new ImageIcon(img);
    jLabel3.setIcon(imgic);
    }catch(Exception tps){
    tps.printStackTrace();
    All works correctly;
    but I've two problems:
    How do I do to take the dimension of the image from the byte array?
    infact in the code up written I've used 124 and 100 as image dimension;
    but I can have images of different dimension.
    The other problem is:
    Why in the image that is loaded are not the same number of colors of the image saved, but only a few, so that the image seems to be out of focus?
    Thank and excuse me for my english.
    I'm Italian.

    Noone can help me?
    Thank

  • Problem with dimension library error in system 11.1.1.3

    I am getting the following error,Is there anybody to give the solution for this error?
    There was some communication error. Response is : http://lova:19000/awb/modules/com/hyperion/awb/web/dimeditor/Adf.do <html><head><title>Hyperion Embedded Java Container/1.0.0 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 500 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Exception report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The server encountered an internal error () that prevented it from fulfilling this request.</u></p><p><b>exception</b> <pre>javax.servlet.ServletException
    org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:516)
    org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:423)
    org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1158)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:415)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    com.hyperion.awb.web.util.HttpFilter.doFilter(HttpFilter.java:19)
    </pre></p><p><b>root cause</b> <pre>java.lang.NullPointerException
    com.hyperion.awb.web.css.CSSAuthenticate.&lt;init&gt;(CSSAuthenticate.java:57)
    com.hyperion.awb.web.css.CSSAuthenticate.getCSSAuthenticate(CSSAuthenticate.java:45)
    com.hyperion.awb.web.common.BaseAction.checkWebSession(BaseAction.java:60)
    com.hyperion.bpm.web.common.BaseAction.execute(BaseAction.java:65)
    org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
    org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1158)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:415)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    com.hyperion.awb.web.util.HttpFilter.doFilter(HttpFilter.java:19)
    </pre></p><p><b>note</b> <u>The full stack trace of the root cause is available in the Hyperion Embedded Java Container/1.0.0 logs.</u></p><HR size="1" noshade="noshade"><h3>Hyperion Embedded Java Container/1.0.0</h3></body></html>

    Hi,
    I am also getting the same error when I am trying to open the dimension library from workspace. Here are error details.
    There was some communication error. Response is : http://Server1:19000/awb/modules/com/hyperion/awb/web/dimeditor/Adf.do
    <html><head><title>Hyperion Embedded Java Container/1.0.0 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 500 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Exception report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The server encountered an internal error () that prevented it from fulfilling this request.</u></p><p><b>exception</b> <pre>javax.servlet.ServletException
    org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:516)
    org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:423)
    org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1158)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:415)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    com.hyperion.awb.web.util.HttpFilter.doFilter(HttpFilter.java:19)
    </pre></p><p><b>root cause</b> <pre>java.lang.NullPointerException
    com.hyperion.awb.web.css.CSSAuthenticate.&lt;init&gt;(CSSAuthenticate.java:57)
    com.hyperion.awb.web.css.CSSAuthenticate.getCSSAuthenticate(CSSAuthenticate.java:45)
    com.hyperion.awb.web.common.BaseAction.checkWebSession(BaseAction.java:60)
    com.hyperion.bpm.web.common.BaseAction.execute(BaseAction.java:65)
    org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
    org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1158)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:415)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    com.hyperion.awb.web.util.HttpFilter.doFilter(HttpFilter.java:19)
    </pre></p><p><b>note</b> <u>The full stack trace of the root cause is available in the Hyperion Embedded Java Container/1.0.0 logs.</u></p><HR size="1" noshade="noshade"><h3>Hyperion Embedded Java Container/1.0.0</h3></body></html>OK
    Did get any solution for your problem?
    I tried by restarting the EPMA ProcessManger service also RMI service also..
    Thanks,
    Naveen

  • Problem with dimension building using Sybase

    <p><font size="3" face="Times New Roman"><span style=" font-size: 12pt;">Hi, </span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt;">I had a problem in building a dimensionby extracting the data from Sybase,</span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt;"> </span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt;">During the initial try,</span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt;">Dim build thrown below error in the .errfile and finally we transferred all the data to a text file then weused it to build the dimension successfully.</span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt;"> </span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt; font-weight: bold;"><b>\\Record #142044 -Error adding member C913901 (3317)</b></span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt; font-weight:bold;"><b>378279784991006      KELLEROUTDOOR, INC.   378279784991006   913901           KELLER OUTDOOR, INC.   913901UD     </b></span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt; font-weight:bold;"><b> </b></span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt;">My doubt is what may be the possiblecause of the error when we tried to build the dimension byextracting the data from Sybase.</span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt;"> </span></font></p><p class="msonormal"><font size="3" face="Times New Roman"><spanstyle=" font-size: 12pt;">Thanks in Advance.</span></font></p>

    Mr V, RSRV correct error never fixes these index issues.
    Preet, Using SE14 i tried to "adjust and activate" and it did not fix the issue.
    So ... I went to my Q system and found the same issue and fixed it by using SE14 deleting the index and then creating it.

  • Problem with dimension build

    I am trying to build dimensions for a bso cube using Maxl in version 11. I have both the rules file and the textfile in the server. But I am getting the following error.
    import database 'CNFIN1'.'CNGL' dimensions from data_file 'G:\Hyperion\products\Essbase\EssbaseServer\bcpfiles\CNFIN1\CNMarket.txt' using rules_file 'G:\Hyperion\products\Essbase\EssbaseServer\app\CNFIN1\CNGL\GLMktD.rul' on error write to 'G:\Hyperion\products\Essbase\EssbaseServer\log\CNFIN1\CNGL\MktD.err';
    OK/INFO - 1053012 - Object [CNGL] is locked by user [US0T4235].
    OK/INFO - 1053012 - Object [93547618] is locked by user [US0T4235].
    ERROR - 1007083 - Dimension build failed. Error code [1090037]. Check the server log file and the dimension build error file for possible additional info..
    OK/INFO - 1053013 - Object [93547618] unlocked by user [US0T4235].
    ERROR - 1241101 - Unexpected Essbase error 1007083.
    OK/INFO - 1053013 - Object [CNGL] unlocked by user [US0T4235].
    Guys can you help me..Thanks in advance

    First, have you tested this build manually through EAS? Confirm that you can run the dim build manually to eliminate the load rule as a variable that is causing the problem.
    Next, below is a new version of the mxl statement that should work. I altered the syntax to use a server rules_file because the load rule is store in the db directory and you do not need to reference the path or file extension. Also, the backslash is a special character in mxl and needs to be preceded by a backslash. Mxl interprets two backslashes as one.
    import database 'CNFIN1'.'CNGL' dimensions from data_file 'G:\\Hyperion\\products\\Essbase\\EssbaseServer\\bcpfiles\\CNFIN1\\CNMarket.txt' using server rules_file 'GLMktD' on error write to 'G:\\Hyperion\\products\\Essbase\\EssbaseServer\\log\\CNFIN1\\CNGL\\MktD.err';
    Good Luck!

  • BPC NW 7.5 Problems with dimension ID member "Item has already been added"

    Hi experts,
    I have a problem when mantaining the dimension members in SAP BPC 7.5 in the administration console.
    I try to introduce numeric values for the ID like for example 971048000011001 and 971048000011002, but when trying to save them, I get the error "Item has already been added. Key in dictianary: "9.71048E14" Key beeing added:  "9.71048E14". It seems that BPC transforms the format into a text format before saving. Am I wrong? Is thera a solution?
    I tried modifying the number format in the excel sheet, but nothing worked. Can anybody help me, please?
    Thanks in advance,
    Àlex

    Hi Àlex.
    Try to put an simple quote before de member value, for example '1234567890
    Best Regards
    Eduardo

  • Problem with drill down in time dimension - OBIEE 11G

    Hello There,
    I have a problem with drill down in time dimension. The hierarchy for time dimension is " Fiscal Year---> Fiscal Quarter---> Month(Name)--->Date". When I select a Time dimension and click results its getting opened in a Pivot table view. The problem here is, when I click the "Total" its getting drilled down to Year ---> Quarter but when I click on "+ sign next to quarter" it should drill down to month for that particular quarter for that particular year but its drilling down to month for that particular quarter for all years.
    Any suggestions are much appreciated.
    Thanks,
    Harry.

    1.) Congrats for resurrecting a year-old thread.
    2.) Your answer is here: "Check the level key of the quarter level...it should include both quarter and year columns. Since a specific quarter occurs every year, quarter column alone can't be used as the level key."

  • Problem with Time Dimension generating

    Hello, everybody.
    I have a problem with Time Dimension generating with the help of the Standard Wizard.
    1. I choose Dimensions -> New -> Using Time Wizard
    2. Set Name as "Time"
    3. On the next screen I choose ROLAP: Relational Storage
    4. On the next screen set Start year: 2003, Number of years: 3
    5. On the next screen choose all levels of the Normal Hierarchy
    On the 6-th step Wizard complete 60% of job and hang up doing nothing (buttons "Cancel" and "Help" is active).
    chapter "Create REL_TIME Dimension Using the TIME Dimension Wizard", step 1-6 of tutorial =(
    http://www.oracle.com/technology/obe/11gr1_owb/owb11g_update_getting_started_intro/lesson3/less3_relational.htm
    My system characteristics:
    Builder client 11.1.0.7.0, warehouse at local computer.
    can anybody give me any advice about this problem? =(
    thanks in advance.

    Had this issue been solved please?
    I have just come across the exact same problem and this post is the only one i managed to find which describes exactly what is happening to me.
    Thanks

  • Problem with a multisourced dimension

    Hi Guru's
    I have a problem with a multisourced dimension. Some of the values that are in the tables are not visible when I create a filter and choose all choices, but when facts are set against the dimension these values do show.
    This is the situation: In my physical layer I've got 3 tables that are all pretty similar, structure is like year, quarter, amount. From these three tables I create 3 fact tables and 1 dimension, where the dimension is YearQuarter with two columns (year and quarter) and 3 sources. One of these tables has a quarter 0 (zero). The DimYearQuarter table is innerjoined in the BMM wit all 3 facttables. Changing to right or left outer doesn't change the results.
    In answers when i create a report just with the dimension columns , quarter 0 is not visible. When the measure (where the quarter 0 associated to) is added to my request it shows the values for quarter 0. When applying a filter, the quarter 0 is not visible with "all choices", but a filtercondition works with Quarter is equal to 0.
    Any suggestions are kindly appreciated. If more info is needed, I'm very willing to provide.
    I'm on 10.1.3.4.1 on windows server 2003 (server side) and XP professional as a client.
    Kind regards,
    Gilles

    You should alias the physical tables such that you can then physically join the aliases one to another. Then you should be able to use the dimension table on it's own - for prompting purposes and such.
    (Aliasing of physical tables is an OBI best practice)

  • Problem with info Object relocating to another dimension.

    Hi Experts,
    I created a cube Sales with dimension Customer and Organization. By mistake I assigned an info object to customer. Now, I have to relocate it to Organization. The cube is with data. The info Object does not contain any data. How to relocate it to Organization?
    Kindly help and advice me.
    Thanks in advance,
    With Kind Regards,
    Kannan

    Hi,
    You need to delete the data in the cube in order to reassign the object to the new dimension. Once you delete the data only then would you be able to reassign the object to the required dimension.
    Cheers,
    Kedar

  • Problems with SB Live Dell Version for the Dimension 8200

    I recently spent almost 6 hours looking in and out of forums looking for a driver because none of the ones supplied on dell were working
    The one I found was a modded driver, which installed perfectly, my sound icon on the toolbar finally displayed volume, whereas before, it didn't detect my sound card at all.
    But my problem now is that it is not outputting any sound to my speakers!
    Any help is appreciated

    I have the same problem with the SB li've 5. surround card. My computer installs the SB li've game port but not the multimedia - audiocontroller.
    It's a oem card can anyone help me what to do because no I don't have any sound at all .
    Greetings Chrizzzzz

  • Problem with JPanel in JFrame

    hai ashrivastava..
    thank u for sending this one..now i got some more problems with that screen .. actually i am added one JPanel to JFrame with BorderLayout at south..the problem is when i am drawing diagram..the part of diagram bellow JPanel is now not visible...and one more problem is ,after adding 6 ro 7 buttons remaing buttons are not vissible..how to increase the size of that JPanel...to add that JPanel i used bellow code
    JFrame f = new JFrame();
    JPanel panel = new JPanel();
    f.getContentPane().add(BorderLayout.SOUTH, panel);

    Hi
    JFrame f = new JFrame();
    JPanel panel = new JPanel();
    // Add this line to ur code with ur requiredWidth and requiredHeight
    panel.setPreferredSize(new Dimension(requiredWidth,requiredHeight));
    f.getContentPane().add(BorderLayout.SOUTH, panel);
    This should solve ur problem
    Ashish

Maybe you are looking for

  • Help w/ connecting MacBook to HDTV

    I want to be able to connect my macbook (black) to my LG HDTV. I am using the DVI adapter to VGA (RGB). All I get is "no signal" on my TV. When I tried it out w/my Dell (didn't need the DVI adapter since my Dell has a VGA input), it worked right away

  • Unexisted help or drivers or troubleshooting for inspire T7900

    I have recently bought the soundsystem of Creative Inc. Inspire T7900 and since then I have not managed to install it normally . Soundmax Blackhawk recognise 6 of the 8 speakers (including the subwoofer ) windows media and generally the players use 2

  • How to determine current tax configuration owner (content_owner_id)

    I am attempting to query zx_rates_b to find a record where tax_rate_code = '6X' to find only the record for the current configuration owner. In 11i, we used the organziation id to identify the correct record. The following query returns too many reco

  • Tab key does work in module pool

    Dear, Please, someone already passed or saw the following situation: In a module pool Z, in a tab item creation (there are several columns to be filled), pressing the TAB key, the cursor is directed to the next empty field, the moment presciono the e

  • MPEG2 MXF IMX PAL export problem

    Hello! This is new for me (IMX PAL) so I do not know it is a bug or a simple user error. What went wrong? My steps: 1. Export a video from AE in YUV 422 avi format 2. Import it to PPro (Black Magic Design PAL preset) 3. Export it to desired IMX 50 SD