I need Information on this intresting OBJECT

On a monthly basis, after all data has been fed into One Source and the monthly One Source calculations have been performed, an extract will be run from One Source , converted via XI and loaded to BW.  The current plants that will be extracted from One Source are:  6101, 6102, 6103, 6201, 6202, 6203, 6301, 6302, 6601, and 6602.  As additional plants get converted to SAP; they will automatically start appearing on this extract.    The One Source extract file will be pulled from a corporate server for processing. (One source is the Data Warehouse)

Please post this in BI section

Similar Messages

  • I need Information on this intresting OBJECT and i want to know what is XI

    On a monthly basis, after all data has been fed into One Source and the monthly One Source calculations have been performed, an extract will be run from One Source , converted via XI and loaded to BW.  The current plants that will be extracted from One Source are:  6101, 6102, 6103, 6201, 6202, 6203, 6301, 6302, 6601, and 6602.  As additional plants get converted to SAP; they will automatically start appearing on this extract.    The One Source extract file will be pulled from a corporate server for processing. (One source is the Data Warehouse).

    I do not see any "Interesting OBJECT" in your post - as for knowing about XI - there is an entire forum dedicated to the same... you can find your answers there...

  • Hello.  I just upgraded to Lion OS X 10.7.3.  I was previously running 10.5.7 which included the ENTOURAGE application.  how do I retrieve needed information from this application that no longer runs on this new system?

    Hello.  I just upgraded to Lion OS X 10.7.3.  I was previously running 10.5.7 which included the ENTOURAGE application.  how do I retrieve needed information from this application that no longer runs on this new system?

    The file you'll be looking for that has most of what you're looking for - messages, address book, etc. is the Entourage Database.  The verison of Microsoft Office I run (on Lion) is Office 2008.  By default the Entourage Database for this verison is at user/Documents/Microsoft User Data/Office 2008 Identities/Main Identity/Database.  That folder (Main Identitty) also has your rules, signatures, and such.  You'll have to recover this file from whatever backup you have.  If you have a different version of Entourage, the file location will be a little diffferent.
    Good luck
    srb

  • I need information on this Object

    Hi, can one help me in this object.
                    On a monthly basis, after all data has been fed into One Source and the monthly One Source calculations have been performed, an extract will be run from One Source , converted via XI and loaded to BW.  The current plants that will be extracted from One Source are:  6101, 6102, 6103, 6201, 6202, 6203, 6301, 6302, 6601, and 6602.  As additional plants get converted to SAP; they will automatically start appearing on this extract.    The One Source extract file will be pulled from a corporate server for processing. (One source is the Data Warehouse)

    Hi Rahul,
    what expecting you exctly, hot to aciheve your requiremnt in XI.
    Suppose oneSource is File System.
    you want to send data to BI. Use File to ABAP Proxy .
    LET ME KNOW YOUR REQUIREMENT EXACTLY.
    Regards,
    Raj

  • Need Information for Transferring the Object

    Hy To every I need ur help plz tell whats is the wrong thing em doing.
    I am sending a (MessageSerialize) Object Of org.jdesktop.jdic.desktop.Message through Socket problem is when i receive object the gets receive but the contents of objects doest not exists in the object which i have set before sending
    Em pasting my code here please help me
    **Server Code**_
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package com.communication.to.server;
    import com.printing.utility.*;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.net.ServerSocket;
    import java.net.Socket;
    import org.jdesktop.jdic.desktop.Desktop;
    import org.jdesktop.jdic.desktop.Message;
    * @author ABid
    * @Description This class is used to recieve Data/Files throug Socket From Server
    public class FileServer extends Thread {
    private ServerSocket serverSocket;
    public static void main(String argv[]) throws Exception {
    new FileServer();
    public FileServer() throws Exception {
    serverSocket = new ServerSocket(4000);
    System.out.println("Server listening on port 4000.");
    this.start();
    public void run() {
    while (true) {
    try {
    System.out.println("Waiting for connections.");
    Socket client = serverSocket.accept();
    System.out.println("Accepted a connection from: " +
    client.getInetAddress());
    Connect c = new Connect(client);
    } catch (Exception e) {
    class Connect extends Thread {
    private Socket client = null;
    private ObjectInputStream ois = null;
    private ObjectOutputStream oos = null;
    public Connect() {
    public Connect(Socket clientSocket) {
    client = clientSocket;
    try {
    ois = new ObjectInputStream(client.getInputStream());
    oos = new ObjectOutputStream(client.getOutputStream());
    } catch (Exception e1) {
    try {
    client.close();
    } catch (Exception e) {
    System.out.println(e.getMessage());
    return;
    this.start();
    public void run() {
    try {
    String workType = (String) ois.readObject();
    if (workType.equalsIgnoreCase("Attachments")) {
    String printDirectoy = "Attachments";
    Message ms = new MessageSerialize();
    ms = (MessageSerialize)ois.readObject();
    Desktop.mail(ms);
    ois.close();
    oos.close();
    client.close();
    } catch (Exception e) {
    e.printStackTrace();
    client COde*_+
    //This is code for sending Object
    public static void sendMessageToMail() {
    ObjectOutputStream oos = null;
    ObjectInputStream ois = null;
    //File file = new File("G://FileG.pdf");
    try {
    Socket socket = new Socket("localhost", 4000);
    oos = new ObjectOutputStream(socket.getOutputStream());
    ois = new ObjectInputStream(socket.getInputStream());
    //byte[] mybytearray = new byte[(int) file.length()];
    //FileInputStream fis = new FileInputStream(file);
    //BufferedInputStream bis = new BufferedInputStream(fis);
    //bis.read(mybytearray, 0, mybytearray.length);
    System.out.println("Sending...");
    oos.writeObject("Attachments"); // Type of Work here the String is used for Printing purpose
    //oos.writeObject("HP Deskjet 3900 Series"); // Name of the printer
    Message message = new MessageSerialize();
    //ms.setMessage(message);
    message.setBody("Hello");
    List toAdd = new ArrayList();
    toAdd.add("[email protected]");
    List attachements = new ArrayList();
    attachements.add("g://file.txt");
    try {
    message.setAttachments(attachements);
    } catch (Exception exception) {
    oos.writeObject(message);
    //oos.writeObject(file.getName());//name of the file
    //oos.write(mybytearray, 0, mybytearray.length); // file contents
    //oos.writeObject(so);
    oos.flush();
    oos.close();
    ois.close();
    } catch (Exception exception) {
    exception.printStackTrace();
    "Serialized Object Class "
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package com.communication.to.server;
    import java.io.IOException;
    import java.io.*;
    import java.io.Serializable;
    import java.util.*;
    import org.jdesktop.jdic.desktop.Message;
    * @author ABid
    public class MessageSerialize extends Message implements Serializable {
    public MessageSerialize() {
    Thanks in Advance
    Abid

    i made it like thisWhy?
    You posted that code on 11/09/2008 20:02 and asked why it wouldn't work.
    I told you why on 12/09/2008 08:48 (reply 2 of 8).
    So now on 12/09/2008 16:59 (reply 7 of 8) you've tried it again.
    Tell me why that wasn't just a complete waste of time.
    but doesn't work again
    Of course it 'doesn't work again.' It never did. It never will. Stop it. Why did you think it would work? After it didn't? After you started the thread to ask why? After I told you why?
    This is just bizarre.
    Now what will you say.Exactly what I said before. And I didn't say to extend Message. I told you why you can't do it that way.+
    OK?
    You have to construct a serializable class. You have to define the data you want serialized in that class. OK? In this case you want to transport data from a org.jdesktop.jdic.Message, so your new class will have to have the same fields and the same methods.
    Isn't that obvious?
    could you please mention i want to send files over network dont want to create them on disk through socket.This doesn't make sense either. You want files but you don't want them on the disk?
    You'll have to explain yourself better than that if you want assistance here.

  • Need information on this Query

    Hi guys,
    can someone explain how this query works indetail.
    SELECT DISTINCT (a.sal) FROM EMP A WHERE &N = (SELECT COUNT (DISTINCT (b.sal)) FROM EMP B WHERE a.sal<=b.sal);
    Advance thanks for your help.
    Kadiyala
    Edited by: user10223931 on Mar 4, 2009 8:17 PM

    Hi,
    SELECT DISTINCT (a.sal),(SELECT COUNT (DISTINCT (b.sal)) FROM EMP B WHERE a.sal<=b.sal) FROM EMP A order by 2 descI hope this will help you.
    The query will rank the records as per salary amount. and you will get the salary amount of the specified rank.

  • Need info on this K_HIERARCHY_TABLES_READ function module

    Hi Experts,
    I need information on this function module. what exactly this function module will do.
    looking for your reply
    Regards,
    Kali Pramod

    It's used for retrieving group information - cost center groups, cost element groups, order groups, etc.
    You can do a "where used" list to see how it is called.
    Rob

  • I need to get the cluster information using"MSCluster.Cluster" object

    Hi,
    Please anyone solve my problem ? I need to get the cluster information using"MSCluster.Cluster" object.
    Set objCluster = CreateObject("MSCluster.Cluster")
    objCluster .open <clustername>
    If i run the vbscript " Microsoft VBScript runtime error: ActiveX component can't create object: 'MSCluster.Cluster' " error is thrown.
    Kindly explain what is the issue and what can i do ? 
    -Sundar.

    this question was closed and answered a long time ago.
    Post questions about WS2012 in th WS2012 forum.
    The cluster object will no longer work in WS2012.  Use the supplied CmdLets and utilities.
    post future questions in the WS2012 forum.
    ¯\_(ツ)_/¯

  • Could Not Find Installation Information for this Machine" I need Help!

    i accidentaly erased the main drive and now i am trying hard to reinstal the OS X again but i constantly keep seeing this "could not find installation information for this machine" i need help....

    hello,
    I had the same problem yesterday, just go to a place with a better internet conncetion, it will work fine...
    good luck

  • Needed information on lock objects

    needed information regarding lock objects

    hi
    The lock mode controls whether several users can access data records at the same time. The
    lock mode can be assigned separately for each table in the lock object. When the lock is set, the
    corresponding lock entry is stored in the lock table of the system for each table.
    Access by more than one user can be synchronized in the following ways:
    <b> Exclusive lock</b>: The locked data can only be displayed or edited by a single user. A
    request for another exclusive lock or for a shared lock is rejected.
      <b>Shared lock</b>: More than one user can access the locked data at the same time in display
    mode. A request for another shared lock is accepted, even if it comes from another user.
    An exclusive lock is rejected.
      <b>Exclusive but not cumulative</b>: Exclusive locks can be requested several times from the
    same transaction and are processed successively. In contrast, exclusive but not
    cumulative locks can be called only once from the same transaction. All other lock
    requests are rejected.
    regards
    Nagesh.Paruchuri

  • HT1688 i need to delete this email acct off  my phone but cant because i did it from the link, the information that i have in is wrong. What to do?

    i need to delete this email acct off  my phone but cant because i did it from the link, the information that i have in is wrong. What to do?

    Settings>Mail,Contacts,Calendars - go to the Accounts section, choose the account to delete, scroll to the resulting page and tap "Delete Account".

  • Do I need the "Wildcard in House" in the Settings, General, Profile. This says that it is expiring and cannot find any information about this from Apple or Verizon.

    Do I need the "Wildcard in House" in the Settings, General, Profile?
    This says that it is expiring and cannot find any information about this from Apple or Verizon.

    Apple haven't yet signed agreements with yell.com and similar local information services here in the UK or in europe. The rumor is that in the UK and others, will get it sometime towards the beginning of the year.

  • Windows has the following information about this file type. This page will help you find software needed to open your file. Cannot get SEO quale loaded please help

    I cannot download as I keep getting this when I try
    Windows has the following information about this file type. This page will help you find software needed to open your file.
    File Type: Firefox Browser Extension
    File Extension: .xpi
    Description: Compressed archive of primary file installation components – used by the Mozilla installer script to setup and install various applications. You may search the following Web site for related software and information:
    Please advise how I go about downloading

    despite the workaround, it doesn't fix the real problem. It shouldn't be a huge deal for adobe to add support for multiple svn versions. Dreamweaver is the first tool i've used that works with svn that doesn't support several types of svn meta data. If they're going to claim that Dreamweaver supports svn is should actually support svn, the current version, not a version several years old. This should have been among the first patches released, or at least after snow leopard came out (and packaged with it the current version of svn).
    does anyone know if the code that handles meta data formatting is something that is human readable, or where it might be, or is it in compiled code.
    i signed up for the forums, for the sole purpose of being able to vent about this very frustrating and disappointing situation.

  • SSIS 2008 generates Registration information for this application needs to be updated - VSTA.exe

    I am getting the following error in SQL Server 2008 R2 (build 10.50.1734) x86 platform BI Development Studio (BIDS) 9.0.30729.4462 with .NET Framework 3.5 SP1 in a Integration Services project.
    I have a package with a Data Flow task that contains a Script Component. I edit it and attempt to edit script and I get the following error:
    Registration information for this application needs to be updated. To update, log on as an administrator and run this command:
    C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\VSTA.exe /HostID SSIS_ScriptComponent /setup
    About a minute later, another box displays with the following message
    Cannot show Visual Studio Tools for Applications editor.
    Additional information:
    The VSTA designer failed to load. “System.Runtime.InteropServices.COMExeption (0x80004005) Error HRESULT E_FAIL has been returned from a call to a COM component at VSTADTAProvider.Interop.VSTADTEProiderClass.GetDTE(String bysHostID, Uint32 dwTimeout).
    I execute the command above running as an administrator (there are no output results). BIDS displays the same symptoms.
    This happens on a Windows 7 Enterprise (I said Professional in an earlier but un-related post) workstation x86 platform. I get the error even if I create a new script component in a new data flow task in a new package. I also have VS 2010 Premium
    Edition (build 10.0.30319.1 RTMRel) installed on this workstation (if that matters). I also uninstalled and re-installed SQL Server from my workstation. My colleague does
    not experience this error, who should have a similarily configured PC. Does anyone have any ideas? Thanks.
    Greg

    Old thread, but I was having the exact same problem and fixed it, so maybe this will help someone else in the future.
    My problem is that I was confusing the concept of running as an administrator in Windows 7.  I was logged into my machine as an administrator, but I was not actually running the "VSTA /HostID SSIS_ScriptComponent /setup" command as an administrator. 
    When you don't run as an administrator, the command does nothing - no message, nothing.
    I ran the Command Prompt as an Administrator while logged in as a user with Administrator privileges (right click on Command Prompt, select "Run As Administrator").  Then, from that command prompt, I ran "VSTA /HostID SSIS_ScriptComponent /setup", VSTA
    did its magic, and then everything worked.
    After all these years, that explicit "Run As Administrator" concept still trips me up sometimes.

  • Need to find the dependent object details for an object.

    Hi,
    Is there any query to find the dependent object details for any object. Like if mview is built on a table, then i should be able to find the table name with out checking code of the mview. Thanks in-advance for your support. similar way for view and functions or procedures etc...
    Regards
    DBA.

    Hi all,
    Thanks a lot for your inputs. seems i have not given full details in my post. I need to have a SQL Query to find the dependent object details not DDL.
    if i give a metriealized view name, i should get the base table names directly not DDLs...
    if i give index name i should get its corresponding table name(off course i got this already)...
    if i give a function name, i should get all the tables which are being in the function...etc...
    i am looking for a script which will cover all the aspects.....i hope i have given now enough information for this....
    Regards
    DBA.

Maybe you are looking for