How to Change Journal Header name to Custom Header Name while GL Importing?

Hello Experts,
I am in situation where customer wanted to keep their own journal header naming conventions to imported journals in Oracle GL for custom Journal sources.
As I know while importing journals, Oracle Creates the Journal Name based on the below mentioned logic.
"Journal Import creates a default journal entry name using the following format:
(Optional User-Entered REFERENCE4)(Category Name)(Currency)
(Currency Conversion Type, if applicable)
(Currency Conversion Rate, if applicable)
(Currency Conversion Date, if applicable) (Encumbrance Type ID, if applicable)
(Budget VersionID, if applicable). If you enter a journal entry name,
Journal Import prepends the first 25 characters of your journal entry name to
the above format"
But then How it is possible to only allow journal header Name to be used present in REFERENCE4 excluding all other string provided by Oracle? Instead of using omitted string custmoer wanted to keep their own parameters. Example - REFERENCE4.A.B.C etc.
Is it possible to solve this using seeded setup or modifying some hook packages or anything else?
As far as I know there can be one workaround to be use of updating journal header name after journal import being completed successfully for custom journal source. But only fear is Oracle doesnt allow updating the base table without API. Am I rght?
So it would be really great if anyone of you can suggest the best solution or best possible workaround.
Thanks

Duplicate - How to Change Journal Header name to Custom Header Name while GL Importing?

Similar Messages

  • How to change the look and feel for Heading of quick launch menu in project server 2010

    Hi
    can someone tell me how to change the look and feel of Header names in quick launch.
    I want the header to be displayed in Bold with Underline to it.
    could this be possible for just header in quick launch in project server 2010. 

    Hi Rohan
    It does not work this way. You have to use a content editor webpart.
    See references below that might help you starting with this customisation:
    Http://go4answers.webhost4life.com/Example/sharepoint-2010-quick-launch-look-feel-78379.aspx
    Http://m.sharepointpromag.com/sharepoint/four-ways-add-or-remove-quick-launch-menu-control
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • How to change the reconciliation account in customer master record?

    hi friends,
    i created customer master with wrong reconsiliation account in XD01. i failed when i am trying to change that reconsiliation account in XD02. it was suppressed. how to change the reconcilition account in customer master data?

    Hi,
    Go to this path: Spro>Financial Accounting>Account Receivable & Account Payable>Customer Accounts>Master Data>Preparations for Creating Customer Master Data>Define Account Groups with Screen Layout (Customers)
    Double Click on Your Group, Then Click on Company code Data under Field Status, Then Double click on Account Management, That screen you will find the Reconcilation Account, Select Requred Entry.
    now it will coming Customer master.
    It's useful assigne points as a way to say Thanks
    Regards
    gvr

  • How to change a prospect status to customer in BP,when the prospect turns out to be a potential customer?Please help me with the details.

    How to change a prospect status to customer in BP,when the prospect turns out to be a potential customer?Please help me with the details.
    Moderation: Kindly search before you post

    Dear Ramesh,
    Using Account life cycle we can record the different stages of a BP.
    But at any point of time we can hold one Stage at Business partner.and once we change status Prospect ro Customer. We can't able to see Prospect Status in that BP.
    Ex -
    Stage A- Potentail
    Stage B- Prospect
    Stage C- Customer
    with the help of UI configuration we can define.
    Need your comment,
    Thx
    Karthik

  • Changing colors/style sheets with custom header portlets?

    We would like write a completely custom header portlet (a standard portlet that is designated as a header, notusing the branding server), but I can't seem to find a way to change the style sheets in subportals when I do this.
    Am I missing something? Do you have to use the branding engine to control style sheets in subportals, or is there another way?
    Chris StoffelPortal DeveloperHalliburton KBR

    ------- developersupport wrote on 12/11/03 4:24 PM -------
    The way Branding accomplishes what you're looking for is by setting a portlet setting called "Portal-Style" on the header portlet using the EDK.  This setting can be set either as an Admin level or CommunityPortlet level setting.  When the portal loads a page with a header, it will check to see if the header has this preference set (first on the CommunityPortlet level, if the header is on a community, and then on the Admin level).  If so, the portal will cause everything to use the stylesheet specified in the setting value.
    The setting value is the name of the stylesheet.  For example, if you wished every page displaying the header to be orange, you could set the "Portal-Style" Admin setting on the portlet to a value of "mainstyle17", the orange-themed stylesheet.
    Perhaps I'm not setting the preference properly. Sniffing the HTTP headers between the gadget and portal servers, I do see:
    [HTTP_CSP_GLOBAL_GADGET_PREF] => Portal-Style=mainstyle17
    (I also tried it with Portal%u002DStyle, but neither works)
    The remote server header portlet doesn't seem to be picking up the fact that there is an admin pref to override the main page's stylesheet. Did I create the portlet wrong, or am I setting the preference incorrectly, or what? Thanks

  • How to change default ringtone to a custom one for IPhone 5.

    I have gone into settings  through Sounds made the change, but it does not register as the default even though the ringtone chosen has the checkmark beside it.  Ringtone still lists the factory default under sounds & vibrations.
    I am able to customize ringtones for individual contacts.

    user598986 wrote:
    Hi,
    How to change default value in a table
    I have a table TEST which has 2 fields CODE of Datatype VARCHAR2(10) and Indicator as VARCHAR2(1).
    I want to change the default value using ALTER TABLE TEST of field Indicator to 'I'.
    ALTER TABLE  test
    MODIFY (indicator DEFAULT 'I'); 
    Incidentally, INDICATOR is a keyword in Oracle, so you may have problems using it as a column name. If so, you'll have to enclose the column name in double-quotes, and be careful to use capital letters inside the quotes.
    Edited by: Frank Kulash on Aug 26, 2009 11:42 AM

  • How to change the status of clinical order header

    Hi all,
    I need to change the status (N1CORDER-WLSTA) of the clinical order header. I have found the way to change the status of the items and it works, but i dont know how to change the header status.
    Now, for the items i do:
    1- Create an object type cl_ishmed_prereg
    2- Load the item (n1vkg-vkgid)
    3- Use set_status method
    4- Save the object
    5- Commit work
    So, do you know how i can change the status of the header? Im looking for other methods but...
    Thanks,
    Manel

    In order to change the clinic order header status u have to:
    1- Obtain the instance from item instance:
        CALL METHOD lv_prereg->get_corder
          IMPORTING
            er_corder = lv_corder
            e_rc      = rc.
    2- Create a var type rn1_corder_x
    3- Modify:
    is_n1corder_x-wlsta = 'RE'. " new status
    is_n1corder_x-wlsta_x = 'X'.
    4- Use change mehod:
        CALL METHOD lv_corder->change
          EXPORTING
            is_corder_x     = is_n1corder_x
          IMPORTING
            e_rc            = rc
          CHANGING
            cr_errorhandler = cl_error.
    5- Save:
    CALL METHOD lv_corder->if_ish_objectbase~save
    6- Commit work
    Regards,
    Manel

  • How to change the blank document to the real name that was assigned

    i started using numbers.i can see two documents blank i and blank 2 .i need to click on the document to see the name that i gave.what should i do to see the list of the documents and name when i open numbers
    david

    Hey There I didn't need to change it as it shows my correct name in my icloud account. The problem is on my Mac where it still shows my Full name as my partners name.
    For eg. if I send an email from "Mail" on mac and I use my icloud account then the name that shows up is my partners name when the email is received. If I send an email from the Icloud Mail box that I log into on my browser then the name that shows up when the email is received is my name which is correct.
    When I go into preferences in "Mail" on my Mac to change my name, the name is ghosted out and doesn't allow me to change it ! ? It is here that it still show my partners name ?

  • How to change the height of the column header cells

    Hi,
    I have been working with Oracle BI Discoverer 10g. I want to increase the height of the column header cells. The labels within the column headers are almost cut off. Is there a way to change the height of the column header cells?
    Thanks...

    Hi
    In dic.4.1 ,we are using format heading ,and manipulating by entering extra space and changing font and mode.
    try the same
    Rgds
    NP

  • How to change recordset bahaviour to accept dynamic column names in the where clause

    Hi
    im using php-mysql and i make a recordset and i want to make the column names in the where clause to be dynamic like
    "select id,name from mytable where $tablename-$myvar";
    but when i do this my i break the recordset and it disappear
    and when i use variables from advanced recordset it only dynamic for the value of the column not for the column name
    and when i write the column name to dynamic as above by hand it truns a red exclamation mark on the server behaviour panel
    so i think the only way is to change the recordset behaviour is it? if so How to make it accept dynamic column names?
    thanks in advance.

    As bregent has already explained to you, customizing the recordset code will result in Dreamweaver no longer recognizing the server behavior. This isn't a problem, but it does mean that you need to lay out your dynamic text with the Bindings panel before making any changes. Once you have changed the recordset code, the Bindings panel will no longer recognize the recordset fields.
    Using a variable to choose a column name is quite simple, but you need to take some security measures to ensure that the value passed through the query string isn't attempting SQL injection. An effective way of doing this is to create an array of acceptable column names, and check that the value matches.
    // create array of acceptable values
    $valid = array('column_name1', 'column_name2', 'column_name3');
    // if the query string contains an acceptable column name, use it
    if (isset($_GET['colname']) && in_array($_GET['colname'], $valid)) {
      $col = $GET['colname'];
    } else {
      // set a default value if the submitted one was invalid
      $col = 'column_name1'
    You can then use $col directly in the SQL query.

  • How to change the font size of Column Heading  in webdynpro java

    Hi,
    I have a table with 4 columns, Can any one tell me how can i increase the text size and apply different fonts in webdynpro java application.
    Thanks
    Satish J

    Hi Satish,
    To expain it bit more clearly.
    Copy the images you need to use in the application
    Open your application in package explorer<Navigator>
    Now Expend node  src -> mimes -> components -> your application name with full package now right click on it and paste all the images here.
    Now go to web Dynpro prospective and use the  image name  (full name of image like columnName.jpg )to assign it to imageSource  property of the  Table_Header (Caption Header). The image will be seen.
    Hope this will clarify.
    Regards
    Narendra

  • How to change status in status profile at header level in background

    Hi,
    I have customized the standard sales order screen with status profile at header level.
    In that, I have set the check boxes as created, delivered, approved and rejected.
    The requirement is, whenever the order is created through VA01, need to check the order as 'Created' one in the status profile.
    It is not possible for the user to mark this one manaully. I think, this can be done via only exits.
    Please confirm this and how this can be proceed.
    Thanks,
    Thiyagu

    For maintaining header conditions, Choose  Header--> Conditions  from menu bar.
    For maintaining Delivery address, first select your Item, then click on "Truck" icon. Here you can maintain your delivery address.
    Similarly, Header Texts and Item Texts will be maintained in Header> Texts,  Item> Texts from the Menu Bar.
    Regards,
    Umakanth

  • How to change the font size of the header for a login page

    I am using theme 15. I want the header of my login page have a larger font size. Can anybody tell me how to do that?
    In HTML Header I put text like
    <a target="_blank" href="http://www.myweb.com"><img src="#WORKSPACE_IMAGES#my_header_logo_white.jpg" alt=http://www.myweb.com" title="Application" ></a> <center><b><font size="4">Web Management System</font></b></center>
    However, the font doesn't do anything.
    Any help is appreciated!!
    Edited by: user12048533 on Jun 14, 2010 8:19 AM

    In HTML Header I put textDid you mean Page Header Text? It wouldn't have done much of anything at all in the HTML Header...
    However, the font doesn't do anything.Yet another universal selector problem: see +{message:id=4184109}+
    How do I overwrite the style sheet? I am wondering if I change the default style sheet, does that also affect the other pages, which is not what I want. In that case you can just include the CSS inline, which will also get round the universal selector issue. You are also recommended to use a semantic HTML element instead of deprecated presentational elements like &lt;center&gt; and &lt;font&gt;. Assuming this text is the primary heading on the page, use &lt;h1&gt;:
    <img src="#WORKSPACE_IMAGES#my_header_logo_white.jpg" alt="" title="Application" />
    <h1 style="font-size: large; font-weight: bold; text-align: center;">Web Management System</h1>

  • How to change "send statements" to each customer

    Hi,
    Currently we are using send_statements attribute through concurrent request to change appropriatively for each customer. We are unable to group them into different classes and that's why we are following this approach.
    What I am thinking is, instead of concurrent request, I want to make visible this attribute in the customer form itself, so that users by themselves can change this value instead of coming to support team.
    How can we enable this "send_statements" attribute for each customer in the form itself?
    Thanks,
    Srinivas

    I actually signed in to the wrong account, went to the stand alone youtube app.. signed out and signed back in with the right one and it worked for me. Maybe try again?

  • How to change the color of a Jtable header

    Hi All
    I want to know how can i place a different foreground color on the table header in my JTable which is placed on an applet .
    Swaraj

    Then you will probably have to set the HeaderRenderer on that specific column.
    table.getColumn().setHeaderRender(yourRenderer)
    Just extend the defaultrenderer but change the colorsetting-methods. You might even pass the color along as a variable, so to easily change it....

Maybe you are looking for

  • First Page is Blank

    Hi All, I'm new to Oracle Report Builder, i created a report using Grouping on 'Type'. The result is ok but the problem is that i wanted every new 'Type' on new page. So i set the 'Page Break Before' to Yes. The result came out but the first page is

  • Add additional identities in webmail

    Does anyone know how to add additional identies to the webmail in Lion? I've used Roundcube webmail for years, but the Lion implementation is missing the little plus [+] icon at the bottom. I'm guessing this is intentional, but am unsure if its becau

  • Safari 6 crashing.

    As per my previous posts about Safari crashing after ML install, today I opened safari and while I was not doing anything with it it was OK, sat there for about 30mins. After about 5 min of working with it it crashed. Sent it's usual error report to

  • TS3662 please connect your iphone to a computer running iTunes to complete the activation process

    please connect your iphone to a computer running iTunes to complete the activation process.  what does this mean, why wont it just activate?

  • Issue when update ios for 7206 router

    hi all , the ios on router was 12.4 i put the ios c7200p-adventerprisek9-mz.152-4.M5.bin in disk2  , of router and added boot system flash disk2:/c7200p-adventerprisek9-mz.152-4.M5.bin after that  , i restarted the router i have the followign logs :