My Published Pieces: Eight ways to improve your SAP supply chain operations

Hello everyone,
Fulfilling my promise to start sharing and contributing more towards the wonderful SAP SCN community, I've decided to share some of my widely-read and appreciated pieces, published over a period of time on SearchSAP.com website. These are collection of eight different published pieces to help improve your SAP logistics and supply chain operations.
You can also register for Free on SearchSAP.com website, and immediately start reading some or all of my published pieces on:
Eight ways to improve your SAP supply chain operations
Now, here's the link: http://bit.ly/17ohtsQ
Also, I wish to take this opportunity let you know all that I am indeed honored and humbled to see the massive popularity, appreciation and demand of my just-published book “Production Planning and Control with SAP ERP” – STILL ranked among the TOP 10 best selling books on SAP PRESS website: http://bit.ly/19t87Gg
You can download the free reading sample (over 100 pages) of the book from this link:http://bit.ly/15BrXPl
Until next time,
Jawad Akhtar

Hi Mohan,
Good wishes become SAP Consultant.
You have chosen right module for you and also you can check SAP CRM Sales too.
Domain knowledge only gives you to understand easily when you learn SAP processes but it does not count your experience in IT field.  They will always ask relevant IT experience, so domain experience gives knowledge to understand SAP SD fast.
Moreover, SAP authorized training institutes 30 days classroom training only and you can do certification immediately.  If you want to read through online then SAP offers wide range of online training to acquire certification.
SAP SD Professional Certification - https://training.sap.com/shop/certification/p_sd_65-sap-certified-application-professional---order-fulfillment-with-sap-…
SAP SD Associate Certification - https://training.sap.com/shop/certification/c_tscm62_65-sap-certified-application-associate---order-fulfillment-with-sap-erp-60-ehp5-g/
SAP E Academy - https://training.sap.com/shop/course/tscm6e-sap-eacademy-scm---order-fulfillment-e-academies-095-nz-en/
Best of luck.
Regards
GGOPII

Similar Messages

  • Is there a way of improving my graphics on my early 2011 macbook pro 13"?

    Does anyone know a way of improving the graphics capability for OpenGL with the Intel 3000 chips in the early 2011 MBP 13"? I bought it not realising the graphics chips had been downgraded and now as a result struggle to do any CGI work that I rely on my computer to do.

    CHRIBAM wrote:
    I'm more inclined to go with Ogelthorpe's advice (if I had the cash).
    I agree with Ogelthorpe as well, the 15" and the 17" MacBook Pro also have dedicated graphics cards which give more performance than the Intel HD 3000 only graphics, which is really of MacBook type performance for consumer user. (playback of video and that's about it)
    Still wondering why Apple went backwards for graphics in the 13", I completely missed the change.
    I'm peeved at Apple for the fact that they didn't make a clear distinction of the disadvantages of the 13" with no dedicated graphics card then lumped it in with the 15" and 17" which do.
    To Apple it's a matter of performance for price, the 13" scores 11 on Cinebench, the 15/17" score 30 and 45, so the  13" doesn't even come close. But it comes in the same silver case, the same "MacBook Pro" name, when in fact it's not so.
    Apple knows people would be attracted to the performance of the MacBook Pro name in a small size factor, the price is also attractive to the younger crowd, the younger crowd are also interested in running 3D games, which need a more powerful video card.
    Your not the first who's complained and feels burned, you trusted Apple was selling you a powerful MacBook Pro machine and you've got a consumer machine instead.
    The 13" Mac laptop should have gotten it's own category, called it a MacBook instead and it should have come with white or black case. But that would have angered Intel most likely, who are trying to push integrated graphics on their CPU's so they own the whole show eventually.
    It's going to take a long time before CPU integrated graphics is ever going to beat dedicated GPU graphics, because 3D game detail is always going to go up until it finally reaches 3D raytracing at 200 fps.
    What Apple is doing is trying to get folks hooked on lessor quality/detail games, the ones you see on iPads and iPhones, and away from wanting rich detail which needs a powerful dedicated video card.
    So Apple lumps the 13" MacBook in with the MacBook Pro line, try to force the issue, next they will try it with the 15", integrated graphics on the low end model. Then again only dedicated graphics on the 17" model and so forth. Eventually developers won't make as many 3D games for Mac's because most people buy laptops, cuts into their potential sales.
    If you really want to run 3D games, you have to go with a Windows 7 desktop where the video card can be swtiched out.
    http://www.cbscores.com/index.php?sort=ogl&order=desc

  • Is There any way to improve the performance on this code

    Hi all can any one tell me how to improve the performance of this below code.
    Actually i need to calculate opening balance of gl account so instead of using bseg am using bsis
    So is there any way to improve this code performance.
    Any help would be appreciated.
    REPORT  ZTEMP5 NO STANDARD PAGE HEADING LINE-SIZE 190.
    data: begin of collect occurs 0,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
           TOT   LIKE BSIS-WRBTR,
    end of collect.
    TYPES: BEGIN OF TY_BSIS,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
    END OF TY_BSIS.
    DATA: IT_BSIS TYPE TABLE OF TY_BSIS,
          WA_BSIS TYPE TY_BSIS.
    DATA: TOT TYPE WRBTR,
          SUMA TYPE WRBTR,
          VALUE TYPE WRBTR,
          VALUE1 TYPE WRBTR.
    SELECTION-SCREEN: BEGIN OF BLOCK B1.
    PARAMETERS:  S_HKONT LIKE WA_BSIS-HKONT DEFAULT '0001460002' .
    SELECT-OPTIONS: S_BUDAT FOR WA_BSIS-BUDAT,
                    S_AUFNR FOR WA_BSIS-AUFNR DEFAULT '200020',
                    S_BELNR FOR WA_BSIS-BELNR.
    SELECTION-SCREEN: END OF BLOCK B1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-NAME = 'S_HKONT'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      SELECT MONAT
             HKONT
             BELNR
             BUDAT
             WRBTR
             SHKZG
             SGTXT
             AUFNR
             FROM BSIS
             INTO TABLE IT_BSIS
             WHERE HKONT EQ S_HKONT
             AND   BELNR IN S_BELNR
             AND   BUDAT IN S_BUDAT
             AND   AUFNR IN S_AUFNR.
    *  if sy-subrc <> 0.
    *    message 'No Data' type 'I'.
    *  endif.
      SELECT SUM( WRBTR )
             FROM BSIS
             INTO COLLECT-TOT
             WHERE HKONT EQ S_HKONT
             AND BUDAT < S_BUDAT-LOW
             AND AUFNR IN S_AUFNR.
    END-OF-SELECTION.
      CLEAR: S_BUDAT, S_AUFNR, S_BELNR, S_HKONT.
      LOOP AT IT_BSIS INTO WA_BSIS.
    IF wa_bsis-SHKZG = 'H'.
       wa_bsis-WRBTR = 0 - wa_bsis-WRBTR.
    ENDIF.
        collect-MONAT  = wa_bsis-monat.
        collect-HKONT  = wa_bsis-hkont.
        collect-BELNR  = wa_bsis-belnr.
        collect-BUDAT  = wa_bsis-budat.
        collect-WRBTR  = wa_bsis-wrbtr.
        collect-SHKZG  = wa_bsis-shkzg.
        collect-SGTXT  = wa_bsis-sgtxt.
        collect-AUFNR  = wa_bsis-aufnr.
        collect collect into  collect.
        CLEAR: COLLECT, WA_BSIS.
      ENDLOOP.
      LOOP AT COLLECT.
        AT end of HKONT.
          WRITE:/65 'OpeningBalance',
                 85  collect-tot.
          skip 1.
        ENDAT.
        WRITE:/06 COLLECT-BELNR,
               22 COLLECT-BUDAT,
               32 COLLECT-WRBTR,
               54 COLLECT-SGTXT.
        AT end of MONAT.
          SUM.
          WRITE:/ COLLECT-MONAT COLOR 1.
          WRITE:32 COLLECT-WRBTR COLOR 1.
          VALUE = COLLECT-WRBTR.
          SKIP 1.
        ENDAT.
        VALUE1 = COLLECT-TOT +  VALUE.
        AT end of MONAT.
          WRITE:85 VALUE1.
        ENDAT.
      endloop.
      CLEAR: COLLECT, SUMA, VALUE, VALUE1.
    TOP-OF-PAGE.
      WRITE:/06 'Doc No',
             22 'Post Date',
             39 'Amount',
             54 'Text'.
    Moderator message : See the Sticky threads (related for performance tuning) in this forum. Thread locked.
    Edited by: Vinod Kumar on Oct 13, 2011 11:12 AM

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • Can users without Publisher 2010 view (read only) Publisher pieces in a SharePoint 2010 library?

    I'm (very) new to SharePoint 2010 and fumbling my way through it with a certain amount of success. We have a variety of Publisher 2010 items I wanted to be made available in a library. Not all of the users in the group have Publisher, so I converted them
    all to PDF...which doesn't seem to work with SharePoint 2010. So my question is...if a member of the group does not have Publisher 2010, will he or she be able to view these same items if I post them as read only in Publisher? OR, even better, is there
    a workaround for PDFs? Thanks so much! --SMGKatz

    EDITING original response to Mike Smith below.
    Updated here:
    At Mike's suggestion, I tried the XPS/XML route and we have a WINNER!!! Multiple problems solved.
    Thanks, Mike!
    This is helpful and leads me to a second question... we all have either Adobe Acrobat X Standard or at least Acrobat Reader, but the PDFs were giving us trouble. When you mention "a PDF viewer" were you referring to Acrobat Reader or is there some
    sort of plug-in that plays with SharePoint?
    The only way to convert them to Word would be to save the Publisher pieces as images and drop them into Word, which I can do. I had hoped to post items in the library that users could download to use and the PDF is much more versatile than a Word document
    for this purpose. I haven't yet tested the quality/resolution of the PDF vs Word w/ an image dropped in, so I don't know if this would be an issue, as well.
    We've always gone the PDF route. Maybe I'll explore XPS options and see how that works out for me. I have to be honest, I never knew what XPS was until you mentioned it and I looked it up. So thank you for that, as well! That may end up being my solution! 

  • Is there a way to improve a photocopied picture?

    Hi,
    I would appreciate some help here.
    Is there a simple way to improve the look of photocopies of family pictures? Scanning did't happen and now I don't have possesion of the family album. I have started to scan in the photocopies and they look Ok, but I wondered if there was a program or something easy and inexpensive to improve the look of them at this point. If not, then they will be alright. But if there is a solution out there, please let me know.
    Thank you for your help.

    If you're planning a DVD slide show, the good news is that TV is pretty low resolution and you can get away with images that look terrible if they were printed. Some options:
    - whoever has the album, have them take pictures of the photos with a digital camera (strong light, but no glare; don't use the flash; lens parallel to the print, fill the frame).
    - smaller pictures hide defects, so put a border around the photo copies with a program like Photoshop Elements (I like it a lot, but it can take some learning).
    - make the pictures artsy and hide defects (color shifts; high contrast, copy sections of the photos and make a collage against a black background...).
    John

  • Is there a way to improve the performance of a report group?

    Hi gurus,
    Is there a way to improve the performance of a report group? 
    Points will be given later....
    Thanks!

    Hi there,
    Thank you for your response. I thought there's no answer for this issue and planning to change it to ALV.
    I looked at the codes and debugged it. After the select statement from ZZUWT table (customized), there's a loop that takes much time (10-12mins) for 1000 records. and several nested perform routines. It's a standard program so I'm hesitant to edit it.
    I'll be checking on the primary keys. If it's ok, may I ask for your assistance in this part? Though I'm not that familiar and haven't tried creating a report painter before.
    Thanks anyway...:D

  • Any way to improve response time with iPhoto 8.1.2 using Mountain Lion ?

    Any way to improve response time with iPhoto 8.1.2 using Mountain Lion ?  Can you store photos on a separate hard drive and use a smaller file for openning iphoto?

    How did you move your iPhoto library to the new system?  the recommended way is Connect the two Macs together (network, firewire target mode, etc)  or use an external hard drive formed Mac OS extended (journaled) and drag the iPhoto library intact as a single entity from the old Mac to the pictures folder of the new Mac - launch iPhoto on the new mac and it will open the library and convert it as needed and you will be ready move forward.
    LN

  • HT201335 Why the transmition to the tv from my iPad is slow cutting off ... Is there a way to improve connectivity ?

    Why the transmition to the tv from my iPad is slow cutting off ... Is there a way to improve connectivity ?

    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • Is there any way of improving compatibility between ipad 4 and windows xp                                                     p

    is there any way of improving compatibility beween ipad and windows xp

    Hi Smokey0422,
    Although iTunes works with Windows XP, iCloud is not supported - so that does limit the functionality somewhat.
    See the resources for your iPad at the following site:
    http://www.apple.com/support/ipad/
    See the setup instructions below:
    http://www.apple.com/icloud/setup/pc.html
    Cheers,
    Judy

  • HT5429 Map Problem: I can't see the roads in Standard view. Is there any way to improve this serious problem?

    Map Problem: I can't see the roads in Standard view. Is there any way to improve this serious problem?

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • Ask The Experts How to Improve Your PC's Performanc​e on June 1st at 3:30 pm PDT

    Learn how to improve your PC 's performance on June 1st from 3:30 -4:30 pm PDT. We'll have a team of experts available to answer your questions.   
    When it comes to performance, your PC is similar to your car. Both need to be cared for to keep them running run well. But unlike your car, you don’t need to bring your PC into a shop for a tune up. You can easily do it yourself if you know the right steps to take.  Our experts will answer your questions and provide tips on how to make your PC run better.  Topics that may be covered in this real-time chat event include the following:
    How to customize your PC to increase performance; 
    How to prolong your notebook’s battery life;
    How to choose the right video card, power supply, or add the right amount of memory; or
    How to use the tools built into your PC that can make it run better and fix common problems. 
    While you can attend this real-time chat event without signing up in advance, you must be a member of the HP Support Forums to ask questions. Signing up is easy and only takes a few moments, plus it will allow you to post questions or give answers on the Forums.
    And it is all free!
    So, come and learn how to get the most out of your PC. Please be sure to come on time as space is limited!
    Message Edited by timhsu on 05-12-2009 05:33 PM
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.
    This question was solved.
    View Solution.

    Here is the transcript of the chat event on improving PC performance. 
    Please note that I have altered the transcript so that follow up questions are included in the logical order.
    I am in the process of planning the next chat event. I would love to hear what topics would interest you, what day of the week and time is best for you, and if you think an hour is too long.
    So, if you get a minute, please let me know.
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.

  • Is there a way to create your own contact group

    Is there a way to create your own group contact list

    Not exactly your own app store, but close.  Apple has an App Store Volume Purchasing Program for Business > http://www.apple.com/business/vpp/
    It allows you to purchase apps in any quantity you desire and pay using a company credit card.  You will receive a spreadsheet of redeem codes which you distribute to your emloyees.  The program guide has complete information > http://images.apple.com/business/docs/VPP_Business_Guide_US.pdf

  • Is there a way to view your FaceTime history?

    Is there a way to view your FaceTime history?

    I just found my print history but i cannot view the actual document. Is there any way i can re-print that document?

  • Is there a way to remove your sim card if you don't have the tool that came with your phone?

    Is there a way to remove your sim card if you don't have the tool that came with your phone? I wanted to see if I could upload my old information to the iCloud, by putting the new sim card into the old phone, since I didn't before I updated my new phone.

    Any metal clip will do. Insert the tip in the little hole next to the Sim Card and press FIRMLY. The SIM drawer will pop out.

  • Is there a way to play your music through your laptop and the apple tv?

    Is there a way to play your music through your laptop AND the apple tv? I use my apple TV with screen sharing, but then there is no more sounds coming from my laptop. Is there a way to do this?

    on you laptop you will open itunes. up next to the play button you will see the little airplay symbol, you need to click that, press Apple TV, then select some music.

Maybe you are looking for