I want to load the data afterbeing data loaded

after the data is being loaded into the cube,i want to load the data for the particular
infoobject(e.g.0equipment),is it possible,how ?

hi
this is srinivas.thanx for giving me the helpful answer.
bye..bye

Similar Messages

  • I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?

    I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?
    Attachments:
    try2.txt ‏2 KB
    read_array.vi ‏21 KB

    The problem is in the delimiters in your text file. By default, Read From Spreadsheet File.vi expects a tab delimited file. You can specify a delimiter (like a space), but Read From Spreadsheet File.vi has a problem with repeated delimiters: if you specify a single space as a delimiter and Read From Spreadsheet File.vi finds two spaces back-to-back, it stops reading that line. Your file (as I got it from your earlier post) is delimited by 4 spaces.
    Here are some of your choices to fix your problem.
    1. Change the source file to a tab delimited file. Your VI will then run as is.
    2. Change the source file to be delimited by a single space (rather than 4), then wire a string constant containing one space to the delimiter input of Read From Spreadsheet File.vi.
    3. Wire a string constant containing 4 spaces to the delimiter input of Read From Spreadsheet File.vi. Then your text file will run as is.
    Depending on where your text file comes from (see more comments below), I'd vote for choice 1: a tab delimited text file. It's the most common text output of spreadsheet programs.
    Comments for choices 1 and 2: Where does the text file come from? Is it automatically generated or manually generated? Will it be generated multiple times or just once? If it's manually generated or generated just once, you can use any text editor to change 4 spaces to a tab or to a single space. Note: if you want to change it to a tab delimited file, you can't enter a tab directly into a box in the search & replace dialog of many programs like notepad, but you can do a cut and paste. Before you start your search and replace (just in the text window of the editor), press tab. A tab character will be entered. Press Shift-LeftArrow (not Backspace) to highlight the tab character. Press Ctrl-X to cut the tab character. Start your search and replace (Ctrl-H in notepad in Windows 2000). Click into the Find What box. Enter four spaces. Click into the Replace With box. Press Ctrl-V to paste the tab character. And another thing: older versions of notepad don't have search and replace. Use any editor or word processor that does.

  • HT1382 how can I restore my back up files from my laptop? i want to see the dates and time that I backed up  my files. is it posssible?

    how can I restore my back up files from my laptop? i want to see the dates and time that I backed up  my files. is it posssible?

    What backed up files?
    Available backups for an iOS device can be found in Edit > Preferences > Devices.

  • When insert my lexar USB flash drive I get the message that the disk was not readable by this computer.  It has worked previous to this and I do not want to lose the data by reformatting the drive.  How can I reformat this drive and not lose my data?

    When insert my lexar USB flash drive I get the message that the disk was not readable by this computer.  It has worked previous to this and I do not want to lose the data by reformatting the drive.  How can I reformat this drive and not lose my data?

    You can't reformat it and not wipe everything on it.
    Have you tried a different USB port?
    Only other option, back it up on a different computer.

  • Want to combine  the data different coloumn of table into single coloumn.

    HI All ,
    Requirement : I want to create an application which will display  diffrent coloumn(data) of a table into single coloumn  in web-dynpro abap .
    For ex:
    Table : employee
    coloumn : PERSON , PAYMENT , STATUS ,  SUBMISSION .
    RETURN  = PAYMENT + STATUS + SUBMISSION
    (return coloumn will contain the data of other coloumn )
    Thanks in advance .
    Rahul

    In your context, create a node 'Employee'. It should have the attributes person, payment, status, submission, return. Let return be of type string. I assume you have a ztable or some ddic structure employee, which does not have the return field.
    You code will be on these lines - change it to your requirements anyway. Place the code in a method depending on your requirement of when the data should be displayed.
    data: node_emp type ref to if_wd_context_node,
            itab_emp type table of employee,
            wa_emp  type employee,
            itab_node_emp type if_main=>elements_employee,
            wa_node_emp type if_main=>element_employee.
    node_emp = wd_context->get_child_node( name = 'EMPLOYEE' ).
    <i>* Get data from your API here into itab_emp *</i>
    loop at itab_emp into wa_emp.
      move-corresponding wa_emp to wa_node_emp.
      concatenate wa_emp-payment wa_emp-status wa_emp-submission separated by space into wa_node_emp-return.
      append wa_node_emp to itab_node_emp.
    endloop.
    node_emp->bind_elements( itab_node_emp ).
    Here, before the loop, you need to fetch the data into itab_emp using your APIs. Since you have said you want to display the data of multiple columns as is, I have just concatenated them.
    In your view layout, have a table and bind the data source to be the context node Employee.
    <b>The data types of itab_node_emp, wa_node_emp will differ based on your view name and node name. Use the code wizard to generate your code according to your design time.</b>
    Hope this helps.
    Regards,
    Nithya

  • I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    You only need the ODBC driver on each computer. If you are distributing the SQL Toolkit app as an executable and do not install the whole toolkit on each computer, you'll need the SQL Toolkit support files. This is about a dozen files. You can get the list at http://digital.ni.com/public.nsf/websearch/b814be005f9da9258625658700550c75?OpenDocument.

  • I want to get the data of a table inside the Form but it is not passed

    I want to get the data of a table inside the Form but it is not passed to the form by tables parameters.
    How can I do this.
    Regards

    If there is a problem with defining it globaly, you can define a field symbol globably and point to it. For example.  It would probably be better to define your table globably.
    report zrich_0003 .
    field-symbols: <imarc> type marc_upl_tt.
    start-of-selection.
      perform get_data.
    *       FORM get_data                                                 *
    form get_data.
      data: imarc type table of marc with header line.
      select * from marc into table imarc up to 10 rows.
      assign imarc[] to <imarc>.
      perform write_data.
    endform.
    *       FORM write_data                                               *
    form write_data.
      data: xmarc type marc.
      loop at <imarc> into xmarc.
        write: / xmarc-matnr, xmarc-werks.
      endloop.
    endform.
    Regards,
    Rich Heilman

  • Want to find the Data type of a variable at runtime ?

    Hi,
    I Want to find the Data type of a variable at runtime ?
    I think there is a function module... But i forgot ..... Can you please help me out.
    Points are rewarded immediately.

    hi,
    do this way
    REPORT ysantest LINE-SIZE 350.
    DATA : v_num TYPE n,
    v_type(2).
    DESCRIBE FIELD v_num TYPE v_type.
    WRITE : v_type.

  • I have data in Notepad,i want to upload the data to FB01 through the FM POS

    i have data in ITAB,i want to Transfer  the data to FB01 through the FM  POSTING_INTERFACE_DOCUMENT,How we pass the header data and Line item data.Can anyone suggest.

    Yes, first read the documentation of the following function modules
    - POSTING_INTERFACE_START
    - POSTING_INTERFACE_DOCUMENT
    - POSTING_INTERFACE_END
    important field is ftpost-stype with K for header fields and P for item fields
    You can easily find some samples via [sdn search|http://forums.sdn.sap.com/search.jspa?threadID=&q=POSTING_INTERFACE_DOCUMENT&objID=&dateRange=all&numResults=30&rankBy=10001] or google like [ABAP Custom Program into Batch Input Session.|http://www.sapfans.com/forums/viewtopic.php?f=13&t=25465#p75639]
    Regards,
    Raymond

  • My deceased brother's IPad was given to me but it is locked and passcode protected.  I do not want access to the data on it, but would like to be able to use it.  Can it be unlocked and reset to factory settings?  Thanks!

    My deceased brother's IPad was given to me but it is locked and passcode protected.  I do not want access to the data on it, but would like to be able to use it.  Can it be unlocked and reset to factory settings?  Thanks!

    You can try this: If you can't update or restore your iOS device
    If he had not turned on Find My iPad then it will work, if he had you will run into Activation Lock. If you do run into it you can take a copy of the will (or probate finding if he died without one) and/or a Letter Testamentary and ask if they can look up where he purchased it. If they can, and you have the other documents, they can reset it for you.

  • I have forgotten the password and do not have the old computer to sync with. I dont want to loose the data already on it?

    I have forgotten the password and do not have the old computer to sync with. I dont want to loose the data already on it?

    All you can do is restore from backup, You have to erase the iPod. That is a security feature
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • I want to delimit the date of table v_t7int1 for new sap note uploading

    Hi
    i want to delimit the date of table v_t7int1 for new sap note uploading. wtihout delimit the date i can't create new note for the year 01.04.2009 to 31.12.9999
    Anjali

    Hi
    When i select the slab code sl10 and press delimit button system is asking the From Date and i want TO DATE  and i have to Delimit the date of  slab code SL10, SL11,SL12 and SR02 and then i have to create SL13,SL14 and SL15.
    Anjali

  • HT1364 I have a new PC and need to sync my iPhone5 to the new installation of iTunes. I don't want to lose the data on the phone! How do I do this? The PC is Win8 Pro.

    I have a new PC and need to sync my iPhone5 to the new installation of iTunes. I don't want to lose the data on the phone! How do I do this? The PC is Win8 Pro.

    If you have the old PC, transfer the library from it. If not, see Recover your iTunes library from your iPod or iOS device.
    tt2

  • I want to store the data form the PWM and the value of the changing duty cycle into a file simultaneously and continually

    i want to store the data form the PWM and the value of the changing duty cycle into a file simultaneously and continually but having problem.Please can anyone help out.
    Attachments:
    data.vi ‏60 KB

    Hello,
    Have you looked at the "Write Binary File.vi" and "Read Binary File.vi" examples?
    They give you a good clue as how to write and read arrays to and from binary files.
    For your data it means that you could put the two data items to write in an array and write the array to file, for the read its important to in what sequence the number were written to file.
    Kind regards,
    André
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

  • HT201493 I use Friend finder. I just want to know the date when I added my friends? Can anybody tell me how?

    I use Friend finder. I just want to know the date when I added my friends? Can anybody tell me how?

    bobseufert wrote:
    I thought it was a great way to lose friends. I don't know one person that would want me to be able to track their location.
    I absolutely agree. I use Glympse if I need to let someone know my whereabouts for a short period of time. But, beyond that, ick!

  • Want to pull the Data from  ECC(Functionmodule/view/BAPI)  to Crystal repor

    HI Expert
    Want to pull the Data from  ECC(Functionmodule/view/BAPI)  to Crystal report
    Need Step by Step Procedure whatl all we come across while Generating report from SAPBI (ECC(Functionmodule/view/BAPI)
    to Crystal report what all integration and setting we need to do
    Thanks and Regards
    AhmedPasha

    Hello,
    Ingo Hilgefort has documented this step by step in this SCN article:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/403ddef9-52ca-2d10-9193-9ffd190219fe?QuickLink=index&overridelayout=true
    Starting on page 13, you can use the same steps - he selects data from a table join, you select FN instead for function module.
    You can also get to it via this link:
    http://www.sdn.sap.com/irj/sdn/business-objects-bi-for-sap?rid=/library/uuid/403ddef9-52ca-2d10-9193-9ffd190219fe
    Regards,
    Tammy

Maybe you are looking for

  • Problem in Installing Forms 6i on Pentium 4 Machine

    Dear All, I tried to install forms 6i on my Pentium 4 machine but I was not successful. Later I come to know that for doing this I need a patch to be installed. i searched the whole oracle and intel site but I could not get it. If any one else have c

  • How do I create a chart where the lower numbers are at the top?

    I'm charting data that shows a ranking, where the rank can be a number anywhere from 1 to 1000. 1 is the highest. When I create a chart, 1 is at the bottom. How do I flip the chart so 1 is at the top and 1000 at the bottom?

  • Macbook Pro water damaged, have I lost my purchased apps?

    A drink got spilt onto my Macbook Pro the other night, for enough time to soak into the keyboard and I'm guessing damaging the internal harddrive. Unfortunately nothing was backed up but the good news is I have accidental damage insurance. Is there a

  • Missing recurring appointments

    I have sync'ed my Ipod touch calendar with outlook 2002. None of my recurring appointments that are not all day events will show up on the Ipod touch. All my other appointments show up. Anyone have a work around for this?

  • IPhoto: Sorting is only done Globally for Entire Application

    Currently, iPhoto allows the user to sort photos by Date, Keyword, Title, or Rating. But it does this globally for all of the Events in the application. There should be a choice to do this either globally, or for a specific Event. For instance, I hav