Adding Source code in include RPCBURZ0 for HR Payroll

I have created a customer function Function through PE04.Now I want to add source code in RPCBURZ0.How will I do as its a standard program.Is Access Key needed?Is it safe? Please reply
Edited by: Bireshwar Das on May 4, 2008 6:29 PM

Hi,
To add source code in standard program it will ask for access key, so it is better to go through framework concept.
i,e open the standard program RPCBURZ0 and choose enhance button in the application toolbar and go to edit<enhancement operations<show implicit enhancement options. Then it will show all the enhancement points which was provided by SAP and choose any one of them according to your requirement. Place the cursor on it and choose edit<enhancement operations<create. then it will ask for implementation name and write source code as per your requirement.
Please refer this link. It is ver useful.
http://help.sap.com/saphelp_nw70/helpdata/en/a0/47e94086087e7fe10000000a1550b0/frameset.htm
Please reward points if helpful.

Similar Messages

  • How to get source code and build files for Eudora 7, and price?

    Looking for source code and build/make files for Eudora 7 to port to Win7 and Ubuntu 14. Where is a source for this and what is the cost?

    You best ask qualcomm. It is their intellectual property.
    Eudora OSE was based on Thunderbird and the source code for the Penelope add-on is open source (that is what made Thunderbird over to OSE)

  • Adding bar codes to printer device for smartforms pdf conversion?

    Hello friends,
    I would like to send a smartform as a pdf to an email recipient. The smartform shows some bar codes. The send process workes fine. But the bar codes doesn't appear on the pdf correctly. Therefore I would like to add bar codes to the printer device type in transaction SE73.
    Does somebody know the device type for smartforms pdf conversion? Or how can I add bar codes to smartforms pdf conversion process?
    greetings
    daniel

    Hello Denial,
    Try these links, this might solve ur problem
    http://www.tec-it.com//documentation/TBarCodeSAPLPD_EN.htm
    http://www.mecsw.com/info/appnote/app_024.html
    if you need any more information send me at [email protected]
    Thanks & Best Regards
    Ankur Jain

  • HTML5 Code: Does anyone here know how the QT player source code as a fallback for older Safari browsers...like mine?

    I have the code for all but a fallback to QTPlayer.
    AND
    I don't know how to combine a fallback with the HTML5 code so that if someone who DOES have QT Player installed on a newer browser either.
    I'm operating Safari 4.1.3 and cannot update (I'm obsolete...4 years and I'm out of the apple basket and on to the cider mill, it seems).   So I cannot even check to see how it works because I can't make it work for me in the first place.
    I'm really stressed over this and cannot figure this out.
    I keep finding flash fallback code, which doesn't even enter into my equation.  I need to figure out how to fallback to QTPlayer playing .mov files.

    I need to add just one more thing and that is on battery life.  Last night I sat with the rMBP on my lap installing software, surfing the web, answering emails for close to 4 and 1/2 hours.  At the point I took it back to the charger it still was showing a computed battery time remaining of 3.5 hours.
    Today I had two VMs open and took the machine of the charger and sat outside with my dogs for about 30 minutes.  During this time I was working in both VMs, editing and compiling code.  My battery life estimate showed a good solid 4 hours. 
    This is roughly 6 times greater than what I had with my 2010 MBP and it too had a SSD.  I am not sure why but this retina MBP just seems to not work as hard doing anything that caused my 2010 MBP to struggle.
    While the battery life is certainly better than I expected it is clear that load can change that very rapidly. So I think I still need to visit clients with an external battery or charger in hand.  But I don't think I will be quite so scared that my laptop will simply run out of power before I can even get it plugged in.

  • Source Code for EE Devices

    i am struggling to find the page where EE provide the source code for their own branded devices.Devices such as the EE Rook, EE Harrier, EE Harrier Mini and Kestrel. these are just examples but the kernel source should be released of every device that you produce under GPL.whilst i understand this may not be for everyone, it is still a legal requirement that you upload these and any changes you make to the kernel thereafter. i have even seen Virginmedia supply source code that they used for their samsung set top box, so why can't you provide this?

    HI,
    It is unlikely you will get this information on this customer forum so I suggest you contact EE direct and ask them.
    Thanks,

  • Source Code for Business Package for Products

    Hi,
    I need to the source code and customization steps for Business Package for Products.
    Please let me know how and where can i get this.
    Thanks in Advance
    Prashil

    Augustine Vinish wrote:
    Hi Team ,
    I have find out the source code of the Package from dba_source at text column .
    How can I find out
    *1 .where the Database is mounted ie Server information and*
    *2 .Name of the Sql file contains the package body*
    *3 .location of the file in the Server*
    Regards ,
    AugustineHi - the source code isn't read in from a file by the database, it's actually stored in the database itself (have a look at the user_source view). Now you may have text files backups of your source code, that have been used previously to create the packages, but the database won't store any info about the file used to do this.

  • Read source code in BAdi

    Hi All,
    Is there any syntax or method to read the source code contains in a BAdi? Which is similar to the functionality of syntax READ REPORT which is use to read the source code in a program.
    I need to read the source code and then look for particular syntax in it by a keyword.
    Thanks.

    This snipped of my scan report might be helpful....
    Cheers
    carsten
    Get Interface Name for BADIs
        SELECT * FROM sxs_inter INTO TABLE gt_sxs_inter
            WHERE exit_name IN s_badi.
        CHECK sy-subrc EQ 0.
    Get Implementation Names for BADIs
        SELECT * FROM sxc_exit INTO TABLE gt_sxc_exit
            FOR ALL ENTRIES IN gt_sxs_inter
            WHERE exit_name EQ gt_sxs_inter-exit_name.
    Get implemented Classes for Interfaces
        SELECT * FROM sxc_class INTO TABLE gt_sxc_class
            FOR ALL ENTRIES IN gt_sxs_inter
            WHERE inter_name EQ gt_sxs_inter-inter_name.
    Get Methods for Interfaces
        LOOP AT gt_sxs_inter.
          gv_cifkey = gt_sxs_inter-inter_name.
          CALL FUNCTION 'SEO_METHOD_READ_ALL'
            EXPORTING
              cifkey            = gv_cifkey
            IMPORTING
              methods           = gt_meth1[]
            EXCEPTIONS
              clif_not_existing = 1
              OTHERS            = 2.
          APPEND LINES OF gt_meth1 TO gt_meth.              .
        ENDLOOP.
        gt_meth1[] = gt_meth[].
        CLEAR: gt_meth, gt_meth[].
        LOOP AT gt_sxs_inter.
          LOOP AT gt_sxc_class
              WHERE inter_name EQ gt_sxs_inter-inter_name.
            LOOP AT gt_meth1
                WHERE clsname EQ gt_sxs_inter-inter_name.
    Get Include names for Interface Methods
              gt_meth-clsname = gt_sxc_class-imp_class.
              CONCATENATE gt_meth1-clsname '~' gt_meth1-cmpname
                  INTO gt_meth-cmpname.
              APPEND gt_meth.
    Makro METHOD_TO_INCLUDE ?
             SYSTEM-CALL QUERY METHOD gs_mtdkey-cpdname
                 OF CLASS gs_mtdkey-clsname
                 INCLUDE INTO gv_filenam. " NO DBLOCK. "470
             if gv_filenam ne space.
               s_repid-low = gv_filenam.
               s_repid-option = 'EQ'.
               s_repid-sign = 'I'.
               append s_repid.
             endif.
            ENDLOOP.
          ENDLOOP.
        ENDLOOP.
      ENDIF.
      LOOP AT gt_meth.
        gs_mtdkey-clsname = gt_meth-clsname.
        gs_mtdkey-cpdname = gt_meth-cmpname.
    Makro METHOD_TO_INCLUDE ?
        SYSTEM-CALL QUERY METHOD gs_mtdkey-cpdname
            OF CLASS gs_mtdkey-clsname
            INCLUDE INTO gv_filenam. " NO DBLOCK. "470
        IF sy-subrc EQ 0.
          APPEND gv_filenam TO gt_incl.
        READ REPORT gv_filenam INTO gt_source.
          PERFORM read_report USING gv_filenam.
          PERFORM scan_source TABLES gt_source
                    USING gv_filenam '' gt_meth-clsname gt_meth-cmpname
                    gv_filenam 'METH' 0.
          IF p_hist NE space.
            PERFORM scan_hist_source USING gt_meth-clsname
                  gt_meth-cmpname gv_filenam 'METH'.
          ENDIF.
        ENDIF.
    Find 'hidden' (redefinitons etc) methods via
    TRDIR-includes for class not yet found
        AT END OF clsname.
          PERFORM check_incl_meth USING gt_meth-clsname.
          LOOP AT gt_incl.
            gv_prognam = gt_incl.
            gs_clskey-clsname = gt_meth-clsname.
    Get MethName via Include
            SYSTEM-CALL QUERY METHOD INCLUDE FROM gv_prognam
              CLASS INTO gs_clskey-clsname
              METHOD INTO gv_mtdname.
            CHECK sy-subrc EQ 0.
            READ REPORT gt_incl INTO gt_source.
          perform read_report using gt_incl.
            PERFORM scan_source TABLES gt_source
                      USING gt_incl '' gt_meth-clsname gv_mtdname
                      gt_incl 'METH' 0.
            IF p_hist NE space.
              PERFORM scan_hist_source USING gt_meth-clsname
                    gv_mtdname gt_incl 'METH'.
            ENDIF.
          ENDLOOP.
          REFRESH gt_incl.
        ENDAT.
      ENDLOOP.

  • S960 / Vibe X Android 4.4 Kitkat Source Code

    Where is Kitkat source code??? On link http://support.lenovo.com/en/products/phones/s-series/s960-smartphone
    is only file from 11/18/2013. Please update!

    slovakia wrote:
    Where is Kitkat source code??? On link http://support.lenovo.com/en/products/phones/s-series/s960-smartphone
    is only file from 11/18/2013. Please update!
    I don't understand. The source code file is there for download. 
    Edit: Oh, so this is not KitKat but earlier version... Now I see. Let me get our eSupport team to check on this...
    WW Social Media
    T61, T410, x240, Z500, Flex 14
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    How to send a private message? --> Check out this article.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Convert source code (widget) to html snippet code

    hey
    been searching google for about 45 minutes now and for the life of me i can't find information on how to change source code that i have for a widget into usable html code that i can embed into iWeb08'
    does this makes sense? I created a widget in dashcode and now i can't find a way to get it into iWeb!
    Thanks
    ~Will-i-am~

    Dashboard widgets are not the that simple to use in browsers, see my post:
    http://discussions.apple.com/click.jspa?searchID=5028056&messageID=6292583
    <embed src="http://www.unifiedforunifat.com/countdown/PLU timer/attributes.js" height="auto" >width="auto" name="PLU timer"> </embed>
    What is it suppose to do?

  • Where to  find the pcui_gp  components ,How to get the source code of those

    Hi All,
    Can anybody tell the exact location wher the pcui_gp components will be stored if they are  not appearing.
    And another question is how to get the source code of the pcui_gp for customization.
    anybody working on these compoents please help me.
    answers will be rewarded.
    thanks and regards,
    anand

    Hi Arun,
    I am unable to see the pcui_gp components in the DTR ,I require this in order to get the source code of one of its component.
    Can you please tell me the step by step procedure getting those pcui_gp components from J2ee engine to the  dtr or  NWDI.
    If there are any documents on pcui_gp components exclusively please do forward to my mail id [email protected]
    Thansk and Regards,
    Anand.

  • Instead of requested page source code is getting populated in WAS 6.1.0.15

    Hi All,
    I'm trying to bring up an application using jnlp.please find below the source code for the same.
    When i deploy the application in WAS 6.1.0.0, i'm able to bring up the application without any issue.
    But other than 6.1.0.0 if i deploy the same war file in any other WAS server, itz just showing the source code when i request for href in the browser.
    Kindly some one help me to resolve this.
      <?xml version="1.0" encoding="UTF-8" ?>
    - <jnlp spec="1.0+" codebase="http://10.66.193.212:9080/<appname>/">
    - <information>
      <title> Application name</title>
      <vendor>vendor</vendor>
      <homepage href="/RSA" />
      <description>JNLP Application for <appname></description>
      </information>
      <offline-allowed />
    - <security>
      <all-permissions />
      </security>
    - <resources>
      <j2se version="1.4+" />
      <jar href="appname.jar" />
      <extension name="jcalendar" href="jcalendar.jnlp" />
      <extension name="jcommon" href="common.jnlp" />
      <extension name="jfreechart" href="jfreechart.jnlp" />
      </resources>
      <application-desc main-class="a.b.c.d.mainclass" />
      </jnlp>Thanks in advance,
    siva.

    Type must be registered with jnlp extension so that content type is set (in the header with value application/x-java-jnlp-file), this should be done in httpd.conf (with an AddType), you can google for it or ask any server administrator for it, should be something like:
    AddType  .jnlp application/x-java-jnlp-fileMaybe you can give a look at working httpd.conf (on 6.1.0.0 searching for 'application/x-java-jnlp-file') and copy/paste in other configs.
    Bye.

  • Procedures/packages security. Hide source code?

    Hi.
    I was wondering if it is possible to hide the source code of a procedure for a user or avoid him to recreate it, but let him to execute it.
    Im doing a sandbox procedure who edit and run an external job. It works fine but I see a bunch of security holes. If any DB user who can execute that procedure can edit it too, they could run any shell command by changing the external job attributes. I could use credentials (11.2.0.2) and somehow limit the system user to specific commands but I want to fix the security hole by limiting the DB user instead limiting system user.
    This is the external job
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB(
    job_name => 'test',
    job_type => 'EXECUTABLE',
    job_action => '/bin/sh',
    number_of_arguments => 2
    DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    job_name => 'test',
    argument_position => 1,
    argument_value => '-c'
    DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    job_name => 'test',
    argument_position => 2,
    argument_value => '/bin/date>>/tmp/date.log'
    END;
    / And then, the procedure.
    CREATE OR REPLACE PROCEDURE TEST_DATE_FILE ( new_file IN varchar2 )
    IS BEGIN
    DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    job_name => 'test',
    argument_position => 2,
    argument_value => '/bin/date>>/tmp/' || new_file
    DBMS_SCHEDULER.RUN_JOB(
                                    job_name =>             'test',
                                    use_current_session =>  TRUE
    END;
    SQL> conn scott/tiger
    Conectado.
    SQL> exec TEST_DATE_FILE('newfile.log');
    Procedimiento PL/SQL terminado correctamente.
    SQL> CREATE OR REPLACE PROCEDURE SYS.TEST_DATE_FILE ( new_file IN varchar2 )
    2 IS BEGIN
    3 DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    4 job_name => 'test',
    5 argument_position => 2,
    6 argument_value => '/bin/rm -rf /tmp/*'
    7 );
    8
    9 DBMS_SCHEDULER.RUN_JOB(
    10 job_name => 'test',
    11 use_current_session => TRUE
    12 );
    13 END;
    14 /
    Procedimiento creado.
    SQL> exec TEST_DATE_FILE ('');
    Procedimiento PL/SQL terminado correctamente.
    It is possible to hide the source code of the procedure who edits and run the external procedure?
    There is any workaround or any idea of how can I prevent this?
    Regards
    Edited by: elvegaa_esp on 17-may-2012 2:41
    Edited by: elvegaa_esp on 17-may-2012 2:43

    ops$[email protected]> host wrap iname=test.sql oname=test_wrap.sql
    PL/SQL Wrapper: Release 8.1.7.2.0 - Production on Mon Jan 07 12:44:21 2002
    Copyright (c) Oracle Corporation 1993, 2000. All Rights Reserved.
    Processing test.sql to test_wrap.sql
    ops$[email protected]> @test_wrap.sql
    ops$[email protected]> create or replace procedure p wrapped
    2 0
    3 abcd
    4 abcd
    5 abcd
    6 abcd
    7 abcd
    8 abcd
    9 abcd
    10 abcd
    11 abcd
    12 abcd
    13 abcd
    14 abcd
    15 abcd
    16 abcd
    17 abcd
    18 3
    19 7
    20 8106000
    21 1
    22 4
    23 0
    24 4
    25 2 :e:
    26 1P:
    27 1DBMS_OUTPUT:
    28 1PUT_LINE:
    29 1Hello world:
    30 0
    31
    86 /
    Procedure created.
    and now you don't
    ops$[email protected]> select text from user_source where name = 'P';
    TEXT
    procedure p wrapped
    0
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    3
    7
    8106000
    1
    4
    0
    4
    2 :e:
    1P:
    1DBMS_OUTPUT:
    1PUT_LINE:
    1Hello world:
    0
    ops$[email protected]>
    Edited by: HuaMin Chen on May 29, 2012 11:26 AM

  • Do I send the source code

    I have found a few canditades to update the source code of a plugin for AI that I own.  All candidates want to see the code and I understand this but is this a safe method to conduct business?  My question is...what are the procedures for handling source code? Do I just send it to potential programmers or is there a tried and true method to safeguard the code.  Would anyone be able to advise me on this matter?

    NDA at least, or something more specific if necessary. I'm usually the guying being made to sign NDAs though, and its been a while since I took that Computer Law course at university

  • Is any way search REMOTE VIEW of a web folder(files on server), the source code(all soite search) fo

    Is any way search REMOTE VIEW of a web folder(files on server), the source code(all soite search) for a word eg an email address? how?
    I must await a lot to finish?

    I search all Local View (site) for forms submitted to [email protected] and deleted that email although I still get SPAM(Nothing in body) emails sent to:
    [email protected]; [email protected]  (to both in TO field)
    first is the normal address left no need deleted, the yahoo address deleted.... well where this form processor located and get spam[PHP Site]...???
    I run SELECT NEWER IN REMOTE SITE
    But nothing selected, well?

  • [svn] 2891: Add the web-tier compiler for J2EE to the Flex open source code base.

    Revision: 2891
    Author: [email protected]
    Date: 2008-08-19 07:35:22 -0700 (Tue, 19 Aug 2008)
    Log Message:
    Add the web-tier compiler for J2EE to the Flex open source code base.
    Added Paths:
    flex/sdk/trunk/modules/webtier/
    flex/sdk/trunk/modules/webtier/bootstrap/
    flex/sdk/trunk/modules/webtier/bootstrap/build.xml
    flex/sdk/trunk/modules/webtier/bootstrap/java/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/META-INF/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/META-INF/taglib.tld
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/default.properties
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/bootstrap/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/bootstrap/BootstrapBodyTag.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/bootstrap/BootstrapClassLoader.jav a
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/bootstrap/BootstrapFilter.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/bootstrap/BootstrapServlet.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/bootstrap/BootstrapTag.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/bootstrap/TagGenerator.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/jsp/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/jsp/FlashVarTa g.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/jsp/MxmlTag.ja va
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/wrappers/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/wrappers/ATGFi lterConfig.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/wrappers/ATGHt tpServletRequest.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/wrappers/ATGSe rvletConfig.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/wrappers/ATGSe rvletContext.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/server/j2ee/wrappers/J2EEW rapper.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/util/
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/util/FileUtils.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/flex/webtier/util/J2EEUtil.java
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/hitachi.properties
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/interstage.properties
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/jrun.properties
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/tomcat.properties
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/weblogic.properties
    flex/sdk/trunk/modules/webtier/bootstrap/java/src/websphere.properties
    flex/sdk/trunk/modules/webtier/build.properties
    flex/sdk/trunk/modules/webtier/build.xml
    flex/sdk/trunk/modules/webtier/coldfusion/
    flex/sdk/trunk/modules/webtier/coldfusion/build.xml
    flex/sdk/trunk/modules/webtier/coldfusion/lib/
    flex/sdk/trunk/modules/webtier/coldfusion/lib/cfmx_bootstrap.jar
    flex/sdk/trunk/modules/webtier/coldfusion/src/
    flex/sdk/trunk/modules/webtier/coldfusion/src/java/
    flex/sdk/trunk/modules/webtier/coldfusion/src/java/coldfusion/
    flex/sdk/trunk/modules/webtier/coldfusion/src/java/coldfusion/bootstrap/
    flex/sdk/trunk/modules/webtier/coldfusion/src/java/coldfusion/bootstrap/BootstrapBodyTag. java
    flex/sdk/trunk/modules/webtier/coldfusion/src/java/coldfusion/bootstrap/BootstrapTag.java

    JLundan,
    I want to thank you for responding to the thread I started on the forum at java.sun.com. Your solution to my problem of needing to print the code of the html pages that the file I included generates was just what I was looking for. However, I have some further questions to ask, if you don't mind. To clarify my task I should say that your rephrasing of the problem is accurate: "You wan't to display the contents of the HTML file that the web server produces in response of client's request?"
    Yes, this is what I need to do, but also it needs to display the source code of that html file that the server produces in response to the client's request. Also, in this case, I am the client requesting that the server return some html file, and I'm not sure where the server is. But the webserver.java file that I shared on the forum is on my local machine. I was wondering if I could modify this webserver.java file at my home so that any html file the server returns to me would automatically display the source code. This is a school project of mine and I am stuck on this one thing here.
    Further, where would I put the "foo.html" file so it can be written to?
    FileOuputStream fos = new FileOutputStream("foo.html");
    fos.write(bytes);
    fos.close();
    Thanks so much for your help. I look forward to your response, at your convenience.
    Regards

Maybe you are looking for

  • Database in Archivelog mode

    Hi All, I have oracle 9.2.0.6 at my workplace.right now my database running in ARCHIVELOG MODE. I want to set it to NOARCHIVELOG MODE. can I do on the fly? in other way, Do I need to shutdown and restart database? Any help will be appreciated. Thanks

  • data-source problem error 503

    i m using oracle10g database . through jdev-embedded 0c4j , i want to run my strut application . i m having problems with data-source entry. i give either of following 2 entries in struts-config.xml and get this error 503 Service Unavailable Servlet

  • CUA with the SAP Enterprise Portal

    Hi, We have existing CUA on a system with SAP_BASIS     700. This CUA do have various R/3 systems connected. Now we are going for EP with SRM/MDM. We have an ABAP system as backend system with SAP NetWeaver 2004s (SAP_BASIS     700, PI_BASIS     2005

  • Single query for querying three tables

    Hi All, We are trying to construct a sql query(a single query), which can perform the below functionality. Assume, that there are three tables, TABLE1: 3 Columns 1) ID -> PRIMARY KEY 2) TYPE -> Allows only values 'A' or 'B' 3) REF_ID(this can refer t

  • Getting facility code in ALV

    I would like to get the facility code in my ALV repot for a customer statment report . Its been asked to populate that field using the logic as follows. The logic for the customer facility code should be something like this. Find the business locatio