SAP : Stay update

Dear Experts,
We all are aware that there's continuous up-gradation in all the modules of SAP on regular basis, based on for example : value addition, new techniques, new methodology, up-gradation due to changes in Govt Fiscal Policies, etc.
I wish to stay updated with SAP, which magazine, community or seminars should i subscribe for.
please guide me.

Hi Hussein
This is an interesting question. It made me do some research.
This magazine is very interesting and covers latest issues and update related articles. Its free to subscribe.
http://www.sapnetweavermagazine.com/
It has links to other publications like SAP Professional Journal, SAP Insider, All Functional Expert related magazines,
Also, You can be in touch with latest updates from SAP's main website which gives details about the Enhancement Packages.
And ofcourse, the SDN Forum gives a detailed explanation to all FAQs and day-to-day queries.
Lastly, the webinars, articles and webcasts on Ecohub are really of great help! - http://www.sdn.sap.com/irj/ecohub
Various SAP related communities on LinkedIn have frequent discussions and news articles.
Hope this helps!
Share if you too have some resources.
Regards
Z

Similar Messages

  • Does Sap automatically updates customer credit limit from Financial Doc?

    Hi Everyone
    Does the Sap automatically updates the customer credit limit from the Financial document(Letter of credit) assigned to particular sales order.
    I actually want to know that how can i configure the control at delivery order if i assigned the financial document at sales order.Does the system automatically creates or updates the credit limit of that customer to control over delivery order.
    If yes then how and i only want to handle credit management in the case financial document(letter of credit).
    Regards;Vijay Kumar

    Hi,
    Hi,
    yes it does.
    Note some important points
    Inautomatic credit control field "No Check field", you can enter the number of a requirement with which you can control when credit checks are not carried out. You can deactivate some or all checks. This allows fine tuning on an individual basis for defining credit-relevant transactions and when credit checks do not need to be carried out.
    A check should be made to see whether the payment guarantee form has changed (letter of credit, payment card). If the payment guarantee form has not changed and if the old net value does not exceed the new net value, then no credit check is carried out.
    refer these book also
    McGraw.Hill.Implementing.SAP.ERP.Sales.and.Distribution
    TSSD40_3
    GTS100
    also check wiki also
    Thanks
    Chidambaram

  • HT4623 since i updated my iphone 4 to ios 6, i ve noticed that the wifi connection turns off each time when the screen is locked. I need to be connected with wifi all the time so as to stay updated with all my emails.

    since i updated my iphone 4 to ios 6, i ve noticed that the wifi connection turns off each time when the screen is locked. I need to be connected with wifi all the time so as to stay updated with all my emails. is there anyway for this problem.
    (PS: i know we could use 3G but i want to use wifi instead)

    I am having a really wierd issue as well that is probally related. I dont see 95% of the album artwork associated with my music. Also, it seems as if this has gotten worse since I started using that match feature

  • SAP database updations

    Hi all
         I just want to know whether we can do the SAP database updations through a JAVA program.If we can do this then please explain to me how we can do this.I just want to access the data in the database(SAP) and do the updations whenever we need it through the JAVA program.
    Thank You.
    Regards
    Giri

    Giri,
    Ya...Java APP sents data to XI and XI needs to insert the data into the database.
    Before the next round of data is sent by the Application, Xi should sent back info on the status of the records.
    Is this what you want?
    This will be like I have pointed earlier possible without a BPM. But, make the call from the sending application Synchronous. And then map the JDBC response to the calling aplication.
    But this updation is only possible through XI.
    If i got the requirement wrong can you let me know in more detail, what is it that you are trying?
    Reward if solved

  • SAP EHP Update for Large Database

    Dear Experts,
    We are planning for the SAP EHP7 update for our system. Please find the system details below
    Source system: SAP ERP6.0
    OS: AIX
    DB: Oracle 11.2.0.3
    Target System: SAP ERP6.0 EHP7
    OS: AIX
    DB: 11.2.0.3
    RAM: 32 GB
    The main concern over here is the DB size. It is approximately 3TB. I have already gone through forums and notes it is mentioned the DB size is not having any impact on the SAP EHP update using SUM. However am stil thinking it will have the impact in the downtime phase.
    Please advise on this.
    Regards,
    Raja. G

    Hi Raja,
    The main concern over here is the DB size. It is approximately 3TB. I have already gone through forums and notes it is mentioned the DB size is not having any impact on the SAP EHP update using SUM. However am stil thinking it will have the impact in the downtime phase.
    Although 3TB DB size may not have direct impact on the upgrade process, downtime of the system may vary with larger database size.
    Points to consider
    1) DB backup before entering into downtime phase
    2) Number of Programs & Tables stored in the database. ICNV Table conversions and XPRA execution will be dependent on these parameters.
    Hope this helps.
    Regards,
    Deepak Kori

  • Ensuring a static var stays updated

    Sorry for spamming the boards but I have another question...
    I want to get the index of the image currently in the center of the carousel and then I want to use this index number in other classes but it has to stay updated each time. I successfully managed to get the index of the image that is currently being clicked on (this image will then be moved to the center of the carousel so as long as one always clicks on an image at the start, my method will work ) but I dont know how to allow other classes to access this. I tried saving it as a static var and then trying to access it by using the following:
    private var coverIndex : int = CoverFlow.selectedCoverIndex;
    But I receive the error msg that selectedCoverIndex is not available to static class CoverFlow or something of that sort. This is what my CoverFlow code looks like (i.e. where I determine which image I want to position in the center):
    public class CoverFlow extends Sprite {
      public var covers : Vector.<DisplayObject>;
      private var cover : DisplayObject;
      private var coverIndex : int;
      private static var selectedCoverIndex : int; // Create a static coverIndex so I can easily use this data for external classes
      private function show(id : uint) : void // e : Event
       for (var i : Number = 0;i < covers.length; i++)
        cover = covers[i];
        // Tried putting if i == id as last statment to stop website coming up automatically but it still does since it then loops through again.
        if (i < id)
         setChildIndex(cover, i);
         TweenLite.to(cover, tweenDuration, {x: (id - i + 1) * -coverDistance, z: coverZ, rotationY: -coverRotationY, ease:easing });
        } else if (i > id)
         setChildIndex(cover, covers.length - 1 - i);
         TweenLite.to(cover, tweenDuration, {x: ((i - id + 1) * coverDistance), z: coverZ, rotationY: coverRotationY, ease:easing });
        } else if(i == id)
         setChildIndex(cover, covers.length - 1);
         TweenLite.to(cover, tweenDuration, {x: 0, z: selectedCoverZ, rotationY: 0, ease:easing });
      //____________________________________________________________________________Mouse functions on CoverFlow
      private function onClick(event : MouseEvent) : void
       // Always display product clicked on as center image
       cover = event.target as DisplayObject;
       coverIndex = covers.indexOf(cover);
       show(coverIndex); // Show the index number of the current displayed object
       selectedCoverIndex = getCoverIndex();
       trace("Index of Selected Cover : " + selectedCoverIndex);
      //____________________________________________________________________________Getters
      public function getCoverIndex() : int
       trace("Cover Index: " + coverIndex);
       return coverIndex;
    Hope you understand what I mean!!

    How stupid of me!!!
    I am not 100% sure it worked though... To start off it returns the current value (null) but then once I have clicked on one of the images, the coverIndex should change to the corresponding value. In the CoverFlow class it changes to a different value but I am not sure it does in the ProductSummaryLabel class (the latter is the class that imports the value from the CoverFlow class). The reason I believe this is that when in the CoverFlow I call the method setLabel from the ProductSummaryLabel class, which in turn is supposed to find the text in an array of texts which corresponds to the same index as that of the coverIndex, I receive athe following error message: "cannot reach a property or method with a null object reference". This seems to indicate that this variable in the ProductSummaryLabel class still contains the original null value and does not update itself.
    This is what my setLabel method in ProductSummaryLabel class looks like:
    public function setLabel() : void
       // Summary text depends on coverIndex, i.e. which image is currently in the center
       coverIndex = CoverFlow.selectedCoverIndex; // This should update itself each time I call the setLabel method!
       trace("Cover Index (Product Summary Label class setLabel()): " + coverIndex);
       var desiredSummaryString : String = uebersicht[coverIndex];
       trace("Product summary text: " + desiredSummaryString);
       productSummaryLabel.text = desiredSummaryString;
       productSummaryLabel.visible = true;
       trace("Step 10: Summary loaded");
    Below is the method in the CoverFlow class which gets the current coverIndex value and below that is the method which calls the setLabel method from the ProductSummaryLabel class (where pl is declared above as  private var pl : ProductSummaryLabel;).
    public function getCoverIndex() : int
       return coverIndex;
    private function onClick(event : MouseEvent) : void
       // Always display product clicked on as center image
       cover = event.target as DisplayObject;
       coverIndex = covers.indexOf(cover);
       show(coverIndex); // Show the index number of the current displayed object
       selectedCoverIndex = getCoverIndex();
       trace("Index of Selected Cover : " + selectedCoverIndex);
       // Ensures the text of prodctSummaryLabel is updated
       pl.setLabel();

  • I have used Pages 09 and Keynote without any major problems until this new update. I have read many of the fixes but have a problem. When you get Pages 09 and Keynote back, Apples continues to want to update the 09 system. So it stays updated.

    I have used Pages 09 and Keynote without any major problems until this new update. I have read many of the fixes but have a problem. When you get Pages 09 and Keynote back, Apples continues to want to update the 09 system. So it stays updated. I have had to turn off my auto updating that was nice but I'll do it one at a time in order to keep the Pages 09 and Keynote. When something works don't mess with it. Any fixes out there?

    I can't say that I have had a problem playing videos in Flash because I could always play them in browsers other than Firefox.
    In Firefox Tools>options>Advanced Hardware acceleration is turned on.
    I don't know if that is different that tuning it off and on in Flash or not, but for now it is a moot point.
    As I stated in my previous message, after following all earlier suggestions/instructions nothing helped. But The latest one, someone suggested that maybe version 17 of Flash might be a stable version.
    I made no other changes except to install it, a few days ago, and so far so good.
    Many thanks for your help,
    Giovanni

  • SAP JVM update to latest version in NW 7.31 Java only stack

    Hi ALL,
    Can I know what is the procedure involved updating JVM? As there is no JSPM in 7.31 what are the options to update?
    I tried by extracting SAR file and changing version in parameter file but it wasn't successful. After changing to latest version Java stack has not started.
    Are there any dependencies in updating JVM?
    We have a portal system with different version of JVM, Does this has anything to do?
    I would like to update from SAP JVM 6.1_35  to JVM 6.1_63.
    Please help
    Thanks,
    Dheeraj

    HI Dheeraj,
    Please check the below information.
    The below url provide step by step for updatint JVM
    https://help.sap.com/saphelp_nwpi71/helpdata/en/06/2dc545743a4f98950eec3f33ee4027/content.htm
    http://help.sap.com/saphelp_nw73/helpdata/en/06/2dc545743a4f98950eec3f33ee4027/content.htm?frameset=/en/f0/cec51dabd1461b87e4db9e3958710e/frameset.htm
    http://scn.sap.com/docs/DOC-33488
    Note :
    Note 1133020 - How to import a SAP JVM patch into an AS Java
    Hope it helps.
    Reagrds,
    Deepanshu Sharma    

  • SAP Kernel update in HP-UX

    Dear Friends,
    I have upgraded Kernel patch 236 on HP-UX 11iv2 and oracle 10g.
    But after upgrade when i m starting SAP it is not giving any error message but when i try to login then it is displaying the error message sapdp00 not reached. and I have read the log and found that
    Starting Programs
    29.04.2011 12:12:26
    ShmDetach
    OK
    (9568) Starting: local ms.sapDVR_DVEBMGS00 pf=/usr/sap/DVR/SYS/profile/DVR_DVEBM
    GS00_jkeccbc
    (9569) Starting: local dw.sapDVR_DVEBMGS00 pf=/usr/sap/DVR/SYS/profile/DVR_DVEBM
    GS00_jkeccbc
    (9570) Starting: local co.sapDVR_DVEBMGS00 pf=/usr/sap/DVR/SYS/profile/DVR_DVEBM
    GS00_jkeccbc -F
    (9571) Starting: local se.sapDVR_DVEBMGS00 pf=/usr/sap/DVR/SYS/profile/DVR_DVEBM
    GS00_jkeccbc -F
    (9572) Starting: local ig.sapDVR_DVEBMGS00 -mode=profile pf=/usr/sap/DVR/SYS/pro
    file/DVR_DVEBMGS00_jkeccbc
    (9515) Waiting for Child Processes to terminate.
    (9515) **** 2011/04/29 12:12:36 Child 9569 died due to Signal 11 (core dumped).
    (9569) **** 2011/04/29 12:12:36 No RestartProgram command for program 1  ****
    Instance on host jkeccbc started
    I have deleted core and again started the SAP but problem is same.
    Please help me ?
    Regards
    Ganesh Datt Tiwari

    Hi Gedik,
    Yes. The output is
    jkeccbc:dvradm 21> disp+work
    disp+work information
    kernel release                700
    kernel make variant           700_REL
    compiled on                   HP-UX B.11.23 U ia64
    compiled for                  64 BIT
    compilation mode              UNICODE
    compile time                  Dec 14 2009 20:47:35
    update level                  0
    patch number                  236
    source id                     0.236
    supported environment
    database (SAP, table SVERS)   700
    Regards
    Ganesh Datt Tiwari

  • Report on direct SAP table updates?

    Is there a SAP (audit) report that will list customer developments that update SAP tables directly? (a listing of Z* programs that INSERT, DELETE, MODIFY, UPDATE SAP tables). Thank you, Adrian

    Hello Adrian,
    the 50 object restriction should not apply if you define an object set and do not use the on the fly search but save a pattern. I have run the code inspector for 1000 and more objects w/o problems.
    Kind Regards
    Roman

  • SAP database updations through Java program

    Hi All,
    From Java program, I want to access SAP database batch RFC
    Please tell me which batch RFC's I have to use for read and update of a table.
    Please also tell me how to find out a batch RFC for a particular table.Is there any way to find it out like BAPI.
    What are the steps and settings ?
    Detailed steps help the requirement.
    Thanks,
    Giri

    Giri,
    Ya...Java APP sents data to XI and XI needs to insert the data into the database.
    Before the next round of data is sent by the Application, Xi should sent back info on the status of the records.
    Is this what you want?
    This will be like I have pointed earlier possible without a BPM. But, make the call from the sending application Synchronous. And then map the JDBC response to the calling aplication.
    But this updation is only possible through XI.
    If i got the requirement wrong can you let me know in more detail, what is it that you are trying?
    Reward if solved

  • Disaster Recovery, How to keep SAP software updated in DR

    Hi ,
    We're planning to setup a Dr site with a SAP server that has the same software as in the production site. Question is how do we keep the SAP software to be the same as in production ?  As sometime we may apply updates.
    Will 'rsync' works in this case ?
    Our OS are  AIX 6.1, running SAP ECC 6.0
    Thanks.

    Haii...
    from your question i am understanding that u r going to setup a new DR, as you said your are using OS AIX SAP ECC6,
    what about the Database u are using, Oracle ?
    Activities that you have to carried out at both the places i.e. DC & DR.
    1) OS Patches
    2) OS Kernel & SAP Kernel
    3) DBA activities
    4) Applying SAP License 
    Activities that you have to carried out at  DC Only
    1) SAP Patch Management
    Daily activities that you have to perform either by manually or automatically
    1) Applying archive logs from DC to DR
    Note :
    Testing of DR is must after implementation
    Geographical location of DC & DR Should be different
    Reliable Network to be their
    KHS

  • Error SAP auto-update to windows 7 64bits

    Hi
    I am using SAp 7.30 patch 11 with instalation server 9.0.59.0
    When I tried install this release in windows 7 32bits / windows 8 32bits it is working well.
    BUT when i tried install in windows 7 64bits and windows 8 64bits the insttalation screen disappear.
    I build a new single file without Automatic workstation update and it is working well for 64bits. I think that the problem is AWUS to 64bits windows.
    I need install it in 64bits environments. please, can help me?
    log erro message:
    11:54:34 NwSapsAtlC  1 
    |-----SAP JNet -- Hidden! --
    11:54:34 NwSapsEngn  1   Complete Component Collection: 150 Components
    11:54:34 NwSapsEngn  1E  Component '{41D37BB1-B482-41BC-A1A4-B3662A55A021}' required on server has definition missing Error message: The data is invalid. Error code 0x0000000d (13).
    11:54:34 NwSapSetup  1   Engine execution failure.
    11:54:34 NwSapsEngn  1   Engine: Shutting Down Installer
    11:54:34 NwSapsEngn  1   Engine: flushing memory
    11:54:34 NwSapsAtlC  1   UI-Manager: Flushing memory and resources
    11:54:34 NwSapsEngn  1   Engine: flushing memory
    11:54:34 NwSapsEngn  1   This Engine Instance lasted 53.868 seconds
    11:54:34 NwSapsAtlC  1   UI Manager deleted
    11:54:34 NwSapsEngn  1   DM Deleted
    11:54:34 NwSapsAtlC  1   DE Deleted
    11:54:34 NwSapsAtlC  1   StringTable released
    11:54:34 NwSapsEngn  1   Engine Deleted
    11:54:34 NwSapsEngn  1   EngineContext released
    11:54:34 NwSapsAtlC  1   StringTable released
    11:54:34 NwSapsEngn  1   SapSetup Workstation Engine Library Unloaded
    11:54:34 NwSapSetup  1   ------------------------------------------------------------
    11:54:34 NwSapSetup  1   Return-Code: 48
    11:54:34 NwSapSetup  1   ------------------------------------------------------------
    11:54:34 NwSapSetUI  1   SapSetup UI Library Unloaded
    11:54:34 NwSapsAtlC  1   SapSetup ATL Common Library Unloaded

    Please,  run the DirectX diagnostics tool.
    Go to Windows Start and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post.
    Be aware that you will have to zip this file before attaching it here.

  • SAP Kernel update

    Hi all
    I updated my kernel from 160 to 175
    When i log into SAP and execute SM51 it still shows 160 as the kernel patch level ????????
    The SAR files are correct because i used the same files to update DEV and QA. and the same process.
    The serve is not part of a cluster either.
    Any ideas ??
    Thanx in advance

    hmmmmmmmm    i see
    what did i do wrong
    disp+work
    disp+work information
    kernel release                700
    kernel make variant           700_REL
    compiled on                   AIX 2 5 005DD9CD4C00
    compiled for                  64 BIT
    compilation mode              Non-Unicode
    compile time                  May 13 2008 21:10:31
    update level                  0
    patch number                  160
    source id                     0.160
    supported environment
    database (SAP, table SVERS)   700
    operating system
    AIX 1 5
    AIX 2 5
    AIX 3 5
    AIX 1 6

  • SAP Model update

    Hello !
    Dear Colleagues!
    How can I update my SAP Model from 1.5.32 to 1.5.34  ( I mean in SLD ) ?
    thanks a lot

    Hello Roman
    I have moved this thread to the Netweaver Administrator forum (this is not a PI technical issue). You have a better chance of getting a quality answer to your query if it is opened in the correct forum. I think the Netweaver Administrator is the best forum for this issue.
    Regards
    Mark Smyth
    XI/PI Moderator

Maybe you are looking for

  • ITunes 9 no longer syncs photos to ipod touch

    has anyone seen this? after "upgrading" to iTunes 9, the photo tab works fine, you can select photo folders to copy to the iPod touch, but when you sync it doesn't actually copy any photos to the iPod. Help!

  • RFC input structure

    Hello, I am trying to call a RFC from my WebDynpro application. The RFC has a mandatory input structure called PERSDATA. I am using the following test code to call the RFC:      IWDMessageManager manager = wdComponentAPI.getMessageManager();      try

  • IPv6 Usage on The Verizon Cellular Network

    Hi, I'm trying to create an application that connects from a host to a mobile Android phone on the Verizon cellular network. This device uses only the 3G network and has its Wi-Fi turned off. The Android device has a listening socket. As far as I kno

  • How do you sort photos to id duplicates to delete

    I made the mistake in pulling the same photos into different albums and duplicating them  now I have alot mor epics then I want   Is there an easy way to sort the pics so the same ones end up side by side so I can delete to just have one?

  • Find out the SQLs which are using a full table scan

    Hello all , how can i to find out the queries which are using a full table scan ? Any idea ?