How to change the BADI to update the IO Hierarchy with characteristic nodes

I need to modify / enchance a standard hierarchy datasource as it updates my IO into floder nodes instead of characteristic nodes. Can anyone tell me the exact steps where I can modify the BADI for the standard source.
I'm trying to update 0CostElmnt hierarchy (Char 14) but my source data is (char 10).
Any help is highly appreciated.

I need to modify / enchance a standard hierarchy datasource as it updates my IO into floder nodes instead of characteristic nodes. Can anyone tell me the exact steps where I can modify the BADI for the standard source.
I'm trying to update 0CostElmnt hierarchy (Char 14) but my source data is (char 10).
Any help is highly appreciated.

Similar Messages

  • How long does it take to update the iPhone 4?

    How long does it take to update the iPhone 4?

        Interesting question, beachn! If I understand correctly, you're trying to see how long it will take to update the software/operating system of an iPhone 4. If that's the case, the during of a software update will depend greatly on the speed of your computer and/or your phone. I've seen the process vary from 4 minutes to an hour. If I did not understand correctly, please describe what you mean by update. Thanks!
    Dion M.
    VZW Support
    Follow us on Twitter www.twitter.com/vzwsupport

  • How to write a procedure for update the table

    Hi all
    can any body please tell me how to write a procedure to update the table......
    I have a table with about 10,000 records...........Now I have add a new column and I want to add values for that like
    registration Code Creidits
    13213 BBA
    1232 MCS
    I had add the creidit now i want to update the table.........the new value want to get by SQL like
    Creidit = select creidit from othere_table...........
    Hope u can understand my problem
    Thanks in advance
    Regards
    Shayan
    [email protected]

    Please try the following --
    update Program_reg a
    set TotalCreidit = ( select tot_cr <Accroding to your logic>
                                from Program_reg b
                                where a.Registration = b.Registration
                                and    a.Enrollment = b.Enrollment
                                and    a.code = b.code
    where a.Registration in ( select distinct Registration
                                        from Program_reg );
    N.B.: Not Tested....
    Regards.
    Satyaki De.

  • How to change datasource name based on the partition in configplan

    Hi
    Can any one please give me some solutions regarding how to change datasource name based on the partition in
    configplan.
    can't we do this in configuration plan?

    If you want to change template based on parameter. you have to use below syntax
    v_layout boolean
    V_LAYOUT:= FND_SUBMIT.add_layout(template_appl_name => 'SQLAP' -- application short name
    ,template_code => 'HUBAPAPN' -- template name
    ,template_language => 'en'
    ,template_territory => '00'
    ,output_format => 'PDF');
    Above can be used in plsql stored procedure before submitting Concurrent Program (Bi Publisher report) or may be you can try to add this code in Oracle reports after report or before report trigger
    Thanks
    Kamalakar

  • Hi! I'd like to purchase PS and LR, when I processing the payment, I find that my Adobe ID registered under US, However, I living in HK, how to change? can't process the payment being I did not have any ZIP code

    Hi! I'd like to purchase PS and LR, when I processing the payment, I find that my Adobe ID registered under US, However, I living in HK, how to change? can't process the payment being I did not have any ZIP code

    Hi Ivanlaiwh,
    I have been doing the modification regarding your account.
    You should now be able to proceed to a new purchase.
    Thanks.
    Arnaud.

  • How I change my Apple store to the Brazilian store. It is Canadian store now but I want it to be Brazilian.

    How I change my Apple store to the Brazilian store. It is Canadian store now but I want it to be Brazilian.

    Settings>iTunes and App Stores>Apple ID
    Tap your ID
    Tap View Apple ID
    Enter your password
    Go to country/region in the popup window to change the store

  • Change control process for updating the UPK topics

    Is anyone using a change control process for updating the UPK topics for JD Edwards EnterpriseOne?
    With publishing the whole module and everything linked, I am finding it difficult if a developer is updating a topic and maybe in the middle of it, but has it checked in to the server?
    I would like to hear what others may be doing to control this.
    Thank you,
    Linda Paar
    MOM Brands

    Hello,
    If you have not already joined the UPK community in My Oracle Support, I would recommend you ask your question in that forum as there is a lot of experience there. Additional information can be found in the announcement at the top of this forum: https://forums.oracle.com/forums/ann.jspa?annID=1175
    Best regards,
    Marc

  • HT4623 Approximately how long should it take to update the iOS 7.0.2.....?  So far it has taken over 8 hours and the bar is still not half way.

    Approximately how long should it take to update the iOS 7.0.2....?  So far it has been over 8 hours and the bar is not even half way....

    Something have gone wrong somewhere.
    Try and reset your iPad.
    Hold the Sleep and Home button down for about 10 seconds until you see the Apple Logo.

  • How can i calculate the percentages and update the progressBar in the splash screen form ?

    I created a splash screen form:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Threading;
    namespace GetHardwareInfo
    public partial class SplashScreen : Form
    public SplashScreen()
    InitializeComponent();
    private Mutex mutex = new Mutex();
    public void SyncedClose()
    mutex.WaitOne();
    this.Close();
    mutex.ReleaseMutex();
    public void UpdateProgressBar(int percentage)
    if (this.InvokeRequired)
    mutex.WaitOne();
    if (!IsDisposed)
    this.BeginInvoke(new Action<int>(UpdateProgresPRV), percentage);
    mutex.ReleaseMutex();
    else
    UpdateProgresPRV(percentage);
    private void UpdateProgresPRV(int per)
    if (progressBar1.IsDisposed) return;
    progressBar1.Value = per;
    private void SplashScreen_Load(object sender, EventArgs e)
    The SplashScreen form have in the designer image and on the image a progressBar1.
    Then in form1 i did in the top:
    List<string> WmiClassesKeys = new List<string>();
    IEnumerable<Control> controls;
    string comboBoxesNames;
    SplashScreen splash = new SplashScreen();
    And in the constructor:
    controls = LoopOverControls.GetAll(this, typeof(ComboBox));
    string[] lines = File.ReadAllLines(@"c:\wmiclasses\wmiclasses1.txt");
    foreach (string line in lines)
    foreach (ComboBox comboBox in controls.OfType<ComboBox>())
    if (line.StartsWith("ComboBox"))
    comboBoxesNames = line.Substring(14);
    else
    if (line.StartsWith("Classes"))
    if (comboBox.Name == comboBoxesNames)
    comboBox.Items.Add(line.Substring(14));
    foreach (ComboBox comboBox in controls.OfType<ComboBox>())
    comboBox.SelectedIndex = 0;
    The method GetAll is to loop over specific controls:
    public static IEnumerable<Control> GetAll(Control control, Type type)
    var controls = control.Controls.Cast<Control>();
    return controls.SelectMany(ctrl => GetAll(ctrl, type))
    .Concat(controls)
    .Where(c => c.GetType() == type);
    When i'm running the program it's taking some time to make the foreach loops in this time i need to show the SplashScreen and update the progressBar untill the foreach loops over.

    Don't use Application.Doevents. It's not required and can cause problems.
    I do not really grasp the approach you are taking here. So let me make a different suggestion:
    SplashScreen:
    using System;
    using System.Windows.Forms;
    using System.Threading;
    namespace WindowsFormsApplication1
    public partial class SplashScreen : Form
    private static SplashScreen DefaultInstance;
    public SplashScreen()
    InitializeComponent();
    public static void ShowDefaultInstance()
    Thread t = new Thread(TMain);
    t.Name = "SplashUI";
    t.Start();
    public static void CloseDefaultInstance()
    DefaultInstance.Invoke(new Action(DefaultInstance.Close));
    private static void TMain()
    DefaultInstance = new SplashScreen();
    DefaultInstance.Show();
    Application.Run(DefaultInstance);
    public static void UpdateProgress(int Progress)
    if (DefaultInstance.InvokeRequired)
    DefaultInstance.Invoke(new Action<int>(UpdateProgress), Progress);
    else
    DefaultInstance.progressBar1.Value = Progress;
    Form1:
    using System.Windows.Forms;
    namespace WindowsFormsApplication1
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    SplashScreen.ShowDefaultInstance();
    for (int i = 1; i<=100; i++)
    System.Threading.Thread.Sleep(20); // simulates work
    SplashScreen.UpdateProgress(i);
    SplashScreen.CloseDefaultInstance();
    EDIT: Please note that the progressbar itself is being animated by the system, so it might look slower than it really is. To workaround this, there are solutions available (you'll find them) that first set the value one higher than necessary, then
    back to the actual value.
    Edit #2: You do need a different thread, otherwise the UI is locked while the loop is running in your Form1's constructor.
    Armin

  • HT3500 How can change apple ID for updating of programs

    How can change apple ID for updating of programs?

    You need to delete them and then download them from the desired Apple ID.
    (85684)

  • Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoyi

    Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoying. What happened? Internet Explorer 8.0 did the same thing. This was one of the reasons why I started using Firefox to download all images. I went into Tools>Options and it only lets me set another folder. I dont want to set a specific folder I want it to always go to the last folder used. So what gives?
    == This happened ==
    Every time Firefox opened
    == possibly when the most recent updates were installed, a few days ago

    Thanks jscher 2000. I guess I didn't make it clear. "It restarts with all the addons activated, and resumes with the tabs that were open before closing it." IE, it's running fine now with all the extensions activated. Everything is OK now.
    So something in the Firefox code was causing the bad behavior. It's not essential that I find out what the problem was - I'm just curious. And if anybody else has this same problem, it might be nice to have it corrected at the source.

  • "The SPListItem being updated was not retrieved with all taxonomy fields." Exception while updating a taxaonomy field

    Hi All,
    I'm getting this exception "The SPListItem being updated was not retrieved with all taxonomy fields." when i try to programatically update a taxonomy field of a list item. Can any1 pls tell me why this exception occurs ???

    Recently hit this myself, as well.  Turns out it's a central admin setting that throttles the lookup return count, and Taxonomy fields are just lookups under the hood.
    Go into Central Administration, Manage Web Applications, select your web application, and then in the ribbon choose the dropdown under General Settings select Resource Throttling.  Find the setting for "List View Lookup Threshold" and raise
    it from the default 8 (can go up to 1000, but 20 is likely fine depending how many lookup fields you're pulling back in your SPListItem).

  • HT5625 I want my new iPad mini to use my new Apple ID, not the old one that pops up without seemingly giving me the choice to update the  Apple ID user name; as a result I haven't been able to update my APPS for some time.

    I want my new iPad mini to use my new Apple ID, not the old one that pops up without seemingly giving me the choice to update the  Apple ID user name; as a result I haven't been able to update my APPS for some time. I changed my apple ID when I got a new e mail address a few months ago .

    Any apps you have installed from the old AppleID will always be tied to that AppleID. You have no choice but to enter the password for the old AppleID if you want to update apps downloaded using that ID.
    The only way to stop being asked for the password for the old AppleID is to remove all apps from the device that were downloaded using that old AppleID.
    You'd then need to re-download (and re-purchase) any apps you want to keep using under the new AppleID.
    Apps cannot be transferred between AppleIDs.

  • Hi, updated my iphone where in the middle of updated the screen showed i must connect to itunes. after connecting iphone was updated but everything was deleted. was first time on itunes , so have no backup. can i recover my pics and contacts? please help

    hi, updated my iphone where in the middle of updated the screen showed i must connect to itunes. after connecting to itunes my  iphone was updated but everything was deleted. was first time on itunes , so have no backup. can i recover my pics and contacts? please help

    If this has happened more than once the problem is likely on your PC.
    See here: http://www.apple.com/support/iphone/assistant/itunes/

  • HT201412 I have to hit my home button a half dozen times to make it work.  I've tried to reset the phone and updated the software.  Is this a hardward problem?

    I have to hit my home button a half dozen times to make it work.  I've tried to reset the phone and update the sorfware.  Is this a hardware problem?  Where do I go to get it fixed?

    At Apple Store this is handled with Replacement iPhone exactly like yours. If there is AppleCare or Warranty it will be covered, otherwise there will be a charge of $150 - $199 depending on iPhone model. If iPhone 5 it will be covered. If you want to try Virtual Home Button. Settings App > General > Accessibility > Assistive Touch > ON > tap new white screen button > Home.

Maybe you are looking for