0CHRT_ACCTS as compounding character for 0GLACCEXT

Hi experts,
I want to define 0GLACCEXT as a navigational attribute of 0GL_ACCOUNT.
Because I wanna use its hierarchy in reports.
0GL_ACCOUNT has 0CHRT_ACCTS as compounded characteristic. Example : Chrt Acct= INT, GL Account: 110000
Should I also define 0CHRT_ACCTS as compounding character for 0GLACCEXT.
If yes, should I fill it during extraction from 0gl_account_text  ?
Or
Will it be filled already during extraction from 0gl_account_hier ?
Thnx.

Hi,
No you dont need to define 0GLACCEXT as a compounding of 0CHRT_ACCTS .
Regards,
Amol

Similar Messages

  • Is there a Special Character for the number of pages in a document?

    I'm creating a template (in cs6) for a series of documents of variable length, and each document needs to be numbered with the format, "page A of Z." I see the special character for inserting the current page number (A) and I'd like to have the number of pages in the document (Z) added automatically as well. Is there a wildcard, special character, or script that will accomplish this? I'd rather not have to enter the number of pages manually as the value will change as these go through the editing process; I'd prefer to have the numbers update automatically. Has anybody done this before?

    Your first suggestion is the only way to capture the last page of a book that's comprised of independent document files. The last page number text variable works only within a single document.
    Anyone who wants a last page in book text variable badly enough can post a feature request at Wishform.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices    
    Arïel wrote:
    Stop press!
    You can also, much more simply, create a new text variable. There is
    specifically one for "last page number". That's much simpler.
    Type>Text Variables>Define>New, and in the Type dropdown just select
    "last page number".
    ariel

  • Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 3 (NumberOfMultipleMatches).

    Hi,
    I have a file where fields are wrapped with ".
    =========== file sample
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    ==========
    I am having a .net method to remove the wrap characters and write out a file without wrap characters.
    ======================
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    ======================
    the .net code is here.
    ========================================
    public static string RemoveCharacter(string sFileName, char cRemoveChar)
                object objLock = new object();
                //VirtualStream objInputStream = null;
                //VirtualStream objOutStream = null;
                FileStream objInputFile = null, objOutFile = null;
                lock(objLock)
                    try
                        objInputFile = new FileStream(sFileName, FileMode.Open);
                        //objInputStream = new VirtualStream(objInputFile);
                        objOutFile = new FileStream(sFileName.Substring(0, sFileName.LastIndexOf('\\')) + "\\" + Guid.NewGuid().ToString(), FileMode.Create);
                        //objOutStream = new VirtualStream(objOutFile);
                        int nByteRead;
                        while ((nByteRead = objInputFile.ReadByte()) != -1)
                            if (nByteRead != (int)cRemoveChar)
                                objOutFile.WriteByte((byte)nByteRead);
                    finally
                        objInputFile.Close();
                        objOutFile.Close();
                    return sFileName.Substring(0, sFileName.LastIndexOf('\\')) + "\\" + Guid.NewGuid().ToString();
    ==================================
    however when I run the bulk load utility I get the error 
    =======================================
    Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 3 (NumberOfMultipleMatches).
    ==========================================
    the bulk insert statement is as follows
    =========================================
     BULK INSERT Temp  
     FROM '<file name>' WITH  
      FIELDTERMINATOR = ','  
      , KEEPNULLS  
    ==========================================
    Does anybody know what is happening and what needs to be done ?
    PLEASE HELP
    Thanks in advance 
    Vikram

    To load that file with BULK INSERT, use this format file:
    9.0
    4
    1 SQLCHAR 0 0 "\""      0 ""    ""
    2 SQLCHAR 0 0 "\",\""   1 col1  Latin1_General_CI_AS
    3 SQLCHAR 0 0 "\",\""   2 col2  Latin1_General_CI_AS
    4 SQLCHAR 0 0 "\"\r\n"  3 col3  Latin1_General_CI_AS
    Note that the format file defines four fields while the fileonly seems to have three. The format file defines an empty field before the first quote.
    Or, since you already have a .NET program, use a stored procedure with table-valued parameter instead. I have an example of how to do this here:
    http://www.sommarskog.se/arrays-in-sql-2008.html
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Escape character for apostrophe ' in JDBC receiver channel

    Hi all,
    We have Proxy to JDBC scenario in our project. This interface is working fine with unicode data but when there is an apostrophe( ' ) coming in any of the field values ( ex: DOWTHERM 'J' MODEL19QAGB1G ) , the message is failing in receiver JDBC channel.
    can anyone please tell us how to handle single quote in JDBC receiver channel.
    I have read in SAP help documentation that apostrophe is a reserved character in SQL syntax and is therefore replaced by an escape character if it occurs within value strings. There is a option to JDBC receiver communication channel under "SQL SYNTAX PARAMETER"  to specify the escape character for apostrophe.
    Can any please tell us which value needs to be maintained in the channel to avoid this error.
    Regards
    Jagruthi

    Hi Prateek,
    Thanks a lot for you inputs.
    This issue is solved now. We have replaced single quote with two single quotes and then did the hasQuote mapping as described in the blog.
    /people/prateek.srivastava3/blog/2009/04/02/unicode-handling-for-ms-sql-server
    No value needs to be maintained in channel(SQL SYNTAX PARAMETER ).
    But just want to understand  the difference between replacing the ' with '' in mapping and using SQL SYNTAX PARAMETER option in communication channel.
    Both should ideally result in same  output. But it didnu2019t work when we tried with two single quotes in SQL SYNTAX PARAMETER (Escape Symbol for Apostrophe) in communication channel without doing anything in mapping.
    Regards
    Jagruthi

  • Using Escape character for Multi character delimiter for flat files in IKM

    Hi
    I have an IKM using Jython, it is working fine for single character delimiter. But as per requirement I have to use multicharacter delimiter ;" (semi colon and double quotes).
    I am taking this into variable using
    filesep = "<%=snpRef.getSrcTablesList("", "[SFILE_SEP_FIELD]", "", "")%>"
    but it is giving lexical error.
    Can anybody help me with the use of escape character in current scenario?
    Any other suggestions are also appreciated.
    Thanks
    Ankit

    Hello,
    A small tweak may solve your problem:
    Instead of :
    CONCATENATE wa_condstr ' bukrs = ' pa_bukrs INTO wa_condstr SEPARATED BY space.
    Use:
    CONCATENATE wa_condstr ' bukrs = ' 'PA_BUKRS' INTO wa_condstr SEPARATED BY space.
    Then use this in SELECT.
    Anyways for your answer the escape character for apostrophe is an apostrophe )
    Try this you will understand:
    DATA:
    V_STR TYPE STRING VALUE ''''.
    WRITE: V_STR.
    BR,
    Suhas

  • Cant save a character for later use in cs 4 (want to use in other projects)

    I am planning on making a character for a project and other projects but my "TEST DUMMY" couldn't be saved i made him a symbol and looked in the library, i loaded new project after restating flash and he wasn't in the library! (i did not save changes to the project someone told me saving it screws things up in cs 4)
    P.S: What is a good HD resolution?

    Ok i found out how so yes i do have to save changes to that place but to get in another projcet i kneed to go to File/Import/open external lybrary/file name/symbole name and then that works

  • Display special character for 'Artihmetic mean'

    I can't find the character for 'Arthmetic mean', it's 'x' with a line above, any ideas!?
    I've searched several font (Symbol, Wingdings etc) but didn't found that special character...!

    Oh, I do apologise. I saw the character on wiki and assumed it was a character, rather than a graphic.
    Usually, to create interesting unicode characters, you can combine diacritics. For instance, xbar is X followed by ¯;

     (might not display on unsupported browsers)
    However LabVIEW doesn't support this, and will print x ¯ and I can't find any info on how else it might be implemented.
    You might be able to find a hack in this document
    And in the meantime, you can kudo this suggestion
    - Cheers, Ed

  • Field is missing an escape character for a quote

    Hello ,
    any solution for below error in SSIS.
    Field is missing an escape character for a quote.Unable to update PK WHERE clause.Error processing data batch.
    i tried with convert tool. I ignored that column but still i am facing same error.
    Regards,
    Akshay Adivarekar
    Akshay Adivarekar

    "Field is missing an escape character for a quote.Unable to update PK WHERE clause.Error processing data batch."
    this is the error which i am getting in ssis.
    I am trying to pull data form SAP to SQL sqrver 2012 using SSIS 2012.
    I am using ado.net connector for SAP , Control flow Task.
    I tried with Convert task with dt_str datatype  but its not helping me ,
    even  i ignored that column but still i am facing same error. 
    Actually  sometimes it works properly but sometimes  get error.
    Akshay Adivarekar
    Akshay Adivarekar

  • Compounding consistency for InfoObject 0PERSIDNO not ensured

    Hi,
    When i am creating multiprovider i am getting error message."Compounding consistency for InfoObject 0PERSIDNO not ensured".
    In one of the affected InfoProviders, InfoObject 0PERSIDNO is compounded with InfoObject 0COUNTRY_ID. 0PERSIDNO is mapped to InfoObject 0PERSIDNO in the identification list. As a result, 0COUNTRY_ID is also mapped to 0COUNTRY_ID (because InfoObject 0PERSIDNO is compounded with 0COUNTRY_ID in the MultiProvider),
    in my multiprovider i am using 2 infocubs and 1 dso.
    Pls suggest me.

    Hi,
    A record of 0PERSIDNO master data is uniquely identified by the combination of 0PERSIDNO code and 0COUNTRY_ID code (it has a composite primary key). 
    Therefore, if you include 0PERSIDNO in your Multiprovider, you should also include and map 0COUNTRY_ID.
    I hope this helps you.
    Regards,
    Maximiliano

  • How do I store a compound clip for later use or another project?

    I created a compound clip, then lifted it from story line and disabled it, its darkened (invisible doesnt play in the viewer),
    however its space runs as black empty frames when I play over it.
    I want to do 2 things:
    I wanted the footage proceeding it to shift in left to fill that black void and play, as the compound clip is "hidden". Is this possible?
    I also wanted to save that compound clip for use later in this project and possibly in another project, can I save it out as a separate clip set?

    I think I got it, lift the compound clip from storyline by right clicking and choosing "lift from storyline",
    drag the compound clip left or right out of its original position, select the grey slate where it used to be in the time line,  and hit delete. the clips to the right now shift left to fill its void.
    and the compound clip is automatically available in the event library folder its grouped clips originated from but now shown as a compound clip once you create that compound clip..

  • Hierarchy INT for 0GLACCEXT (Financial statement item)

    Dear Friends,
    I have a situation where i am modifying a standard BC query 0FIGL_VC1_Q0002 and i have to find equivalent nodes (equivalent to the standard SAP INT hierarchy) in my custom hierarchy for 0GLACCEXT (financial statement item). BW has a standard hierarchy INT for 0GLACCEXT (with nodes as numbers for example 3070000, 2030000 etc). With the custom hierarchy in my case how do i find the equivalent hierarchy nodes for this hierarchy while working with this query?
    Any help would be highly appreciated.
    Thanks
    Raj

    First of all, U cannot get balance sheet and income statement reports on DSO level... or even at cube level (0FIGL_C10)
    Balance sheet and income statement logic is manipulated in function Module (RS_BCT_FIGL_DATA_GET_VC10) that pulls data from 0FIGL_C10 to 0FIGL_V10... Thats the reason why SAP provided all Balance sheet and income statement reports on 0FIGL_V10.. And u can see 0GLACCEXCT in 0FIGL_V10, but not in 0FIGL_C10, which provides income statements at aggregation (totals) level, but not at granular level..
    Looks like u r trying for something (keeping 0GLACCEXT in 0FIGL_O10) which is not possible... If u want much detailed level of reports, u can create jump targets (RRI) from 0FIGL_V10 reports to 0FIGL_O10 reports (if u create any)

  • Keychain showing different character for the password

    Hi just wanted to ask why my keychain is showing different character for my password in my AIM and Yahoo account? When i mark the show password its show plenty of letters but not the one i am really using. How can i show the right one?

    Hi Irvin,
    If you see a crazy corrupt password, I'd delete that item, ythen login yo AIM or Yahoo again to create a new one, unless you don't remember your PW, then try Keychain First Aid under the Window Menu item, then either check the Password under that item, change it, or delete it and start over.
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • Whats the limitations character for email signature for iphone?

    I wonder whats the limitations character for email signature for iphone? if anyone can help... thanks

    Please provide more detail of what it is you need to know and why?

  • Unmappable character for encoding

    Hi --
    After upgrading to 1.5-beta-2, I'm getting compilation errors for all of my files. The error is "unmappable character for encoding ASCII". The compiler is complaining about a copyright symbol used in our file header.
    The strange thing is, I only get this error during my nightly build on my Solaris box. I can compile from the command line fine, and also from within emacs. Compiling on my Windows PC also works fine.
    We use ant scripts (version 1.6.1) to do the build, and of course there may be differences in the cron environment that matter, but I can't figure out what they might be.
    Anyone have any idea at all what I need to do to avoid this error? Thanks!
    -J

    You are right, it does seem a little silly :) But at that point the compiler is only reading the source file, it doesn't know whether the bytes are in a part of the program that ends up being parsed to a comment or not. With the lexical translation of unicode escapes to real characters it's more complicated than just keeping track of line breaks, stars, and slashes. For instance this commented "line" prints hello because \u000a is just as good as a hard line break:// Say hello: \u000a System.out.println("hello");> I'm still not sure why it compiles successfully sometimes; there must
    be something in my environment related to the default encoding that
    differs from my cron's environment.
    Maybe you normally have LANG (or at least LC_CTYPE) set by something sourced from a login script, but the same file is not getting sourced from the cron job? Or something ...

  • What is escape character for for Carriage Return, Line Feed, Form Feed

    Hi
    I need to a text file which should have following characters
    Carriage Return, Line Feed, Form Feed
    How do i insert them in a string
    i know "\f" is carriage return,
    but what are characters for line feed and form feed
    Ashish

    uncle_alice wrote:
    jverd wrote:
    remus.dragos wrote:
    I forgot that it does not exist in Java. A good thing
    from my point of view.Running the following makes my computer beep.
    public class Bell {
    public static void main(String... args) {
    System.out.println("\u0007");
    Sure, sending a BEL character to the console rings the bell, but that has nothing to do with Java. Anyway, I think he meant Java doesn't support the \a escape sequence in string and char literals.
    >
    >
    >I forgot that it does not exist in Java. A good thing
    from my point of view.
    Running the following makes my computer beep.
    public class Bell {
    public static void main(String... args) {
    System.out.println("\u0007");
    } Sure, sending a BEL character to the console rings the bell, but that has nothing to do with Java. Anyway, I think he meant Java doesn't support the \a escape sequence in string and char literals.
    Ah, I thought he was saying Java doesn't support ringing the bell.

Maybe you are looking for

  • Loading custom image formats

    Hello all. I am wanting to load a custom image format into my Java application, and am wondering how to do that. I have a few ideas to try but I figure if there is a site out there (or someone with the knowledge), there is no need for me to re-invent

  • Outlook 2010 willnot send or receive e-mail

    Yesterday, Microsoft did and automatic upgrade. I am now getting this message going on the last 24 hours. " Your mailbox is currently being optimized as part of upgrading to Outlook 2010. This one time process may take up to 15 minutes and performanc

  • Latexit Service not working on Keynote

    When writing an email it is a great tool to use services "Detect and typeset equations (Latexit)" to run over and replace the math expresions with the corresponding image produced in Latexit. I was wondering if this would work on Keynote, but it is f

  • SAP HANA XS CMIS API documentation page moved ?

    Hi folks, It seems the url link to the SAP HANA XS CMIS Library help page is not working anymore. Is there a new url ? Regards,

  • Hello Everybody....I want to about SAP Basis Module

    I want to know about SAP Basis Module....Please tell me about SAP Basis Module.. Edited by: Yogeshmtech on Dec 28, 2011 5:13 PM