How to open PI sheets in ECC 6.0

i just start working in ECC 6.0 as ABAP programmer. please send me any type of material that is helpful for thsi version.
PLease send me the study material of PI sheets.and how we can open PI sheets

Dear Kalyan,
The moment the debugger starts, there will be an icon for "Watchpoint" exactly after F5, F6, F7, F8 and a big STOP red button on the application tool bar. Once you click on that Watchpoint button, it will take you to the screen where you need to define the exact field and its relative operator along with the condition to be checked.
Hope this is clear. No navigation needed for this.
-Syed.

Similar Messages

  • How to open Excel Sheet using JSP?

    Hi Dear,
    I want to open Excel Sheet in client browser, How to do this using JSP?
    If it is possible to open, client can make the changes in the sheet if he saves those changes, those changes must reflect on server.
    So pl. tell me how to do this?
    Thanks

    The following code gets data from an ODBC link to an Excel spreadsheet and displays it as a HTML table. You can modify the table to include <input> fields to update the spreadsheet when the form is submitted.
    I hope that this helps. -Don
    <%
    /* Establish connection to excel database(spreadsheet)
    ODBC DSN="xltest" */
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    java.sql.Connection con= java.sql.DriverManager.getConnection("jdbc:odbc:xltest");
    java.sql.Statement st = con.createStatement();
    java.sql.ResultSet rs = st.executeQuery("SELECT * from [Sheet1$]");
    java.sql.ResultSetMetaData rsmd = rs.getMetaData();
    %>
    <html>
         <head><title>Excel Database connection test</title></head>
         <body><table border=1 cellspacing=0><tr>
    <% // Print Column headings (first row of spreadsheet)
    for (int i = 1; i <= rsmd.getColumnCount(); i ++){
              %><td id='td1'><%=rsmd.getColumnName(i)%></td><%
    }//End for
    %></tr><%
    while(rs.next()) { // Print row data
    %><tr><%
         for (int i = 1; i <= rsmd.getColumnCount(); i ++) {
                   %><td id='td2'> <%=rs.getString(i)%></td><%;}// End for
    }//End while
    st.close();
    con.close();
    %>
    </tr></table></body></html>

  • How to open exel sheet  in jsp

    hi friends i want to open an exel file which i have saved with ".csv" extension but i m unable to open, some how i get some code that is also not working the code is this
    <%
    response.reset();
    response.setContentType("application/vnd.ms-excel");
    response.setHeader("Content-disposition","inline; filename=tri.csv");
    %>     
    also one think how to give the path in "filepath=".
    plz help.
    tnx in advance for ur valuable suggesion..

    This kind of business logic should not be placed in a JSP. Write a servlet which does the task. You can find here an example: http://balusc.blogspot.com/2007/07/fileservlet.html

  • How to open and read Excel Sheet from SharePoint 2013 Document Library using C# Visual Studio 2012

    Hi,
    To achieve these are the steps that I had followed :
    1. Add the document Library path into Central Admin -> Application Mgmt -> Manage Service App -> Excel Service App -> Trusted File Locations
    2. Add Documnet Library link to Trusted Connection Proivder
    3. Open Visual Studio as Run as Administrator
    4.Create an SharePoint 2013 Empty Project.
    5.Add Service Reference : http:\\<server>\_vti_bin/excelservice.asmx
    6.Service added successfully
    7.Create a class file and add the Service Reference namespace
    There is no such class as ExcelService to call. 
    Please let me know if somebody knows how to open the Excel file into C#(2012)  either using ExcelService or any other way to open. I tried old methods of Sharepoint 2010 server but it's not able to access classes.
    Requirement is :
    Need to read the excel sheet  from Document Library and transfer all data into DataTable.
    Please help asap. 

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office, I'll move your question to the SharePoint 2013 development forum
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/home?forum=sharepointdevelopment
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support

  • I created a spreadsheet using Microsoft office 2010 Excel.  When I open the sheet using Numbers, the formatting changes.  How do I fix this?

    I created a spreadsheet using Microsoft office 2010 Excel.  When I open the sheet using Numbers, the formatting changes.  How do I fix this?

    If you plan to share or work with people who regulary use MS Excel you should not try to use this in Numbers.  You will have constant problems with how each program translates the formatting.
    If you want to use Numbers, use it exclusively.  If it is for your job use the tool your company uses.

  • Activation of Open Item management in ECC 6.0

    Hi Peers,
    I am trying to activate open item management in ECC 6.0..Client is having some balances and transaction in the GL and need to activate OPEN ITEM MANAGEMENT for some balance sheet Accounts(Other than Recon Accounts)..I am trying to run the program RFSEPA02/03 after you zero down the balance of the balance sheet account.The system is giving the error
    ""Do not use the report program to set up open item management for the
    account.
    Create a new account with the correct account assignment. Post your
    items to the new account. If you want to use the original account
    number, you must bring the account balance to zero, change the account
    assignment, and repost the items. You can remove the old items by
    archiving the documents""
    CAN ANYONE SUGGEST ME HOW TO PROCEED OPEN ITEM MANAGEMENT WITHOUT USING NEW GL ACCOUNT MASTER,.
    Thanks...DK..

    Hi D.K
    before runing the this program
    1 ) make sure the balance of the amount for this account is zero.
    2) block this account for further posting
    3) run this program
    4) unblock the account, then it will work
    Regards,
    Balu.K

  • F-32 modify selected open items in the Process Open Items sheet

    Hi all,
    I have to design a solution in order to modify the selected open items showed in the Process Open Items sheet. I mean, I want to clear 2 concert items (I know every feature for each one) but the selection criterion match some items else, so I need to deselect the extra open items. This change is in order to create a BI to automate the clearing process.
    I know you are thinking, ok man you just need to use the Automatic Clearing transaction (F.13) but it doesnu2019t solve the prerequisites given (the same problem with the selection criterion).
    Could you help me?
    Thanks in advance.

    Hello Rob,
    In fact the transaction provide me the correct criterions, but the internal logic use them like OR's in a select but I need  AND's. Let me explain it better with an example:
    The standard program does something like this:
    Select *
    From ...
    into ...
    where criterion1 OR
                criterion2 OR
                ...             OR
                criterionN.
    But I need to modify this selection like follows:
    Select *
    From ...
    into ...
    where criterion1 AND
                criterion2 AND
                ...             AND
                criterionN.
    I don't how to attack this problem by User Exit, BADI... I have tried with every resouce i know but  nothing. The last resort is a Z program whith the propper BAPI but this option is not wellcome at the moment.
    Thanks again.

  • PB G4 65W poweradapter broken, how to open it?

    Hi all,
    The cable running from the poweradapter/charger (model no A1021, 65Watts) to my PB G4/800 has frayed where it leaves the poweradapter/charger cabinet, thus rendering the adapter/charger unserviceable.
    I dislike throwing it into the bin, not for the money but for the sake of the environment. I am willing to give it a repair go, just cut off about, say, an inch and resolder the cable to the PCB. However, I cannot figure out how to open i.e. take apart the cabinet.
    Anyone any hints how-to? Or is this one of those devices for which holds: opening means breaking?
    Thanks for cooperation.
    Sincere greetings from continental Europe,
    Feike L Hoogenbos
    iMac 20"-G5-iSight + PBG4/800   Mac OS X (10.4.7)  

    Hello eww and all of you out there.
    For eww: thanks for your reply.
    About: “How to take apart the PB G4 65W poweradapter.”
    I tried and it turned into a nitty-gritty enterprise.
    I do not encourage anybody to go down this path, but if you insist, without modellers’ skills and gear, you end up with an adapter that is definitely beyond repair.
    On the other hand, unserviceable it already was, so who cares?
    In short:
    You cannot: the white soap-box like poweradapters for Al, Ti PBks and (some) G4 iBooks, were (probably) never designed with any kind of ‘take-apart’ in mind, in other words: opening indeed equals breaking.
    It is held together by several glued ‘males/females” (like the two fuselage halves in a Revell or Monogram model aeroplane or boat kit, remember that?), about half a meter or two feet of single-sided sticky tape and 20 cm’s or 8 inches double-sided sticky tape and about 15 grams or half an once of silicon-putty, the same kind of stuff you will find as a sealant where your bathtub meets the surrounding tiles.
    The longer story, and remember, I started this all in with the intention (or assumption if you wish) it could be done in a reversible way. How wrong that turned out to be.....
    To open the white box, I used a small-teethed saw-blade, only the blade!
    Method: Sway the adapter’s feet out, clamp the adapter in a vice, claws covered with rubber sheet.
    I carefully sawed in the ‘equatorial’ grooves. Hence the small-teethed saw-blade.
    Look often how ‘deep’ you have sawed, stop when still the thickness of, say, a sheet of paper is left. Sounds difficult, but it is not, you will slowly see copper and aluminium colours appear.
    You cannot saw in the groove at the side where the feet hinge and the cord leading to the PB, leaves the box. Deal with that later.
    Okay, I had three equatorial grooves sawed out and yes, I could feel some ‘movement’.
    By repeatedly sliding and prying a wooden wedge through the sawgrooves and twisting the halves realtive to each other I managed to get some more movement. That all makes quite unpleasant sounds.
    After carrying on like this for about a minute or twenty, suddenly the two halves popped apart with a very nasty ‘tschack’ sound: two male/females broken and the two feet came apart.
    Oh dear, I had disrupted the bond between one side of a two-sided piece of sticky-tape and the upper housing (that caused the ‘tschack’ sound). To the other sticky side: a piece of aluminium sheet (0.4mm or 0.015 inch thick).
    That piece of aluminium sheet on its turn had a rectangular opening in it through which a larger piece of copper sheet (0.45mm or 0.017inch thick) could be seen.
    The aluminium and coppersheets were connected in a somewhat strange way: partly electrically isolated by sticky-tape and silicon putty and partly electrically conducting, i.e. metal on metal contact.
    The copper sheet appeared to be U-shaped, the electronics ‘wrapped’ inside.
    As far as the lower housing concernes: the aluminium/copper contraption repeated or mirrored itself more or less.
    Metal sheet(s) as thin as decribed and bonded to whatever by two-sided sticky tape and/or whatever sticky putty, any attempt to separate those without damage will be futile. No, you wouldn’t leave it overnight in a bowl filled with something like white-spirit, since that will definitely harm the electronics.
    There I was: with wrinkled and bend aluminium and copper sheets and hundreds of silicon-putty chips around the place. But the adapter had been opened!
    I started to wonder why the adapter looked like it looked.
    I think the aluminium/copper sheeting serves as a heatsink and doubles as electromagnetic shielding, hence the somewhat strange looking conducting/non-conducting sandwich and cut-outs in the aluminium sheets. Eddy currents and so forth.
    The adapter is of the switch-mode powersupply type and the mains transformer is a pot-core. This hints towards a quite high switching frequency, say something like 100kHz. It needs to be that high in order to convert 65Watts in such a small box without ending in a disaster.
    This means, the apater is also a potential 65Watt jamming station - be it without a properly tuned antenna - hence the elaborate shielding with copper and aluminium sheets and strategically placed cut-outs, conducting and non-conducting spots.
    I succeeded in taking the frayed cord out, again, not really easy, since room is at a premium in the adapter, but it can be done.
    Next surprise: the cord between the adapter and the PB -a piece of coaxial cable by the way- carries only two conductors: a plus and a minus (an up and a down or how you wish to label it).
    Will I be able to put it all back together again?
    Eh, NO!
    Ironing out the wrinkles in the copper an aluminium sheets, forget it.
    With the wrinkles the whole assembly will be too thick to fit (cram?) into the the two halves of the soapbox.
    And for those who think the whole thing could be glued together with epoxy, the silicon-putty residues are all over the box, so the epoxy or any other glue for that matter, will not stick.
    It is as simple as that.
    However, I learned a lot from this.
    With sincere greetings from continental Europa,
    Feike L Hoogenbos

  • How to Open a Our System's Connection For access by SAP AG

    Dear Sir/Madam,
    For our sap system access by SAP AG, I need to OPEN my SYSTEM and to provide LOGON DATA to SAP AG.
    Would any one help me HOW TO OPEN MY SYSTEM for SAP AG ACCESS and by LOGON DATA, what they mean.
    Our SAP system is ECC5.0
    Product Version SAP ERP 2004
    Operating System AIX 5.3
    Database ORACLE 9.2.0.4.0
    Technical Usage Type ERP Central Component (ECC)
    Any Pointer will be highly appreciated.
    Thanks and Rgds,
    Pranab

    Hi,
    Check this link
    http://service.sap.com/serviceconnection
    Note 35010 - Service connections: Composite note (overview)

  • I'm unable to open contact sheet II.

    Hi,
    The error message when I try to open contact sheet II is: 'the operation could not be completed.  The file or directory could not be found.  Could not complete the contact sheet II command because of a program error'.
    How do I rectify this please?
    Thanks,
    Shaz

    Try R_Kelly's solution here:
    Missing Contact Sheet II
    Also, if you are using NIK plugins you may need an update for them.

  • How to Open Two Excel Files in Multiple Monitors in Windows 7

    How to open two excel files in two excel windows using multiple monitors in Windows 7.
    Currently it opens multiple files on top of each other on the same one monitor.
    I found this article in a blog it says
    "The snap feature that you are looking for will not work unless you open two instances of Excel. This is because Excel Unlike Word is not a True SDI Application. Microsoft is aware of the Issue however there is no resolution to the problem but the workaround"

    If you are working almost the entire day in front of your computer at your office with lots of Excel Sheets and Word, then probably you might be working with a
    dual monitor or may be even more than that. Studies have shown that having an additional monitor increases the productivity by 20 to 30 percent (Source: NY Times)
    But some applications like MS Office Excel, even though you open multiple files, they are all from the same instance of the application. So if you want to compare two
    Excel
    files, then you may not be able to have it in two
    separate monitors as the files are loaded using the same instance of Excel. If you move one
    Excel
    file to the other window, the other Excel files are also moved to the other window.
    So how to have two separate Excel files or other application side by side in dual monitors?
    Option A:
    In Excel 2003, go to Tools -> Options ->
    General tab.
    Make sure the option, ‘Ignore other applications’ is checked. Now all the Excel files will be opened as separate instance and you can move the Excel files individually across the monitors.
    In Excel 2007, Click the Office button ->
    Excel Options -> Advanced.
    Under General, check ‘Ignore other applications that use Dynamic Data Exchange’.
    or
    As this method forces each Excel file as a separate instance, the memory consumption will be more. If you don’t want too many memory consumption then you can open only two instances (see
    Option B) and manage wisely to view in both the monitors.
    Note: If you are having issues like Excel opens without displaying a workbook, then you may have to
    uncheck this option. (See Microsoft Help for more details on this). You can use option B in this case. I have this option checked and I have not faced any issue yet.
    Option B:
    They key here is, the application has to be loaded as separate instances. Lets say you have opened an Excel file in
    Monitor 1 and you want to open the next excel file in Monitor 2. You can usually open another instance of Excel by browsing through the
    Start Menu -> Programs -> Microsoft Office ->
    Excel. Make sure this newly opened Excel file is the last Excel file you had viewed and then double click on the Excel file that you wanted to open. This will force the Excel to
    open
    in the second instance of Excel. Now you can move these
    two excel files separately across windows or monitors.
    This may be little cumbersome way to open new instances of Excel every time. The easy solution would be to keep these links in the
    quick links near the Start button. So, every time you want to open a new instance of the application, you can just use those quick links.
    hope work thanks
    http://www.lytebyte.com/2008/05/13/how-to-open-two-excel-files-side-by-side-in-separate-monitors/

  • How to open the file in gmail

    How to open the file in gmail. As is keep indicate is not support. Previously I can easily open the excel or words sheets that send to my email but After download the Free Trial for Adobe Pro( Convert PDF file to Microsoft words. )

    More information would be helpful, such as the file format and what the error message is in more detail.

  • Hp printer f4488 HOW TO SCAN MULTIPLE SHEET IN ONE ATTACHMENT

    hp printer f4488 HOW TO SCAN MULTIPLE SHEET IN ONE ATTACHMENT Kindly suggest if any solution are their for above subject..

    Open Preview and use its "Import From Scanner" option in the File menu. This will launch the scanning interface, which has some standard and basic scanning controls. If you choose "PDF" as the file format to save as, then you will see an option to scan all images to one file. When you do this, you will scan and edit them individually, but Preview will save them to the same file when saved.

  • How to open and closed posting period??

    Dear Gurus,
    Pls help me, how to open and closed posting period.when and how we used special period.
    Regrds
    Mahesh

    HI,
    Tcode is ob52
    here we generally provide the following details
    a/c type from a/c to a/c from period year to period year from period year to period
    +                                    1            2007   12         2007      13       2007   16
    + implies it applicable to all account types
    generally we can have maximum 4 special periods and total no of periods(normal+special) should not exceed 16
    generally we use special periods for year end adjustments like tax adjustments
    if it is useful assign me points

  • Help, how to open and display blobs from tables

    Dear all,
    I am trying to store ms-word files on a table using a blob column.
    Does anyone how to open the files and display them from a form using 9iAS?
    Thank you.
    Carlos.

    And there may be, but you won't likely find that here. Do some time searching Google and maybe you'll find code that someone was nice enough to make freely available, although I wouldn't count on it. Were i a programmer and took the time to read those docs and write the code, I'd want to be paid for my time. But there are a lot of programmers who swear by freeware! You may get lucky.

Maybe you are looking for

  • No data set found when creating a report

    Dear all, This is my first time using BI Publisher, and I am stuck at a very early stage. I have followed the various steps described in the documentation, up to creating a new report. When I try to do so, I fail as there is no available data set in

  • Learning PT by using a big database?

    I have been taught that in order to learn performance tuning, you have to work with big database, containing lots of data, in order to gain experience but you cannot gain knowledge of PT when you work with small database such as advecture works. Is i

  • Dump while calling HR_INFOTYPE_OPERATION

    Hi, I'm calling HR_INFOTYPE_OPERATION and I'm getting a short dump with ASSIGN_BASE_TOO_SHORT error. It's occuring on the line: ASSIGN record TO <record> CASTING TYPE (tabname). and it appears to be because the field symbol <record> is blank? Can som

  • Book gone after upgrading Aperture to 3.5.1

    I recently upgraded my Aperture version to 3.5.1.  In the process, it upgraded my library.  Immediately upon opening it back up, I noticed that the pictures and book that I had been working on have disappeared.  Unfortunately, I don't have any known

  • IPhone 3G sim

    Can I use my iPhone 3G sim in my iPad 1