ABAP versions issue

Hello. I'm with a problem here in my job....
Months ago, I developed an enhancement in ABAP. Than, created a request and sent it to QA and PRD environment.
But there was an error in the code. So I solved this error, created a new request, and sent to QA/PRD...
Now, three days ago. The error of the first version comes again...and I verified that the version of the code is the first version in PRD. But nobody deleted the changes in the second version and created new requests....
I think, someone back the version to the first, direct in PRD, is there a way to do this??? If no, someone know what it could be???
Regards,
Thiago

> Months ago, I developed an enhancement in ABAP. Than, created a request and sent it to QA and PRD environment.
> But there was an error in the code. So I solved this error, created a new request, and sent to QA/PRD...
This is good. no problem
>
> Now, three days ago. The error of the first version comes again...and I verified that the version of the code is the first version in PRD. But nobody deleted the changes in the second version and created new requests....
>
You may not have imported the second version in PRD. You may be released but not imported into PRD. Go to your Development system where you have created your transports then loop for the transport log to see where this is sitting.
Also try to compare your DEV system with PRD using remote comparision to see what happend and what is the difference.
> I think, someone back the version to the first, direct in PRD, is there a way to do this??? If no, someone know what it could be???
It is impossible to retrieve the version in PRD system.
Finally, Please look all versions in Development system as you wont see all the transports in PRD. You will see only active version PRD.

Similar Messages

  • XRPM - CPRXRPM - ABAP Version upgrade

    Hello all;
    The Abap version of CPRXRPM component is reflecting on 0008 at the back end if we check via SPAM.
    Whereas on the portal the same is being reflected as version SP02 under "About xRPM" details page. whereas the Java component is on SP07.
    Why is this discrepancy and will if affect any of the components functioning on the portal and other related components on higher patch level ?
    Also i am facing lot of issues wherein certain fields like external id, description etc are not reflected under portfolio mgmt > administration page. Due to which i am unable to save the portfolio item and proceed ahead.
    Are this issues related to ABAP version not upgraded.
    Finally how do i get the ABAP component to be reflected on portal with consistent patch level atleast with Java component ?
    Please revert back.
    Regards;
    Pratik

    Hey,
    >We are planning to upgrade XI 3.0 to PI 7.1
    System  needs  64 bit OS for PI 7.1 , Will not support 32 bit OS
    Customer Adapters and Adapter modules have to be adjusted and redeployed
    Java Proxies have to be redeployed because JAVA JVM is installed during upgrade and JAVA JDK  not supported at all in PI 7.1
    >upgrade specific to Proxy development?
    For ABAP  Proxy Nothing, If the interfaces does not functions, The regeneration of proxy will do
    Cheers
    Agasthuri Doss

  • ABAP performance issues and improvements

    Hi All,
    Pl. give me the ABAP performance issue and improvement points.
    Regards,
    Hema

    Performance tuning for Data Selection Statement
    For all entries
    The for all entries creates a where clause, where all the entries in the driver table are combined with OR. If the number of
    entries in the driver table is larger than rsdb/max_blocking_factor, several similar SQL statements are executed to limit the
    length of the WHERE clause.
    The plus
    Large amount of data
    Mixing processing and reading of data
    Fast internal reprocessing of data
    Fast
    The Minus
    Difficult to program/understand
    Memory could be critical (use FREE or PACKAGE size)
    Some steps that might make FOR ALL ENTRIES more efficient:
    Removing duplicates from the the driver table
    Sorting the driver table
          If possible, convert the data in the driver table to ranges so a BETWEEN statement is used instead of and OR statement:
          FOR ALL ENTRIES IN i_tab
            WHERE mykey >= i_tab-low and
                  mykey <= i_tab-high.
    Nested selects
    The plus:
    Small amount of data
    Mixing processing and reading of data
    Easy to code - and understand
    The minus:
    Large amount of data
    when mixed processing isn’t needed
    Performance killer no. 1
    Select using JOINS
    The plus
    Very large amount of data
    Similar to Nested selects - when the accesses are planned by the programmer
    In some cases the fastest
    Not so memory critical
    The minus
    Very difficult to program/understand
    Mixing processing and reading of data not possible
    Use the selection criteria
    SELECT * FROM SBOOK.                   
      CHECK: SBOOK-CARRID = 'LH' AND       
                      SBOOK-CONNID = '0400'.        
    ENDSELECT.                             
    SELECT * FROM SBOOK                     
      WHERE CARRID = 'LH' AND               
            CONNID = '0400'.                
    ENDSELECT.                              
    Use the aggregated functions
    C4A = '000'.              
    SELECT * FROM T100        
      WHERE SPRSL = 'D' AND   
            ARBGB = '00'.     
      CHECK: T100-MSGNR > C4A.
      C4A = T100-MSGNR.       
    ENDSELECT.                
    SELECT MAX( MSGNR ) FROM T100 INTO C4A 
    WHERE SPRSL = 'D' AND                
           ARBGB = '00'.                  
    Select with view
    SELECT * FROM DD01L                    
      WHERE DOMNAME LIKE 'CHAR%'           
            AND AS4LOCAL = 'A'.            
      SELECT SINGLE * FROM DD01T           
        WHERE   DOMNAME    = DD01L-DOMNAME 
            AND AS4LOCAL   = 'A'           
            AND AS4VERS    = DD01L-AS4VERS 
            AND DDLANGUAGE = SY-LANGU.     
    ENDSELECT.                             
    SELECT * FROM DD01V                    
    WHERE DOMNAME LIKE 'CHAR%'           
           AND DDLANGUAGE = SY-LANGU.     
    ENDSELECT.                             
    Select with index support
    SELECT * FROM T100            
    WHERE     ARBGB = '00'      
           AND MSGNR = '999'.    
    ENDSELECT.                    
    SELECT * FROM T002.             
      SELECT * FROM T100            
        WHERE     SPRSL = T002-SPRAS
              AND ARBGB = '00'      
              AND MSGNR = '999'.    
      ENDSELECT.                    
    ENDSELECT.                      
    Select … Into table
    REFRESH X006.                 
    SELECT * FROM T006 INTO X006. 
      APPEND X006.                
    ENDSELECT
    SELECT * FROM T006 INTO TABLE X006.
    Select with selection list
    SELECT * FROM DD01L              
      WHERE DOMNAME LIKE 'CHAR%'     
            AND AS4LOCAL = 'A'.      
    ENDSELECT
    SELECT DOMNAME FROM DD01L    
    INTO DD01L-DOMNAME         
    WHERE DOMNAME LIKE 'CHAR%' 
           AND AS4LOCAL = 'A'.  
    ENDSELECT
    Key access to multiple lines
    LOOP AT TAB.          
    CHECK TAB-K = KVAL. 
    ENDLOOP.              
    LOOP AT TAB WHERE K = KVAL.     
    ENDLOOP.                        
    Copying internal tables
    REFRESH TAB_DEST.              
    LOOP AT TAB_SRC INTO TAB_DEST. 
      APPEND TAB_DEST.             
    ENDLOOP.                       
    TAB_DEST[] = TAB_SRC[].
    Modifying a set of lines
    LOOP AT TAB.             
      IF TAB-FLAG IS INITIAL.
        TAB-FLAG = 'X'.      
      ENDIF.                 
      MODIFY TAB.            
    ENDLOOP.                 
    TAB-FLAG = 'X'.                  
    MODIFY TAB TRANSPORTING FLAG     
               WHERE FLAG IS INITIAL.
    Deleting a sequence of lines
    DO 101 TIMES.               
      DELETE TAB_DEST INDEX 450.
    ENDDO.                      
    DELETE TAB_DEST FROM 450 TO 550.
    Linear search vs. binary
    READ TABLE TAB WITH KEY K = 'X'.
    READ TABLE TAB WITH KEY K = 'X' BINARY SEARCH.
    Comparison of internal tables
    DESCRIBE TABLE: TAB1 LINES L1,      
                    TAB2 LINES L2.      
    IF L1 <> L2.                        
      TAB_DIFFERENT = 'X'.              
    ELSE.                               
      TAB_DIFFERENT = SPACE.            
      LOOP AT TAB1.                     
        READ TABLE TAB2 INDEX SY-TABIX. 
        IF TAB1 <> TAB2.                
          TAB_DIFFERENT = 'X'. EXIT.    
        ENDIF.                          
      ENDLOOP.                          
    ENDIF.                              
    IF TAB_DIFFERENT = SPACE.           
    ENDIF.                              
    IF TAB1[] = TAB2[].  
    ENDIF.               
    Modify selected components
    LOOP AT TAB.           
    TAB-DATE = SY-DATUM. 
    MODIFY TAB.          
    ENDLOOP.               
    WA-DATE = SY-DATUM.                    
    LOOP AT TAB.                           
    MODIFY TAB FROM WA TRANSPORTING DATE.
    ENDLOOP.                               
    Appending two internal tables
    LOOP AT TAB_SRC.              
      APPEND TAB_SRC TO TAB_DEST. 
    ENDLOOP
    APPEND LINES OF TAB_SRC TO TAB_DEST.
    Deleting a set of lines
    LOOP AT TAB_DEST WHERE K = KVAL. 
      DELETE TAB_DEST.               
    ENDLOOP
    DELETE TAB_DEST WHERE K = KVAL.
    Tools available in SAP to pin-point a performance problem
          The runtime analysis (SE30)
          SQL Trace (ST05)
          Tips and Tricks tool
          The performance database
    Optimizing the load of the database
    Using table buffering
    Using buffered tables improves the performance considerably. Note that in some cases a stament can not be used with a buffered table, so when using these staments the buffer will be bypassed. These staments are:
    Select DISTINCT
    ORDER BY / GROUP BY / HAVING clause
    Any WHERE clasuse that contains a subquery or IS NULL expression
    JOIN s
    A SELECT... FOR UPDATE
    If you wnat to explicitly bypass the bufer, use the BYPASS BUFFER addition to the SELECT clause.
    Use the ABAP SORT Clause Instead of ORDER BY
    The ORDER BY clause is executed on the database server while the ABAP SORT statement is executed on the application server. The datbase server will usually be the bottleneck, so sometimes it is better to move thje sort from the datsbase server to the application server.
    If you are not sorting by the primary key ( E.g. using the ORDER BY PRIMARY key statement) but are sorting by another key, it could be better to use the ABAP SORT stament to sort the data in an internal table. Note however that for very large result sets it might not be a feasible solution and you would want to let the datbase server sort it.
    Avoid ther SELECT DISTINCT Statement
    As with the ORDER BY clause it could be better to avoid using SELECT DISTINCT, if some of the fields are not part of an index. Instead use ABAP SORT + DELETE ADJACENT DUPLICATES on an internal table, to delete duplciate rows.

  • Installation Procedure for SAP Netweaver 2004 Trial ABAP Version

    Hi,
    I am new to ABAP, and want to Install SAP Netweaver 2004 Trial ABAP Version on my system. I downloaded the software from SDN. If any one knows the Installation Preocedure, please send me it will be very helpful for me.
    Regards,
    Mithun Birabinth.

    Please check the SMP:
    http://service.sap.com/instguides & navigate accordingly.
    PS:
    Award points if your question is resolved.

  • SAP NetWeaver 04s SP7 Java Version And SAP NetWeaver 04s ABAP Version

    Hello,
    I would like to ask if anyone has installed both Java and ABAP version on PC/Notebook.
    What did you install first and why?
    When installing the second of the two, did you need to turn off or detete any part of first installation?
    Any advice on the installation of both versions on one PC would be appriciated.
    Thank You,
    Spiro.

    Hi.  I have installed NW04s ABAP stack and the NW04 Java stack(slim edition) on my laptop.  I installed ABAP first, then the java stack.  I did do it the other way around, but the ABAP stack would not load successfully, so remember ABAP first, then java.  No, did not turn off or delete anything from the abap installation.
    Regards,
    Rich Heilman

  • Qmaster not using all computers in cluster, is it a version issue?

    hi i'm new to cluster compressing. I just set up a cluster and a compressor batch. the batch is running fine, however it's only using two of the three computers in the cluster. I rechecked the qmaster settings on the offedning computer and they are correct. It shows up on the qadminstrator of the controlling computer as well, but always remains idle. the computer that it's not using is an older version of compressor (and presumably qmaster). is it a version issue I'm experiencing? I'd love to get this 3rd computer working on the cluster as is has the fastest processor of the bunch.

    Hi Gordon,
    Thanks for your response. Actually I have already asked my work buddies not to use manager for a while so I can address the problem.
    BTW, I also want to know if there is a way to monitor that kind of session in SAP. I will post it in another thread.
    Thanks,
    Lan

  • Differences between ABAP  versions

    Hi all,
            I need help about Differences between ABAP versions. plz help me where i can get it.

    hi,
    check this links
    http://www.sapdesignguild.org/resources/r3_history.asp
    http://www.sapdesignguild.org/resources/web_history.asp
    http://ifr.sap.com/index.html
    http://www.sap.info/index.php4?ACTION=noframe&url=http://www.sap.info/public/en/article.php4/Article-187163df9cbccc5273/en
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    cheers,
    sasi

  • Still confused with different ABAP versions

    Hi folks,
    does anybody have an idea where I could possibly find a comparisson of the different ABAP versions (ABAP runtime environments) in order to find out the changes especially coming from 4.6C to the next versions SAP WAS 7.0.
    Especially in ABAP Objects I expect some changes. Could anybody post a good source on that?
    Thanks for your help
    bye
    Torsten

    Not sure where to find that stuff but here is a little rundown.
    One thing about classes, is that there is now the Friends tab where you can define a friends relationship to other classes
    There has been quite a lot of changes to the ABAP runtime including the inclusion of a full web server and the ICF(Internet Communications  Framework)  This allows for such things like Web Services, BSP(Business Server Pages) and Web Dynpro.
    Other things that are new are Shared Memory Objects, Persistent Objects, ABAP Units, Adobe Interactive Forms, the New Debugger, and the new ABAP Editor.
    This is just to name a few.
    Regards,
    Rich Heilman

  • ABAP version error of sneak preview

    hi all,
      I am trying to install ABAP version in the sneak preview and this is the error i get at step 5 of 17
    please help.
    Thanks
    Pradeep
    ERROR 2005-11-21 03:10:20
    MOS-01021  PROBLEM: C:/DOCUME1/PRADEE1/LOCALS~1/Temp/sapinst_exe.5476.1132538565\sapcar.exe -xvgf C:/SAPNetWeaver04SneakPreviewABAP/Installation_Master\IM01_NT_I386\../../SAP_NetWeaver_04_SR_1_Kernel_MaxDB__ID__51030720\K01/NT/I386/SAPEXE.SAR, -R C:\usr\sap\NSP\SYS\exe\run returned with '28'. CAUSE: See output './SAPEXE.SAR.log'. SOLUTION: Solve the CAUSE and retry.

    Are you running the installation from the desktop?  If so, please extract the RAR file to C:/ and run the installation from there.  I think your path is too long.
    Regards,
    Rich Heilman

  • Authorization problem in Sneak preview 2004s ABAP version

    Hi all,
    I have successfully downloaded the sneak preview 2004s ABAP version, I hv created the client 001 for BI. when I try to create DataSource or Transformations system saying You have no authorization for DataSource and when i try to create infosource, it is saying <b>You are not authorized to display the InfoSource</b>,but system allow me to created info cube.
    Any in puts plz.
    Regards.
    Hari
    Pages: 1

    Hi Rich,
    thx a lot for your quick reply.The problem is i cannot find it.
    I run SE80 trx, i create a simple WD application and a view. I select the view, then and i have three "frames" (from the left):
    - The standard SE80 tree
    - In the "layout" tab of the WD application, i have the browser preview (but it shows the standard IE error page) and a window with the UI of the windows, designed in a tree (rootuielementcontainer).
    But nothing about view designer.
    I have sapgui 6.40 patch lev.20
    Thx a lot
    Andrea

  • ABAP MAPBOX Issue/question

    Iu2019m working on the CRM/Outlook integration and appear to be having a problem with implementing the ABAP MapBox component.  Based on the documentation Iu2019ve found for the ABAP version there isnu2019t much to do.  The configuration below has been implemented and it doesnu2019t like MAPBOX as the Program ID u2013 I got this bit of configuration from the GroupWare Adapter Customizing and User Guide.
    Do I need to follow the instructions on note #1066515 which states I should contact SAP prior?
    Any help would be greatly appreciated.
    /Greg
    System Version:
    SAP CRM ABAP 6.0
    CRM 2007
    RFC Destination Info:
    RFC Dest: MAPBOX
    Connection Type: T
    Activation Type: Registered Server Program
    Program ID: MAPBOX
    SM59 Connection Test:
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: program MAPBOX not registered
    Error Details     LOCATION: SAP-Gateway on host intvcrmd / sapgw61
    Error Details     DETAIL: TP MAPBOX not registered
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 1070
    Error Details     MODULE: gwr3cpic.c
    Error Details     LINE: 1778
    Error Details     RETURN CODE: 679
    Error Details     SUBRC: 0
    Error Details     RELEASE: 700
    Error Details     TIME: Wed Oct  8 17:09:40 2008
    Error Details     VERSION: 2
    Table: ISPCFG                                                                               
    PARNAME                SITETYPE PARVAL PARVAL2
    CRM_MAPBOX                      X                                                                  
    MAPBOX_RFC_DESTINATION          MAPBOX                                                             
    TRACE                  GWA_01   X

    Also, please look at the folloing best practice documentation. Here the program name stated is something else. It is MAPBOXSMB23.
    http://help.sap.com/bestpractices/BBLibrary/documentation/D58_BB_ConfigGuide_EN_UK.doc#_Toc77575395

  • Adobe Version Issue

    Hi,
    I am trying to use the following blog so that I can send a mail.
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417400)ID1415835150DB20085339665800400921End?blog=/pub/wlg/6676
    I believe there is some restriction on ADOBE VERSION. I am not able to ascertain it.
    PLease let me know is there any problem with Adobe Reader version. I am currently using Reader 8.1.5.
    Regards,
    Aditya Deshpande

    Hi Otto,
    I have implemented the same code.
    When i use ADobe Acorobat 9 pro, it works there.
    When I use adobe reader 8.0 or reader 8.13 or 8.1.5.
    It does not work.
    I have SAP FORMS as my plug ins i.e ACF.
    Hence it should be reader version issue.
    Since acrobat is costlier version I wanted to be sure whether or not it can used any version below.
    Regards,
    Aditya Deshpande
    Edited by: Aditya Deshpande on Dec 9, 2009 9:59 AM

  • CC version issue

    We are having a serious version issue with CC. There are 6 people on my team. One person signed up for CC a couple of weeks after the rest of us, and his version is 17, while ours is 16.0.4. We cannot open his files without them being corrupted. I just downloaded the latest CC updates this morning, and that didn't resolve the issue. My version still shows 16.0.4.
    He is having to downsave all his files for us to open. Thoughts?
    Thanks in advance for any advice.

    Catmarsh which Adobe software title in specific are you referring too?  Also which operating system are you using?

  • Safari locks up on stock streamer due to Java Version issue

    I bought a MacBook for personal use when I travel. My company expressly forbids any personal use of their laptop.
    When I use Safari with my wireless network at home it works fine. In this hotel I cannot access the stock streamer on TD Ameritrade when working over a wireless connection. TD Ameritrade "help" indicates a Java Version problem. I upgraded to the latest version of Java. TD still indicates a Java Version issue. This really does not make sense since the streamer works fine at home. I used my business laptop (XP with Internet Explorer) just to check the streamer and it works fine at the hotel.
    I checked the Safari Plug-ins. The Java Plug-ins listed say;
    Java Plug-in for Cocoa
    Java Switchable Plug-in (Cocoa) - from file "JavaPluginCocoa.bundle".
    Java Plug-in
    Java 1.3.1 Plug-in - from file "Java Applet.plugin".
    Java Plug-in (CFM)
    Java 1.3.1 Plug-in (CFM) - from file "Java Applet Plugin Enabler".
    I tried to download and reinstall Java 1.4.2. The system indicated there was already a newer version of Java 1.4 installed and terminated the install.
    Any suggestions will be tried.
    I am hoping that after all my years on PCs I will not regret trying to switch to Apple.
    MacBook   Mac OS X (10.4.7)   Java Version 5 not indicated in plug-in wndow

    Welcome to Apple Discussions and Mac Computing
    Do you have J2SE 5.0 installed in your Utilities>Java folder? Given your machine is new it ought to be there. If not, go to Software Update in your System Preferences and install it.
    If it is installed: inside the J2SE5.0 folder is Java Preferences.app and Java Cache Viewer. Double click the Pref. app. Upon opening, the ensuing panel indicates the "priority" for Java - mine says J2SE 5.0, then J2SE 1.4.2. If it isn't in that order, reverse the order by dragging one of them to the proper place. Select "save".
    Next, clear the 1.4.2 cache file by opening Java 1.4.2 Plugin Settings.app, selecting cache, then "clear". Quit the app. and restart your computer/Safari.
    Post back.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer

  • Version issues/compatability

    Hello, we have 2 guys using version 11.5 CR Developer, we have been using for years and not had any issues. We have 2 other guys now on the latest version of SAP CR Developer version 14.0.4.738.
    Problem
    When we run the reports using the newer version it returns lower figures that the older version which are correct, I have tried changing this and that including saved data and 2 separate reports for each version with the exact same setup but still the newer version are much lower than the other versions. It simply does not make sense unless the newer version is reading differently to the other version. One other thing is when I read using any viewer I get the correct data returned, so this is the SAP 14.0.4 version issue.
    Can anyone advise on this one?
    Thanks
    S

    Hi Steve,
    This could an issue with the DB Client you are using, lots of changes to both CR and the DB clients between then and now.
    What database are you using and how are you connecting and which DB Clients are you using?
    The syntax of the SQL, case sensitivity, Null value handling are 2 I think of off the top...
    Don

Maybe you are looking for