Search Page to All SAP-related Sites

General point:
I have created a web page that searches relevent SAP-related sites on the net.
<a href="http://www.allthingssap.com">www.allthingssap.com</a>
It's a nice way to narrow your search from the start and not get a bunch of junk in the results. The sites it searches are listed on the entry page. If anyone would like another site added email me (from the contact us link on that page) and I'll put it on the list.
Ken Greenwood

Hi Ken,
Yes, it was the ABAP class in Sarnia! These days I am primarily a Workflow consultant and do not do much ABAPing. I would like to learn the new ABAP capabilities though! Drop me a line if you can. My email address can be found on <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=ulbojyzfq%2b0%3d">my SDN business card.</a>
Cheers,
Ramki Maley.

Similar Messages

  • SAP related sites

    Hi
    can someone give us some SAP relatated sites, which we can refer at the time of our project, any issye or to clarify our concept. i know SDN is the first one, but apart from SDN , i know some sites like :
    help.sap.com
    michael management corp
    sap-img.com
    ittoolbox.com
    financialexpress.com
    any other .............
    thanx

    hi
    some more sites
    http://www.4soi.de/online-pdfs.php
    http://www.saptips.com/tipofthemonth.asp
    http://www.sapgenie.com/
    http://help.sap.com/
    http://sappoint.com/
    http://www.sapabap.com/
    http://www.sapfans.com/
    http://www.sapfaq.com/
    http://www.sapinsideronline.com/
    http://www.sapinsider.com/
    http://www.sapnotes.com/
    http://www.sappro.com/
    http://www.searchsap.com/
    http://ittoolbox.com/
    http://www.sapbasis.org/
    http://www.sap.info/
    http://www.sdn.sap.com/irj/sdn
    http://www.asug.com/
    http://www.erpfans.com/
    http://ifr.sap.com ( Interface Repository )
    http://service.sap.com/releasenotes
    thanks
    srilakshmi

  • Search page displaying all records after create

    Hi,
    I have created the search and the create page using the help of tutorial example. I have run into a 2 problems.
    1. After I create the a transaction and click on apply button it directs me to the search page and diaplays all the records in the table. Instead I was looking to display only the record that I created in the create page.
    I tried to change the parameter of the "pageContext.forwardImmediately" to "false" for retainAM, it is working fine, but at the same time it is not displaying the confirmation message that it ised to display.
    2. Is there a spellchecker that I could add to my page for 3 columns that are of "CLOB" type. Any advise.
    Thanks,
    Ali

    Hi Shiv,
    I have added this in the processformrequest method. I do not know how and where to add it in the processrequest methos. Can you please guide me through it. I am pasting my CO file.
    Thanks in advance for all your help.
    Ali
    package saf.oracle.apps.saf.jobperf.server.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.OADialogPage;
    import oracle.apps.fnd.framework.webui.TransactionUnitHelper;
    import oracle.jbo.domain.Number;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
    import com.sun.java.util.collections.HashMap;
    import oracle.bali.share.util.IntegerUtils;
    * Controller for ...
    public class ReviewCreateCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    // Always call this first
    super.processRequest(pageContext, webBean);
    // If isBackNavigationFired = false, we are here after a valid navigation
    // (the user selected the Create Review button) and we should proceed
    // normally and initialize a new Review.
    if (!pageContext.isBackNavigationFired(false))
    // We indicate that we are starting the create transaction(this
    // is used to ensure correct Back button behavior).
    TransactionUnitHelper.startTransactionUnit(pageContext,"jobperfCreateTxn");
    // This test ensures that we don't try to create a new review if we
    // had a JVM failover, or if a recycled application module is activated
    // after passivation. If this things happen, BC4J will be able to find
    // the row you created so the user can resume work.
    if (!pageContext.isFormSubmission())
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.invokeMethod("createReview",null);
    // Initialize the ApplicationpropertiesVO for PPR.
    // am.invokeMethod("init");
    else
    if (!TransactionUnitHelper.isTransactionUnitInProgress(pageContext,"jobperfCreateTxn", true))
    // We got here through some use of the browser "Back" button, so we
    // want to display a stale data error and disallow access to the page.
    // if this were a real application, we would propably display a more
    // context-specific message telling the user she can't use the browser
    //"Back" button and the "Create" page. Instead, we wanted to illustrate
    // how to display the Applications standard NAVIGATION ERROR message.
    OADialogPage dialogPage = new OADialogPage(NAVIGATION_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    } // end processRequest()
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    {    //super.processFormRequest(pageContext, webBean);
    // Always call this first.
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    // Pressing the "Apply" button means the transaction should be validated
    // and committed.
    if (pageContext.getParameter("Apply") != null)
    // Generally in the tutorial application and the labs, we've illustrated
    // all BC4J interaction on the server (except for the AMs, of course). Here,
    // we're dealing with the VO directly so the comments about the reasons
    // why we're obtaining values from the VO and not the request make sense
    // in context.
    OAViewObject vo = (OAViewObject)am.findViewObject("jobperfVO1");
    // Note that we have to get this value from the VO because the EO will
    // assemble it during its validation cycle.
    // For performance reasons, we should generally be calling getEmployeeName()
    // on the EmployeeFullVORowImpl object, but we don't want to do this
    // on the client so we're illustrating the interface-appropriate call. If
    // we implemented this code in the AM where it belongs, we would use the
    // other approach.
    String employeeName = (String)vo.getCurrentRow().getAttribute("FullName");
    // We need to get a String so we can pass it to the MessageToken array below. Note
    // that we are getting this value from the VO (we could also get it from.
    // the Bean as shown in the Drilldwon to Details lab) because the item style is messageStyledText,
    // so the value isn't put on the request like a messaqeTextInput value is.
    String employeeNumber = (String)vo.getCurrentRow().getAttribute("EmployeeNumber");
    //ma String employeeNum = String.valueOf(employeeNumber.intValue());
    //ma Number employeeNumber = (Number)vo.getCurrentRow().getAttribute("EmployeeNumber");
    //ma String employeeNum = String.valueOf(employeeNumber.intValue());
    // Simply telling the transaction to commit will cause all the Entity Object validation
    // to fire.
    // Note: there's no reason for a developer to perform a rollback. This is handled by
    // the framework if errors are encountered.
    am.invokeMethod("apply");
    // Indicate that the Create transaction is complete.
    TransactionUnitHelper.endTransactionUnit(pageContext, "jobperfCreateTxn");
    // Assuming the "commit" succeeds, navigate back to the "Search" page with
    // the user's search criteria intact and display a "Confirmation" message
    // at the top of the page.
    MessageToken[] tokens = { new MessageToken("EMP_NAME", employeeName),
    new MessageToken("EMP_NUMBER", employeeNumber) };
    OAException confirmMessage = new OAException("PER", "LAC_FWK_TBX_T_EMP_CREATE_CONF", tokens,
    OAException.CONFIRMATION, null);
    // Per the UI guidelines, we want to add the confirmation message at the
    // top of the search/results page and we want the old search criteria and
    // results to display.
    pageContext.putDialogMessage(confirmMessage);
    HashMap params = new HashMap(1);
    // Replace the current employeeNumber request parameter value with "X"
    params.put("employeeNumber", "employeeNumber");
    // IntegerUtils is a handy utility
    params.put("employeeNumber",IntegerUtils.getInteger(5));
    pageContext.forwardImmediately(
    "OA.jsp?page=/saf/oracle/apps/saf/jobperf/webui/jobperfPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params, //null,
    true, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
    else if (pageContext.getParameter("Cancel") != null)
    am.invokeMethod("rollbackReview");
    // Indicate that the Create transaction is complete.
    TransactionUnitHelper.endTransactionUnit(pageContext, "jobperfCreateTxn");
    pageContext.forwardImmediately("OA.jsp?page=/saf/oracle/apps/saf/jobperf/webui/jobperfPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    false, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    } // end processFormRequest()
    }

  • All Google related sites won't load

    MacBook Pro
    13-inch, Early 2011
    Processor: 2.3 GHz Intel Core i5
    Memory: 4 GB 1333 MHz DDR3
    Graphics: Intel HD Graphics 3000 384 MB
    Software: OS X 10.8.3
    I started having this problem Thursday, and I haven't been able to solve it since.
    My macbook won't load any google related webpages, but it works with any other webpage I've ever visited.
    iTunes Store and Mac AppStore are also having issues ( With iTunes Store giving me -50 error code).
    My Macbook is up-to-date, with the latest software installed as of Thursday.
    I also own a HP DeskPC running Windows 8 and it loads google and google-related webpages completely.
    I have Safari and just uninstalled Chrome thinking reinstalling would solve the problem. Neither one of the browsers was able to open Google and it's sites.
    Measuring my computer knowledge from 1 to 10, I'd say from 5-6.
    Ask any questions you'd like and I'll try to answer them, and please help me.

    Double-click the line of text below to select it, then copy it to the Clipboard (command-C):
    www.google.com
    Launch the Network Utility application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Network Utility in the icon grid.
    Step 1
    Select the Lookup tab and paste into the address field (command-V). Press return. Post the output that appears below – the text, please, not a screenshot.
    Step 2
    Select the Ping tab and do the same. Please enter the same input as you did in Step 1. Don't use the output of Step 1 as input to Step 2.
    Note: Some browsers and mail clients will automatically complete a domain name such as "www.example.com" to a URL, such as http://www.example.com. That will interfere with the test. If necessary, edit the input in the Network Utility window to remove any added characters.

  • Can only load one search page. All plugins up to date

    I recently up-dated to latest Firefox. A cpl. of issues. A) Once I do A SEARCH there is a VERY LONG... MINUTES delay before I can do another - if at all. Before up-dating I could do search, search, search etc. and minimize ea. and keep going. B) Everything on Firefox screen is small and to the left of the screen. Was in center and large enough to read w/out having to enlarge. SEARCHES ARE SLOW. This happens ALL of the time. I appreciate your help. IF you didn't guess... I'm not a puter guru. May have to just go back to straight Google Bummer

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    See also:
    *http://kb.mozillazine.org/Unable_to_search_or_add_new_engines
    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Since FF 3.6 was installed I cannot open my AOL mail on FF. BING Search page blocks ALL mail. I go to old basic method for AOL. BING is annoying and obstructive!

    Is Bing the chosen search engine for FF.? How do I get it from essentially blocking my AOL mail which cannot be read using FF?

    cpupower frequency-info
    analyzing CPU 0:
    driver: acpi-cpufreq
    CPUs which run at the same hardware frequency: 0 1 2 3
    CPUs which need to have their frequency coordinated by software: 0
    maximum transition latency: 10.0 us.
    hardware limits: 800 MHz - 2.30 GHz
    available frequency steps: 2.30 GHz, 2.30 GHz, 1.80 GHz, 1.60 GHz, 1.40 GHz, 1.20 GHz, 1000 MHz, 800 MHz
    available cpufreq governors: conservative, powersave, ondemand, performance
    current policy: frequency should be within 800 MHz and 2.30 GHz.
    The governor "conservative" may decide which speed to use
    within this range.
    current CPU frequency is 800 MHz.
    cpufreq stats: 2.30 GHz:0,02%, 2.30 GHz:0,05%, 1.80 GHz:0,05%, 1.60 GHz:0,03%, 1.40 GHz:0,01%, 1.20 GHz:0,16%, 1000 MHz:0,38%, 800 MHz:99,29% (1017)
    boost state support:
    Supported: yes
    Active: yes
    25500 MHz max turbo 4 active cores
    25500 MHz max turbo 3 active cores
    25500 MHz max turbo 2 active cores
    25500 MHz max turbo 1 active cores
    Thax

  • Date picker not showing for datetime type in advanced search page

    Hi,
    I have an advanced search page in my SharePoint 2013 site. There is a property which is of type datetime. For that I'm not getting a date picker. I don't know why this is not working. It is showing the date picker in SharePoint 2010 but not in 2013. Can
    anyone help me on this? Thanks in advance.
    Thanks,
    Jawahar
    Im searching more abt me...........

    A date picker was never supported in Advanced Search.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • Search Page in OAF

    Hi All
    I Have comlpleted my Helloworld program in OAF and i am new to this now i need to learn to create a search page manually How to create a search page what all needed and please refer me some audio/vedio linki if available or some step by step doc
    Thanks

    Hi Krish
    Can u please tel me the path wher do i need to look for?
    Iam looking into D:\Jdeveloper\jdevdoc\WebHelp\devguide but there are so many folders like adv , build,cs ,bus, cust etc so on please let me know the path in whicchi can refer
    Thanks

  • How to default business purpose on address search page in Quoting

    Greetings!
    When I click on Select button on Shipping and Billing information tab on Quote Details page, it takes me to address search page with all the addresses regardless of business purpose I'm looking for.  I would like it to be specific to the business purpose that I am searching address for, i.e., show me Bill To addresses or Ship To addresses only.  I am able to select a value in Purpose field on address search page and search again, but can I default a value based on the Select button for Bill to or Ship to?  How can I do that?
    TIA
    Alka

    Anyone?

  • Filter search results and create search pages in a intranet site.

    HI
    i created a search service application in a intranet portal.
    and i configured content source as this site.
    and here after i need two things.
    1) how to create a search box in each page of this intranet site
    2) how filter search when any user search it only bring in search results 
    related query item contet, any related files like: words,pdf etc
    not bring list and list items where these files saved.
    this intranet portal is publishing template.
    adil

    You need to be a bit more specific about your requirement and your environment. What kind of functionality does your  search need? Are you using enterprise search or FAST?
    1) Your sites should already include default search boxes at the top right corner.  If you need a search web part, you will need to create a web part page and add the search box or advanced search box (need a search center for advanced) onto the web
    part page. If you need to change the default search box layout on all pages, you can do that by editing the master pages.
    2) Are you asking for a specific query to be included in every search? You can can add a default appendded query using the search box web part properties. If you want to just have certain keywords show up at the top, you
    can set up Keyword Best Bets. For the filtering, you will need to use scopes. You can set the scope rules to include/exclude specific sites, folders, content sources or property queries. If you're using FAST, you will need to set the scopes
    up in the FAST Query app, not the FAST content app.
    You can create keyword best bets, scopes and change the search settings for the site collection by going to Root Site Settings > Site Collection Administration > Search Settings. Hope this helps. Again, we need more info to provide a more specific
    solution.

  • When Firefox is closed, all previous search page and home page settings are not saved. Must reset firefox and reset homepage url everytime.

    All previous search engines on "Manage Search Engines" are gone and cant access the "get more search engines"...all grayed out.

    Session Manager and Save session are the ad-ons which can solve your problem of saving previous search pages and url.
    To set up home page and its related error You have to read this :
    http://mzl.la/Mt91fd

  • When I try to open Firefox by clicking on the desktop icon, all I get is a Bing search page and no Firefox.

    When I click on the Firefox desktop icon, I get a Bing search page. Nothing relating to Firefox is evident and the only way I can get out of the Bing search page is using Control/Alt/Delete. I can't access anything in Firefox at all.

    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *http://kb.mozillazine.org/Browser_will_not_start_up
    Can you start Firefox in Offline mode via the Profile Manager
    *http://kb.mozillazine.org/Profile_Manager
    If there is a problem with searching via the default about:home page then try to reset the search engine used on the about:home page.
    Reset the <b>browser.startup.homepage_override.mstone</b> pref via the right-click context menu to the default on the <b>about:config</b> page and close and restart Firefox to restore the about:home page to its default.
    *http://kb.mozillazine.org/about:config
    #Open the <b>about:config</b> page via the location bar
    #Type in the Filter bar: mstone
    #Right-click the browser.startup.homepage_override.mstone line and select: Reset
    #Close and restart Firefox
    If this didn't help then delete the delete the chromeappsstore.sqlite file in the Firefox Profile Folder and repeat the above.
    You can reset some preferences to the default with the SearchReset extension:
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).

  • How to download the all sap bo related notes..

    Hi,
    Can anybody let me know, how can I download the all SAP BO related SAP notes.
    Thanks,
    Gana

    Hi,
    Go to the below link,
    [https://websmp110.sap-ag.de/support]
    Select the application area BI and click on Search, you will find all the notes related with BO.
    Please check and revert.
    Thanks
    Hrishi

  • Created site in iweb 08 and posted to netfirms... the pages are all loaded up but there is no nav bar, it comes up on each page as a small black dot. How do I get the nav bar to load up and show?

    I created site in iweb 08 and posted to netfirms... the pages are all loaded up but there is no nav bar, where the nav bar should be is only a small black dot on each page. How do I get the nav bar to load up and show? It was a disaster loading up my site as it changed the case of the letters and at first no pages were seen, so I had to go through and change the letters that were supposed to be cap, back to cap in every file. I don't know if this has something to do with it or not. The tech support doesn't have an answer. Please let me know if you have any ideas and solutions. Thanks bunches!

    Here are links to the simple 7 pages....
    http://www.rednosedesign.net/home.html
    http://www.rednosedesign.net/about_us.html
    http://www.rednosedesign.net/logos.html
    http://www.rednosedesign.net/flyers_&_ads.html
    http://www.rednosedesign.net/notecards.html
    http://www.rednosedesign.net/business_cards.html
    http://www.rednosedesign.net/contact_us.html

  • How can I save a page and all its component parts in a single file, like IE does as an MHT - it's much easier for mailing to people where page address not available?? (as in output from an airline booking site, for example)

    how can I save a page and all its component parts in a single file, like IE does as an MHT?
    It's much easier for mailing to people where page address not available?? (as in output from an airline booking site, for example)
    It is simply too painful to have to zip everything up into a single file to send. MHT format has been available for years now from IE, and with every new FF release it's the first thing I look for. I have been using FF for years, and hate having to come out of it, over into IE |(which I even took out of startup) and key everything in again, in order to send somebody something in a convenient format that they can open with a single click.
    I can't believe this hasn't been asked before, so have you looked at it and rejected it? Have MS kept the file format secret?
    Thanks
    MG

    This is not really an answer just my comments on your question.
    I am sure I recollect efforts being made to get mhtml to work with FF.
    Probably the important thing to remember about .mhtml is that if other browsers do support it they may need addons, and may not necessarily render the content correctly/consistently.
    There are FF addons designed for archiving webpages, you could try them, but that then assumes the recipient has the same software.
    You could simply save the page from FF to your XP pc; then offline open it with and save it using IE, before then emailing using FF, and attaching the .mht or mhtml file that you have now created on your PC.
    As an alternative method, in some cases it could be worth considering taking a screen grab of the required page, then sending that to the recipient as a single email attatchment using either a bitmap or jpeg file format for instance.
    Something such as an airline booking may be designed with a print option, possibly it could be worthwile looking at sending the print file itself as an email attachment.

Maybe you are looking for

  • Cannot deploy from netweaver developer studio to application server

    Hi I am trying to deploy a simple EAR (ConverterEAR) to my application server. From NW developer studio, right clicked on the SAP server that I have configured and try to a publish. It gives me the below exception. For some reason its trying to conta

  • [SOLVED] Mid 2009 MBP - nvidia nonfree drivers

    - X server looking for nouveau Hi all So this is my first post on here but I have been looking on the net to find a resolution to the following for the past week or more; I have been using Ubuntu for a number of years now but would still recon my exp

  • Inactive Customer Report/ Customer who has done transaction

    Hi All. I need to created report for customer who has done any transaction in last 2 years, please suggest me way to achieve this Thanks Prem

  • Standard R3 report in SAP BW

    Dear all, I need to design the standard R3 report T code: S_ALR_87012284 financial statements in SAP BW in a bit customized way. I am bit confused about which base tables are being used in the report .  Would any body suggest on this ? Also this stan

  • Doubt in function module relating to delta upload

    Hi,     Is there any ABAPer alive around who can tell me how i can write a funtion module to update data to BW side. They only tell me data is not going to BW side. Can anyone throw light as to how function module should be structured. I  have a func