How can we apply OSS notes in BW or BI.

Dear Friends , how are you all.
Could anyone please tell the process about How can we apply OSS notes in BW or BI.
What is the difference between LO extractors and FI extractors.
It would be helpful to me.
Thanks in Advance,
Kalyan

Hi,
Using T Code SNOTE we can apply the OSS notes.
Also
OSS is Online support system runs by SAP to support the customers.
You can access this by entering OSS1 transaction or visit Service.SAP.Com and access it by providing the user name and password.
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/fe8dbb80-0c01-0010-fe84-b76d0d07db34
SAP Notes
IN BW T.Code SNOTE, here you can see all the notes which has been applied.. also u can apply a new note in this T.Code.
http://service.sap.com/notes
Whenever there is a short dump, in section 'How to correct the error' keywords are given so that you can search relevant OSS
Notes.
Best way is to search with the Note Number if you know one. Else, you can search with restriction by giving proper version,
application area, priority, release status etc along with keywords.
Thanks,
JituK

Similar Messages

  • How to apply OSS note and how to use it?--thanks

    Hi, morning all,
    I want to know how to apply OSS notes and how to use it, pls help me.
    Thanks.

    Applying OSS note is a critical activity in the system. Usually this task is carried out by the basis, as they maintain the system and the notes, support packs, etc.
    A OSS note has potential to impact the system in several ways. So it is better to work with the basis if  you need to apply a OSS note to be applied.
    Transaction code is Snotes. But pl dont attempt to apply by yourself.
    Reg your other question as how to use the OSS note, there is nothing like using aOSS note. Just apply and depending on what the notes do, it may change the config, or download a program or something.
    Ravi Thothadri

  • How can I apply text position attributes (e.g. lower third) to more than one title at a time?

    How can I apply text position attributes (e.g. lower third) to more than one title at a time?

    jhb3243
    What version of Premiere Elements are you using and on what computer operating system is it running?
    In the case of this theoretical lower third to be applied to more than one title at a time
    a. Is there text in the lower third besides a graphic of some kind?
    b. Are all the titles to which this lower third is to be applied all together on the Timeline or scattered?
    If no text in lower third and titles all together, then, with text titles on Video 1 and lower third on Video 2, drag out the lower third to cover the length of the text titles on Video 1.
    I do not find "lower third" title files to be in the same category as certain effects where the Copy and "Paste Attributes" or "Paste Effects and Adjustments" lend themselves so well.
    Let us see what others have to say about all this. I will continue to experiment with what you seek and how you would prefer to get there. I am not optimistic but I will try.
    Thanks.
    ATR

  • How can i apply gradient...

    I have a rectangular shape movie Clip (Size :130px X40 px). I
    want to apply linear gradient on it using action script. Can
    anybody help me how can I apply gradient on it.
    Note: This movie clip is made manually. Not by using
    createEmptyMovieClip method.

    i already checked this -
    MAKE A OVAL ON YOUR STAGE AND GIVE THIS INSTANCE NAME 'ovl'
    (withought single quote) and use the code under
    here i am creating two movie clips on stage --
    1st is 'ovl' and 2nd one is 'mc'
    But to apply gradient on ovl i have to use setMask method
    like this _root.mc.setMask(_root.ovl)
    i do not want to use SetMask... I want to apply gradient
    directly on 'ovl'
    How can i do ??????????????
    // create emtpy movieclip
    mc = createEmptyMovieClip("mc",1);
    // set the constants for the gradient fill
    // the colors
    col = [0x000066,0x0033FF];
    // the alphas
    alp = [100,30];
    // the ratios
    rat = [100,255];
    //this.onMouseMove = function () {
    // we will make a radial gradient
    // and make it move with the mouse
    // first we clear the previous gradient fill
    mc.clear();
    // get the mouse-position
    // the x-coordinate
    x = _xmouse-200;
    // the y-coordinate
    y = _ymouse-200;
    // set the matrix for the transformation
    matrix = { matrixType:"box",x:x,y:y,w:400,h:400,r:0 }
    // now make the new gradient fill
    mc.beginGradientFill("linear",col,alp,rat,matrix);
    // now make the shape to fill
    mc.lineTo(400,0);
    mc.lineTo(400,400);
    mc.lineTo(0,400);
    // end the fill
    mc.endFill();
    _root.mc.setMask(_root.ovl)
    Text
    Text

  • How can i  apply this  java program for  a jsp page?

    import java.io.*;
    import java.util.*;
    public class FileProcessing
      //create a vector container  for the input variables
         Vector variables = new Vector();
      //create a vector container for the constants
         Vector constants = new Vector();
      /*create a string expression container for the equation
         as read from the file */
         String expression = " ";
      //create double result container for the final result
         double result = 0;
         public boolean processFile(String filename,String delim)
          //index for values vector
              int num_values = 0;
          //index for constants vector
              int num_constants = 0;
          //current line being read from the external file.
              String curline = " ";
          //start reading from the external file
              try
                   FileReader fr = new FileReader(filename);
                   BufferedReader br = new BufferedReader(fr);
                   while(true)
                        curline = br.readLine();
                        if(curline == null)
                             break;
                    //determine the type of current interaction
                        boolean variable = curline.startsWith("input");
                        boolean constant = curline.startsWith("constant");
                        boolean equation = curline.startsWith("equation");
                        boolean output = curline.startsWith("result");
                   //on input variables
                        if(variable)
                          StringTokenizer st = new StringTokenizer(curline,delim);
                          int num = st.countTokens();
                          int count=0;
                          while(st.hasMoreTokens())
                               String temp = st.nextToken();
                               if(count==1)
                                    byte b[]= new byte[100];
                                    System.out.println(temp);
                                    System.in.read(b);
                                    String inputval = (new String(b)).trim();
                                    variables.add(num_values,inputval);
                                    num_values++;
                               count++;
                        // on constant values
                        if(constant)
                             StringTokenizer st = new StringTokenizer(curline,delim);
                             int num = st.countTokens();
                             int count = 0;
                             while(st.hasMoreTokens())
                                  String temp = st.nextToken();
                                  if(count==1)
                                       byte b[]= new byte[100];
                                       System.out.println(temp);
                                       System.in.read(b);
                                       String cons = (new String(b)).trim();
                                       constants.add(num_constants,cons);
                                       num_constants++;
                                  count++;
                        // on equation
                        if(equation)
                             StringTokenizer st = new StringTokenizer(curline,delim);
                             int num = st.countTokens();
                             int count = 0;
                             while(st.hasMoreTokens())
                                  String temp = st.nextToken();
                                  if(count==2)
                                       this.expression = temp;
                                  count++;
              // now we are ready to evaluate the expression
                       if(output)
                          org.nfunk.jep.JEP  myparser= new org.nfunk.jep.JEP();
                          myparser.setAllowAssignment(true);
                          for(int i=1;i<variables.size()+1;i++)
                             String name = "arg"+Integer.toString(i);
                             myparser.addVariable(name,new Double(variables.get(i-1)
                                                .toString()).doubleValue());
                          for(int i=1;i<constants.size()+1;i++)
                               String name = "arg" +Integer.
                                         toString(i+variables.size());
                               myparser.addConstant(name,new Double(constants.get(i-1).toString()));
                   //output is obtained as follows
                          myparser.parseExpression(expression);
                          result = myparser.getValue();
                          System.out.println("Assay value: "+result);
              catch(Exception e)
                   System.out.println(e.toString());
              return true;
         public static void main(String[] args)
              FileProcessing fp = new FileProcessing();
              fp.processFile("input.eqn",":");
    }//my text file name is: "input.eqn" (given below)
    input:Enter Value1:arg1
    input:Enter Value2:arg2
    input:Enter Value3:arg3
    constant:arg4
    constant:arg5
    Equation:arg1+arg2+arg3
    result:

    how can i apply this java program for a jsp pagewhy do you want to do this ?
    Your program reads from a file on the disk and formats based on a patterm.
    Jsp is not intended for such stuff.
    ram.

  • How Can I Apply Color into my Datagrif

    I Have a Datagrid and the data provider is from database. the
    format is :
    [No] [JobID] [TargetTime]
    How can i apply a color into Datagrid if the TargetTime is
    Overdue, can you help me.

    May I suggest:  Layer - New Adjustment Layer - Black & White, then use the Tint facility.
    Personally, I often find it more handy (and providing more control) to use a Curves adjustment layer above all the others.  Grab the curves of individual color channels and pull them this way and that to alter the color of what's underneath.  It's not hard to keep whites white, blacks black, and give the stuff in between believable coloration.
    -Noel

  • How can i apply maxlength constraint on TextField Through JavaScript ?

    How can i apply maxlength constraint on TextField Through JavaScript ,
    when i am adding the row dynamically & adding the textfield dynamically into it . I can set its attributes like name, size, focus & else, But why its not setting maxlength attribute through javascript ?
    If any body is fammiliar with this problem Please answer the question.

    Hi Ashoka,
    here is the code to get the length of the test field. then you can set your own textfield restriction. I hope this what you are searching. or else you can set the max length of the text field in HTML tag itself it is very easy.
    HTML : <input name="textfield" type="text" maxlength="25">
    JAVASCRIPT:
    <html>
    <head>
    <title>mAX tEXT <title>
    <script>
    function maX()
         var data = document.form1.textfield.value
         len = data.length
         alert("Max Value "+len);
         return true;
    </script>
    </head>
    <body>
    <form name="form1" method="post" action="">
    <input name="textfield" type="text">
    <input type="button" name="but" onClick="return maX()">
    </form>
    </body>
    </html>

  • How can I apply patch 6728000?

    I have to upgrade EBS to 12.0.6, so I have to apply the patch 6728000 which comes splitted in 4 files. How can I apply a patch that comes in this way?
    I have just applied patches that comes in 1 file.
    Thanks in advance
    Edited by: user626152 on 09-mar-2009 10:38

    Hi,
    You just need to download all the patch parts in one directory and extract it there. You should have one directory which contains all the patch files in one place (as any other patch).
    Make sure you follow all the steps in the following note when applying this patch.
    Note: 743368.1 - Oracle E-Business Suite Release Update Pack Readme, Release 12.0.6
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=743368.1
    Regards,
    Hussein

  • I'm facing problem while applying OSS Note 1046758

    Hi gurus,
    I'm facing problem while applying OSS Note 1046758. That note is asking to create <b>J_1IEWT_ACKN_N</b> table.
    After creating the table I went to the UTILITIES menu => TABLE MAINTENANCE GENERATOR.
    Then OSS Note 1046758  is asking us to give the function group name as <b>J_1IEFILE</b>.
    Next Choose <b>One Step</b>.
    and then <b>Find Screen Numbers</b>.
    While clicking the CREATE button it is not allowing me to assign the function group group J_1IEFILE.
    How to overcome this problem.
    Very urgent.
    Any answers are welcome and will be rewarded .
    Regards,
    Jacob Charles S.

    Hi Sheeba,
    I have applied the follwoing notes.
    1046758 -- To display acknowledgement number in Form No 16A
         558469
         983795
         498087
         912767
         773171
         891923     -- 452805  (Correction Made)
    905220 -- Blank Values for TDS, Surcharge & Ecess in new certificate
         923216
         833092
    984623 -- J1INCERT:Consolidated Issues - SEP 2006
    Eventhough I'm not getting the those values in the respective fields.
    I mean, TDS Rate, ECESS Rate and CHENCK NUMBER.
    More over, I want the FROM 16A should contain the Higher Education CESS field with values.
    any notes has to be applied apart from this or what....
    Wht are the table I have to maintain for this in SM30.
    Kindly help me... It's urgent...
    Regards,
    Jacob Charles S.

  • Applying OSS notes?

    Dear Friends,
    i want to know how to apply OSS notes in the BW or R/3 system. Please help.
    Thanks
    Raj

    Hi
    go to the tab correction instructions, select the appropriate ref correction depending on your release
    Have a look at the object type (MF or program) copy the object name go to se37 or SE38 depending on the object fill the object name and follow the instructions "delete block" or " insert block" to apply the note.
    Hope this helps and that responds to your question
    regards
    Boujema

  • How can i apply APPLE ID without payment information ?

    Hi, for all concern
         Follow by the subject so how can i apply the Apple ID without payment information? Because of I am still a student I no have any credit card anyway i try to apply with visa debit card already but it's still cannot. For right now i have no idea to do. I heart from my friends that they did not apply any credit card no. but they can apply and use Apple ID.
    Many thanks for your kindly help

    Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method

  • How can i apply quantitative space

    In the web apps,How can i apply quantitative space?

    I mean i wanna apply some disk space for storing
    the various file in java.ok this will not get you far around here. I can interpret that in two ways at least. Please tell me what do you mean from the two questions I will post down here. Writing the number next to the question will be just fine.
    1. Do you want to know where to save the *.java files so these can be used within your web application (in which we understand it is a website we are talking about and j2EE environment)?
    2. Do you want to somehow create a file on the client pc from your web application?
    3. Is this NOT a website application and what you really want to know is how to save a file from Java?
    regards,
    sim085

  • How can I apply sales tax / invoices

    I'm just getting to know numbers (and iwork),
    how can I apply sales tax to only the desired lines I want with the invoice templates?

    Linda Linda wrote:
    how can I apply sales tax to only the desired lines I want with the invoice templates?
    One way is with the addition a of a checkbox column to the template to indicate taxable items & the addition of a separate column for the tax, which you can subtotal separately & add to the untaxed "Cost" column. The formula for the tax column would use an IF statement & the fact that a checked box represents the "true" condition & an unchecked one the "false" condition. The formula would be something like:
    =IF(D, $C$11*F, 0)
    where $C$11 is a reference to the template's tax rate cell, "D" is the column with the checkbox format, & "F" is the Cost column, here "bumped" to the right from its original column by the addition of the new columns. (Yvan's ROUND formula can be applied to the individual item taxes or to the tax subtotal, depending on what is customary or required by law.)
    A more sophisticated, automated approach could involve a separate table in a separate sheet listing the taxable (or non-taxable) item descriptions & a formula to calculate the truth value from that instead of with a checkbox column. This would allow you to avoid showing a checkbox column in the submitted invoice without hiding it.
    Note that in any approach, you can hide columns (or rows) you don't want to be seen or printed.
    Message was edited by R C-R to explain the "F" reference.

  • How can i apply this glowing effect in logo with illustrator?

    How can i apply this glowing effect in logo | ThemeForest Community Forums

    I would make several copies of the original artwork.  On each copy, section the individual areas to be gradients. It looks like you have at least four gradients, both linear and radial.  It's just a matter of building each section and then reassembling each.  Not too complex, yet nice piece of artwork.

  • How can i apply adobe bridge in my ipad 2?

    how can i apply adobe bridge in my ipad 2?

    As when installing an app on a computer, there must be a version for the app that is compatible with the computer and the OS running the computer.
    Is there an Adobe Bridge app for the iPad available via the iTunes app store?

Maybe you are looking for