Merging two Infoproviders data with FOX

Hi all,
I have a Multiprovider with the underlying Sales Quantity Realtime Infocube and Current Material Price DSO.
I want to read the Material Price for every Material and Plant combinations from Material Price DSO and write it into Sales Quantity Realtime Infocube with the help of FOX.
Sales Quantity Infocube looks like:
Marketing entity Statistical Material Sales District Customer Profit Center Plant Material Billing Qty and and an empty Current Std Price field which is to be filled from Material Price DSO.
Material Price DSO looks like:
Material Plant Current Std Price Currency
How can I merge this data with the help of FOX. I don’t understand the functionality of Reference Data and how it operates. I tried this, but doesn’t work.
Please provide your valuable inputs and it is very urgent for me.
Thanks,
Ram

Hi,
look it up here, it a how-to paper for loops in fox.
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6b80d590-0201-0010-7f84-d57f4adc5a3c
regards
Cornelia

Similar Messages

  • Hello, I recently bought a new Laptop and wanted to sync all my data from the old one. Accidentaly I merged my Sync Data with Device data, how can i recover it?

    hello, i recently merged my Sync data with New device Data , because the option MERGE THIS DEVIC's DATA WITH SYNC DATA was checked, how can i recover my stuff back ? from a previous state

    Sorry, SYNC don't have that option right now

  • Merging two history.dat files

    I have two history.dat files and want to merge them into one. Is there any way to do this?
    I tried to search solution and found utility that allows viewing and exporting data from Mork format: http://www.nirsoft.net/utils/mozilla_history_view.html, but it cannot import into this format. Also there is Firefox Sync addon, but it does not support firefox 2. If there is a way to convert history from places.sqlite to history.dat, than it will do for me.
    I have mozilla firefox 2.0.0.20 and Windows XP

    You're dealing with an abandoned file format, which hasn't been used in Firefox in a few years. As far as Mork databases go, see this and read the criticisms. <br />
    http://en.wikipedia.org/wiki/Mork_%28file_format%29
    If that Nirsoft utility program doesn't have the capability of merging 2 Mork databases, you're probably SOL. That was the only tool that I ever found back in the days that Mozilla still used Mork files. I never used that utility program enough to recall any of what functions it has.
    Besides that, why are you still using a Firefox 2.0.0.x version? <br />
    Support ended a few years ago and it should be left to RIP.

  • How to merge two XML's with JDOM?

    How to merge two xmls's using jdom? like:
    is there a way to add the complete content one xml into the parent node of another xml?
    //in.xml
    <?xml version="1.0"?>
    <people>
    <person>
      <name>ABC</name>
      <email>[email protected]</email>
    </person>
    </people>
    //out.xml
    <?xml version="1.0"?>
    <address>
    <city> abccounty</city>
    <state> abcstate</state>
    </address>
    Merged XML:
    <?xml version="1.0"?>
    <people>
    <person>
      <name>xyz</name>
      <email>[email protected]</email>
    </person>
    <address>
    <city> abccounty</city>
    <state> abcstate</state>
    </address>
    </people>
    import java.util.List;
    import org.jdom.Document;
    import org.jdom.Element;
    import org.jdom.input.SAXBuilder;
    import org.jdom.output.Format;
    import org.jdom.output.XMLOutputter;
    public class MergeXMLS {
         public static void main(String[] args) {
              try{
                  SAXBuilder builder = new SAXBuilder();
                  Document books = builder.build("D:/in.xml");
                  Document onebook = builder.build("D:/out.xml");
                  Element root = books.getRootElement();
                  List rows = root.getChildren();
                  for (int i = 0; i < rows.size(); i++) {
                      Element row = (Element) rows.get(i);
                      onebook.getRootElement().addContent(row.detach());
                      System.out.println(row.getName());
                  new XMLOutputter(Format.getPrettyFormat()).output(onebook, System.out);
              }catch(Exception e){
                   e.printStackTrace();
    }

    The above code only add's the first node.
    I changed the code little differently to
                  SAXBuilder builder = new SAXBuilder();
                  Document books = builder.build("D:/in.xml");
                  Document onebook = builder.build("D:/out.xml");
                 //trying to add second xml into the first
                  books.getRootElement().addContent(onebook.getRootElement().getContent()); 
                  new XMLOutputter(Format.getPrettyFormat()).output(books, System.out);
    here is the exception from the above code:
    org.jdom.IllegalAddException: The Content already has an existing parent "address"
         at org.jdom.ContentList.add(ContentList.java:218)
         at org.jdom.ContentList.add(ContentList.java:140)

  • How to merge two java files with InputDialog to select?Please help me!?

    //Addition Java application
    import javax.swing.JOptionPane; // import the class
    public class Addition {
    // main method
    public static void main(String[] args)
    String firstNumber, secondNumber;
    int number1, number2, sum;
    // read the first number
    firstNumber = JOptionPane.showInputDialog("Please enter a integer: ");
    // read the second number
    secondNumber = JOptionPane.showInputDialog("Please enter another integer: ");
    // data type conversion
    number1 = Integer.parseInt(firstNumber);
    number2 = Integer.parseInt(secondNumber);
    sum = number1 + number2;
    // display the result
    JOptionPane.showMessageDialog(null, "The sum is " + sum + ".", "Results", JOptionPane.PLAIN_MESSAGE);
    System.exit(0);
    //Multiplication Java Application
    import javax.swing.JOptionPane;
    public class Multiplication5
    public static void main(String args[])
    int number1, number2, number3, number4, number5, product;
    String firstNumber, secondNumber, thirdNumber, forthNumber, fifthNumber ;
    firstNumber =
    JOptionPane.showInputDialog("Please input an integer");
    secondNumber =
    JOptionPane.showInputDialog("Please input another integer");
    thirdNumber =
    JOptionPane.showInputDialog("Please input the third integer");
    forthNumber =
    JOptionPane.showInputDialog("Please input the forth integer");
    fifthNumber =
    JOptionPane.showInputDialog("Please input the fifth integer");
    number1 = Integer.parseInt(firstNumber);
    number2 = Integer.parseInt(secondNumber);
    number3 = Integer.parseInt(thirdNumber);
    number4 = Integer.parseInt(forthNumber);
    number5 = Integer.parseInt(fifthNumber);
    product = number1 * number2 * number3 * number4 * number5;
    JOptionPane.showMessageDialog(null, "The product is " + product, "Results", JOptionPane.PLAIN_MESSAGE);
    System.exit(0);
    I seek for help to merge above two java application files.
    I need to call JoptionPane.showInputDialog to prompt the user to input the operation, 1 for addition, 2 for multiplication. In this dialog, the user is expected to enter the integer of 1 or 2 for the calculation.
    Please help me ! Thank you!

    Hi CRay,
    You just need to call the main methods of the 2 classes according to "1" or "2" entered.
    It is better if the "multiplication" and "addition" are declared as methods rather than in main methods.
    Example:-
    public static void Addition()
    Then call
    Addition.addition();
    than
    Addition.main(new String[]{});
    as shown below.
    import javax.swing.JOptionPane; // import the class
    public class Test{
        public static void main(String[] args){
            // read which  operation to perform
            String operation = JOptionPane.showInputDialog("Please enter which operation : ");
            if(operation.equals("1")){
                Addition.main(new String[]{});
            else{
                Multiplication5.main(new String[]{});
    }Rose

  • Data Merge, description field data with comma in text

    I work with Data Merge, but my description field data have comma in text, occurring a problem when load to Indesign, when i exclud de field description with comma the action occur perfectly. Have solunction to this?

    Hi Peter, i dont have problems with =concatenate on excel, and i think who you formula is wrong. i use exactly =CONCATENAR(A2&","&B2&","&C2) and works perfectly.
    My problem is with commas in texts, see comma B2
    indesign recognizes it as the delimiter and wraps the text to another field, ok?
    i use quotes  eg: B2( "Dias melhores, para sempre")  to delimiter text like the example
    when I load the data source InDesign does not recognize the quotes and breaks lines
    the text  "Dias melhores, para sempre" have to show on <<slogan>> but

  • Need to Merge Excel Spreadsheet data with Word Disposition Sheet

    I work for a Medical Devices manufacturer, and in order to keep track of our failures, we enter data into an Excel Spreadsheet and then print out a Disposition form containing similar information, which then gets attached to the Device folder. I would like
    a way to cut down the time, by entering the info only once (Via Word, Excel, Access), and having specific info copied to a new field in the existing Spreadsheet and a new Word Document. What is the best way to do this?
    Thanks

    Hi,
    From your description, my understanding is that you want to enter the info with one of the Excel/Word/Access, the similar info will auto fill to the other Office documents. If it is correct, your required need some macro via VBA code. If you have further
    question about coding, I recommend you post the question to MSDN forum:
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    If I misunderstanding something, please feel free let us know. I'll appreciate that you explain the requested more clarity.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Merging two columns with muliple rows in Numbers '09

    I am trying to merge two columns each with 100 rows and related data. Column one is the street address and column two have office numbers. The final result would be one column with 100 rows with address and office numbers.
    Ed Carreon

    sanpanza wrote:
    I am trying to merge two columns each with 100 rows and related data. Column one is the street address and column two have office numbers. The final result would be one column with 100 rows with address and office numbers.
    Ed Carreon
    Hi Ed,
    Use the CONCATENATE() function.
    Street address in column D, Office number in Column E
    100 Smith ST            212
    Formula: =CONCATENATE(E," ",D)
    Result:
    212 100 Smith ST
    Note the formula has three arguments, the reference to column E, a text literal (" ") containing a single space, and a reference to column D.
    Regards,
    Barry

  • Merge of two same items with different Qty in po

    Hi Experts,
    Is it possible to merge two Same items with different Quantity into 1.
    For Eg:- 2 similar  items  with qty 2 & 3 must show 5 qty appearing once.Is it possible through Transnotification what should be the query.
    Mona

    Hi Mona,
    If you want to display a Purchase Order on screen summarized by item, set the "Summary Type"  to "By Item" (by default it is "No Summary"). The PO lines will then be summarized by item with total quantity for each item.
    If you want to display it on the printout then you need to modify the PLD. It is quite easy actually. You can use the Repetitive Area Footer to display the summary of each item and set all fields in the Repetitive Area to be not visible and set the height to minimum height.
    Cheers,
    Marini

  • Merge counter data with analog data

    Greetings,
    I need to measure a variety of analog signals and RPM signals and save the data to a file. I had intended to use counters for the RPM signals. The problem is that the counters use implicit timing which is totally asynchronous to the ai sample clock. Therefore, there is no time or sample correlation from the counter data to the analog data. I would like to merge the counter data with the analog data into a waveform array. Does anyone know of a method that would allow such a merger?
    Phillip Neir
    GM Engineering

    Thank you for your response. I understand what you are suggesting and have used that technique before for displaying data. The first, and foremost, problem is that there is inherently no timestamp and no regularity from most frequency/period measurements. Thus, there is no time relationship to other channels. I was hoping for a technique that would synthesize a waveform from asynchronous, non-regular data that could be related to other waveform data. This may be an insurmountable problem and I may just have to revert to frequency-to-voltage converters.
    Phillip Neir
    GM Engineering

  • Issue with Merging two files in BPM

    Hi,
    I need to merge two files (Balance and transaction) with correlation is defined from ID, Date and Accountnumber..
    Sometimes, when there are no transaction records, then balanace file will come up number "0"
    Balance file:
    MDk;1728;175;02.09.11;781961.09;0.00;0.00;781961.09;;;;;;;;;0
    MDk;8574;175;02.09.11;4462;1112;104098800;104102150;;;;;;;;;2
    from the above file, two accounts..
    MDk;1728;  --- with zero transaction record
    MDk;8574;  --- with two transaction records
    Transaction file:
    MDk;8574;175;02.09.11;;DEBIT;;;;;-1112;;0;02.09.11;;;;20555;;;037;
    MDk;8574;175;02.09.11;;CREDIT;;;;;104098800;;0;02.09.11;;;;;;;099;
    We are using Correlation to merge the files by using the fields (MDk;8574;175;02.09.11)
    Now the issue is the BPM is not working as the correlation is not matching as the balance file consists of a row (with zero transaction record) which is not present in transaction file.
    I have to ignore the first record in balance file as it contains 0 transaction data which means there are no records for this account in transaction file.
    How can I delete those records before going to merge condition? Is there any thing i can do in balance file adapter?
    Any suggestions please?
    Thanks
    Deepthi

    Hi Ramesh,
    This is the problem at the first step of the BPM where we will receive the files.
    Start> FORK (Rec1 & Rec 2)>TransforMap( Merge_to_targetfile )-->SendtoReceiver  -->END
    It is failing at step1 (Fork), where the files are not matching according to correlation condition which we set.
    ie. ID, Date, Accountnumber.
    As the transaction file doesn't contain the record "MDk;1728;175;02.09.11" which is present in Balance file, the correlation is not  matching. Hence it is failed. It is not even reaching to map
    As correlation is mandatory to receive two matching files, it is failing here..

  • Multiprovider - two infoproviders with different levels of summarization

    Hi Gurus,
                  I need to create a report which requires data from two infoproviders, I am thinking of building a multi provider on top of the two infoprovider . I wanted to know if its possible to create a multiprovider on top of two infoprovider with different level of summary. Any suggestions with be very helpful for me.
    Kindly let me know..thanks in advance...
    cheers,
    Tuck

    Hi
    Two different level of summarization will throw inconsistency in reporting
    It is not advisable
    Regards
    N Ganesh

  • How to merge two Outlook 2010 pst data files?

    How to merge two Outlook 2010 pst data files?

    Easy way: with the one you want to use open in Outlook and the other one not in your profile, go to File, Open, Import.
    If you only want to merge some content, open both pst files in outlook and drag between folders. For calendar, use a list view to see all of the appointments.
    Diane Poremsky [MVP - Outlook]
    Outlook Daily Tips |
    Outlook & Exchange Solutions Center
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • I am showing two security updates with a 1969 date is that right

    I am showing two security updates with a 1969 date are those right My fox fire start very slow very very slow
    == This happened ==
    Every time Firefox opened
    == about a month ago

    Firefox must have had a problem getting the time for the update from your system clock, and thus the time of that update is '''zero'''. Epoch (the beginning of time) for Unix is 1-1-1970 midnight GMT, less your offset from GMT - which makes it 12-31-1969 and like 2 to 6 pm on North America.

  • How to process reports with two different date fields

    Morning all,
    This question is somewhat similar to what I asked few days back. I created two different reports for two different departments (Credit Control and Free of Charge Control).
    These two reports pull data from two different date fields and has different status check ups.
    Few days back my director requested me if he can have both reports in one report. That is when I asked question from all of you regarding two reports.
    Anyhow, that was created by implementing two sub reports however, the director asked me to combine the two different reports into one in such a way that the output records should be added up with each other hence one single report with all combined data of Credit Control and Free of Charges (not two sub reports in one report).
    The problem here which I am getting is that, both reports uses two different date fields. I can live with two different statuses as that can be easily done within formula/RT however how to create a report with Report Selection Formula condition which looks in both date fields and produces results accordingly?
    I have tried this by not putting any condition in report selection formula and ran the report, it produced total results from past 6 years.
    Any ideas how to produce combined report which has two different date fields?
    Many thanks in advance
    Regards
    Jehanzeb
    What I

    Charliy,
    No the both dates are from two different databases, tables and fields. The Credit date field is from KLAB database under max table where as the FOC date field is from SAE database under maxmast table. Klab date is under credit2 table where as foc date is under order header table.
    So its more like this:
    Klab->Max-Credit2--->Credit_date
    Sae->Maxmast->Order_header---Date entered.
    two dates totally different tables, dbs
    however, I will try your idea too and see if that works.
    Regards
    Jehanzeb

Maybe you are looking for

  • Recording to removable media

    Is it possible to transfer recorded programs from the DVR to a DVD or VHS tape?  Is it possible to record directly to my computer hard drive and/or DVD?

  • RWIN to automatically add line items in FI document

    Hi all! I wish to know if is possible to automatically add line items in a FI document via RWIN and how. My final goal is the following: A user try to create an FI document with FB01 transaction. He/She insert the appropriate line items manually. He/

  • How to install TOP command

    Can anyone guide me how to install TOP command in solaris 10, 64bit OS? thanks

  • Need clarification on ODBC connection in FDMEE custom sripts

    Hi All, I have a requirement to export data from table to text file in FDMEE. I am trying to create custom script for the same. (We did is in FDM) Can anyone please clarify if we can use below connection string in custom script as well. I have seen e

  • No audio with AVCHD with Premiere Pro CC

    This seems to be a common problem but I have yet to find a solution.  Like others out there, I can import the video from my Sony camcorder just fine but there is no audio (neither stereo or 5.1).  I have tried importing and using the Media Browser.