Hide Code

How to hide source code in se38 as well as in debug mode at system level?

Hi
You can use FM --> EXIT_SAPLS38E_001. Activate this through CMOD.
Regards,
Suresh.S

Similar Messages

  • How to hide code navigator icon in code view? DW CS5

    Hey all,
    Is there an easy way to turn the code navigator icon off in code view?  It likes to pop up at the most inconvenient times and hides parts of my code from me.  Do I have to disable 'all' tool tips?  Please help.  Thanks.

    I turn it off until I need it.
    http://forums.adobe.com/message/2829663#2829663
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How do I hide code in email

    all (alomost a whole page) of the code comes up on emails coming, forwarded, and sent

    From the Menu Bar select''' View-Headers-Normal'''
    No menu bar? Press the alt key.

  • Hide Code Group code as selection

    When we develop Code Groups and Codes, after a period of time the Code is no longer to be used. I understand that it can not be deleted as it has usage, but why can't one flag similar to the Code Group itself so it will not be visible for selection. Right now we change description to DO NOT USE, but users still select code.

    Hi,
    It is possible to delete the catalog codes inside the group.
    For that, first you have to define your own catlog type (as SAP recommends not to change the settings for the SAP defined catalog types).
    Procedure:
    - Define catalog type say 'Z'
    - In config set the check box Deactivate. (Read F1 help on this checkbox)
    - Now define the codes for this type in QS41.
    - Use the code somewhere (e.g. Notification)
    - If u check QS41 again, it will have usage indicator.
    - But you can delete the entry ignoring the warning message.
    Let me know if this fulfills the reqmnt.
    regards

  • Hide code on lov

    I have a dynamic lov. Wth lots of values - so I use a popup lov with a search option. cool.
    It comes up nicerly and a user can click on the value they want. Unfortunately this then populates the apex-form with the number not the display value. So the user is surprised that what they picked in not on the form. Anyone know a simple way around this?
    I was thinking of having a before insert trigger call a procedure and get the number...maybe too complicated!? Is there any other way around this?
    In a sort of realted problem i now I have lov tables I cannot make a interactive report and form on the table as in order for the users to know what they are looking at they need the table to be joined to various lookups...a view is also problematic. I'm beginning to wonder about storing the data directly in the table and having a procedure on the lov table that will update the other 3 or 4 tables if the value in it is changed....nasty or at least unusual but maybe its my best simplest option given that there are never likely to be a huge number of tables usig these lovs?
    Edited by: Emu on Jul 13, 2009 2:08 AM

    Use popup key LOV (displays description returns key value).
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • Hiding code in ABAP programs

    I curious if in ABAP is possible to hide code.
    What I exacly mean?
    In other programming languages e.g. C++ when we want to hide some part of implementation, we just simple make an library (dll file) and we join it to complilation code.
    Is included in ABAP similar functionality?`

    Hi Tomasz,
       Check this code:
    This is not my own code.
    PROGRAM ZHIDE NO STANDARD PAGE HEADING.
    This program hides any ABAP's source code and protects it with a
    password in this source code. So the first candidate to be hidden
    should be ZHIDE itself.
    After hiding, you can still run the abap (the load version is intact)
    but it cannot be displayed, edited, traced, transported or generated.
    If the ABAP is not hidden, the program hides it, if it is hidden, it
    unhides it.
    To execute this program, change the user name and password in this
    source code first.
    SELECTION-SCREEN BEGIN OF BLOCK BLOCK.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(8) PWD.
    SELECTION-SCREEN POSITION 35.
    PARAMETERS: PASSWORD(8) MODIF ID AAA.
    SELECTION-SCREEN END OF LINE.
    PARAMETERS: PROGRAM(8).
    SELECTION-SCREEN END OF BLOCK BLOCK.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'AAA'.
    SCREEN-INVISIBLE = '1'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    INITIALIZATION.
    PWD = 'PASSWORD'.
    START-OF-SELECTION.
    TABLES: TRDIR.
    User name and passsword check
    IF SY-UNAME <> 'SAP' OR PASSWORD <> 'PASSWORD'.
    WRITE: / 'Wrong password'.
    EXIT.
    ENDIF.
    SAP owned?
    IF NOT PROGRAM CP 'Z' AND NOT PROGRAM CP 'Y'.
    WRITE: / 'Do not hide original SAP programs!'.
    EXIT.
    ENDIF.
    Exists?
    SELECT SINGLE * FROM TRDIR WHERE NAME = PROGRAM.
    IF SY-SUBRC <> 0.
    WRITE: / 'Program does not exists!'.
    EXIT.
    ENDIF.
    Does it have a current generated version?
    DATA: F1 TYPE D, F3 TYPE D.
    DATA: F2 TYPE T, F4 TYPE T.
    EXEC SQL.
    SELECT UDAT, UTIME, SDAT, STIME INTO :F1, :F2, :F3, :F4 FROM D010LINF
    WHERE PROG = :PROGRAM
    ENDEXEC.
    IF F1 < F3 OR ( F1 = F3 AND F2 < F4 ).
    WRITE: / 'The program has no recent generated version!'.
    EXIT.
    ENDIF.
    Compose a new program name
    DATA: NEW_NAME(8), I TYPE I, J TYPE I.
    NEW_NAME = PROGRAM.
    DO 8 TIMES.
    I = SY-INDEX - 1.
    NEW_NAME+I(1) = '_'.
    Search for acceptable program name variations
    J = 0.
    SELECT * FROM TRDIR WHERE NAME LIKE NEW_NAME.
    J = J + 1.
    ENDSELECT.
    IF J = 1.
    EXIT.
    ENDIF.
    NEW_NAME = PROGRAM.
    ENDDO.
    Cannot generate appropriate program name
    IF J > 1.
    WRITE: / 'Cannot generate appropriate program name'.
    EXIT.
    ENDIF.
    Check if it is already in d010s (already hidden)
    DATA: F5(8).
    EXEC SQL.
    SELECT PROG INTO :F5 FROM D010S WHERE PROG = :NEW_NAME
    ENDEXEC.
    IF F5 IS INITIAL.
    There is no such hidden program, hide it
    EXEC SQL.
    UPDATE D010S SET PROG = :NEW_NAME WHERE PROG = :PROGRAM
    ENDEXEC.
    ELSE.
    There is already a hidden program there, unhide it
    EXEC SQL.
    UPDATE D010S SET PROG = :PROGRAM WHERE PROG = :NEW_NAME ENDEXEC.
    ENDIF.

  • Code View Wordwrap Bug

    In code view window, with wordwrap, dreamweaver hides code characters on the right edge of window.
    It only hides 3-4 last character of the largest line.
    Is it a bug? Does anyone notice it?

    I have also faced this issue where if code's line is large and WordWrap is enabled, then it Dreamweaver CS6 actually wrapped it but hides 3 to 4 characters which is not select able or even view able. See the attached screenshot, you will see Dreamweaver CS6 hides some characters of my line which is definitely something wrong with the DreamWeaver.
    Can anybody found the way to avoid it..??..I cant allow the WordWrap to be disabled and scroll it with that pathetic horizontal scroll.

  • Labview 2011 Error code 3

    I am having the same Error code 3 using Labview 2011 student edition.  I tried adding connPaneRecoveryMode=True to the ini file and it did not solve the problem.  Can anyone help me to recover the vi?  It will set me back by days if I have to recreate it.  Your help will be much appreciated! 
    Attachments:
    Analyze_EMG_Data.vi ‏258 KB

    I'm glad it saved you so much work.  It is the first time I attempted to follow the procedures to fix this problem. I used LV2012 and saved it back to LV2011.  I know that when I didn't follow the procedures precisely, it crashed LabVIEW with an FPSane error.
    I mentioned the sequence structures because in general, the stacked sequence is being discouraged as a part of good LabVIEW style.  It hides code, and the sequence locals force you to have wires running in the wrong direction in one or more cases which confuses someone trying to follow the code.  If you have too much code that makes your block diagram too big, that is a time to consider consolidating code into logical functional groups that can be placed into subVI's.

  • Best way to hide symbols when they're on the stage, but invisible?

    I have multiple symbols linked to buttons with .click events...
    The problem I'm having is that when I've animated the contents of the symbol with opacity down to zero, etc, but the symbol itself remains on the
    Stage, and it blocks other layers' text from being selectible (i.e. if visitors wanna copy and paste my text, they would be unable to with that invisible symbol sitting on top of it in the layer order)
    I tried to use sym.$(current).hide();   like below... (The rest of this code is for state management so that an animation will play out, and another one will play in whenever a corresponding button is clicked - it comes from here: http://blogs.adobe.com/edge/2012/07/18/tutorial-leveraging-independent-symbol-timelines/)
    var current = sym.getVariable("current");
       if (current != "") {
          sym.getSymbol(current).play("out");
            sym.$(current).hide();                     //tried to use this to hide the symbol after it played "out" but it cancelled the play("out") request and just hid my symbol
    sym.getSymbol("WelcomeContent").play("in");
    sym.$("WelcomeContent").show();
    sym.setVariable("current", "WelcomeContent");
    I'm guessing that I've used .hide() in the wrong place, can someone suggest where I should put it so that all the unused symbols on the stage are hidden until their button is clicked?
    Here's my SAMPLE file http://www.ruesterprod.com/edgehidesymbols/rpedgerebuild.zip
    (I commented out the .hide() code on the .click events I mentioned above to show you the functionality I wanna keep)
    Thanks all!
    Aza

    So, getSymbolElement() is missing.
    1) One scripting:
    if (current != "") { sym.getSymbol(current).play("out").getSymbolElement().hide(); }
    2) Another scripting:
    if (current != "") {
                   sym.getSymbol(current).play("out");
                   sym.getSymbol(current).getSymbolElement().hide();
                   //sym.$(current).hide();

  • Wait time in while loop: wait before all other code in the loop runs

    My vi is attached. 
    In the 'Check for Equilib' case, there is a while loop that takes data from a pressure gauge and compares it against data taken equilibTime seconds previous.  equilibTime is hooked up to a wait(ms) function inside the while loop.  Currently it appears that the code in the loop runs, and then the loop waits so many seconds before the next iteration.  I would like to reverse this process, i.e. in each iteration, the loop will wait so many seconds and then run the rest of the code in the loop.  I want to do this because I don't want there to be any delay between then time the 'check for equilib' code finishes and the start of the 'add shot' case.
    Can anybody suggest an elegant way of implementing this?
    Thank you
    Attachments:
    Take Isotherm.vi ‏294 KB

    No.  Use Flat sequences they are far preferable to stacked sequences.  Functionally they are the same.  But a flat sequence is easier to read, doesn't hide code, and you don't have to worry about backwards wiring caused by sequence locals in stacked sequence.
    Note, you have two oddities in your lower while loop.
    1.  Write a value to an indicator's terminal node and to a local variable of the same indicator is pointless.  They do the same thing.
    2.  Reading from a local variable of an indicator and writing to its terminal node is just as pointless, as you aren't doing anything.
    In your middle loop "Add shot" case, you have the local variable of DC estimate righting to a right hand side shift register, but you never use the left hand shift register.  So you are saving that value for future loop iterations, but never use it.

  • SetVisible against show and hide

    Hello, making some practises I have observed that setVisible method doesn't just makes visible or not, it affects me when I change location of components I have played with setVisible, but when I use deprecated methods hide and show I haven't that problem.
    What else makes setVisible than make visible or not?

    Hello, the way I see it, setVisible is just a nicer way of setting visibility than show() and hide(). Anyway, the way setVisible is implemented in the Component class is :
    public void setVisible(boolean b) {
          show(b);
    }So I don't believe you should be experiencing any difference between show() and setVisible(). As to the change in positions of components, you might find the actual implementation useful:
        public void show(boolean b) {
            if (b) {
                show();
            } else {
                hide();
        public void show() {
            if (!visible) {
                synchronized (getTreeLock()) {
                    visible = true;
                    ComponentPeer peer = this.peer;
                    if (peer != null) {
                        peer.show();
                        createHierarchyEvents(HierarchyEvent.HIERARCHY_CHANGED,
                                              this, parent,
                                              HierarchyEvent.SHOWING_CHANGED,
                                              Toolkit.enabledOnToolkit(AWTEvent.HIERARCHY_EVENT_MASK));
                        if (peer instanceof LightweightPeer) {
                            repaint();
                        updateCursorImmediately();
                    if (componentListener != null ||
                        (eventMask & AWTEvent.COMPONENT_EVENT_MASK) != 0 ||
                        Toolkit.enabledOnToolkit(AWTEvent.COMPONENT_EVENT_MASK)) {
                        ComponentEvent e = new ComponentEvent(this,
                                                              ComponentEvent.COMPONENT_SHOWN);
                        Toolkit.getEventQueue().postEvent(e);
                Container parent = this.parent;
                if (parent != null) {
                    parent.invalidate();
        }I left out the hide() code, since it is quite similar. Anyway, if you are interested in this code you can always look it up - it's avaliable.
    Hope this helped, laginimaineb.

  • I'm new to flash and need help with some controls

    I'm builidng a site that has a portfiolio of work to display.
    When the visitor arrives at the portfolio page he (or she) is
    faced with a split panel. The right panel displays a summary of a
    client and the work. The left panel displays the work examples
    attributed to that client. By clicking forward and backward arrows
    in the right panel, the visitor can call the summaries of the
    different clients. Landing on a client page 'opens' a separate swf,
    called using loader component, that contains the portfolio of that
    client's work into the left panel
    1. I want forward and backward arrows located on the main
    movie in the left panel to control the progress of the loaded swf,
    rather than using forward and backward arrows on the loaded swf.
    2. I want to prevent the forward and backward arrows in both
    panels from clicking beyond frames in the Portfolio area of the
    timeline.
    3. I want the backward arrow to be innactive on the first
    frame, and the forward arrow to be innactive on the last frame.
    I have no problems making the arrows work on the main movie
    controlling the client summaries. What I don't know how to do is
    make them control the movement of the loaded swf, or #2 and #3.
    Any help will be greatefully appreciated. Thanks in advance,
    Art

    "Art Lazaar" <[email protected]> wrote in
    message news:[email protected]...
    > Tralfaz,
    >
    > Thanks for your response. I must be missing something
    very simple here, but I
    > can't make this work no matter what I do. Let me see if
    I understand some of it:
    >
    > On my main movie I put the fwd_btn and rew_butn
    codes...do I put these on the
    > actual buttons, or in an actions time line? When I put
    them on the buttons, I
    > get an error report saying they need to be in an 'on'
    event handler. I thought
    > that's what 'onRelease' was.
    >
    > On my loaded movie, I place the 'one.swf' code. I'm not
    sure what you mean by
    > placing the code inside a loop, I don't seem to be able
    to find a reference to
    > using 'loop' anywhere. When I use an 'onEnterFrame', I
    presume I do that with
    > onEventClip(enterFrame). When I do that, if I run the
    'one.swf' by itself, i
    > get an error report saying onEeventClip is for movies
    only. But there's no
    > error report when it loads from the main movie. What
    happens tho' is it loops
    > continuously, even if there are stops() in it.
    >
    > Boy, am I confused ;)
    >
    > I am really baffled by this seemingly simple little
    task. Your help is
    > gratefully appreciated.
    >
    > Art
    >
    >
    >
    Hi Art,
    There are different coding methods, depending on where you
    put code..
    1) Frame code
    Click on a frame of the timeline to enter frame code
    2) Attached code for movieclips and buttons
    Click once on a movieclip or a button then enter attached
    code
    To make an onEnterFrame event for a movieclip, first chose
    either frame code or attached code method. I personally rarely ever
    use
    attached code because it hides code in places that can be
    hard to find. Almost all my coding is frame code, but it's a
    personal
    choice.
    Frame code method to make an onEnterFrame for the main
    timeline..
    // put this code into a frame on the main timeline
    this.onEnterFrame = function()
    // do something once per frame at the frame rate
    checkMyButtons(); // once per frame we will check on the
    button status
    OR
    Attached Code method to attach an onEnterFrame event to a
    movieclip
    // click once on the movieclip (don't dbl click it .. stay at
    the root timeline level)
    onClipEvent(enterFrame)
    // do something once per frame at the frame rate
    Those two types of code are not interchangeable. One type
    must be entered into a frame and the other style must be attached
    to a
    movieclip or you will get errors.
    Then there is the DOT syntax way to write frame code that is
    equivalent to attaching code..
    myMovieClip.onRelease = function()
    trace("release");
    myMovieClip.onPress = function()
    trace("press");
    myMovieClip.onDragOut = function()
    trace("drag out");
    tralfaz

  • Installing Windows XP on macbook pro - what happens to your mac afterwards?

    Hello,
    First time mac user, and I miss windows for it's wide girth of video games, so I am thinking to install windows xp with boot camp assistant.
    What happens to your mac afterwards? Does it run as perfectly smooth as before? Does it get slower? Does it develop weird glitches? Will it crash and freeze? If you don't like it, can you restore your computer to how it was before?
    And if you download a video game torrent that has a virus even if you scanned it with anti-virus software through windows, and the virus infects your mac, does it only affect the windows partition or does it affect your entire mac?
    Thanks,
    Purplestar

    galacticdog wrote:
    Would formatting the partitions differently (where so the windows partition cannot even see the mac partition) prevent drive erasure?
    Not really. Under normal circumstances, neither OS X or Windows would let you erase or format the startup drive, but a lot of effort goes into crafting Windows malware to subvert even its most basic protections. If the malware is sufficiently crafty, it could conceivably attack the low level formatting that defines the partition scheme of the drive, bypassing any attempts to hide a partition.
    Note that this would be possible with OS X as well, but malware has to get past the defenses of any OS before it can do anything so fundamental. Both OS X & Windows 7 (if not the earlier versions) get high marks for security. It is just that the risk of this happening is greater with Windows because of the sheer volume & diversity of attacks focused on that OS.
    That's why it is so important to have effective, up-to-date anti-virus software when running Windows. It isn't so much that any malware could do this today. The concern is that some clever new type of attack could appear & do this, perhaps as a byproduct of trying to take control of the machine & hide code or data where there would normally be no trace of it.
    Thanks peeps! I just got a 500 GB harddrive and I'm trying to figure out how best to partition it as a web designer so I can safely use windows.
    As you probably know, Boot Camp Assistant is designed to easily handle the necessary formatting chores to set the drive up for dual booting, & there is no reason not to use it. I'm not by any means an expert on Windows & I don't know how much design work you plan on doing on the Windows side, so I can't really suggest appropriate sizes for the two partitions, other than to emphasize the need to leave enough room on the Windows partition for the anti-virus software.
    Also, on a related topic, do not forget that you need to back up at least all your user-created files for both OS's, & that this should be done on an entirely separate drive that can physically be disconnected from your Mac for the best insurance against any misfortune, including but not limited to successful malware attacks.

  • Referring to functions on the stage from a movieclip.

    First of all, I'd like to thank you to anyone who takes their time to read this. I registered to this forum for the sole purpose of getting help to this one issue of mine, as I found most issues were solved in here. By reading my problem (and hopefully responding) you're doing me a huge favour. Thanks in advance.
    I just started "coding" in AS3. By "coding", I actually mean trying around with features and generally trying to grasp the vast amount stuff you can do with this software of. I have some coding experience, however the way   Flash likes to hide code snippets all over my project does tend to confuse me. Not knowing where I tried putting the code and/or rewrote some other stuff keeps me sorta busy.
    I'd also like to apologize for the title, if it in any way confuses you. Shortening down my problem to a single sentence was hard, please keep that in mind.
    Anyway, my issue is this:
    Messing around with movieclips inside movieclips, I've keep encountering the error "1120: Access of undefined property onTimerComplete." I do realize that this error generally is caused by not having defined an instance correctly or not having it defined at all - an error beginners tend to make.
    Nonetheless, I'm not trying to refer to an instance/symbol, I am trying to call a function defined on the stage from within a movieclip that also is placed on the stage.
    I've been reading huge amounts of text/articles and how-to 's, but they all seem to only touch the subject lightly or simply going in head-first - becoming far too complicated for me (a beginner) to grasp.
    So, trying to sum my questions up into something that looks like a tl;dr:
    - What's up with levels, "_root" and referring to functions like in the older versions of flash?
    Flash tells me to use some display-package instead of _root, when I use that... (I do realize the article is from Flash 5.0)
    - How do you refer to a function defined on the stage, from inside a movieclip? (The function is a timer, that is supposed to make the mother-movieclip continue to the next child-movieclip.)
    Please, I really don't know how to define my problem any further than this. Ask as many questions as you would like, I really appreciate any help I can get.
    - Mattimussi

    click file/publish settings/flash and tick "permit debugging".  highlight the line number referenced in the error message.  (and, use:
    Calling:
    stop();
    MovieClip(root).startTimer();
    Defining:
    var myTimer:Timer = new Timer(2000, 1);
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE,onTimerComplete);
    myTimer.start();
    function onTimerComplete(event:TimerEvent):void{
    play();
    //myTimer.stop();
    function startTimer():void{
    trace("startTimer function was executed");
    myTimer.start();

  • Change Equal Function to Configurable

    The idea is to change Equal? function in a way, that it will be configurable, and will have one input as function "Equal To 0?". Sometimes you need to evaluate number of loops execution in While Loop (or not just it), and when you put standard Equal? function, some of wires will be not aligned in a straight line (either which is connected to Index output, or which is connected to Loop Condition), and you need to move up/down one of terminals.
    So, you can see it from the attached picture.

    So you are saying on you want a small version of an Express VI, but you don't want an express VI, even one that is set to show as icon?
    That express VI's are intended for kids in kindergarten, but you still want something that hides code from the programmer?
    It might sound like we are being negative here.  And we are.  You are asking for something that already exists, but you don't want to use that because it isn't exactly what you want it to be.
    I don't want NI wasting time making a new variation of an express VI, which any experienced LabVIEW programmers avoid, just because you think the current Express VI is too big, and don't want it to look like a cartoon intended for new LabVIEW programmers (which is exactly what an Express VI is meant to be.)
    Don't create an idea for a configurable comparison that is like an express VI, but you don't want an express VI because it is too big.  Ask for a redesign of the appearance of the current Express VI.

Maybe you are looking for

  • Pages 5: Footer is gone

    I've been using Pages for a long time now to create invoices for my customers. Paying information and tax number have been in a table in the document's footer. Something has terribly changed in Pages 5 - this information is no longer visible - my cus

  • HELP!! how do i set up my m audio solo in logic?

    i have installed all the drivers etc. for the solo, im running it through firewire on my powerbook. i have a mic plugged into the input 1 and i even get a signal in logic, but nothing records and i dont hear what im speaking into the mic . please hel

  • Problem Uninstalling iTunes

    I just recently bought a Macbook Pro. I have an iPod Touch and I used this on my old Windows XP. Now I will be using the iPod on my new computer, because I gave my XP to my mother who will be using it for her brand new iPod Touch. I have tried to uni

  • Fax Send&Receive Problem

    Hi, We have 2801 CME router. Also I connected a fax to this CME. But it gives communication error when sending fax and sometimes receiving. I tried with ATA and FXS ports but still the same problem. When I connect an analog phone to this line I can m

  • When will the Olympus OM-D EM-1 camera raw be available in Elements 12?

    When will the Olympus OM-D EM-1 camera raw be available in Elements 12? Will the Raw File Converter by backwards compatable with older versions of Photoshop?