Loading blank in conversion file

I have blank accounts in my upload but when I created an Account Conversion file for it
Column A Column B is 99999 it fails. Does column A need to say blank or something?

Hi,
You can try using an IF condition in the transformation file. Please refer to the IF statement in the mapping section of the below link:
http://help.sap.com/saphelp_bpc75/helpdata/en/a2/e722bc58404335ada8592cdc8feaca/content.htm
Hope this helps.

Similar Messages

  • A question for transformation/conversion file

    Hi Guru:
    I load data from a file for a dimension.
    For one member, I want to set the value to blank if the source value is equal to "1000".
    How to write the conversion/tranformation file to achieve this?
    Thanks.
    Eric

    Hi,
    What Nilanjan said is correct. You cannot have any member as blank in BPC.
    I can suggest you a workaround, have a member BLANK in your dimension with no description and maintain the conversion file to map the source value 1000 to this member.
    So when you report on this, end user is going to see only the description(if you hide the key values) which is going to be empty without any value for it. So they have the feel of no ID is assigned to it.
    Hope this helps,
    Regards,
    G.Vijaya Kumar

  • Loading VRML 1.0 files in Java 3D

    Hi all,
    Does anyone have a successful experience loading VRML 1.0 file into Java 3D as a scene graph? While I think it's too complicated to write my own loader, is there any existing loader available for this task?
    I've tried 2 VRML loaders, but neither seems to work. org.web3d.j3d.loaders.VRML97Loader works fine loading VRML 2.0 files, but not for 1.0 files. An exception with the following message was thrown.
    Error loading VRML file: Unsupported version V1.0
    com.sun.j3d.loaders.vrml97.VrmlLoader always complains about the format of my VRML files (both version 1.0 and 2.0). In this case the exceptions is...
    java.lang.InstantiationError: vrml.node.Node
         at com.sun.j3d.loaders.vrml97.impl.Node.wrap(Node.java:114)
    OR
    Exception: com.sun.j3d.loaders.vrml97.impl.ParseException: Unknown node type: Separator
    Last token was "Separator" at line 5
    com.sun.j3d.loaders.vrml97.impl.ParseException: Unknown node type: Separator

    VRML1.0 and VRML97 (or 2.0), are very different in the structure, so it is very unlikely that a loader built for version 2.0 works for 1.0 files.
    I don't know whether there is a J3D loader for 1.0.
    You may try with some conversion program,
    http://www.nhcad.com/old/html/vrml2.html
    try this.. hope it helps.
    Chris

  • SQL*LOADER how to load blanks when data is null

    I need to load data which contains null values into a table which cannot contains nulls. How can I tell SQL*LOADER to load blanks in a column when the input data is nulls?

    I think something like this in your control file should work:
    col1 char(10) nvl(col1,' ')

  • Loading from a Flat file: Binary and Text File

    Hi,
    Does anyone know what the difference is between loading from a binary file or text file?
    Ramon

    Hi,
    the difference is that text files contain lines (or records) of text and each of these has an end-of-line marker automatically appended to the end of it whenever you indicate that you have reached the end of a line.
    So what happens when we read from a text file is that the end-of-line character for the operating system that we are using gets converted into a low value end-of-string indicator and when we write to a file the appropriate end-of-line character(s) get written when we indicate the end of the line. This makes the reading and writing of text files much easier because the appropriate end-of-line markers are handled for us.
    With a binary file none of these conversions take place. When we read a binary file the end-of-line characters for our operating system will be read into the string and treated no different than any other character. When we write to a binary file the only end-of-line markers that are written will be those that we code into the output ourselves and hence will be exactly as we code it regardless of the operating system that we are running on. This makes it much easier for us when the file does not contain straight text and the end-of-line marker does not separate lines of text but rather appears as part of the non-text data content of the file.

  • Remove zero in conversion file

    Hi experts
    Can you help me with a way to remove zero in conversion file, let me explain, I want to load transactional data from BW but I have a charateristic with 10 character but in BPC side my dimension have 8 character, technicaly in BW the file is like this:
    BW
    0012345678
    BPC
    12345678
    How can I remove left zeros for the characteristic?
    any input will be apreciated.
    regards
    Lucio Martinez!!

    Hi Lucio,
    I will present my scenario. I want to remove the leading Zeros from the Customer ID and while transferring the values in BPC, I want to prefix the value (after removing the zeros) with 'C_'. eg: 000012345 so I want to transfer that as 'C_12345'.
    In transformation file, I had done the mapping as
    ID=*str(C_)+ID
    which works fine, if I dont have to remove the zeros. I added code in the Conversion file
    EXTERNAL                      INTERNAL
                                 js:PARSEINT(%external%)
    But it is giving me an error message that validation has failed for transformation file and it is giving a message that:
    Line 1 :Detected duplicate member ID 'NaN' .. Line 3560 :Detected duplicate member ID 'NaN'
    Can you please help me out in this situation? Any suggestions how can I achieve this?
    Your replies will be much appreciated.
    Thanks,
    Abhishek

  • Loading of images & pdf files ?

    Hi all,
    Is there any facility provided by ODI to load the images or PDF files in the oracle databse?..
    Or is there nay way we can load images or PDF file through the ODI tool.
    Thanks
    Neeraj Singh

    Michel
    No video in this movie. All photos. The photos are JPEGS (Very large, which have been used in the past and have slipped right in and worked) I'm uncertain of the settings, not sure where to find what you may be looking for...I set up the video as I do for all of my movies as a DV-NTSC file, then export in the same format using q-time conversion...used several this time hoping one would work.
    I did close all open projects, loaded a brand new one, imported files and still the same thing when burned...blurry, pixelated really bad images. I'm kind of at a loss. I have done nothing different to my knowledge with the new FCE4. Even in the canvas its a bit blurry when played, and it has been rendered. In the "RT" on the time line its set to Unlimited and dynamic. At this point I don't think its the images as I tested a few from my laptop to view on the tv and they are perfect.
    Appreciate any advise!

  • Using Conversion file

    Hi friends,
    I am using a Conversion file to load a data file. In my data file, dimension member is like "0001234" while loading i want to skip frist three digits "000". could you please help me..
    Thank in advance

    For a simpler solution, probably you could just set the mapping in your transformation file:
    *COL(A, B:C)
    A = column index in the data file
    B:C = the start and end positions within the column
    This function defines a dimension for a subset of a field in the data file.
    EXAMPLE
    Account=*COL(3,1:4)
    Please refer to: http://help.sap.com/saphelp_bpc75_nw/helpdata/en/5d/9a3fba600e4de29e2d165644d67bd1/content.htm
    Hope this helps...
    Thanks,
    Yen Li

  • Why does iChat take sooooooo long to load a saved conversation?

    I don't know if it's just my computer, but it takes really really long for iChat to load a saved conversation. I opened one last night, and it took 32 minutes to open. That's terrible. In the meantime, it lagged my whole computer and logged me out of AIM. What can I do?

    Hi,
    In Tiger the Recent item only showed those chats you had opened before.
    In Leopard this item in the File menu of iChat shows Recent Chats and Recent Saved Chats.
    Which route are you using to access the saved Chats ?
    Also have you moved the default folder ?
    Is this identified in iChat > Preferences > Messages pane ?
    Mine open almost instantly.
    I am having a hard time imagining why they would be delayed unless really long or group chats or some with files or Pics that you download to the Desktop and it is having trouble finding all the bits that were in it (or even if they are where iChat thinks they were left/put on download)
    8:36 PM Tuesday; December 11, 2007

  • Conversion Files - many to one mapping

    Folks,
    This is something that used to work fine in BPC MS but NW is giving me trouble with the data load. We've setup a custom BW cube as a source to our BPC consolidation application.
    On a Consolidation App we don't need all ECC accounts and we simply consolidate many of them into a single consolidation account.
    Let's say I have this source data from the custom cube:
    Account1, $100
    Account2, $200
    Account3, $300
    And this mapping table for the Account dimension:
    Account1, ConsAccount1
    Account2, ConsAccount1
    Account3, ConsAccount1
    I would expect BPC to load this final data into BPC Consolidation cube:
    ConsAccount1, $600
    But it isn't happening and marks a warning and nothing gets loaded in the cube.
    This is very common in Planning / Consolidation apps and I won't expect users to maintain conversions using BW directly as it goes against all benefits BPC provides to Finance people.
    Any way I can get out of this?
    Thanks
    Paulo

    Hi Paulo,
    there are two ways to put data on BPC cube, either using IMPORT FROM INFOPROVIDER or UPLOADING a flatfile.
    If you want to map many to one,you will need a conversion file.
    EXTERNAL                    INTERNAL
    ACCOUNT1                   BPC_ACC
    ACCOUNT2                   BPC_ACC
    Hope this helps.

  • How to read no value(conversion file)

    hI Friends,
    i'm loading actuals data from bw to bpc application. some of records in bw cube are not having data for one characterstic (eg: master cost center).
    1. i want to drop those records which are not having data, how can i achieve this through conversion file,what content can i put in external column? and in internal column i will use *skip.
    2. if i want to put some new value for records having no value for one characterstic(eg: master cost center). how can i assign that in conversion file? i.e what can i put in external col.
    Above 2 question relates to conversion file, that same characterstic which is having no value in bw cube. For many records i have master cost center value, but here i want to handle no value.
    Thanks,

    you are correct, i want to handle no value situation(alv cell is having no value) for master cost centre infoobject of bw cube.
    I also get similar idea like you as follows
    External col: *
    Internal col:  *if(js:%external%.length=0 then CC_A, dummny parameters).  But i haven't tested and now analysing data in bw cube.
    I would like to know any other keywords are there, why because in my bw cube around 3 characterstics are having no value(similar) to above. Yes by above way, one can maintain 3 conversion files.
    Regards,
    Naresh

  • Amount Conversion File error using VALUE keyword in BPC 7.5M

    Hi Experts,
    We just migrate from BPC 7.0M to BPC 7.5M. We also change the server to multi-server arquitecture 64-bit (Application server and BD Server).
    When we try to Import or Validate Transformation File with Amount conversion file using VALUE keyword, the system returns: "Error: Validate with data file failed". The content of conversion file columns:
    EXTERNAL= *
    INTERNAL= *
    FORMULA = VALUE*0.001
    At first, we thogut that was a problem with 0.001 but we tried diferent formulas with the same error:
    FORMULA = VALUE*1
    FORMULA = VALUE*2
    FORMULA = 0.001*VALUE
    We also tried to use VALUE keyword with case sensitive and the result was the same. And when we don't use VALUE keyword the validation is OK.
    Any idea? Thanks in advance.
    Best regards,
    Albert

    Hi everybody,
    First of all, thanks for your replies.
    The trasformation file is:
    FORMAT = DELIMITED
    HEADER = NO
    DELIMITER = ;
    AMOUNTDECIMALPOINT = ,
    SKIP = 5
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT=-1
    ROUNDAMOUNT=
    *MAPPING
    ACCOUNTP=*COL(4)
    BRANDS=*COL(6)
    CATEGORY=*NEWCOL(ACTUAL_YTD)
    CUSTOMERP=*COL(7)
    DATASRC=*COL(4)
    ENTITY=*COL(2)
    GROUPS=*NEWCOL(LC)
    INTCO=*NEWCOL(INONE)
    MARKETP=*COL(8)
    TIME=*COL(3)
    AMOUNT=*COL(9)
    *CONVERSION
    TIME=TIME.xls
    ENTITY=ENTITY.xls
    DATASRC=DATASRC.xls
    MARKETP=MARKETP.xls
    BRANDS=BRANDS.xls
    CUSTOMERP=CUSTOMERP.xls
    ACCOUNTP=ACCOUNTP.xls
    AMOUNT=AMOUNT_TEST.XLS
    The data file has the first column empty and the 5 firsts row are skipped.
    21.12.2011                      Salida din?ica de lista                              1;;;;;;;;
    ;Company;0FISCPER;0ACCOUNT;ZIMP_TYPE;...FIT_CTR;N? cliente;ZRAMO_P;        Importe
    ;ES0;2020012;PCAJ;D;AX028;E4291;ZAS2;26,04000000
    ;ES0;2020012;PCAJ;D;AX028;E5145;ZNEA;2,48000000
    ;ES0;2020012;PCAJ;D;AX028;E5361;ZNE1;1,86000000
    ;ES0;2020012;PCAJ;D;AX028;E0889;ZMI2;1,24000000
    ;ES0;2020012;PCAJ;D;AX028;E0824;ZLAN;12,40000000
    ;ES0;2020012;PCAJ;D;AX028;E0801;ZMI2;25,42000000
    ;ES0;2020012;PCAJ;D;AX028;E1273;ZTS1;3,10000000
    ;ES0;2020012;PCAJ;D;AX028;E6163;ZLAN;60,14000000
    ;ES0;2020012;PCAJ;D;AX028;ORGUS00;ZSHL;96,10000000
    The conversion file AMOUNT_TEST.XLS has only one line. With this conversion we want to change value from u20AC to Ku20AC.
    You should think that we used these transformation and conversion files in BPC 7.0M and it works fine.
    I'd like to remember that if we don't use AMOUNT_TEST.XLS or delete VALUE keyword, these transformation file works fine too.
    nilanjan, I tried to validate data file with one record and the system show me the same error.
    Roberto, our first migration was from BPC 7.0M to BPC 7.5M SP3, but we didn't test it. Then we apply SP7 because to solve other issues, and when we try to validate data load we detect that issue.
    Thank you for your help, I hope we can solve that problem soon.
    Best regards,
    Albert

  • Loading Pipe delmiter flat file with ',' (comma)

    Hi Guys,
    I have a field which contains ',' as its value. The value is 0315A Mgr, Cust Service for a infoobject called ZJOB_TIT.
    Also, I have wrote the following code in field routine since previously this field was throwing hexadecimal errors and the load is through flat file.
    DATA: v_gpurqtrnr TYPE /BIC/OIZJOB_TIT.
    MOVE SOURCE_FIELDS-/BIC/ZJOB_TIT TO v_gpurqtrnr.
    TRANSLATE v_gpurqtrnr TO UPPER CASE.
    IF v_gpurqtrnr CN
    ',<>?/{}[]\|;:"''ABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_-+=123456789~` .'
      RESULT = space.
    ELSE.
      RESULT = v_gpurqtrnr.
    ENDIF.
    After loading the data, in preview of PSA - everything looks fine. Field ZJOB_TIT shows to have the value 0315A Mgr, Cust Service. But when I load to the cube - I get blank for the same field.
    I am not sure what more i can do to eradicate this problem.

    Hi
    PSA is the data before under going your tranformation or field routine. so you are able to see the data in that field . Now as per the code which you have written above it will surely be deleting all the characteristics which you have given under '.......' . Modify your code to eliminate only the comma and not the alpha numberic values.
    Rajesh

  • In a Conversion file, Using Java Script - IF statement with Greater,Less definitions

    Hail to All Gurus,
    Well, I've been trying to make a conversion file by using if statement of Java script with < , > definitions. unfortunately i got "Evolution error" over and over again.
    Actually i want to convert all dates before 2009 as 2008.12. And the dates which is greater than 2009 will be converted as they are (e.g. 2009.01 or 2010.02 etc.).
    Code is:
    js:if(%external%.toString().substring(0,4)<"200900"){"2008.12"}else{%external%.toString().substring(0,4) + "." + %external%.toString().substring(4,6)}
    SAP EPM version 10.0 SP15 Patch 2
    Build 8586
    Thanks for your help in advance

    Sadi,
    You can write if Statement in transformation not conversion.
    Look at this docs,
    How to Import Master Data and Hierarchies into SAP BusinessObjects BPC 7.5 from SAP NetWeaver BW
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c02d0b47-3e54-2d10-0eb7-d722b633b72e?QuickLink=index&…
    Thanks

  • How to load multiple .wrl (VRML) files?

    Hi all,
    I need to load four components of a coffee table into the virtual universe, the four components are top, base, left leg and right leg. I use four parts not one whole single object because in this way when I change the size of this furniture, I can make the thickness of the edges fixed, which is a must. The four parts consist a table correctly in the design software TopSolid, but when I load the four .wrl ojbect files seperately in the application, they cannot compose a table correctly. I guess the reason is the four components have been resized and translated automatically in the VRML loader. I have reviewed the source code of the VRML loader and some related source code but not be able to find where the auto resize code is.
    I have used four Wavefront .obj files instead to do another technical demonstration, if I disable the ObjectFile.RESIZE flag, and just scale the four parts by myself using the same scale factor, I can get a perfect coffee table, with every part in correct location. But my supervisor insist on using VRML .wrl files in our project.
    I hope someone can give me some kind instructions or advises on how to do it in VRML97 loader (https://j3d-vrml97.dev.java.net/).
    Any help will be highly appreciated.

    Answered here : http://www.java.net/forum/topic/javadesktop/java-desktop-technologies/java-3d/trying-load-multiple-wrl-vrml-files-same

Maybe you are looking for

  • MB_CREATE_GOODS_MOVEMENT Bapi

    I am using MB_CREATE_GOODS_MOVEMENT for certain receipt movement. In case of new batch, I want to enter material characteristic also. Say example Original Source Plant. In this BAPI is it possible ? Or Other BAPI to be used ? If yes, what is the BAPI

  • 'Out of Range' message

    Newbie here, so apologies if this problem has been raised a million times. I have a BT line and a BT Stratus phone/answering machine. I have been having problems with my phone fading out on me, so I replaced the rechargeable batteries, but the same '

  • SCCM Custom report

    Hi I have been asked to put together some custom reports out of SCCM 2012. Now I have looked through the reference for 2007 but there have been changes between the two products so now all the information is valid. I am hoping that someone has either

  • ;ogic board why do they just stop working?

    My mac book pro is costing more then I  can cope with . its on its third logic board and now 18 months down the line its packed up again this time no warrantee  . I'm a student living of saving here in Borneo. age 51 so can get work doing a degree in

  • Window manager? acting very oddly

    So I've got a really weird problem, not sure where else to look for answers. It started with noticing that the Dock wasn't showing up. I tried to manually start it but nothing happened. Then I noticed that Command-Tab doesn't work, it just registers