About Tcode SE30 Documents and Info

Hi Experts;
I want to make improvement at my z program.
I'm examine performans my z program using se30 tcode.
But I dont know exactly How is read results?
Are there any documents & Info about SE30?
Best regards.
Moderator message : yes, please read the sticky threads of this forum and search on SCN, e.g. the blogs section.
Edited by: Thomas Zloch on Oct 17, 2011 10:53 AM

my protection system is fine, i hope, but that aside for a
moment...
not all search engines take notice of the robot.txt true..
lets say my file system is like this...
root...
index.php
file1.php
file2.php
docs (folder)
file3.php
file4.php
index.php (dummy file)
what i want to prevent is any search engine from getting to
any files unless they come via the home page, i use a tag system...
?page=1&something=else method
all my pages are fresh and not been viewed other than via the
home page as no one knows what the folder names are for each
section of the site. i.e. one folder maybe called
''somethingreallylongthatnooneknow' only me
all files are inserted into the pages using the 'include()'
method
but still they show up in the search engine after a month or
so.
i would block them but that defeats the object of putting
stuff on the site i want it spidered but not like they are doing,
some search engines i know search others search engines and
somewhere along the line one of them is not taking notice of the
robot.txt file.
also now can they get the folders that i use, all folders are
created new and all have a default index.html file which redirects
them to the 404 error no page found.
how do they get my files? !!!!

Similar Messages

  • Can my apps with documents and info be transferred to new iPad if not cloud based?

    Looking to purchase a new ipad for myself and want to bring ALL my current apps (no biggy) and documents on my current ipad over to the new one. Apps such as Quickoffice, Docscan, and Docusign Ink with multiple files need to be migrated to the new one. Is this possible without it being or residing in the cloud and how could I perform this? Can this be done in the Apple store when purchasing the new unit? I then want to restore the old ipad so I could set it up for my son.

    I suggest doing this using iTunes on your computer.  (But frankly, I cannot speak to whether iTunes would store all your third party documents, etc.)  See the following reference document for what iTunes stores:
    http://support.apple.com/kb/HT4946
    If this concept works for you, click the "create and restore ..." link in the second paragraph to learn how to do this.

  • Change documents and Pointers

    Hi Gurus,
    Would anyone explain briefly about the Change documents and Change Pointers..as I am new to this concept if anyone can explain in more detail or send me documents that would be great and also I will def. reward points..please send me the docs to [email protected]
    I gurantee that I will reward points...
    Regards
    Baba.

    Hi Baba,
    A <b>Change Document</b> is an object that contains a log of all the changes that were made on a specific business object (like a product or a business partner), so you will always be able to identify what was changed, when it was changed and who changed it.
    <b>Change pointers</b> instead are used in a different context that is the distribution of master data changes to different system. When in the source system an object (material) is changed (e.g. change of the description) if change pointers are activated, the material is flagged as "changed" and using change pointers the material update will be sent to all the system that are configured to my sinchronized with master data. This is not for tracing like change document but for master data distribution
    You can find more details on help.sap.com:
    - <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/2a/fa015b493111d182b70000e829fbfe/frameset.htm">Change Documents</a>
    - <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/12/83e03c19758e71e10000000a114084/frameset.htm">Change Pointers</a>
    Hope it helps,
    Kind Regards,
    Sergio

  • Can I use ExtendScript to store info about an Illustrator document externally and recover it later?

    What I want to do is this:
    1. Iterate through all the layers in a document (recursively) and discover each layer's NAME, VISIBLE, and LOCKED properties.
    2. Create an object that contains those properties.
    3. Push the object onto a second array.
    4. Store that second array somewhere, preferably in a file (text?) in the same directory as the AI document.
    5. Load that file at a later date as an object array.
    6. Use the object array to iterate through the illustrator document to conform the current state of that document to the stored states in the array.
    Ideally I would like to be able to store a number of separate states in the same document and refer to them somehow.
    As you may have guessed by now, this is my attempt to make a LayerComps feature for Illustrator that I could use to turn visibilities on and off and then export the result, moving on from one state to the next until all the states I am interested in would be exported. I would settle for being able to do it one at a time.
    I can already do steps 1-3 (shown in blue).
    var doc = app.activeDocument;
    var docName = doc.name;
    var layerStates = [];
    var layerCount = doc.layers.length;
    var count = 0;
    function addLayers(layerArray) {
            for (var i=0; i<layerArray.length; i++) {
                // create an object representing a layer state
                var o = {};
                o.name = layerArray[i].name;
                o.visible = layerArray[i].visible;
                o.locked = layerArray[i].locked;
                layerStates[count] = o;
                count++;
                // if this layer has layers of its own, iterate through those
                if (layerArray[i].layers.length > 0) {
                        addLayers(layerArray[i].layers);
    addLayers(doc.layers);
    // show that we did something, incomplete though it is
    var s = "";
    for (var i=0; i < layerStates.length; i++) {
            s += layerStates[i].name + ": ";
            s += (layerStates[i].visible ) ? "visible" : "invisible";
            s += ", ";
            s += (layerStates[i].locked ) ? "locked" : "unlocked";
            s += "\n";
    alert(s);
    I don't know if it is possible to export that data as XML or even a text string and save it as a file on the file system for later parsing. Anyone have any thoughts about this? Is it possible?
    Currently I am using a restrictive version of a LayerComps script I created, which iterates through a top layer's sublayers, turning each on and exporting as PDF, then turning it off and moving to the next. This is more convenient than doing it by hand, but it really forces me to compartmentalize all "views" of a document in a way that does not lend it self to efficiency and forces redundant copying of pathItems between layers.
    Thoughts?

    Also good, and thanks again for your help. I wasn't sure if ExtendScript implemented the eval() method, necessary to re-objectify a JSON string, because I can't find it in the documentation, but I do see it used in some examples elsewhere. I've successfully written XML files at this point, and when I get a few minutes I'll work on the reading/modifying/exporting part. In the long run, XML files are easier to read, manipulate and maintain, so I'll probably go that route.
    var doc = app.activeDocument;
    var docName = doc.name;
    var xml = new XML("<root></root>");
    var layerStates = [];
    var layerCount = doc.layers.length;
    var count = 0;
    function addLayers(layerArray, xmlObj) {
        for (var i=0; i<layerArray.length; i++) {
            // create an object representing a layer state
            var lay = layerArray[i];
            var x = new XML("<layer/>");
            x.@name = lay.name;
            x.@visible = lay.visible;
            x.@locked = lay.locked;
            xmlObj.appendChild(x);
            layerStates[count] = x.toXMLString();
            count++;
            // if this layer has layers of its own, iterate through those
            if (lay.layers.length > 0) {
                addLayers(lay.layers, x);
    addLayers(doc.layers, xml);
    var xmlFile = new File();
    xmlFile.open('w');
    xmlFile.write(xml);
    xmlFile.copy ('C:/Program Files (x86)/Adobe/Adobe Illustrator CS4/Presets/en_US/Scripts/data.xml');
    xmlFile.close();
    All in all, the documentation for this stuff leaves a little something to be desired. My original question had more to do with how file read and write text streams was handled. The answer was actually much simpler than I anticipated. All this stuff is, once you get a handle on it, but the docs are so stingy on particulars — does it really help us to know about the XML class merely that it "wraps XML into an object" or that XML.attribute(name) "returns a list containing all attribute elements matching the given name"? I finally worked it out for myself that the XML object may be manipulated using dot syntax (x.name, x.@name), but that was certainly not mentioned anywhere.
    Ah, well. The journey is the reward, right?

  • TA25361 I have a ton of documents and databases in AppleWorks v 6.0 that I can no longer open on my MacBook Pro.  Is there any way to recover this info?  Some documents can be opened and resaved with textedit, but not my database with all important addres

    I have a ton of documents and databases in AppleWorks v 6.0 that I can no longer open on my MacBook Pro.  Is there any way to recover this info?  Some documents can be opened and resaved with textedit, but not my database with all important addresses.

    I tried Peggy's List > Select All > Copy > Paste into an AW spreadsheet suggestion.
    In my case, pasting into the spreadsheet lost all text formatting (mostly text set to bold). The results of formulas were pasted, and checkboxes were pasted as "on" or "off". The DB did not contain any pop-up menus or radio buttons, but I expect they would transfer as a number showing the list position of the chosen item.
    Pasting the copied List view data into a Numbers table gave a result similar to that with AppleWorks. I selected B2 as the target cell (for top left cell of the pasted data) to avoid any effects of posting into a header row or column. Bold and regular text formatting looked the same as it had in AW's List view.
    Based on that, I'd slip the 'paste into an AppleWorks Spreadsheet step, and paste directly into a Numbers Table.
    Regards,
    Barry

  • So I've been trying to open some Microsoft Word Documents and it says it can't be opened because PowerPC applications are no longer supported. What do I do about this?

    So I've been trying to open some Microsoft Word Documents and it says it can't be opened because PowerPC applications are no longer supported. What do I do about this?

    Workarounds:
    1.  Restore the OS X that you formerly used to run Word 2004;
    2.  Partition your hard drive or attach an external hard drive and install Snow Leopard (and Rosetta) so that you can "dual-boot" into Microsoft Word 2004;
    3.  Upgrade to Word 2011 or use an alternative program; or
    4.  The solution I use: Install Snow Leopard (and Rosetta) into Parallels 7 or 8:
                                  [click on image to enlarge]
    Full Snow Leopard installation instructions here:
    http://forums.macrumors.com/showthread.php?t=1365439

  • How to create and assign a help document to INFO button on ALV grid

    Hi All,
    Can somebody tell me how to create an 'END USER DOCUMENTATION' document and the 'FUNCTION MODULE' to call it and display in the form of F1 help screen.
    OR
    Is there any standard method to call & display a help document, when the user clicks the INFO(i) button on the ALV grid standard toolbar?
    Thanks in advance.
    Rkumar

    Hello Rkumar
    If you have defined a documentation for your ALV report which you want to display when the INFO button is pushed you can use the following coding:
    CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP'           
        EXPORTING                                  
             DOKCLASS           = 'RE'                                          " = report
             DOKNAME            = '<name of your ALV report>'
             SHORT_TEXT         = 'X'              
        EXCEPTIONS                                 
             OTHERS             = 1.     
    Regards
      Uwe

  • When you sync your phone, what info is in the "documents and data" ?

    I have 5MGB of "documents and data" and can't figure out what's contained in that so I can clean it up.

    Documents and data include any files that you have saved on iCloud and info that apps have stored in iCloud.

  • When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

    When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

    When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

  • HT2470 how would i go about taking multiple files from documents and make them part of 1 master file

    how would i go about taking multiple files from documents and make them into 1 master file? I want to put all documents associated with this project together for easier access.

    From the finder window, click File, click new folder, you can drag all documents into that Folder making it the master folder. You can ajso drag folders into the Master folder, and have them as sub-folders if you wish to  do that. Either way they will all be in one master folder.

  • HT201401 i did a master clear to wipe out contacts and info on i phone 3g and it said about an hour and it never came back on just an apple appears and it doesnt come up in i tunes to restore?

    i did a master clear to wipe out contacts and info on i phone 3g and it said about an hour and it never came back on just an apple appears and it doesnt come up in i tunes to restore?

    Place the iPhone in recovery mode or DFU mode (search Google) and restore.

  • Whats is the use of SM64 Tcode?? and about Trigger Event???

    Hi
    Whats is the use of SM64 Tcode?? and about Trigger Event???
    Can anyone tell me??
    Thanks & Regards
    Senthil

    Hi,
    When scheduling a background job, you can specify it to start "after event".
    If you do so, you'll have to create an event in SM62.
    If a job is scheduled after event event and you trigger the event with SM64, the job will start.
    Events can be raised by external systems in SAP by sending a command to a SAP application server. You can also raise event in any program using function mosule BP_EVENT_RAISE.
    hope this helps....
    Olivier.

  • Want more info about optimizing battery lifespan and performance

    I have read Apple Support's basic article on iPhone battery charging, but it doesnt answer all of my questions.  i am kind of a fanatic about maintaining the health and longevity of my battery.  I usually run it down to 3% or less before plugging in, then charge it all the way up.  This creates some inconvenience, but after one year, my iPhone 5 battery is still performing much better than any previous iPhone ever did.  Here are a few questions I have:
    1. Is it really neccessary to wait for the battery to drop to 3%, or could I charge it after it goes below 20%, if it is more convenient?
    2. Is there any harm in charging to less than 100% if I am in a hurry?
    3. If I regularly plugged it in at over 50%, would it develop a memory and hold less charge?
    4. What effect, if any, do Mophie Juick Packs have on iPhone battery health (I just got one)?
    If there were no memory issues, the most convenient thing to do would be to plug it in every night at bedtime.  Any knowledgable commentary would be welcome.

    There's a few aspects to this - and such several "correct" answers.
    First, what exactly will you be doing? Are you just editing or will there be vfx/color grading etc? If it is the latter, and you're in SD, I'd personally go with uncompressed 10-bit. The files will be large, but it will be worth it if you do a lot of processing.
    ProRes files will be much smaller, and still look very good, but may not hold up as well to heavy processing.
    Not sure what you mean with #2... what other codec(s) are you looking at. Saying it is "unnecessary for SD" is an interesting comment - depends on what you want to do with the footage.
    Some info about ProRes (and uncompressed) bitrates:
    http://www.appleinsider.com/articles/07/04/18/acloser_look_at_apples_new_prores_422_videoformat.html
    http://www.apple.com/finalcutstudio/finalcutpro/apple-prores.html
    http://sportsvideo.org/main/blog/2009/08/11/apple-final-cut-prores-lowers-bitrat e/
    http://documentation.apple.com/en/finalcutpro/professionalformatsandworkflows/in dex.html#chapter=10%26section=1%26tasks=true

  • Beginner question about the size of the documents and fonts

    I have worked with dps a couple of years now and now that Adobe removes Single Edition I have to look at other tools. EPUB3 fixed layout appears to be an alternative solution.
    I've been reading up on the web and checked on Lynda courses, but there is one thing I wonder about.
    How should I think about the size of the InDesign document and the size of the body text when I create a EPUB3 with fixed-layout?
    Regards
    Ake

    A couple things to keep in mind with EPUB3 Fixed Layout:
    Unlike EPUB reflowable, FXL doesn't change size. You'll need to optimize your InDesign layout for the device most likely to view it—for example, an iPad, since it's the dominant device.
    Like with DPS, you'll need to pick a font size larger than you'd use for print.
    As with DPS, it's very important to do some tests on your target device to optimize both dimensions and font size.
    Final Note: If you're in North America, this is a good time to  buy an iPad since there are a lot of Black Friday sales coming up!

  • I have scanned about 1600 pages of 100-year old documents and saved them as pdf files.  I would like to search them for keywords and phrases.  Can anyone recommend software that can be used as an index for these documents?

    I have scanned about 1600 pages of 100-year old documents and saved them as pdf files.  I would like to search them for keywords and phrases.  Can anyone recommend software that can be used as an index or search engine for these documents?

    If you have Adobe Acrobat (not Adobe Reader) the program can perform an OCR on the document you acquired.
    In the past I used ABBYY FineReader

Maybe you are looking for

  • Error on deleting page group (Path ID does not exist)

    Hello I'd like to delete a page group of my project. Normally I have no problem with that. But sometimes the following exception is thrown and the group can not be deleted: An unexpected error has occurred (WWS-32100) ORA-1: User-Defined Exception (W

  • How to check whether 620 routine is configured or not?

    Hi, I hv VOFM>Formulas>Conditional value--> 620 routine, its used to determine the SHIPMENT COST DOCUMENT creation and its talks about consolidating all the shipemts together belongs to same customer and there by creating only one shipment (cartons/v

  • Pictures from iphoto not available in pictures folder

    I have downloded pictures from my camera to iphoto 08. I have events & albums created. When I'm on other websites or even in Word (Office: Mac), I can't attach or insert a picture from here. When I go to my pictures folder, I click on iphoto library

  • Editing narration for a presentation

    Preparing 30 min presnttn. Pre-recorded 5 min naratn, placed in audio wndw. Now, I'm editing transitions/builds to fit naratn and have to start over every time I want to review results. (very tedious) Sound track starts _from the beginning_ even if I

  • Sql loader function attachment....

    Hello all, I have a doubt on sql loader.... Now i'm having like below tables.. TableA empno|ename 1|A 2|B 3|C Table B salary|empno 10|1 12|2 14|3 My requirement is, in my data file instead of empno i'm having ename. Now, I need to right a function wh