SE16 for tables, what to use for looking into structures

Hi,
I want to check a structure field for 700 materials on contents. I don't have a report to check them and I would like to check them in the same way as you can check table-fields with SE16. Is this possible?
Willem-jan Bos

Dear Willem-jan Bos,
It is <b>not possible</b> to see the data in structures as they do not store the data. You can only see the data of tables and views in SE16/SE11. Structures are used in tables or in programs. They never store the data.
Regards,
Naveen.

Similar Messages

  • Photoshop Print Settings - what to use - photos look awful.

    I don't know what I did but when I go to print a photo the Photoshop Print Settings pop up.  Which is better - Printer manages color or Photoshop?  I don't know how to change my Printer Profile.  I have search HP for over 3 hours.  I have an Officejet Pro 8600 and can't seem to find anywhere to change it.  The photoshop print settings the Printer Profile is :sRGB IEC61966-2.1.  Under Color Management - Please use Adobe Color Printer Utility if you need to print with No Color Management - also didn't work.  The more I do the worse it gets.  The prints for instance arms showed dark specks.  Look awful. I have an iMac and am using the iMac settings in my color profile in preferences.  Any ideas?

    gener7 wrote:
    I was never too sure, but when it comes to consumer inkjets, it's best to let the printer software worry about it.
    Gene
    I'll go along with that.  Use the printer manufacture's software and paper, and you at least have a chance of things working out.  I went through years of hassle with various Epson printers, even spending serious money having a custom profile made, but the results were never great, and the Internet showed I was not alone.  Since switching to Canon with a Pixma 9000Pro, and using Canon's EasyPhotoPrintPro software, it just works first time every time, so I can thankfully circumvent all that printer profile mylarky.  Incidentally, I do use other paper, principally Ilford Galerie Smooth Pearl, which works as well as Canon paper.  But I almost never enter competitions nowadays, so have not used the photo printer in over a year.  I bet it cost $25 in ink just turning the thing on, and I can get a professionally printed A3 for that money, and I don't have a third of my desktop taken up by a rarely used printer.

  • Frames, tables, templates, fragments.. what to use?

    Hi,
    I'm new to jsp and wonder if anyone can advise me on the following. I'm creating a web application which is pretty standard. It's really a webpage with a toolbar, header, main area etc. The main area will be dynamically generated from a database.
    When I have done similar things in the past with html I have used frames to divide the page into different areas and then only reloading the fragment that has changed. What is the best solution for this when using jsp pages?
    Thanks for your input!
    Fredrik
    PS. Even better if you can point towards a tutorial or exampel. I'm using creator and try to avoid coding jsp.

    There's nothing wrong with using frames. The only problems would be changing the content of the main frame and needing the data that returns to change content in the top frame.
    If you don't want to use frames, look into the Tiles tag library. It'd make it easier to developer sections of pages separately.

  • How to populate one internal table from another using field symbols

    Hi Gurus,
      I have a problem. I have to populate one internal table (sructure t_otput) from another internal table (sructure t_from) using field symbol.
    Structure for from table.
    types: begin of t_from,
             year(4) type c,
             ww(2) type c,
             site type marc-werks,
             demand type i,
           end of t_from.
    Structure for output table.
    types: begin of t_display,
             title(30),
             WW1(10),
             WW2(10),
             WW3(10),
           end of t_display.
    The from table looks like this:
    Year | WW | Site | Demand
    2005 | 1  | OR1  | 12.00
    2005 | 2  | OR1  | 13.00
    2005 | 3  | OR1  | 14.00
    The display table which has to be populated should look like this:
    Title  | WW1   | WW2   | WW3
    OR1    |       |       |
    Demand | 12.00 | 13.00 | 14.00
    How to populate display table using field symbol?
    Please give code snippets
    Thanks,
    Gopal

    Gopal,
    Here is the code, however I am not vary clear about the ORG1 and Demand display that you have shown in the display. I am sure with this code it should not be a big deal to tweak in whatever manner you want.
    TABLES : marc.
    TYPES: BEGIN OF type_display,
    title(30),
    ww1(10),
    ww2(10),
    ww3(10),
    END OF type_display.
    TYPES: BEGIN OF type_from,
    year(4) TYPE c,
    ww(2) TYPE c,
    site TYPE marc-werks,
    demand TYPE i,
    END OF type_from.
    data : t_from type table of type_from,
           t_display type table of type_display.
    field-symbols : <fs_from> type type_from,
                    <fs_display> type type_display.
    data : wa_from type type_From,
           wa_display type type_display.
    wa_from-year = '2005'.
    wa_from-ww   = '1'.
    wa_from-site = 'OR1'.
    wa_from-demand = '12.00'.
    insert wa_from  into table t_from.
    wa_from-year = '2005'.
    wa_from-ww   = '2'.
    wa_from-site = 'OR1'.
    wa_from-demand = '13.00'.
    insert wa_from  into table t_from.
    wa_from-year = '2005'.
    wa_from-ww   = '3'.
    wa_from-site = 'OR1'.
    wa_from-demand = '14.00'.
    insert wa_from  into table t_from.
    data : variable(3) type c.
    field-symbols : <fs_any> type any.
    break-point.
    Loop at t_from assigning <fs_from>.
    variable = 'WW'.
    wa_display-title = <fs_from>-site.
    concatenate variable <fs_from>-ww into variable.
    assign component variable of structure wa_display to <fs_any>.
    <fs_any> = <fs_from>-demand.
    endloop.
    append wa_display to t_display.
    clear wa_display.
    loop at t_display assigning <Fs_display>.
      write :/ <fs_display>.
    endloop.
    Note : Please award points if this helps you.
    Regards,
    Ravi

  • Records from multiple table in Forms using Structure

    Hi all,
    I thought of bringing records from more than one table to smart forms.I have done the same by using two internal tables but not using with globally declared structure.Is it like this:
    1.Create the global structure
    2.In driver program create a internal table
    3.Pull the data using select statement
    4.Pass the internal table to smartforms-> Here I dont understand how.Usually In smartforms we declare internal tables of table type like 'itable type zgkmaster'
    How to pass the internal table we created using structure to smartforms?
    Thanks

    Hi Gopi,
    the procedure u r telling is correct.
    create the structure(ex:zstruc) in se11 as the structure of the internal table.
    *popluate the data into internal table.
    *in smartform, u declare the internal table as that structure i.e itab type zstruc.
    i.e in smartforms when u declare internal table, u r telling that ur internal table having the structure similar to the structure ZSTRUC.
    In smartforms u can declare the table type using either ...type <db table> or ... type <structure>.
    san

  • Use of cost component structure

    hello gurus
    what is use of cost component structure and what is the difference between cost sheet and cost component structure .after preparation of cost sheet we going to assign the costing varient like that after preparing the cost component structure where we assign this
    thanks
    prudhvi

    Hi!
    cost component structure is to split your total costs to material ( direct & inditiect), labour cost, over head costs in order to identify seperate costs for analysis purpose. transaction code is :OKTZ.
    first you have to define cost component attributes , then assign cost elements for each attributes and then assign this structure to your company code.
    while executing the standard cost estimate of materials,  total cost will be displayed by splitting the costs according to cost component structure.
    regs,
    ramesh b

  • I am trying to find an app or software to burn iMovie slideshow to a dvd.  I have a MacBook Pro with Mavericks.  There are a lot of DVD Creator apps a the App store. Looking for a recommendation of what to use and tips.

    I am trying to find an app or software to burn iMovie 11 slideshow to a dvd.  I have a MacBook Pro with Mavericks.  There are a lot of DVD Creator apps at the App store. Looking for a recommendation of what to use and tips. Thank you.

    I've been using "Burn" for years and it has been the only DVD burning software I have ever used for the mac. I have never needed to look at other apps. Unless you want something that has more bells and whistles such as Roxio's "Toast" : http://www.roxio.com/enu/products/toast/pro/overview.html
    There are thousands of quality free apps out there for the mac that are not part of the App Store. All you have to do is read reviews online, do a little search, the Apple forums are full of recommendations from experienced users that have been here for years...

  • What are the tables to be used for these reports

    hello everybody,
             i am a new user. it is only recently that i have started learning ABAP. i was given a rask by my faculty to develop the following reports. can anyone help me find out the tables that are used for them.
    1.  Report for Sales Orders due for delivery.
    2.  Revenue Reports based on Order Types.
    3.  Report for list of Pending Purchase Orders, Cancel Purchase orders.

    Hi,
    This depends on which fields you are supposed to show in output.Ask the person about layout requirement. How they want output of the report and which fields.
    Normally Functional person will give table name also.
    Here are few tables which can be useful in your requirement.
    Sales Header table : VBAK
    Sales Item table : VBAP
    Delivery Header : LIKP
    Delivery Item : LIPS
    Purchase order header : EKKO
    Purchase order item : EKPO
    Better to concern this with u r requester and u ll get definite answer.
    *MARK if this helps

  • What is used for WebDynpro for ABAP?

    hi all friends,,
    what is used for WebDynpro for ABAP?
    Thanks,
    S.Suresh.
    Title was edited by:
            Alvaro Tejada Galindo

    Hi
    Web Dynpro for ABAP - Getting Started
    Web Dynpro for ABAP is SAP’s new standard UI technology for developing user interfaces in the ABAP environment. In the long term Web Dynpro for ABAP will be the successor of the traditional screen (“Dynpro”) based user interface technology which is based on the SAP GUI. Available with NetWeaver 7.0 (2004s) Web Dynpro for ABAP provides the same declarative UI development paradigm as Web Dynpro for Java directly out of the NetWeaver ABAP Application Server. Web Dynpro for ABAP allows the development of user interfaces directly within the ABAP Workbench (SE80) and the Web Dynpro runtime environment is a central part of the ABAP server and can be used in any SAP solution based on NetWeaver 7.0 (2004s) without the need of an additional server installation.
    Web Dynpro for ABAP allows the development of user interfaces in a declarative way by providing a mighty framework which abstracts the rendering technology from the core UI definition tasks. The Web Dynpro developer declares the layout and behavior of the UI without caring about HTML, JavaScript, browser specifics or the HTTP protocol. Instead the focus lies on designing graphically Web Dynpro components based on the Model View Controller model, which enforces a clear separation between the UI layer and the underlying business logic.
    This declarative Web Dynpro programming model enforces the developer to focus on the tasks of
    Designing the layout of the visible views (where should the table be placed, do I need tabs, how should the button look?)
    Declaring the flow and behavior of the application (flow between views, which event is triggered by which button click, etc)
    Defining the data binding (which internal table is displayed in a specific table, etc)
    Implementing the event handlers and controller methods.
    Without making any assumption about the used rendering technology, like which browser should be supported or if the Web Dynpro application will be later displayed in a web browser via HTML at all or in another kind of client with completely different rendering capabilities.
    The Web Dynpro Frameworks provides all important UI features directly out of the box:
    All elements (tables, buttons, trees, dropdown list boxes, etc) necessary for state of the art user interfaces are provided by the Web Dynpro Framework in the form of predefined UI element libraries.
    Complex features and behavior of UI elements.
    Internationalization of the UI. All visible strings in a Web Dynpro ABAP UI are handled by the translation system and are translated in the same translation environment like other ABAP language dependent resources. All texts are displayed automatically at runtime, dependent of the user’s credentials.
    Accessibility features are directly built into the framework and UI elements.
    A unified rendering engine generates at runtime the data which is sent to the specific client application, which is not limited to browsers but includes the NetWeaver Business Client.
    All this is available in the established environment of the ABAP application server and well known capabilities like the transportation and change management system, security environment, test and performance analysis tools or remote debugging can be used like in common ABAP development.
    Learn about the Web Dynpro for ABAP technology with the resources below, and post your related questions and answers to the Web Dynpro forum.
    Web Dynpro for ABAP: Sneak Preview  
    Download, License Key Documentation, and Installation Guide available here.
    Web Dynpro for ABAP: Tutorials for Beginners  
    SAP NetWeaver Product Management provides this set of tutorials for getting started with Web Dynpro for ABAP technology.
    SAP Help Portal: Web Dynpro for ABAP  
    This online SAP documentation goes into detail about Web Dynpro architecture and programming, Web Dynpro for ABAP administration and security, and more.
    Web Dynpro - Not Just for Java Developers Anymore   (PDF 3.8 MB)
    In this SAP Insider article, SAP Product Manager Karl Kessler describes the tools of Web Dynpro for ABAP and uses a simple flight report example to highlight new and updated tools in the familiar ABAP environment.
    Community Contribution: WDA Tutorial I - Getting Started with Web Dynpro for ABAP   (PDF 2.5 MB)
    Software Engineer Rich Heilman provides this step-by-step guide for developing a Web Dynpro for ABAP application.
    Going into Details
    Basic Concepts - Selection vs. LeadSelection  
    In this blog, Thomas Szuecs of the Web Dynpro for ABAP development team shows how selection and LeadSelection works in Web Dynpro for ABAP.
    Web Dynpro for ABAP: Recreate the SE16 Data Browser   (PDF 386 KB)
    In this tutorial, Thomas Jung of SAP NetWeaver Product Management shows how to create a data browser simulator using Web Dynpro for ABAP.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/80aef577-543f-2a10-d19c-d83a565efe37 [original link is broken]
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

  • Free Constraint Programming Library for Java?? what to use?

    Hi everyone,
    I am currently programming the popular Sudoku game as my final year project at university. After doing some research I found that using Constraint Programming would be the best way to generate and solve the Sudoku puzzles... however, I'm in a bit of a dilemma....
    I'm not sure what Constraint Library to use - the most popular one out there is Koalog - but its a commercial application - and I was looking for an open source or free application.
    I have been looking into the Choco (http://choco.sourceforge.net) Library but I am having trouble with getting hold of the global constraints I need ie AllDifferent.
    An extensive guide of how to use Constraint Programming is shown on the Java Sun Website: http://today.java.net/pub/a/today/2005/11/29/solving-sudokus-in-java.html
    Any advise would be greatly appreciated.
    Thanks in advance
    :o)

    Hi aniseed,
    Thanks for the user guide link -- I have looked through and I am beginning to understand it all.... but my main problem is that the user guide specifies a global constraint called allDifferent
    Here are described som of those constraints :
    1. pb.allDifferent(IntVar[] vars) creates a constraint ensuring that all pairs of variable
    have distinct values (which is useful for some matching problems)When I try to type pb.allDifferent into my program - it does not recognise the method so it does not compile- all the other methods work apart from this one.
    Any ideas?? :o)

  • Having trouble with disc space on my 120G mac air. I back up to a separate my passport for mac disc, but my mac is also holding 40G worth of back up when i check what is using space. Why is this?

    Having trouble with disc space on my 120G mac air. I back up to a separate " my passport for mac" disc , but my mac is also holding approx 40G of back ups as well when ive checked what is using space. Why is this?
    Ive started running iphoto from the separate passport to save space,
    and put all my music into the itunes match to save space as well
    but it is still saying it is almost full because of the back ups!
    I should of bought a bigger mac, but i need to make do at the moment, but it is hard when it constantly has only 10G or less space left.

    When you use TimeMachine to back up a Mac notebook the local backups feature is automatically enabled. The local backup is just like a TimeMachine backup but it is done to the internal drive rather than an external. The important thing about local backups is that the feature is smart - as you need more drive space for your own data and applications, TimeMachine automatically culls the local backup to give you that needed space. So yes, it will look like you have very little drive space left and that the backup is 'robbing' you of needed GBs. But it really isn't.

  • Updated property of rowset is set for data table if I use convertors

    Hi,
    I use data table for update database table. What I use is sale tax table of Pointbase. I use convertors for date effect and tax rate.
    I just change 1 row of data table but Jcreator finds all row are updated. This is a waste of resource and performance. Here is the code (I copied from clip).
    public String saveButton_action() {
    // User event code here...
    log("OnePage: update_action()");
    // BYHAND - Count up the rows with updates (optional)
    int count = 0;
    Iterator keys = dataTable1Model.getDataCache().iterator();
    while (keys.hasNext()) {
    Integer key = (Integer) keys.next();
    com.sun.jsfcl.data.DataCache.Row row = dataTable1Model.getDataCache().get(key.intValue());
    if (row.isUpdated()) {
    count++;
    // BYHAND - Perform the actual update transaction and report results
    try {
    dataTable1Model.commit();
    info("Total rows updated: " + count);
    } catch (Exception e) {
    log("OnePage: Update commit exception", e);
    error("OnePage: Update commit exception: " + e);
    // BYHAND - Re-execute the query to pick up new results
    try {
    dataTable1Model.execute();
    } catch (SQLException e) {
    log("OnePage: Update reselect exception", e);
    error("OnePage: Update reselect exception: " + e);
    return null;
    My guess is jCreator compares the text from data table and rowset's cache (???). as I display date and rate in formats I need.
    My data table displays 10 rows so each time I change 1 row jCreator updates 10 rows of the data table.
    Need clarification on this.
    Cheers.

    Hi Hung,
    I received your email and was unable to reproduce using
    a new project.
    I want to reproduce this ASAP.
    Is this the same project you sent me previously?
    If not, then could you please email it to me again.
    Thank you
    John
    JSC QA

  • Ok, seriously what do use iPad for if you have a Mac and iPhone?

    I have the MacBook pro and an iPhone 4, I recently bought an iPad and at first I loved it and enjoyed watching videos and browsing the web ect... But since I was so used to using my iPhone for these situTiobs I find myself reaching more for my iPhone when I want to look something up or check email ect... What do most people use the device for?

    I essentially use it to consume content, whether that's watching movies and shows, emails and surfing. I also use it for grocery shopping (using the Ocado app) and I'm really getting into it using FaceTime and Skype for video conferencing. The iPad 2 is really well suited for video conferencing - much better than my MBP because I can flick between camera's if I want show something other than my face off, and easily walk around with it.
    I also use it quite heavily to control my MacMini which is my HTPC - I do this using Logmein which is a really great app - in fact it's almost as good as using Back to My Mac on my MBP, which is what I used to use to control my Mac Mini.
    I'm about to experiment to see if I can use the iPad to list an auction on eBay. I've already got my pictures loaded into the Photo app, and my descriptions written using Pages and stored in a Dropbox folder. All I have to do now is troubleshoot getting everything into eBay using either Safari or Atomic browser.
    Ideally I'd like my iPad to be a replacement for my MBP - I think it will be quite some time before that happens, but so far it's a great mobile companion.

  • I've just upgraded to iPhone 4S and restored data from my old iPhone through iTunes.  I'm being asked for a password to get into my phone and the old password I had doesn't work.  I don't know what password it's looking for

    I've just upgraded to iPhone 4S and restored data from my old iPhone through iTunes.  I'm being asked for a password to get into my phone and the old password I had doesn't work.  I don't know what password it's looking for

    Thanks for replying, I'm a real techno-cretin.  What do you mean by not using the backup?  I'm busy trying to restore my new phone and it's doing a 6 hour download with updates.  Can I restore the data from my old phone backup onto the new iPhone 4S when the download is done?

  • I got a new ph9one uesterday and am trying to do a restore data on my new phone  What password is itunes looking for-I dont have an itunes password

    I got a new phone yesterday (cracked the screen on my old one) and now I need to restore data from itunes.  Itunes is asking fior a password by I do not have an itunes password.  what password is itunes looking for?

    Hello agentlesley,
    It sounds like your backup is encrypted. If you do not know that password, then you would have to set up your iPhone as a new device.
    iTunes: About iOS backups
    http://support.apple.com/kb/HT4946
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

Maybe you are looking for

  • Profit Center derivation in F-02 transaction

    Hi All, In F-02 transaction, after keying in GL account and other details, a Profitability Segment pop-up screen is displayed. We enter a Sales Order & Item number and click on u2018Derivationu2019 button. System is automatically populating various f

  • Regar Authorization objects

    Dear all, Is there any Standared Z object for personnel area based. the Requirement is we have to give the payslip authorization i.e the t code is     PC00_M40_CEDT client wants to give this as region wise. can u please tell for this if there is any

  • Can't import jpg's

    I am trying to import jpg's to organizer, I have imported about 38,000 images but there are some in some folders and all in some folders that will not import.    I have tried to right click on the folder and choose import to organizer, no go says the

  • Idvd burn failure error

    last night I attempted to burn again via your advice on link--"http://discussions.apple.com/thread.jspa?messageID=1610170?" When idvd was finished with burn it said "burn failure". Would you no if it's because I'm burning my saved idvd project from t

  • APDU command chaining

    Hello, I am sending some byte array by portions of 255 bytes to my on-card Applet using a sequence of APDU command-response operations. I just wanted to know, in case there is any possibility to make on-side chaining: send some sequence of APDU comma