Comparison for Development,Functionality from 3.1H to4.6C & ECC 5.0

Hi ,
We are looking at information for ABAP in the field of development & functionality from 3.1H to 4.6 C and
3.1H to ECC 5.0.
Kindly let us know if there is any suitable links available for this.
Regards
Tushar A.Vhora

hi
check this link
http://solutionbrowser.erp.sap.fmpmedia.com/
Cheers
Alfred
Reward points if it is useful.

Similar Messages

  • What is the syntax for calling function from class file by jsp

    does anyone here knows what is the syntax of how to call a function from java class file by javascript code or any way to call it?
    and where should i put the calling function code? because the function is called depend on the user click.
    for example
    <%=pc.functionName(a,b)%>
    for the variable a and b, how can i get the value from html textbox and put it in a and b...
    urgent needed...
    thx

    Jsp's are executed before the Html forms are created and loaded. Dont try to use a java code function calling on a javascript click. You'll have to explicitly redirect it into a servlet where in you can call the function you want.
    Well! another way could be using AJAX. That seems to be powerfull enough and it might also serve your purpose.
    Hope this helps

  • Looking for old functionality from ios6

    When using Safari in ios6, I recall when tapping the address bar, the cursor placed itself at the end of the URL.
    That used to be a very functional ability alongside showing the whole URL in the address bar instead of how ios7 only shows a general "site" address with no detail as to what folder or file or archive you're accessing within the site.
    I can understand shortening the address bar for aesthetics but also taking out the cursor-at-end selection when tapping on the address bar just makes things difficult to use. It's an either-or sort of affair, because both working at the same time reduce function. ios7 seems to be a very poorly designed operations system.
    So is there any way to put the cursor at the end of the URL selection upon tapping the Safari Address Bar instead of "select-all" occurring (and not even showing "all" that is selected)?
    Thanks

    WinnerEX wrote:
    Does your address bar in Safari for MacOS select everything when you click the address bar? Does it shorten the URL address after the visited website loads?
    How is making ios7 less intuitive by making it different from Mac or Windows supposed to be helpful?
    I don't expect Mac to Work like Windoes or iOS to work like either of them. Although there are overlapping features, there always have been and always will be differences. Not the least of which is the difference in a touch screen device and one intended to be used with a keyboard.
    Also ios7 Camera doesn't have a zoom feature on iPhone 4S, despite the feature being advertised.
    The zoom works fine on my iPhone 5S and on my iPhone 5 before that.
    Computers and smart phone operating systems are not "intuitive". They are learned. As Ralph noted, things change. We have to unlearn old habits and learn new ones.
    Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Best design for Boolean function from simple query

    Hello,
    what is the most efficient, shorter, readable, simple way to make a boolean function that simply return true or false from a simple query that return 0 or 1 to n records?
    Is this solution using a cursor's the best (working...):
       FUNCTION is_date_present (p_date IN DATE)
          RETURN BOOLEAN
       IS
          CURSOR chk_cursor
          IS
             SELECT COUNT (*)
               FROM target_dates
              WHERE target_date = p_date;
          nb   NUMBER := 0;
       BEGIN
          OPEN chk_cursor;
          FETCH chk_cursor
           INTO nb;
          CLOSE chk_cursor;
          IF nb >= 1
          THEN
             RETURN TRUE;
          ELSE
             RETURN FALSE;
          END IF;
       END;Performance, clarity and simplicity are important...
    Thanks

    Well, I prefer (not tested):
    FUNCTION is_date_present (p_date IN DATE)
    RETURN BOOLEAN
    IS
    nb NUMBER := 0;
    BEGIN
    SELECT COUNT (*)
    INTO nb
    FROM target_dates
    WHERE target_date = p_date;
    IF nb >= 1 THEN
    RETURN TRUE;
    LSE
    RETURN FALSE;
    IF;
    END;Regards,
    MiguelWhy count multiple records when you only care if you get at least 1 occurrence? Just wasted cycles.
    FUNCTION is_date_present (p_date IN DATE)
    RETURN BOOLEAN
    IS
    nb NUMBER := 0;
    BEGIN
      SELECT COUNT (*)
      INTO nb
      FROM DUAL
      WHERE EXISTS
          SELECT NULL 
          FROM target_dates
          WHERE target_date = p_date
      IF nb >= 1 THEN
         RETURN TRUE;
      ELSE
         RETURN FALSE;
      END IF;
    END;Or you could just add a ROWNUM = 1 on to yours, either way.

  • Calling PL/SQL function from OCI?

    Hi,
    How do I execute a PL/SQL function from OCI?
    My test function:
    CREATE OR REPLACE FUNCTION GetNodeQuery(TypeId IN INTEGER) RETURN VARCHAR2 IS
    Query VARCHAR2(500);
    BEGIN
    Query := 'Select * from Logical_Name';
    RETURN Query;
    END GetNodeQuery;
    char SQL[16];
    strcpy(SQL, "GetNodeQuery(1)");
    char ColumnVariable[500];
    int VariableSize = 500;
    OCIStmtPrepare(qHandle, hError, SQL, (ub4)strlen(SQL),
    (ub4)OCI_NTV_SYNTAX, (ub4)OCI_DEFAULT);
    OCIDefineByPos(qHandle, &pDefine, hError, 1,
    (dvoid*)ColumnVariable, (sb4)VariableSize,
    1,(dvoid*)0, (ub2*)0, (ub2*)0,
    OCI_DEFAULT);
    OCIStmtExecute(svchp, qHandle, hError, (ub4)1, (ub4)0,
    (CONST OCISnapshot *)NULL, (OCISnapshot*)NULL,
    OCI_DEFAULT);
    On the Execute I get an error saying that ORA-00900: invalid SQL statement
    Any Help would be appreciated.
    Thank You,
    Scott Metzger
    null

    Ok, I made a mistake the
    select GetNodeQuery(1) from dual
    only works with a simple function. My real life function has a cursor via DBMS_SQL.
    I presume I would need to pass the following in my OCIStmtPrepare call:
    Define
    tmp Varchar2[256];
    begin
    tmp := GetNodeQuery(1);
    end;
    Now how do I get the value of tmp out?
    I couldn't find any examples for calling functions from OCI. If you know of some could you post the url or send them to me?
    Thanks,
    *:> Scott
    [email protected]
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Tiago Nodari ([email protected]):
    you need to modify the sqlstatement to look something like this...
    begin
    GetNodeQuery(1)
    end;
    look into the OCI documentation, there are various examples of how to do it, including, binding and defining variables...
    <HR></BLOCKQUOTE>
    null

  • Function Module / BAPI for Inbound Delivery from Purchase Order

    Hi,
    I need to create an inbound delivery from Purchase Order items and am looking out for some Function Module or BAPI for the same.
    The requirement is that i should be able to specify selected line items from PO for delivery.
    I tried the BDC method for VL31N , but the particular item selection is problem, since by default it shows all the items of PO and i want only selected items.
    Do reply.
    Thanks in advance.

    check these and their documentations.
    BAPI_INB_DELIVERY_CHANGE       Change inbound delivery
    BAPI_INB_DELIVERY_CONFIRM_DEC  BAPI for inbound delivery verification from a decentralized system
    BAPI_INB_DELIVERY_SAVEREPLICA  BAPI Function Module for Replication of Inbound Deliveries
    Regards
    Prabhu

  • Function Module for getting address from address number

    Hi all,
    Is there any function module for getting address from address number. kindly reply.
    regards,
    siya

    HI,
    just try this function module:
    CALL FUNCTION 'HR_GET_ADDRESS'
        EXPORTING
          ankey          = ankey
          anart          = anart
          molga          = '01'
        IMPORTING
          address_detail = adr_data
        EXCEPTIONS
          not_found      = 1
          OTHERS         = 2.
    HOPE IT WILL HELP YOU
    regards
    rahul

  • When a pdf file is opened in a tab, the automatic scroll function from the pad does not work in the other tabs, but only for the particular PDF tab.

    The scroll function from the pad/mouse does not work for the other tabs when a PDF file is opened.

    Hi NSHS,
    Have you checked to see if your PDF add-on is up to date? You should take a look at the [[Opening PDF files within Firefox]] Knowledge Base article. There is a lot of good information in there. You should try both of the suggested PDF add-ons to see if that fixes the issue.
    Hopefully this helps!

  • HT204088 how to I find out the most recent deductions to my account from the app store (say, for a recent download for additional functionality on a iPad game)

    How to I find out the most recent deductions to my account from the app store (say, for a recent download for additional functionality on a iPad game). Much as I try, I can't seem to get to see my account in enough detail to see what I have spent downloading apps to the ipad.

    You need to punch in the passcode for any purchase right, not just for new apps??
    If one of the other students, or anyone else, got access to your iTunes Store account, necessary to make any purchases, then they'd have all the information they'd need to also make in-app purchases. But an in-app purchase can only be made through the account through which the original app was purchased. Either your son bought the game (free or paid) and then shared it with someone else along with the account information (necessary to authorize the app on someone else's device), or someone else downloaded the game as well, not just made in-app purchases.
    In any case, changing your iTunes Store password should now have cut off any such unauthorized activity, though of course if your son gives the new password out, you'll be back to square one.
    Regards.

  • Why can I not use the channel name, which is obtained from the function of DAQmx Task, as the input of the channel name for the function of Get Channel Information of DAQ?

    Why can I not use the channel name, which is obtained from the function of DAQmx Task, as the input of the channel name for the function of Get Channel Information of DAQ?

    Not a lot of details here, but my guess is this isn't working for you because you are wiring in the task to the Active Channels Property and not the actual Channel Name. I have attatched a screenshot of what I believe you are trying to do. The Task has 2 channels in it, so I need to index off one of the channels and wire it into the active channels input of the Channel Property node. Then I can read information about that channel
    Attachments:
    channel_name.JPG ‏69 KB

  • Developed VI for data input from a Serial RS485 S. Himmelstein 700 Series Signal Conditioner

    Has any one developed a VI for data input from a serial RS485 connection with S. Himmelstein 700 series signal conditioner. Multiple displays and channels. Labview 2009

    Hi 
    I am using the same vi which you have suggested and i have selected proper com port and other settings, but i am not getting any data,but if i send "ADC0" and "*IDN?\n" command alternatively then it is giving the data...but if i do that i will get zero and data alternatively.I want to get data without zero in between.. any solutions on why i have to send *IDN?\n?
    Expand.Evolve.Influence
    Attachments:
    Hammltn.jpg ‏91 KB

  • Developer Role for CRM Functional Team

    Hello,
    I would like to have your inputs on creating a developer role for CRM Functional Team in Dev system.
    I found a standard role SAPCRM_DEVELOPER , does it has sufficient Authorisations to carry out the config work in CRM or do we need any more additional Auth.
    The team members also have IC AgentIC ManagerSrv Pro roles as well.
    Thanks in advance
    regards
    sam

    Hi,
    You don't need a role to development team. You can assign the auth. in dev system and perform the tests in the specifics roles.
    Best regards,
    Caíque Escaler

  • TV/DVD 19lv506: Full DVD functions from side of unit? Programming TWC remote for DVD operation?

    Lost remote and need to operate all DVD functions from either TWC remote or from buttons on side of unit. So far, unable to program TWC remote to work DVD, though fine with TV. Can't seem to do anything but Play, Stop and Eject from buttons on side of TV. Can't Fast Forward, Pause, Rewind or access menu to select scenes, so must restart movies from beginning after taking a break and watching regular TV.

    I don't know if that's possible. You may want to check Toshiba Direct for a replacement remote. They have a shopping assistance phone number listed at the top as well.
    - Peter

  • Since latest Snow Leopard security patch, Quicken 2007 does nt function properly.  Quicken says it is waiting for a solution from Apple.  Does anyone have another solution?

    Since the latest Snow Lepard security download, Quicken 2007 for Mac does not function properly (it crashes and will not print).  Quicken says it is waiting for a fix from Apple.  Any idea when that might come?  Does anyone have another solution?

    http://support.apple.com/kb/DL1489
    This is the revised v1.1. You can also get it from Software Update.

  • Accessing developer 6i functions from  C++ builder

    how can i call a function in dev 6i from a c++ builder application and pass its arguments and retrieving the result from an oracle database?

    Hi,
    you can not call a function from forms but you can call a stored procedure/function.
    From Metalink, an example of How to call stored procedure returning date as out parameter
    Overview
    This example demonstrates how to call a stored procedure that returns
    a date column as an OUT parameter. The program is written in C using
    the ODBC API.
    Program Notes
    o Steps to build the sample application:
    1. create the procedure check_date from the pl/sql provided using
    SQL*PLUS or Sqlworksheet.
    2. Create a new win-32 console application using MSVC 6.0.
    3. Add the an empty cpp source file to the project.
    4. Add the ODBC32.lib library to the project. (This should be located
    in the Microsoft Visual Studio\vc98\lib directory)
    5. Paste the code provided into the .cpp file.
    6. Choose the build command from the Build pull down menu.
    o The sample was tested using the following components:
    1. Windows NT 4.0 SP 6
    2. MSVC 6.0
    3. Oracle ODBC Driver 8.1.6.2.0
    4. Oracle RDBMS 8.1.6.0.0
    5. Oracle Net 8 8.1.6.0.0
    References
    Information in this article was taken from Oracle Source Code Repository
    Entry # 612.
    Caution
    The sample program in this article is provided for educational purposes only
    and is NOT supported by Oracle Support Services. It has been tested
    internally, however, and works as documented. We do not guarantee that it
    will work for you, so be sure to test it in your environment before relying
    on it.
    Program
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - - - - - -
    -- The PL/SQL procedure
    create or replace procedure check_date(inNum IN number, outDate OUT DATE) is
    begin
    select sysdate into outDate from dual;
    end;
    // The C source code
    #include <windows.h>
    #include <stdio.h>
    #include <sql.h>
    #include <sqlext.h>
    #pragma comment(lib, "odbc32.lib")
    UCHAR szSqlState[200];
    SDWORD pfNativeError;
    UCHAR szErrorMsg[200];
    SWORD cbErrorMsgMax = 200;
    SWORD pcbErrorMsg;
    int show_error();
    static HENV henv;
    HDBC hdbc;
    HSTMT hStmt;
    HWND hwnd;
    int show_error();
    int main() {
    char db_name[100];
    char username[100];
    char password[100];
    SDWORD cbOut;
    TIMESTAMP_STRUCT inData2;
    int inData1;
    if ( SQLAllocEnv ( &henv ) != SQL_SUCCESS )
    return -1 ;
    if ( SQLAllocConnect (henv, &hdbc ) != SQL_SUCCESS )
    return -1 ;
    printf("Username: ");
    gets((char *) username);
    printf("Password: ");
    gets((char *) password);
    printf("Data Source Name: ");
    gets((char *) db_name);
    if ( SQLConnect ( hdbc, (unsigned char*)db_name, SQL_NTS,(unsigned char*)username, SQL_NTS, (unsigned char*)password, SQL_NTS ) != SQL_SUCCESS ) {
    printf("Cannot connect as %s.\n", username);
    printf("Try again.\n\n");
    return -1;
    if (SQLAllocStmt(hdbc, &hStmt) != SQL_SUCCESS) {
    show_error() ;
    return(-1);
    inData1 = 10;
    cbOut=0;
    if ( SQLBindParameter(hStmt, 1, SQL_PARAM_INPUT, SQL_C_SSHORT, SQL_INTEGER, 0, 0,&inData1, 0, &cbOut) != SQL_SUCCESS ) {
    show_error() ;
    return(-1);
    cbOut=sizeof(TIMESTAMP_STRUCT);
    if ( SQLBindParameter(hStmt, 2, SQL_PARAM_OUTPUT, SQL_C_TIMESTAMP, SQL_TIMESTAMP, 19, 0,&inData2, 0, &cbOut) != SQL_SUCCESS ) {
    show_error() ;
    return(-1);
    if ( SQLPrepare(hStmt, (unsigned char*)"{call check_date(?,?)}", SQL_NTS) != SQL_SUCCESS)
    return(-1) ;
    if (SQLExecute(hStmt) != SQL_SUCCESS) {
    show_error() ;
    return -1;
    printf("The date is:\nyear: %d\nmonth: %d\nday: %d\n", inData2.year, inData2.month, inData2.day);
    if (SQLFreeStmt(hStmt,SQL_DROP) != SQL_SUCCESS) {
    show_error() ;
    return -1;
    if (SQLDisconnect(hdbc) != SQL_SUCCESS) {
    show_error() ;
    return -1;
    return(0) ;
    int show_error() {
    int retcode;
    retcode = SQLError(henv, hdbc, hStmt, szSqlState, &pfNativeError, szErrorMsg, cbErrorMsgMax, &pcbErrorMsg);
    printf("%d - %s \n",retcode, szErrorMsg);
    return(0);
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - - - - - -
    Sample Output
    The Date is:
    year: 2000
    month: 11
    day: 9
    press any key to continue
    Monica

Maybe you are looking for

  • [nForce] MSI K7N2 Delta ILSR; bios, neither windows recognize IEEE1394

    Hello, Since 2 years I have used a msi motherboard. Now since I dont have IEEE1394 of an external card anymore (Audigiy), i tried to connect my digital camera with the IEEE1394 to the motherboard. Rebooted my pc, windows doesnt recognize new hardware

  • Loops in tracks sound muddled

    Hi I have a problem with my loops. They play ok in the browser, but when I move them to a track they sound like they are muffled or under water. Any ideas what could be going on? Are instrument libraries part of the installation? I can't find any doc

  • Question about how wireless networks work

    Hello, This is more of a general question rather than one that is specific to the airport. I have a network with an Airport Express with wireless n, a Macbook Pro with a wireless n card, and a printer that has a wireless g card. Someone told me that

  • Mobile sync "Server is shutting down"

    Ever since the upgrade to Yosemite and Server 4.0, my mobile sync is not working properly. After three months, I have a backlog of accounts on multiple computers that aren't in sync; it is a nightmare. During the upgrade, mobile sync stopped working,

  • XMP Java Set and Get Question

    I am investigating the potential to set and read XMP metadata on TIFF, PDF, and EPS files for a workflow. I am a Perl/Java person, and upon investigating solutions found the Java XMP Parser. As I read, it appears that I need to create a RDF file. It