Load Consunit via Flex Upload

Dear All,
I am trying to load consunit masterdata using a flexupload with the following setting.
Use Row Type Indicators = True
Flag Predecessor/Successor in Hierarchy = True
I however get a short dump for row type indicator 5(Hierarchy Attributes) & 6 (hierarchy Relations).
I am not sure if the way I am creating the file is correct ?
Can someone help with a sample file or advise if they use this feature.
I am keen to load the hierarchy information user successor/predecessor relation rather than the level.
Best Wishes.
Pralay

Hi,
Given below is a section of my file.
*5;Predessor Fieldname;Consolidation group;Company;Period of First Consolidation;Period of Divestiture Acctg;Year of First Consolidation;Year of Divestiture Accounting;Divested at Beg. of Period;First Cons at End of Period
5;/1FB/YAMCGCO;R9686C;009686;001;012;2007;9999;;
5;/1FB/YAMCGCO;R9686C;009688;001;012;2007;9999;;
5;/1FB/YAMCGCO;R9686C;009848;001;012;2000;9999;;
5;/1FB/YAMCGCO;R9686C;009849;003;012;2007;9999;;
5;/1FB/YAMCGCO;R9686C;009851;001;012;2000;9999;;
Forf precessor fieldname , I have used the dummy avaialble in the catalog.
Best Wishes.
Pralay

Similar Messages

  • Loading Facelets via ResourceHandler

    Hi there,
    can anyone tell me what's the main difference between JSF 2.0/2.1 and JSF 2.2 regarding to "Loading Facelets via ResourceHandler".
    I searched many articles and discussions and regarding to Flows and reosource library contracts there are some thinks that are not really clear to me and might be still in discussion
    In my opinion facelets and resources are loaded the same way now. The loading mechanism is unified now. But what does this mean.
    Are Resources within the Facelets or Views are loaded relative to their path now ?
    E.g. a view located in /x/y/z/view.xhtml will load its resources from /x/y/z/css/style.css when using <link type="text/css" href=css/style.css"/> and not from the resources folder ?!
    It would be very helpful for me if anyone could provide a simple example or a link where i can the right information, because it's one of the 6 big ticket features ed burns is mentioning in every article and presentation i saw, but the background is not completly clear for me :-/
    Thanks in advance!
    Kind regards,
    Jannis
    Edited by: 988043 on Feb 14, 2013 1:49 AM

    Tank you Eddy, but it seems it does not work.
    The error message received from DTW is:
    - <BOM>
    - <BOM>
    - <BO>
    - <AdmInfo>
      <Object>66</Object>
      <Version>2</Version>
      </AdmInfo>
    - <ProductTrees>
    - <row>
      <TreeCode>A00001</TreeCode>
      <Quantity>1</Quantity>
      <TreeType>iProductionTree</TreeType>
      </row>
      </ProductTrees>
    - <ProductTrees_Lines>
    - <row>
      <Currency>USD</Currency>
      <IssueMethod>im_Backflush</IssueMethod>
      <ItemCode>A00006</ItemCode>
      <Price>160</Price>
      <PriceList>1</PriceList>
      <Quantity>3</Quantity>
      <Warehouse>01</Warehouse>
      </row>
    - <row>
      <Currency>USD</Currency>
      <IssueMethod>im_Backflush</IssueMethod>
      <ItemCode>S10002</ItemCode>
      <Price>160</Price>
      <PriceList>1</PriceList>
      <Quantity>3</Quantity>
      <Warehouse>01</Warehouse>
      </row>
      </ProductTrees_Lines>
      </BO>
      </BOM>
      <ErrorMessage>A00001 - Errore definito dall'applicazione o dall'oggetto</ErrorMessage>
      </BOM>

  • Hi everyone i tried to modify BCA so i can use a usb to load windows via BCA but now it doesn't load when i double click it!?

    i tried to modify BCA so i can use a usb to load windows via BCA but now it doesn't load when i double click it!? any ideas?

    iv solved it now

  • Loading dimension via plsql

    Hi
    I am trying to create a dimension and load it via plsql and am able to create dimension and its corresponding table in database.I am quite unsure of how to load the dimension D_OFF from an equivalent relational table R_OFF
    I have a dimension D_OFF with following structure.
    Hierarchy:OFFKEY is child of OFF30 is child of OFF20 is child of OFF10
    Levels -->Attributes
    OFF10 ID--> CD ,DSCR
    OFF20 ID -->CD ,DSCR
    OFF30 ID-->CD ,DSCR
    OFFKEY ID-->CD,DSCR,UPDATE BY,UPDATE_DATE,CREATE BY, CREATE_DATE
    I have created the dimension and the table structure in the database and are as follows
    CREATE DIMENSION D_OFF
    LEVEL "OFF10" IS "OFF10_ID"
    LEVEL "OFF20" IS "OFF20_ID"
    LEVEL "OFF30" IS "OFF30_ID"
    LEVEL "OFFKEY" IS "OFFKEY_ID"
    HIERARCHY "STANDARD" (
    "OFFKEY" CHILD OF
    "OFF30" CHILD OF
    "OFF20" CHILD OF
    "OFF10"
    ATTRIBUTE "OFF10" DETERMINES ( "OFF10_CD", "OFF10_DSCR" )
    ATTRIBUTE "OFF20" DETERMINES ( "OFF20_DSCR", "OFF20_CD" )
    ATTRIBUTE "OFF30" DETERMINES ( "OFF30_DSCR", "OFF30_CD" )
    ATTRIBUTE "OFFKEY" DETERMINES ( "OFFKEY_DSCR", "UPDATE_DATE", "OFFKEY_CD", "UPDATE_BY", "CREATE_DATE", "CREATE_BY" )
    CREATE TABLE "D_OFF"
    ( "DIMENSION_KEY" NUMBER NOT NULL ENABLE,
    "OFF10_ID" NUMBER,
    "OFF10_DSCR" VARCHAR2(200),
    "OFF10_CD" VARCHAR2(500),
    "OFF20_ID" NUMBER,
    "OFF20_CD" VARCHAR2(500),
    "OFF20_DSCR" VARCHAR2(200),
    "OFF30_CD" VARCHAR2(500),
    "OFF30_DSCR" VARCHAR2(200),
    "OFF30_ID" NUMBER,
    "UPDATE_DATE" DATE,
    "CREATE_DATE" DATE,
    "UPDATE_BY" VARCHAR2(250),
    "OFFKEY_ID" NUMBER,
    "CREATE_BY" VARCHAR2(250),
    "OFFKEY_CD" VARCHAR2(500),
    "OFFKEY_DSCR" VARCHAR2(200),
    CONSTRAINT "OFFE_DIMENSION_KEY_PK" PRIMARY KEY ("DIMENSION_KEY")
    My source table is
    CREATE TABLE "R_OFF"
    ( "DIMENSION_KEY" NUMBER NOT NULL ENABLE,
    "OFF10_DSCR" VARCHAR2(200),
    "OFF10_CD" VARCHAR2(500),
    "OFF20_CD" VARCHAR2(500),
    "OFF20_DSCR" VARCHAR2(200),
    "OFF30_CD" VARCHAR2(500),
    "OFF30_DSCR" VARCHAR2(200),
    "UPDATE_DATE" DATE,
    "CREATE_DATE" DATE,
    "UPDATE_BY" VARCHAR2(250),
    "OFFKEY_ID" NUMBER,
    "CREATE_BY" VARCHAR2(250),
    "OFFKEY_CD" VARCHAR2(500),
    "OFFKEY_DSCR" VARCHAR2(200),
    Could you please let me know how to load the dimension via plsql.
    Best Regards,
    Sri

    I assume you're quite sure that the relevant dimension does at least sometimes get updated by the build process, and that you've searched the outline just in case the member was added somewhere you didn't expect.
    How is the data pulled in to the load rule? If it's from a relational database, check the SQL query used to extract it (could there be a WHERE clause restricting records)? If it's from a flat file, check the select / reject criteria set up in the load rule.
    Another possibility is that your load rule is set up to skip X lines at the beginning, and the new member appears there.
    You could build a brand new load rule against a test copy of the cube and confirm that ABC does build in successfully (that at least tells you that the problem is in your rule somewhere).

  • File Filter on Flex Uploader

    Hi,
    I would just like to ask for some help regarding my flex
    uploader. My problem is I can't filter the file types when i am
    uploading. For example I only wanted to see image files (.jpg,
    .png, .gif) when browsing files to upload but instead I always get
    All file types. Here's my code just in case you need it.
    thanks a lot. any feedback would be very much appreciated.

    I'm thinking you can file the following under "obvious", so
    excuse if it is...
    if you only want to see the image file types you mentioned,
    you'd have to remove the other file types (*.swf, *.bmp) passed to
    the FileFilter constructor. Also, you want to pass an Array to the
    browse() function, so use the following in your addFiles()
    function:
    _refAddFiles.browse(filesToFilter);
    and not
    _refAddFiles.browse(imageTypes);
    On Windows you'll get only the file types listed in the
    dialog box and on a Mac you'll see all files, but only the file
    types listed will be selectable, the others are grayed out. Don't
    know what it looks like on Linux.
    TS

  • How does flex upload works

    Hi,
    I have created a flex web application with php server side support. There is a file upload functionality in this webside. When I'm uploading a file using flex upload controller does it uses a huge amount of memory from the client machine that uploads the file? and how does flex controller transfer the file to server (upload the whole file at once, upload as chunks) ?
    Cheers!! 

    Hi,
    Refer links:
    http://download.oracle.com/docs/cd/B19306_01/em.102/b16227/oui8_opatch.htm
    http://download.oracle.com/docs/cd/B16240_01/doc/em.102/e15294/prereq_checks.htm
    http://avdeo.com/2008/08/19/opatch-utility-oracle-rdbms-patching/
    thanks,
    X A H E E R

  • Load balancing via CHOC12/STS3

    Hi, our customer has a connection between 2 x 12012 via the 4 embedded channels of CHOC12/STS3 module.As every subinterface has its own ip-subnet we have 4 equal paths to every destinations.
    Customer wants to configure dCEF per-packet load balancing and is concerned if he can get packet sequence problems for his VoIP applications like it may happen on 'normal' equal path cost connections when load balancing per-packet instead of per-destination.
    Does anybody know if this can be a concern on the embedded channels ?
    Regards Guenther

    Generally speaking, for a given source-destination pair, with Per-packet load balancing enabled, packets might take different paths which could introduce reordering of packets. Thus Per-packet load balancing is inappropriate for voice over IP traffic and also for certain other types of data traffic that require packets received to be in sequence. For more information please see
    http://www.cisco.com/en/US/products/sw/iosswrel/ps1828/products_configuration_guide_chapter09186a00800ca62c.html#3589. Whether the CHOC12/STS3 module has some special meachanism built in to take care of this is unknown to me. Per-packet load balancing via CEF is not supported on Engine 2 Gigabit Switch Router (GSR) line cards (LCs).

  • When you load Windows via Boot Camp Assistant program and run Windows does not recognize the "usb" outlets cannot identify the device through the Dvd or flash

    When you load Windows via Boot Camp Assistant program and run Windows does not recognize the "usb" outlets cannot identify the device through the Dvd or flash

    Did you install BC drivers on the Windows side?

  • This should go on a Waterfox forum, but can't find one. Waterfox updater is failing, can't find the latest version. The website says the latest version ( 9.0.1) is only available via the uploader. Catch-22

    This should go on a Waterfox forum, but can't find one. Waterfox updater is failing, can't find the latest version. The website says the latest version ( 9.0.1) is only available via the uploader. Catch-22

    http://waterfoxproj.sourceforge.net/news/26/15/Powered-by-Mozilla-Waterfox-9-0-1
    Waterfox has now been accepted as a project by Mozilla and has been placed on their website! '''Waterfox 9.0.1 has also been released, but at the moment is only available through the internal updating program available in Waterfox 9.0. This is to try and iron out any issues for the release of Waterfox.Next.'''
    It is not a official Mozilla product as it is still third-party. http://www.mozilla.org/projects/powered-by.html

  • Load .docx in Flex

    i would like to load .docx in flex?
    Do anyone know how to do it?
    thank

    really no body know?

  • Can web service schema loading again by flex once it is failed ?

    Hello,
    I used cairngorm architecture and in that i used webservice.
    I show that service controller / flex load wsdl schema first in webservice object.
    Once loading is finished flex can use this schema to call the webservice function.
    I have one question is it . If some how during wsdl schema loading any error is occured then can flex loading again this schema ?
    Thanksl
    Mohit

    Hue sud.. Thanks for your answer.
    In fact I did saw this tutorial and I decided to make it work today. Which in fact I did, but got in trouble with a bunch of libraries. Now I do have my java classes in the database with their java sources. The tutorial also says to create a procedure since its static the way to call the class. The procedure creates sucessfully. But now I got the problem when I try to execute my procedure I get this error:
    04:11:45 p.m. ORA-29532: Java call terminated by uncaught Java exception: java.lang.IncompatibleClassChangeError
    04:11:45 p.m. ORA-06512: at "AMES_JAVA.MAIN", line 1
    04:11:45 p.m. ORA-06512: at line 5
    Do you know how to execute the procedure from the database once is up? I also tried creating a function but got the same result

  • TS3899 I keep getting batch loads of old emails uploaded to my IS 4 phone in increments of 100, how do I stop these emails from being sent to my iphone? thanks Patrick

    I keep getting batch loads of old emails uploaded to my IS 4 phone in increments of 100, how do i stop these emails from being sent to my iphone? Thanks Patrick

    SOLUTION FOR UNREAD COMCAST MAIL...so far, so good
    I went to Comcast.net and created a folder titled "Archive 10-2-13" and then went back into my inbox on the site and clicked the 'select all' box at the top of the email page. I could only see what would fit on my screen, but figured out that if I scrolled ALL the way to the very end (which was a l-o-n-g time for 30,000 emails) and then clicked "move to' at the top of the page and chose "Archive 10-2-13"..all my mail went there and no longer comes up as unread on my iPhone.
    I don't know if this will work for other POP accounts (Hotmail, etc.) but HALLELUJAH! I have ZERO unread email messages showing!

  • Field merge via Excel upload?

    I decided to create a new string for this question, though I had found a related article where I initially made a posting (I can't now edit or delete my original posting - "actions" menu doesn't open for me, PC and Mac, Chrome and FF):
    Using Field Merge to Dynamically Display an Image
    The post above outlines pretty much exactly what I want to do, but I'm missing something -
    Here is what I'd like to do: I have some customer information that I want to merge to an email; the information is not something I want to necessarily retain with my contacts.
    We're using Excel to upload lists, as these are contacts not currently in our database. I created a new field merge, and inserted the merge into my email. Creating the field merge requires linking the merge to either Contacts, Accounts, Events/Event Sessions, or CDOs. My original assumption was that I'd need to create a CDO, which I did. So I created the field merge, tied it to my CDO, and inserted the field into the email.
    When I then go to test the email, I upload my test segment. In matching fields, I can't match the additional customer data fields from Excel to fields in Eloqua - I had thought maybe the CDO fields would appear as options for matching.
    So, my question is, how do I get the Excel data to match up to my merge field in Eloqua?
    Thanks for any help you can give!
    Colin

    Here was the outcome:
    You can't perform a merge via Excel upload (ie - trying to create a new segment via upload that contains data to be merged) - I was on the right track, that this needs to be done via CDO.
    1. Create your CDO, upload your Excel file, and map contacts to the data card
         - Create a new CDO, adding the extra fields you want to capture
         - Specify "Email Address" in the Display name, Unique ID and Email Address fields. I also set the Group By field to Email Address, and the Entity type as Contacts with field again set to Email Address.
         - When uploading your Excel file with the records you want to merge, make sure to map the uploaded contacts to the data card (Custom Object > Upload Custom Object Records). In the resulting wizard, in step 4 - Upload Actions, be sure that the Map data card checkbox is checked. Not real sure why you'd ever not want this - it seems to me you can't do much without it.
    2. Create your field merges Email Field Merges
         - map these to your CDO fields
    3. Insert the field merges into your email
    That's about it - if anyone has additional info or corrections on the above, let me know. Hope this helps -
    Colin

  • [svn:osmf:] 14580: Commit example showing how to perform additional load logic via a ProxyElement .

    Revision: 14580
    Revision: 14580
    Author:   [email protected]
    Date:     2010-03-04 09:28:35 -0800 (Thu, 04 Mar 2010)
    Log Message:
    Commit example showing how to perform additional load logic via a ProxyElement.  The AsynchLoadingProxyElement (and its corresponding LoadTrait) load the proxied element, but doesn't expose its READY state to the outside world until it performs its own load operation (in this case it just runs a Timer).  Include minor fix to other example.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/loaderproxy/VideoProxyE lement.as
    Added Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/loaderproxy/AsynchLoadi ngProxyElement.as
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/loaderproxy/AsynchLoadi ngProxyLoadTrait.as

    Nope, what for?
    If you know what you are doing and you discharge yourself there is no need for such.
    BTW, those bands are not that safe, if you use them wrongly you can electrocute yourself pretty easily

  • PL20 flexi upload issue

    Hi All,
    When we uploaded the file using flexi upload for posting level 20, system is reading the data properly but at the same time system is posting correction reversal entries for the same. Eg if i'm uploading the file with 100 INR system is posting the amount and again system is posting the correction document for -100 INR. Kindly help us in resolving this issue.
    We have created a flexi upload for PL20 entries, in which we created a seperate method and task for the same. And in task we have defined the processing type as two sided, created a field catalog in flexible upload. Please let us know if you need further details.
    Regards,
    Magesh

    Hi Collet,
    In Task, we use cons freq- monthly, proc. type two sided, cons. group- all values. In method we have defined DCP flexible upload w.r.t method and doc. type. In flexible upload field category we have defined the respective fields as per the manual journal entry screen.
    Yesterday only i configured flexi upload for PL20. In my total records during the first PL20 flat file upload, items were reversed with text CORR and in which most of the amount are w.r.t clearing a/c.
    Kindly let me know if you want further details.
    Regards,
    Magesh

Maybe you are looking for

  • Is there a way to get an iPod touch to play one audio track and stop.

    Is there a way to get an iPad to play one audio track and stop. I work in education and particularly music. Teachers are looking to create a playlist of selected track but only want the selected track to play then stop. This allows them to talk to th

  • Firewire to transfer data

    I have a 30 pin FireWire from an older iPod, will it work to charge my iPhone and transfer data? Or will "fry" my iPhone, anyone?

  • Document library custom ribbon buttons omitted to child items

    Hello, Is there a way to omit custom ribbon buttons that are viewable at the document library level but not the content type items of the library? I have a custom action targeting a custom document library by registration id "10777" And it shows up i

  • What happen to this view V$STANDBY_APPLY_SNAPSHOT ?

    I first saw reference to this view in Oracle Data Guard 11g Handbook on Page 121. "This view provides the current redo apply rate in KB/second:" We are running 11g R2 so I am wondering WHY would Oracle remove this view? Edited by: user10260925 on Jul

  • Top sessions query

    Hello does anyone have a query that I can use to show sid, serial# and current SQL for a specified user. I know there are tools out there but there is no budget for anything now and OEM is acting very unstable in my environment. I keep having to shut