Over-riding the "create or replace" function in WriteToSpreadsheetFile.vi

I would like to modify the WriteToSpreadsheetFile.vi so that it automatically replaces a file, without asking me if it is okay to replace it. i.e. I want my file to be just one line, and not have to append it.

The Write to Spreadsheet File.vi uses Open/Create/Replace File.vi as a subVI. The subVI has a an "advisory dialog" boolean.
Save a copy of the Write to Spreadsheet File.vi with a different name and wire a True constant to the advisory dialog boolean.
If you do not save the VI with a new name and into your directory, the modified VI would be used in any other NI VIs or examples. They might not work properly with the modification. Also your changes would be overwritten at the next LV upgrade.
Lynn

Similar Messages

  • Create Or Replace Function Error

    Hello,
    I'm doing text mining using Oracle SQL Developer: ODMiner.. I imported the data "WEBLOG" into a table.. This weblog data consist of users activity, date, time, url, etc. The first step I took was to use a function to transform date and time that I have in the data table, into a number representing the 40 mins since 01-01-1990. I did this by dividing it by 2400 (seconds in 40 mins). The main purpose is to have a time frame for the sessions.
    I used the following code,
    CREATE OR REPLACE FUNCTION ssnDate(
    DATE IN VARCHAR2 DEFAULT 03-01-18,
    TIME IN VARCHAR2
    ) RETURN NUMBER
    AS
    BEGIN
    RETURN TRUNC((to_date(DATE||' '||TIME, 'DD-MM-YY HH:MM:SS')- to_date('01-JAN-1990','DD-MON-YYYY')) * (86400/2400);
    END ssnDate;
    This was what appeared in the log after running the statement,
    FUNCTION ssnDate compiled
    Warning: execution completed with warning
    After this, I tried to create a VIEW to transform the DATE and TIME with the ssnDate that was created earlier on, and concatenate the CS_URI_STEM (which is the resource accessed), and CS_URI_QUERY (which is the the query, if any, the client was trying to perform)into a new field called WEB_LINK.
    This is the code used,
    CREATE OR REPLACE VIEW WEBLOG_VIEWS("C_IP", "WEB_LINK", "CS_USER_AGENT", "SESSION")
    AS
    SELECT ssnDate(LOG_DATE, LOG_TIME) AS 'SESSION',
    C_IP,
    CS_USER_AGENT,
    (CS_URI_STEM||'?'||CS_URI_QUERY) AS WEB_LINK
    FROM WEBLOG;
    Now from this I got the following error..
    Error starting at line 1 in command:
    CREATE OR REPLACE VIEW WEBLOG_VIEWS("C_IP", "WEB_LINK", "CS_USER_AGENT", "SESSION")
    AS
    SELECT ssnDate(LOG_DATE, LOG_TIME) AS 'SESSION',
    C_IP,
    CS_USER_AGENT,
    (CS_URI_STEM||'?'||CS_URI_QUERY) AS WEB_LINK
    FROM WEBLOG
    Error at Command Line:3 Column:38
    Error report:
    SQL Error: ORA-00923: FROM keyword not found where expected
    00923. 00000 - "FROM keyword not found where expected"
    *Cause:
    *Action:
    I don't get where I'm going wrong with this.. This is the data preparation stage which requires me to prep the data before applying modeling techniques or algorithms.. The next step would be grouping the data, based on the session time, ip and the user agent of each session along with the web_links fields visited by the user in that session.
    I would really be grateful for any inputs on where I'm going wrong and any solutions for that!

    Ok, not sure I really understand, but I posted the query and this is the output I got..
    ORA-31603: object "WEBLOG" of type TABLE not found in schema "WEBLOG_TABLE_OWNER_NAME"
    ORA-06512: at "SYS.DBMS_METADATA", line 2625
    ORA-06512: at "SYS.DBMS_METADATA", line 2668
    ORA-06512: at "SYS.DBMS_METADATA", line 2983
    ORA-06512: at "SYS.DBMS_METADATA", line 3897
    ORA-06512: at "SYS.DBMS_METADATA", line 5678
    ORA-06512: at line 1
    31603. 00000 - "object \"%s\" of type %s not found in schema \"%s\""
    *Cause:    The specified object was not found in the database.
    *Action:   Correct the object specification and try the call again.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Joker characters in the search and replace function

    Hello everyone,
    Just a quick question :
    I was wondering what character can be used as a joker character in the search and replace function (I did a research in the site, but didn't find any thread)
    To be clear, I have misspelled a word, for example «trouser».
    I know I didn't make any mistake with the first and last letter, but sometimes I wrote it «tourser», «turoser»
    (sorry if there is a weird meaning, i'm french, and for me it won't mean anything, so don't take it personally)
    I would like to be able te replace all the versions of «trouser», even the good ones, using «t*****r» in the search and replace function.
    I tried the «*» character, but it's not the jocker.
    Thank you for your help !

    As I can't edit my first message, just wanted to let you know it's also called «wildcard» characters
    Like here (Careful, it's… Ms Office)

  • Over-riding the class javax.faces.context.FacesContext: SUN App Server 9.1

    The method to over ride the faces context has changed between SUN Application Server 8.2 and 9.1, as a result the instructions which were previously provided on the MyFaces wiki (http://wiki.apache.org/myfaces/Installation_and_Configuration) no longer work. What I am looking for is instructions that will allow me to use our own faces jars and not (javaee.jar) which is provided as part of the application server.
    What I need to do is to get Sun Application Server 9.1 to allow me to over ride the faces context /javax/faces/context/ with that from my local jars, in version 8.X the following steps were enough:
    Start 8.X instructions:
    1. Change the config security file so that MyFaces <http://wiki.apache.org/myfaces/MyFaces> can delete it's temporary files.
    Change permission
        java.io.FilePermission <http://wiki.apache.org/myfaces/FilePermission> "<<ALL FILES>>", "read,write";to
      java.io.FilePermission <http://wiki.apache.org/myfaces/FilePermission> "<<ALL FILES>>", "read,write,delete";2. Prevent the sun reference implementation from being used
    In your WEB-INF, create a sun-web.xml file containing
        <?xml version="1.0" encoding="UTF-8"?>
        <sun-web-app>
        <class-loader delegate="false"/>
        </sun-web-app>3. That way, myfaces classes will be loaded instead of Sun RI ones.
    And prevent MyFaces <http://wiki.apache.org/myfaces/MyFaces> from loading the Sun RI context listener
    By creating in your webapp a "fake"
    com.sun.faces.config.ConfigureListener
    <http://wiki.apache.org/myfaces/ConfigureListener> that will be loaded BEFORE the sun RI one's.
    The war file I am making available as a test case has just such a file in my case it is called fakefaces.jar
    End instructions for 8.2
    However these steps have changed for version 9.1 as following the exact same procedures does not result in the Application Server using the correct jars, the following is a test using a simple find.jsp, notice how Application Server 9.1 is still using the default jars and not the ones shipping with included as part of my testApp.
    Within the war file is a jsp called find.jsp using this I can check which jar file file is being used for any class in my case I'm interested in the the /javax/faces/context/FacesContext.class, in 9.1 it always uses teh copy from javaee.jar and never teh local copy:
    For example running: http://<ip address>:<port>/test/find.jsp?class=javax.faces.context.FacesContext
    Version 9.1 returns: file:/u01/software/Apps/SunAppServer9.1/lib/javaee.jar!/javax/faces/context/FacesContext.class
    Version 8.2 returns: file:/u01/software/Apps/SunAppServer8.2/domains/domain1/applications/j2ee-apps/TestApp/test_war/WEB-INF/lib/myfaces-api.jar!/javax/faces/context/FacesContext.class
    Hence 9.1 is still using the copy provided by SUN and not our copy.
    The code for find.jsp is:
    <%
        String className = request.getParameter("class");
        Class theClass;
        try
            theClass = Class.forName(className);
            java.net.URL url = theClass.getResource("/" + theClass.getName().replace('.', '/') + ".class");
            out.println(url.getFile());
        catch (ClassNotFoundException e)
            // TODO Auto-generated catch block
            out.println(e);
    %>-------------------------------------------------
    Any idea how to over-ride the FacesContext class in version 9.1 to allow for similar functionality as 8.X
    Thanks,
    ERIC GANDT

    Alright, I've narrowed it down to my Customization Class. I attempted to have my customization class PortalCC in a JAR file, excluded it from the WAR file and added the JAR in the lib directory of the EAR file, as described on:
    http://docs.oracle.com/cd/E23943_01/web.1111/e16272/deploy_java_ee_app.htm#CHDGGFEB

  • Where the create or replace packagebody will  be stored?

    Friends,
    can anybody clear this doubt pls?...
    writing create or replace packagebody in the sql*plus will be stored in the database.
    but if i write the same create or replace packagebody in the forms where it will be stored?
    will it store in the database or in temp memory?
    thanks

    Like Francois said...
    When you create a program unit in forms, it will be stored in the form module.
    It's not available on the database.
    When you call a package in forms, it will first look in the form.
    If the package doesn't exist, it will check the libraries attached to the form.
    If the package doesn't exist in a library, it will check the database.
    I hope this helps...

  • Is there a setting to restore the old find-replace functionality in TextEdit?

    Am I alone in hate, hate, hating the recently new find-replace functionality in TextEdit?
    In earlier OSs -- and I'm not sure which was the last to do this -- Ctrl-F would pull up a find window that displayed both find and replace fields. I could type my search term... tab.... and type my replace term... and click "Replace all".
    In OS 10.8.4, I hit Ctrl-F and the find field opens... but I have to click a checkbox to do the replace. Then I have to click the "All" field to make it find-replace all.
    A quick search of the internet suggests I am the only one to find this annoying enough to register a username at apple.com and ask: Is there a way to make it go back to the old way? I'm getting old and life is already cluttered with too much click-clicking and checking and unchecking.

    Hi bandwag0n,
    Send your comments to:
    http://www.apple.com/feedback/
    We are not Apple here - we are just users like you....
    Cheers,
    GB

  • Over-riding the paint() method

    I want to create a custom button-rounded sides with straight top and bottom to be exact. I understand that you can use the Component class to create components, and over-ride the paint() method to create the actual button's appearance, but how do you do this? Also how do you go about creating an actionlistener for a component like my button idea? Any help will be appreciated!

    Since you are creating your own JButton you want to implement MouseListener so that you can detect the mouse up and mouse down events. If you are going to have a hover image then you want to implement MouseMotionListener as well. Here is an example:
    public class MyButton extends JComponent implement MouseListener, MouseMotionListener {
      private Vector listeners = new Vector();
      public MyButton() {
        addMouseListener(this);
        addMouseMotionListener(this);
      public void addActionListener(ActionListener al) {
        listeners.add(al);
      public void removeActionListener(ActionListener al) {
        listeners.remove(al);
      //add the overridden methods from MouseListener, MouseMotionListener
      public void paint(Graphics g) {
        //paint based on the events
    }This class will be notified when the mouse enters, exits, is clicked, etc. and you can set a state variable so that your paint routine knows what image to paint.
    Hopefully this will clear it up. Not sure how I can make it clearer.

  • Question about the "Create Web Gallery" function in Bridge

    I created a beautiful Web Gallery using Bridge's built-in function which creates a Photoshop Web Gallery.
    Everything works great except for one thing. When I click the "E-Mail Feedback" button, Apple Mail loads and creates blank e-mail message. This is all good, but for some reason the address line is loading up with data instead of just an e-mail address. I was hoping someone versed in html could tell me what I'm doing.  The source code in ThumbnailFrame.html looks like this:
    function sendFeedback(picName) {
    checkForUnSavedChanges(picName);
    var prefix = "mailto:[email protected]";
    var name = null;
    name = prompt("Enter Your Name:", "Your Name");
    if (name) {
    prefix += "subject=" + escape("Feedback from " + name);
    prefix += "&body=";
    var str = ""
    for (var i in feedback) {
    str += i + " ~~ \n";
    str += (feedback[i].approved == true) ? "Approved ~~ \n" : "";
    str += (feedback[i].other == true) ? "Other ~~ \n" : "";
    str += (feedback[i].comments != "") ? ("\nComments:\n" + feedback[i].comments + " ~~ \n") : "";
    str += "____________________________________________\n\n";
    The address line in the Apple Mail message looks like this:    [email protected]=Feedback from Paul Kirtley&body=
    I want it to look like this:  [email protected]
    By looking at the source code above, can someone tell me how I can make an adjustment to keep "subject=Feedback from Paul Kirtley&body=" out of the address line?
    Thanks!

    There are update and insert methods under the "core" section/
    See this image : http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_ejb_30/images/b20105.gif
    You might want to follow this tutorial to see how it works:
    http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_ejb_30/ejb_30.htm#t4

  • OC4J 1.0.2.2.1, connection pooling, and over-riding the default username and password

    We are using OC4J 1.0.2.2.1 and connection pooling with data-sources.xml
    In data-sources.xml, we have specified the default username and password.
    However, there are situations where we will want to use a different username and password and still use the connection pool. For example:
    public static Connection getConnection(String aUserNameS, String aPasswordS) {
    Connection conn;
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup("jdbc/ejb/OracleDS");
    conn = ds.getConnection(aUserNameS, aPasswordS);
    } catch (Exception ex) {...}
    return conn;
    Will this work? I mean, is it possible to specify a different username and password in the JNDI lookup and have it over-ride a provided default username and password in data-sources.xml?
    Thanks,
    Ed

    This may be problem with your userid/password. Please look the $OC4J_HOME/j2ee/home/config/principals.xml whether you have a right userid password.
    I did a quick test at looking up at "jdbc/OracleDS" for two users admin and SCOTT and this works fine both in 1.0.2.2.x an 9.0.2
    I got your errors when I had wrong passwords for these users
    regards
    Debu

  • Drop-down list, over riding the entry?

    Hello,
    I am developing an VISITOR Adobe Interactive Form, i have Designer 8.1 and Reader 9.0 in my Windows 7 Laptop. When i checked the menu EDIT-->form properties --> Compatability, its Adobe XML form File (XDP)
    When i opened this VISITOR interactive form in a browser, right clicking and checked form PROPERTIES, then i saw the "PDF Version: 1.6 (Acrobat 7.x)"
    I have a bunch of drop-downs in my interactive form, done by dragging & dropiing the 'Drop-down list' object, at the end i binded it with some data source, working fine, say its COUNTRY list.
    As soon as use opened the form, he saw the 'USA' prepopulated in the drop-down field, fine.
    User dropped down the entries, he saw a couple, like USA, Canada, UK, Spain, fine.
    But, now user want to enter / override this USA entry with his own value, like FRANCE, but, my form is not allowing, its behaving like a 'readOnly' field!
    Pls. let me know how to over ride a entry of drop-down values, as per user wanting value?

    If I understand your issue properly, then I think what you need to do is
    check the "Allow Custom Text Entry" box on the FIELD page of the OBJECT
    palette. It can be found under the area where you define the list items in
    your drop down list.
    I hope this helps

  • I think I've over rided the basic css in dreamweaver, is there a way to get back the original?

    For example, when I try to add a new menu bar, horizontal, it is actually a vertical bar. I'm not sure what I did but would like to reinstall? How can I do that without messing up my current sites and css? Thank you.

    Hi,
    please look here:
    http://labs.adobe.com/technologies/spry/samples/tabbedpanels/tabbed_panel_sample2.html
    http://labs.adobe.com/technologies/spry/articles/menu_bar/index.html
    to get it:
    and here the Spry features in Dreamweaver CS4 use the latest Spry version: 1.6.1.
    Adobe Labs Downloads
    Get prerelease 1.6.1 of Spry framework now spry_p1-6-1_022508.zip
    http://labs.adobe.com/technologies/spry/
    Update: The Spry prerelease download was updated on 2/25/2008
    to support the shipping version of Adobe AIR.
    Please download the new version.
    Learn to use the Spry framework for Ajax:
    http://www.adobe.com/devnet/dreamweaver/spry.html
    ... and here a fine tutorial from David Powers:
    http://foundationphp.com/tutorials/sprymenu/customize1.php
    ... and please send a link to your website in question, no matter how it looks like, to get a better idea of your problem.
    Hans-G.

  • Over-riding the Kodak link

    In iPhoto, the order prints macro is great but it takes me direct to Kodak, which would be fine if I lived in a country which Kodak services (a separate gripe, I wish that MNCs such as Kodak, Amazon etc would relaise that the EU expanded 16 mopnths ago), but I don't. Can I edit the code so that it takes me to a local online developer instead?
    Cheers

    I doubt it. It's buried somewhere in the iPhoto package and probably is not a simple apple script that can be easily modified. You can certainly look in there to see what you can find. Be sure to work on a backup copy of iPhoto however.
    You'll just have to export the cropped files to a folder on the desktop and then upload from there to your online processor of choice.

  • Need an suggestion regarding the use of a FUNCTION in a FUNCTION?(solved)

    Hi,
    I have created a function below.
    Should i use the dynamic sql or go ahead with the function that i have italicized and bold-faced below within my main function?
    If i am better off using a this function within my main function, is the syntax wrong?
    create or replace FUNCTION chk_dec(p_date date)
    return NUMBER
    as
    --DECLARE
    v_dt NUMBER;
    v_groups NUMBER;
    v_delta NUMBER;
    v_perc_delta NUMBER;
    v_string varchar2(1024);
    v_result NUMBER;
    CURSOR c_before IS
         select date,groups,
    groups-lag(groups) over(order by date),
    trunc(((groups-lag(groups) over(order by date))/groups)*100,2)
         from group_statistics
              where to_date(date,'YYYYMMDD') between p_date-1 and p_date
              order by date desc;
    ---bringing back two rows and all records on purpose.
    BEGIN
         OPEN c_before;
         FETCH c_before INTO v_dt,v_groups,v_delta,v_perc_delta;
    --DBMS_OUTPUT.PUT_LINE(v_perc_delta);
    close c_before;
    v_string:='select value from config_table where name=''group_dec''';
    --v_string:=get_number('group_dec');
    execute immediate v_string into v_result;
    if v_perc_delta <= v_result then
    return v_perc_delta;
    end if;
    END chk_dec;
    Thank You

    If i am better off using a this function within my main function, is the syntax wrong? Who can tell? This is a bizarre looking set of functionality. No doubt it makes sense to you but for me it doesn't seem to join up. What is supposed to happen if
    v_perc_delta > v_result ????
    Anyway I would forget about dynamic SQL or a function. Neither seems necessary. this will do
    close c_before;
    select value into v_result
    from config_table where name='group_dec;
    if ....Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • Error while creating a simple function, procedure or triger in Oracle8i Lite

    Hi,
    I have Oracle8i Lite release 4.0.
    While creating a simple proceudre/function/trigger on the database, it's throwing the following error:
    create or replace function test return number is
    ERROR at line 1:
    OCA-30021: error preparing/executing SQL statement
    [POL-5228] syntax error
    Here is my sample code.
    create or replace function test return number is
    begin
    return 0;
    end;
    Tried to create the same function in the user SYSTEM too but got the same error message.
    Thanks in advance for the soluton.
    null

    I just started with 8i Lite, but as far as I know 8i Lite does not support PL/SQL code.
    So you have to write your triggers and stored procedures in Java.
    Ciao

  • What is the benifit of Pipe function

    Hi,
    I agree that piping function return some set of rows when it is ready.
    But if my main query where clause is using the piping function for filter like below
    select p_name a1, p_add a2 from tname, tadd where tname.id = tadd.id and tname in (select * from table(pipe_fun_return_some_names));
    Now my question is "using pipe function will my main query starts executing without waiting all data return by pipe function"
    If yes then how my main query gets executed.
    If No how can then will it cost me performance point of view.
    so shell using piping function like this improve performance of my sql.
    or simply can i use a table type and object to query ---
    select p_name a1, p_add a2 from tname, tadd where tname.id = tadd.id and tname in (select * from table(table_fun_return_some_names));
    Thanks Gurus...

    Ora_Is_Not_Magic wrote:
    Hi,
    I agree that piping function return some set of rows when it is ready.
    But if my main query where clause is using the piping function for filter like below
    select p_name a1, p_add a2 from tname, tadd where tname.id = tadd.id and tname in (select * from table(pipe_fun_return_some_names));
    Now my question is "using pipe function will my main query starts executing without waiting all data return by pipe function"
    If yes then how my main query gets executed.
    If No how can then will it cost me performance point of view.Do you mean something along the lines that, if the value is found in the subquery (pipeline function) results early on it will return the main query data quicker than if the value is found later on in the subquery (pipeline function) results?
    SQL> create or replace type t_nums as table of number;
      2  /
    Type created.
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace function f_pipe_asc return t_nums pipelined as
      2  begin
      3    for i in 1..1000000
      4    loop
      5      pipe row(i);
      6    end loop;
      7    return;
      8* end;
    SQL> /
    Function created.
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace function f_pipe_desc return t_nums pipelined as
      2  begin
      3    for i in 1..1000000
      4    loop
      5      pipe row(1000001-i);
      6    end loop;
      7    return;
      8* end;
    SQL> /
    Function created.
    SQL> @c:\statson
    SQL> select 1 from dual where 1 in (select * from table(f_pipe_asc()));
             1
             1
    Elapsed: 00:00:00.29
    Execution Plan
    Plan hash value: 4199234228
    | Id  | Operation                            | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                     |            |    82 |       |    28   (8)| 00:00:01 |
    |   1 |  NESTED LOOPS                        |            |    82 |       |    28   (8)| 00:00:01 |
    |   2 |   FAST DUAL                          |            |     1 |       |     2   (0)| 00:00:01 |
    |   3 |   VIEW                               | VW_NSO_1   |    82 |       |    26   (8)| 00:00:01 |
    |   4 |    SORT UNIQUE                       |            |    82 |   164 |    26   (8)| 00:00:01 |
    |*  5 |     COLLECTION ITERATOR PICKLER FETCH| F_PIPE_ASC |       |       |            |          |
    Predicate Information (identified by operation id):
       5 - filter(VALUE(KOKBF$)=1)
    Statistics
            100  recursive calls
              0  db block gets
             88  consistent gets
              0  physical reads
            116  redo size
            404  bytes sent via SQL*Net to client
            396  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              2  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> select 1 from dual where 1 in (select * from table(f_pipe_desc()));
             1
             1
    Elapsed: 00:00:00.31
    Execution Plan
    Plan hash value: 2978834354
    | Id  | Operation                            | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                     |             |    82 |       |    28   (8)| 00:00:01 |
    |   1 |  NESTED LOOPS                        |             |    82 |       |    28   (8)| 00:00:01 |
    |   2 |   FAST DUAL                          |             |     1 |       |     2   (0)| 00:00:01 |
    |   3 |   VIEW                               | VW_NSO_1    |    82 |       |    26   (8)| 00:00:01 |
    |   4 |    SORT UNIQUE                       |             |    82 |   164 |    26   (8)| 00:00:01 |
    |*  5 |     COLLECTION ITERATOR PICKLER FETCH| F_PIPE_DESC |       |       |            |          |
    Predicate Information (identified by operation id):
       5 - filter(VALUE(KOKBF$)=1)
    Statistics
             28  recursive calls
              0  db block gets
             48  consistent gets
              0  physical reads
              0  redo size
            404  bytes sent via SQL*Net to client
            396  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL>I don't have your data to test, but I'm guessing the fact the optimiser is doing a SORT UNIQUE on the pipeline results in order to perform the "IN", it's going to take the same amount of time whether the required value is the first out of the pipeline results or the last.

Maybe you are looking for

  • Help! centered watermark in web gallery?

    Hello! does anyone know either 1) a web gallery template with an option to center the logo 2) Where to modify the LR defalt galleries (coding) to center the logo I really need a centered logo. Some of my photos have stock value, and I need a watermar

  • Finding Events in debug mode?

    Dear All, I found a list of events which will be used for the transaction EA10 by the method mentioned in the video. http://www.sap-isu.net/video/fica-events. Out of the many events which are triggerred one of them is R431. Right now the function mod

  • Sub Contracting Service PO - Reg.

    Dear All, I want send the Equipment or Gauge (Having Material Code - Stock or non stock Item) to the outside vendor for repairing or calibaration purpose through RTP(returnable Gate Pass) and for that Service charge and Tax I need to provide in the P

  • Calculated or restricted kf

    hi i need query like Employee Group     Employee Sub Group      Personal Data Attribute (disability)     Full Time     Part Time FTE i kept employee group sub group disability at rows and full and part time at columns no i want calculate Disability 

  • Index Size Increase (Rebuild with Parallel)

    All, I'm not sure whether or not this is an Exadata problem, but we saw it happen on our Exadata machine (maybe the larger extents are impacting this). However, I thought this forum might have an idea, especially if it’s a generic RDBMS issue instead