Difference between New Formula and Formula Variable

Can any body explain what is the difference between  New Formula and Formula Variable.
Thanks

Hi,
Formula:http://help.sap.com/saphelp_nw04/helpdata/en/d3/8057f830a911d4b2be0050dadfb23f/frameset.htm
Formula Variable:If you want use variables in the formulas of a form, you need to use formula variables. You can use formula variables only in form reports, and must define them in the form itself. They can be replaced in the same ways as text variables when you execute the report.
http://help.sap.com/saphelp_nw04/helpdata/en/5c/8db0b1555411d189660000e829fbbd/frameset.htm
Bye
Dinesh

Similar Messages

  • Difference between New Archieve and New Patch

    Hi,
    I am going through import and export topics of LCA files (http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=000276.html ). I understood how we can create new Archieves and import it to another environments. But I am not able to understand about patches.
    In both the cases, I am doing the same thing. I am creating archieve of the application. I am sure, there would be difference between "new archive" and "Patch" but not able to figure out.
    Can anyone let me know if I create new archieve and Patch, then what is the visual differences i can look in both the archieves??????
    Regards
    Sunil

    patching is related to component of LiveCycle.
    these are  basically jar files updated with new one. For more please look here.
    http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=000960.html
    LCA files are simply archive file of the processes/application that you create in workbench. These archive files can be import to other environment  at later stage.
    -Vijay

  • Difference between new network and extended network

    Difference between extended network and new network settings

    An "extended" network acts as one large wireless network. Wireless devices can roam anywhere a signal is present and stay on the network without having to make any changes.
    A "new" network will require that a wireless device manually "switch" to that network and enter the password for the network to connect whenever you want to use that network. In other words, a "new" network will use a different wireless network name and password, which will require that you manually log on to that network.
    The exception would be if you created a "new" wireless network and used the same wireless network name, same wireless security settings and same password as the "main" network and connected the AirPort back to the main router using an Ethernet cable. In that case, you would have an "Ethernet extended wireless" network.

  • Difference between place holders and formulas ?

    hi all , i want to know what can i do with place holders , i can not do with formulas ?
    when do i need to use place holders ??
    thanks in advance

    For a formula, you are only returning one value.
    So... if a user sent in a parameter of :p_class_number = 101 and I wanted to build a title for my report then I could create a formula named :CF_Report_Title and set it to a Character Datatype with a width of 20 for example.  I could then go into the formula and create the following:
    function CF_Report_TitleFormula return Char is
    begin
       return 'Class Number ' || :p_class_number;
    end;
    In the layout I would then create a Field named something like F_Report_Title and in the property pallete I would set the source to by formula :CF_Report_Title
    For the second example, I could create three more formula's just like I did above to compute the number of people in that class, the average test scores for that class, and the number of people that were absent at any particular time for that class, but instead of having all of those formula's I would personally create three placeholder columns and name them something like:
    :CP_class_count
    :CP_avg_scores
    :CP_absent_count
    In the property palette I would probably leave all of these as NUMBER(10) because for this example I am returning numbers.  I would then create a formula named :CF_class_info and set the Datatype to NUMBER(1).  In the actual formula, I would create a function that looked something like this:
    function CF_Class_InfoFormula return Number is
    begin
      -- Compute the class count
      select count (*)
          into :CP_class_count
          from class_detail
        where class_number = :p_class_number;
            and ...;
      -- Compute the Average Score
      select average(class_score)
          into :CP_class_count
          from class_scores
        where class_number = :p_class_number;
            and ...;
      -- Compute the Abscenses
      select average(class_score)
          into :CP_class_count
          from class_abscence
        where class_number = :p_class_number;
            and ...;
      -- Finished with this formula
       return 1;
    end;
    At this point, I have run the formula one time, but was able to populate three placeholders.  I can then create fields in the layout and reference these placeholders instead of having to create three separate formulas.  It works either way, it is just whatever you prefer to do because they would both work.

  • Difference between "new classname()" and  class.forName("...")?

    Hi,
    Please clarify me : What is the difference between the instnce creation by using new operator *( new ClassName())* and instance creation using class.forName("fully Qualified Name");
    thanks
    Gaurav

    The compiler can tell you whether new ClassName() will be valid. For the other, you have to wait until runtime to know for sure.
    new ClassName(...) can be invoked with arguments, and you provide them directly and simply. If you want to reflectively create an instance using a constructor that takes arguments, it's a more convoluted process.
    Using new, you know which checked exceptions can be thrown and you catch them directly. Using reflection, you have to catch some other exception and unravel its cause.
    You can use reflection (Class.forName and its more complicated cousins) when you don't know the classname at compile time.You can't do this with new.
    Don't use reflection unless you have to. It's more complex, somewhat less performant, and it denies you certain compile time checks.

  • What is the difference between new thread and new execution?

    What is the difference in creating a new thread and a new execution. Basically, what is the difference between thread and execution?

    Try this link...
    http://zone.ni.com/devzone/cda/tut/p/id/4823
    Thanks,
    PH

  • Difference between New ETL and Old ETL

    Hi All,
    In old ETL process we first have a InfoSource (Can be connected from DataSources from Different Source Systems). We have 1 set of Transfer Rules. Again if there are different definitions to be loaded into different data target we define them in Update Rules.
    What incase of new ETL is the purpose of maintaining 2 transformations (Replacing Update Rules and Tranfer Rules). Can't we directly define different transformations on DataSource itself. Where the requirement comes that we define two transformations with InfoSource in between.

    Hi Ravi,
    What incase of new ETL is the purpose of maintaining 2 transformations (Replacing Update Rules and Tranfer Rules). Can't we directly define different transformations on DataSource itself. Where the requirement comes that we define two transformations with InfoSource in between.
    .here is the requirement
    suppose thr are some modification required to be done in an infoobject value ..suppose the value '1' is to be replaced by 'Y'  in an infoobject for all data targets...then such a modification will be put in the transformation from datasource to infosource and after that individual transformations are applied from infosource to different data targets,these transformation are data target specific rules..like update rules..in this case u only had to write the rule for 1-->Y once in first transformation ...
    So in short .. transfer rules as well as update rules are now called transformations.....
    yes u can directly define transformations on datasource itself as well ..infosource is not mandatory
    Mann

  • Can't see difference between new posts and old ones.

    Hi
    This may sound like a silly question......but why I can't see new posts everything looks the same, no indication of new posts.
    It's very silly not to be able to see new posts.
    Tony

    Agreed guys ! We risk to not answer to someone, because we don't see that the thread has been updated. Before it was very easy to do that, now it' quite difficult :-(
    Paul

  • Difference between new GL & Classic GL

    Hi
    I request everyone to help me understand the difference between new GL and Classic GL.
    Basically a new GL has following features:-
    1. Segmental Reporting
    2. Parallel Currencies
    3. Generation of Balance Sheets @ Profit Center Level
    4. Legal Consolidation
    I believe all the above features can also be achieved in Classic GL.
    Also what is the difference between Business Area & Segments?
    Pls help.
    Thanks,
    Srikanth

    Hi Srikanth,
    One of the the core differnences between New GL and Glassic Gl is online integration of  items like PCA,segments,Business area etc with GL.
    In classic GL we need to do a lot of periodic closing activities to get restricted Balance sheet at these levels.
    with online document split enabled in New gl these periodic activities are gone.
    Differnce between business areas and segments:
    both can be used to draw financial statements at other than co.code level. But for segmental reporting you need to have PCA as segments can be derived only thru Profit center. (BADI available in other cases)whereas Business areas are cross co.code settings so you can assign them to sales area/plant/divsion combination for derivation which remains the same as classic gl.
    Hope this helps.
    Pls assign points if it does.
    Thanks,
    vamsi
    Edited by: Vamsi on Jan 21, 2008 7:06 AM

  • Difference between list.clear() and new instance

    In the below code,
    List<String> test = new ArrayList<String)();
    list.add("one");
    list.add("two");
    list.add("three");
    list.clear();
    (or)
    list = new ArrayList<String)();
    list.add("four");
    list.add("five");
    What is the difference between List.clear() and creating new instance for list?

    1. Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.
    2. Invoking clear() sets all the elements of the ArrayList to null and resets the size to 0.    public void clear() {
         modCount++;
         // Let gc do its work
         for (int i = 0; i < size; i++)
             elementData[i] = null;
         size = 0;
        }(modCount is used to detect concurrent modification and throw an Exception when needed)
    Constructing a new ArrayList creates a new, different, empty ArrayList.
    In many situations they might be equivalent, but not in a case where you have two or more variable references to the same ArrayList. Example (watch out for typos)ArrayList<String> stringsA = new ArrayList<String>();
    ArrayList<String> stringsB = stringsA;
    : // add elements to stringsA
    : // stringsB refers to the same populated list
    stringsA.clear(); // stringsB refers to the clear()ed list
    : // add elements to stringsA again
    stringsA = new ArrayList<String>(); // stringsB still refers to the populated listdb

  • Difference between Temp table and Variable table and which one is better performance wise?

    Hello,
    Anyone could you explain What is difference between Temp Table (#, ##) and Variable table (DECLARE @V TABLE (EMP_ID INT)) ?
    Which one is recommended to use for better performance?
    also Is it possible to create CLUSTER and NONCLUSTER Index on Variable table?
    In my case: 1-2 days transactional data are more than 3-4 Millions. I tried using both # and table variable and found table variable is faster.
    Is that Table variable using Memory or Disk space?
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Check following link to see differences b/w TempTable & TableVariable: http://sqlwithmanoj.com/2010/05/15/temporary-tables-vs-table-variables/
    TempTables & TableVariables both use memory & tempDB in similar manner, check this blog post: http://sqlwithmanoj.com/2010/07/20/table-variables-are-not-stored-in-memory-but-in-tempdb/
    Performance wise if you are dealing with millions of records then TempTable is ideal, as you can create explicit indexes on top of them. But if there are less records then TableVariables are good suited.
    On Tables Variable explicit index are not allowed, if you define a PK column, then a Clustered Index will be created automatically.
    But it also depends upon specific scenarios you are dealing with , can you share it?
    ~manoj | email: http://scr.im/m22g
    http://sqlwithmanoj.wordpress.com
    MCCA 2011 | My FB Page

  • What are the differences between ECC5.0 and 6.0 new GL functionality

    Hi Experts,
    What are the differences between ECC5.0 and 6.0 new GL functionality.
    If we want to implement IFRS, I think New GL functionality is very helpful, but why sap is recommending only for ECC6.0 new GL functionality, Eventhough this functionality is available in ECC5.0.
    Best Regards,
    Dharani

    Dear,
    ECC 5.0 vs. ECC 6.0/SAP ERP 6.0
    Functionality not available in the new G/L with mySAP ERP 2004 and ERP Central Component (ECC) 5.0:
    Transfer prices
    Statistical key figures
    Euro translation
    Audit Information System (AIS)
    Archiving
    Data retention tool
    Regards,
    Chintan Joshi.

  • I do video productions for a small local TV station. I use Final Cut Express to edit. I need a new video camera but am at a loss as to what to buy. I know I will get a digital camera but do not know the difference between just digital and digital HD.

    I do video productions for a small local TV station. I use Final Cut Express to edit. I need a new video camera but am at a loss as to what to buy. I know I will get a digital camera but do not know the difference between just digital and digital HD. Also, I can not afford an expensive camera and need some advice on which of the available cameras would be best and also work well with a Mac. One last issue, I currently use a Panasonic #CCD camera that takes a tape. When I load video to Final Cut the audio and video are out of sinc. Go figure. Can anyone help with these questions. Karen

    Hello Karen,
    If you are using Final Cut Express, then look for camcorders that are AVCHD camcorders.  Look especially for the AVCHD logo and specific mention of AVCHD in the specs.  Most of the major manufacturers produce good quality camdcorders - Canon, Sony, etc.
    Also, be aware that there are a lot of "not quite AVCHD" camcorders on the market (sometimes they say they record video as MPEG4-H.264/AVC) - buyer beware!
    Most everything you are going to find on the market today is HD, which stands for "high-def".
    Regarding your question about the Panasonic camcorder, it's best if you post that as a separate question, and please identify the specific model camcorder and the Easy Setup you are using in FCE.

  • Difference between New G/L Segment and Profitability Segment

    Dear friends,
    Can somebody explain what is the difference between New G/L segment and Profitability segment.
    Thanks, Prakash

    Hi,
    Segment in New G/L is puerly for external reporting purpose.A segment is a sub area of a company for which has separate financial data and which has expenses and losses.For this segment we need virtually complete balance sheet for external reporting purpose.
    Profitability segment is for analysis of profit within the organisation.A Profitability segment is a combination of different characteristic for which we want to analyse sales revenue and cost.These characteristic can be any thing for example customer, product, sales organisation etc.
    For example We want to analyse what is the total sales of product A for customer group B under the sales organisation XYZ. Here profitability segment = Product+customer group +sales organisation

  • Difference between Special GL and New GL

    Dear SAP Gurus,
                            What is the difference between Special GL and New GL?
    Thanks & Regards,
    Sim

    Dear Sim
    If I understood logically, then your question actually refer to special purpose ledger, right ?
    If so both are almost same. Both are for you to depict parallel accounting in your SAP system by storing posting data for the various accounting principles in separate ledgers.
    Whereas special purpose ledger is more custome developed (data is stored in 'Z' table), whereas New GL is more standardised from SAP as well as advanced when compared to special purpose ledger.
    Hope I understood correctly your question and gave some useful input.
    Regards
    Siva

Maybe you are looking for

  • Iphone not ringing, clock not holding correct time and no wi-fi

    Man...I thought I had done something, but since the 2.1 update, my phone doesnt ring but for one or two random calls. The clock is also not holding time...it does if i restart the phone but within hours its back to hopping around, trying to get the r

  • 1616 screen goes black - Help please

    I have just bought a new Nokia 1616. I have worked through all the settings but cannot find the one to stop it turning the screen off after a few minutes of non-use.  The screen goes black and so you don't know if it is switched on or not.  Ideally I

  • Applet retreiving file list in Codebase

    I want an applet to get the list and consequently open all the files in its code base. They are all images that i want to present in a tabbed window. The application version of the code used the File.list( ) method. But i guess that is not usable fro

  • Facebook friends list

    Hi Not sure what the exact problem is but thought I'd post it here for comments. Whenever I tried to view my friend's list of friends on facebook, the list is very short and when you click on "Show more" at the bottom of the page, it doesn't load eve

  • Problem in list display of TCODE F.13

    Hi all, Have a look at the below thread Problem with List display for TCODE F.13 Does the same problem exist in your system Let me know. Thanks