Questions URLScrapter provider

I did a CustomURLScrapter provider to demo the the URLScraper provider according to the development guide, I am able to see the custom channel from the desktop, but the content is empty, I set the url pool at the display profile as:
<Collection name="urlPool">
<String value="http://msuc-03.canada.sun.com:80"/>
</Collection>
So my first question is what the content supposed to be?
I used System.out.println to print out the URL in the overrided method getURL() of URLScraperProvider, but where can I see the printout from the log?
Thanks

Hi,
You should see a site�s content inside your channel. That if you�ve configured properly the url and other things, such as the url in the locale the user is visiting the portal. There are many url�s, depending on the language. Be sure only that one is taking part. You also need to configure yous O.S. so that it is able to "see" that url. go to the admin. guide to configure that. If you�ve created a new provider you need to include the .properties file in the correct folder.
good luck, Pablo.

Similar Messages

  • I forgot the security question(s) provided when I originally created my icloud ID.

    I forgot my password and security and email adress when I originally created this account. [email protected] I want my data back n a new password. i am very upset.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (121429)

  • A Question about Provider implementation

    Hello everyone,
    I want to define my own provider in order to have a KeyFactory
    for some algorithm that I defined myself(Let's name the algorithm, <MyAlgorithm>)
    I proceeded exactly as described in the Sun tutorial,
    here is the link,
    http://java.sun.com/j2se/1.4.2/docs/guide/security/HowToImplAProvider.html
    Here is the summary of what I have done according to the tutorial,
    - MyKeyFactorySpi is the subclass of KeyFactorySpi where I defined
    all the abstract methods of the KeyFactorySpi class according to MyAlgorithm
    - MyKeyFactory is my subclass of the KeyFactory class
    - MyProvider is my subclass of the Provider class
    Here is the implementation for MyProvider class
    package myprovider;
    import java.security.Provider;
    public final class MyProvider extends Provider
          private static final long serialVersionUID = 1L;
          private static final double PROVIDER_VERSION = 1.1;
          private static final String PROVIDER_NAME = "MyProvider";
          private static final String PROVIDER_INFO =
                     "MyProvider provides services for cryptography with MyAlgorithm";
          public MyProvider()
                super(PROVIDER_NAME, PROVIDER_VERSION, PROVIDER_INFO);
                     So here, I precise that the subclass of the KeyFactory, that
                     can work with the algorithm <MyAlgorithm>, is a class named
                     MyKeyFactory and it is defined in the package myprovider,
                     thus, myprovider.MyKeyFactory
                put("KeyFactory.MyAlgorithm", "myprovider.MyKeyFactory");
    }and here is the implementation of the class MyKeyFactory
    package myprovider;
    import java.security.KeyFactory;
    import java.security.KeyFactorySpi;
    import java.security.Provider;
    public final class MyKeyFactory extends KeyFactory
         private static final KeyFactorySpi SPI = new MyKeyFactorySpi();
         private static final Provider PROVIDER = new MyProvider();
         private static final String ALGORITHM = "MyAlgorithm";
         public MyKeyFactory()
              super(SPI, PROVIDER, ALGORITHM);
    }All the classes, MyProvider, MyKeyFactory and MyKeyFactorySpi are in a package (in a directory)
    named myprovider. Once the implementation was finished, I created a jar file
    jar   cvf   myprovider.jar    myprovider/*.classBesides I modified the java.security file and I added the following line to the
    file
    security.provider.10=myprovider.MyProviderFinally I wrote the following test program, in order to verify whether everything
    works well,
    import java.security.*;
    import myprovider.*;
    public class Test
         public static void main(String[] args)
              try
                    Provider provider = Security.getProvider("MyProvider");
                    if (provider == null)
                         System.err.println("The provider is not installed");
                         System.exit(1);
                   KeyFactory key_factory =
                            KeyFactory.getInstance("MyAlgorithm", provider);
             catch (Exception e)
                   e.printStackTrace();
    }Here is how I compiled my test program, and it was compiled without any problem
    javac   -Xlint   -classpath   .:myprovider.jar   Test.javaand when I want to run it
    java   -classpath   .:myprovider.jar   TestNow the problem is, when I run this program, I get the following error message,
    java.security.NoSuchAlgorithmException: class configured for KeyFactory: myprovider.MyKeyFactory not a KeyFactory
    at sun.security.jca.GetInstance.checkSuperClass(GetInstance.java:242)
    at sun.security.jca.GetInstance.getInstance(GetInstance.java:221)
    at sun.security.jca.GetInstance.getInstance(GetInstance.java:202)
    at java.security.KeyFactory.getInstance(KeyFactory.java:218)
    at Test.main(Test.java:16)What I understood from the KeyFactory documentation on the Sun web site, is that
    if the NoSuchAlgorithmException is thrown it means that the subclass of KeyFactorySpi
    corresponding to the specific algorithm has not been found.
    public static KeyFactory getInstance (String algorithm, Provider provider)
    throws NoSuchAlgorithmException
    NoSuchAlgorithmException - if a KeyFactorySpi implementation for the specified
    algorithm is not available from the specified Provider object.But I don't understand, why it is not detected, if you look at the
    source code(above) of MyKeyFactory, you will see that, in my default
    constructor I define the corresponding KeyFactorySpi, which is, in the case
    of this example, an instance of MyKeyFactorySpi class.
    Any idea?
    Many thanks,

    Hello again,
    Thank you very much for your answer that finally solved my problem!!
    You were quite right about the SPI class. In fact what I had to do was
    just to write as you said
    put("KeyFactory.MyAlgorithm", "myprovider.MyKeyFactorySpi");I modified the code in this way and everything worked perfectly well, I succeeded
    in generating keys, encrypting, decrypting, etc with my own provider!!. In fact the class
    MyKeyFactory was completely useless, I had to define only the SPI class
    corresponding to the specific algorithm in my provider.
    Once again, thank you very much for your help
    Dariyoosh

  • List of Questions on BAPI and OOPs

    Hi All,
       I am new to the OOPs and BAPI's.can any one gives me complete idea on below questions by providing good examples.
    1) Importance of the class, Interface type, Object and Instance ?
    2) Why we need oops concepts since we are using normal process successfully, i mean with out oops also ?
    3) functionality of BAPI ?
    4) Difference between COMMIT WORK and BAPI_TRANSACTION_COMMIT ?
    5) Why COMMIT WORK wont useful for BAPI's ?
    6) If you give me good source code to understand the concepts of class, Interface type, Object and Instance?
    7) In real time situations, do we need to create classes or in SAP we will use only existed bapis?
    8) The process of creating customized BAPI's [entire scenario]
    Since i asked lot of questions in one thread, i decided to give rewards even if you provide me solution for any of the above.
    Thanks
    Jaya

    Hi Jaya,
    Answer 1. Class is a template for creating objects. Object can also be called as instance.
    Interfaces allow you to use different classes in a uniform way (polymorphism).
    Answer 2. Normal abap is a procedural programming where as by using abap objects we can achieve object oriented programing.
    Answer 6. Source code:
    In below code i have created a interface and a class which is implementing the interface. I have declared a reference variable of type interface and created a object. Then i have called a method.
    REPORT  ZABAPOBJECTS_INTERF.
          INTERFACE I1
    INTERFACE I1.
      METHODS METH1.
    ENDINTERFACE.                    "I1
          CLASS C1 DEFINITION
    CLASS C1 DEFINITION.
      PUBLIC SECTION.
        METHODS: METH2.
        INTERFACES: I1.
    ENDCLASS.                    "C1 DEFINITION
          CLASS C1 IMPLEMENTATION
    CLASS C1 IMPLEMENTATION.
      METHOD I1~METH1.
        WRITE: / 'This is a method one'.
      ENDMETHOD.                                                "I1~METH1
      METHOD METH2.
        WRITE: / 'This is a method two'.
      ENDMETHOD.                                                "METH2
    ENDCLASS.                    "C1 IMPLEMENTATION
    START-OF-SELECTION.
      DATA : REF1 TYPE REF TO I1.
      CREATE OBJECT REF1 TYPE C1.
      CALL METHOD REF1->METH1.
    Question 7: Yes we need to create a class but most probably we use the existing classes.
    Regarding BAPi's go through the below links,
    http://www.sapgenie.com/abap/bapi/example.htm
    http://www.sapdevelopment.co.uk/bapirfc/bapirfchome.htm
    Regards,
    Azaz Ali.

  • How do I reset recovery email if I can't remember the answers to my questions?

    I set up my iTunes account in 2000.  Since then, I've moved twice and no longer have any email that I might have used as a recovery email.  I can't figure out what the answers to my security questions are, due to having CRS half the time.  In the meantime, I have purchased hundreds of dollars worth of apps, music, and videos from the itunes store, but I can't purchase anything on my new iphone or my ipad due to the recovery email / security question issue.  HELP...

    Hi sirena,
    If you set up a Rescue email address:
    Go into Manage AppleID, Password and Security, and click the first option (see below), and you will be able to proceed from there..... (I HOPE the first button is showing for you!)
    Reset your password
    You can change or reset the password for your Apple ID account by providing some information.
    Select your authentication method.
    Email authentication: To access your information, we will send an email to the rescue email address on file for you.
      Answer security questions: To access your information, you will need to answer the security question(s) provided when you originally created your Apple ID.
    If you did not set up a Rescue email address:
    1. Go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
       Then select 'iTunes Store', and on the next screen select 'Account Management'
       Next choose 'iTunes Store Account Security' and fill in that you'd like your security    
       questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)
    2. Once your questions have been reset, and you set up new ones, also set up a RESCUE EMAIL ADDRESS, so if you forget them again, you won't have to go through all of this.....
    Hope this helps!
    Cheers,
    GB

  • Have questions? We have answers! Jan .11, 2011 Expert Day

    Thank you for coming to Expert Day – the event has now concluded.  
    To learn about future HP Expert Day events, click here.
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
    We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
    +++++++++++++++
    Welcome!
    We are glad you came to Expert Day.  There are more than 150 experts available to share their insights with you.
    How the event will work:
    Our team of experts will be monitoring the printer and all in ones, notebook, and desktop boards and jumping into the conversation to tackle your toughest questions.
    You can easily recognize our experts out on the Forum.   If they have the label “Pro” under their names, they are HP employees. If they have the word “Expert” under their names, they are people that are very knowledgeable but who are not employed by HP.   
    If you have specific product questions, the more information you give us the better we will be able to assist you.  Having your exact model number, any error messages, what operating system version are you running, and any recent hardware or software changes will go a long way in helping us solve your problem.  The experts may need to get some more information from you so please subscribe to the conversation, and an online conversation will be born.
    While we do have experts from around the world, many of them are located on the west coast of the United States. As a result, you will likely see more replies during normal waking hours in the United States, however many of our experts are even planning on logging in to help you from their homes!
    Expert Day will also be taking place on the Commercial, Simplified Chinese, and Korean forums.
    So, please join the conversation. This is your chance to connect with the best and brightest minds at HP for free.  Whether you own a Photosmart printer, HP Envy notebook or an HP home desktop computer, there has never been a better opportunity to learn about your product.
    We look forward to hearing from you!
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.

    MemphisBelle wrote:
    Dear Mr. Matthews:   The time frame was noon on the 11th to noon on the 12th.  Yes, that's 24 hours, all right.  But wouldn't a lot of people have thought it would encompass workdays on the 11th and 12th?  (8  - 5,  etc)
    Had I known the clock started ticking at 1200  hours on the 11th and stopped at 1200 hours the 12th, I might have received some assistance.
    The "Expert Days" event are held a few times a year and bring in an extra hundred or more experts from HP and other areas.  While there are more experts on hand on these days (and more people here posting questions) the forums are open 24/7/365.  There are experts here every day answering questions.  But if you do not post a question you will not get a reply....
    Find an appropriate sub forum for your topic and look near the top of the page for suggestions on how to ask good questions.  Provide plenty of details of the issue including your computer or printer model, what operating system and what exactly the issue you have, including any error messages.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • ECC 5.0 and CRM 7.0 Integration Questions

    Hello,
    We are on ECC 5.0 and are part of a global implementation that is putting in CRM 7.0.
    We have a couple of issues/questions.
    1.  We want to integrate ECC Internal Orders with CRM Contracts and Orders.  However we don't see the ECC Internal Order type SAPS in ECC 5.0.  What release/plugin would give us SAPS Internal order type
    2.  We currently use CS and PM in ECC, and we have equipment and func. locations.  Do we need to be on a certain version/plugin to integrate Equipment and Func. Locations with CRM iBase?
    3.  Any tips/suggestions on integrating Vertex with CRM for taxes.
    Thanks
    chris

    Hi
    Here are the Answers
    1. We want to integrate ECC Internal Orders with CRM Contracts and Orders. However we don't see the ECC Internal Order type SAPS in ECC 5.0. What release/plugin would give us SAPS Internal order type
    - This is release indepedant- It is been available from R/3 4.7 so you should have it, if you dont have an SAPS order type, you have 2 options
              1. Create your own SAPS Order type
              2. Define RFC from  Client "000" and push the order type. This must be available in "000" as a standard delivery, may be your Basis did not move the order types properly.
    2. We currently use CS and PM in ECC, and we have equipment and func. locations. Do we need to be on a certain version/plugin to integrate Equipment and Func. Locations with CRM iBase?
    Yes you can have the equipment and Functional Locations, but for FLocs to download to CRM you need ECC6.0 with Sp6 anything below cannot be integrated or downloaded with CRM7.0 .. for Equipments any versions are fine and you do all configuration and customization in CRM
    3. Any tips/suggestions on integrating Vertex with CRM for taxes.
    Its a broad question, SAP provides standard integration option to vertex, and you integrate as needed..
    let me know if you need anything else.

  • WRT110 Only provides wireless to other computers when wired to a separate laptop

    This never seemed to happen on our old computers, but now that my fiancee and I are both running Windows 7 and switched our Internet Service Provider, here is our problem:
    Every time I try to open my laptop and connect to our router, it connects, but has limited or no connectivity.  I cannot navigate the internet.  If I cycle the router and modem, I can usually connect to the internet, but only after about 5 or 10 minutes of cycling and re-cycling.  If plug in ethernet directly to modem, I have internet; and if I plug in ethernet directly to router, I have internet, and other laptops are now able to get internet connectivity through wirelessly connecting to the router.  Otherwise, they are unable to as well.  Why does this happen? I completely reset my router to factory defaults and reset the passwords and all, but to no avail.  Anyone please help.  I'll answer any questions to provide more info.

    Well, the reason your old computers had no issues is, maybe, you changed your computers, your ISP AND Operating Systems?
     Is the modem new also or is it the same one you used with your old computers? Are the modem AND the WRT110 the same ones?
     Are you saying if you connect ONE computer via ethernet to the router then the other one's can connect to the router via wireless. Are you sure they aren't using your computer as a host?(Internet sharing). If you hook any of the other computers up to router via ethernet can the others connect wireless also? Can ALL the computers connect to the router and the internet via ethernet?
     If you are using any "Auto-Config" setup then you might try setting the router and conmputers manually.
    Sorry I can't help more....

  • Why is iTunes asking for security questions?

    Why is iTunes asking for security questions?

    Hello Loopdog,
    Thanks for using Apple Support Communities.
    Apple uses security questions to provide you with a secondary method to identify yourself online or when contacting Apple Support.
    For more information on this, take a look at this article:
    Apple ID: Security and your Apple ID
    http://support.apple.com/kb/ht4232
    Best of luck,
    Mario

  • Oracle Multitenant Questions

    Hi,
    I'm studying about Oracle Multitenant and I'm hoping anyone can help me.
    We have a 86 TB database, with no compression and we're struggling to backup this database.
    So, here is what we thought.
    Compress the whole database (since it's only inserted data on the database, no updates at all) on the current version - 11.2.0.3. We're hoping to compress at a ratio of 60%, so, it would be at 36 TB, but still a huge database to backup and recover.
    The next step would be migrate to 12c and setup Oracle Multitenant and divide this database into 5 instances (we can do it, because the database is divided in several mobile technologies). Let's suppose this division is equal, so, it would be around 6 TB each database, so, it would be manageable.
    Questions:
    - Do you think we could benefit using Oracle Multitenant?
    - This would be transparent to the application? No major changes?
    - How the backup would work? Can we backup each plugable database and restore it individually?
    Thanks in advance

    We have a 86 TB database, with no compression and we're struggling to backup this database.
    Ok - so give us information about the DB:
    1. How is it used
    2. Is it partitioned?
    3. How is it being backed up now? Are you doing complete backups or incremental ones?
    We need details - not just a statement that you are 'struggling'.
    Compress the whole database (since it's only inserted data on the database, no updates at all) on the current version - 11.2.0.3. We're hoping to compress at a ratio of 60%, so, it would be at 36 TB, but still a huge database to backup and recover.
    We need details:
    1. How is data being inserted?
    2. One row at a time by multiple users?
    3. Bulk inserts once a day?
    Less data means there is less to backup. But incremental backups don't backup the entire database anyway so we still need to know HOW the DB is being backed up now: how often and what kind of backups.
    You do NOT need to keep backing up old data that has NOT changed. Are you doing that? If so, why?
    The simplest solution to solve a 'database too big to backup' problem is to change the architecture so you don't have to keep backing up data that has NOT changed. Oracle's incremental backups already do that so maybe you are NOT using them.
    The next step would be migrate to 12c and setup Oracle Multitenant and divide this database into 5 instances (we can do it, because the database is divided in several mobile technologies). Let's suppose this division is equal, so, it would be around 6 TB each database, so, it would be manageable.
    I disagree - the NEXT STEP should be to find the cause of your performance issue.
    Based ONLY on what you posted the most likely problem is the types and frequency of the backups you are taking.
    Have you licensed the partitioning option? If so you can just put each of those 'mobile technologies' into its own partition.
    Again - how is data being inserted? If the new data is based on a value (e.g. a date) that distinguishes it from old data you can EASILY just put the newly inserted data into its own new partijtion by using a DAILY partitioned table.
    Then you don't need to backup the old data at all. And each day you would only back up ONE partition for the previous days data.
    That would be be EASIEST and MOST PERFORMANT solution to your problem.
    Questions:
    - Do you think we could benefit using Oracle Multitenant?
    - This would be transparent to the application? No major changes?
    - How the backup would work? Can we backup each plugable database and restore it individually?
    #1 - impossible to say until you provide the DETAILS ask for above about
    1. HOW you are performing the backups now,
    2. HOW often the data changes
    3. HOW the data changes (e.g. new data for today that distiguishes today's data from yesterday's data)
    4. Why you are performing the backups the way you are
    Multitenant isn't going to help if your data loads and architecture are such that you now have FIVE DBs to backup and they all need to be backed-up/restored together
    #2 - No - multitenant is NOT 'transparent'. You will now have FIVE DBs with data in FIVE places. Your current app is written to use ONE DB. The changes could be minor or could be MAJOR.. Querying data across database links is NOT as efficient as querying data that resides on the same server.
    On the other hand if a typical query only queries data from ONE of those five areas then you might get some significant performance improvements.
    But you might get those same improvements simply by properly partitioning the data or using better indexes.
    #3 - yes - you can backup and restore the PDBs individually. They are separate databases. However there is only ONE set of REDO log files. Those redo logs will contain changes from ALL of the PDBs,
    Also there is only ONE SET of memory management to be done. In multitenant memory is managed for the entire multitenant DB.
    There can be a steep learning curve to learn how to do that properly.
    Multitenant is NOT a magic solution for partitioning data - that is what partitioning is for.
    I suggest you find, and fix, you backup/performance/architecture issues with your current DB. If you need help doing that repost your question (and provide the DETAIL needed) in the General DB forum, the SQL and PL./SQL forum or the Backup/Recovery forums as appropriate..
    General Database Discussions
    PL/SQL
    Recovery Manager (RMAN)

  • OLM || Issue with Image-type questions

    Hi
    This is with reference to an issue regarding the import of " Image-map " types questions in OLM.
    The legacy system which the client uses allows creation and assignment of 'Image-map" types questions to the learners.
    As far as my limited understanding goes, these types of questions are not supported in OLM.
    How to handle such types of questions in OLM , any pointers ??
    Also , what exactly are QTI standards and how to convert the existing question banks to QTI standards and then import them to OLM ??
    Thanks in advance for your time..
    Cheers

    There is one method to support these types of questions by using HTML code in the question text, but it is definitely a workaround.
    1. Use an HTML editor like Dreamweaver to create the image map or other type of interactive question. Save the html and any related images, javascript etc and upload to a content server. If the user gets the interactive question correct, provide them with some code to enter that will be used later.
    2. Select a question type like fill in the blank
    3. In the question text, use an IFRAME to embed the HTML page that contains the interactive question
    4. The correct response for this question will be based on the "code" you provide users in the interactive question if they get it correct. They would then enter this code in the fill in the blank area and get credit for answering correctly.
    Other options include building the assessment using a content authoring tool and offering the assessment as a SCORM or AICC learning object, or integrating with a third party assessment tool such as Questionmark.
    Also,
    Metalink Note ID #295865.1 contains the import/export API tech specification (this was originally written for Oracle iLearning but applies to OLM for the most part as well) and has info on the QTI spec that OLM and iLearning support.
    Scott
    http://www.seertechsolutions.com
    Message was edited by:
    scottymomo

  • HT5312 i forgot the answer to my security question which was required by apple to purches an app.. i would appricate any advice on what i should do.   thank you

    i forgot the answer to my security question which was required by apple to purches an app.. i would appricate any advice on what i should do.
    thank you.
    Mosab azdein

    Hi Mva,
    If you set up a Rescue email address:
    Go into Manage Your AppleID, https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/, select Password and Security, and click the first option (see below), and you will be able to proceed from there..... (I HOPE the first button is showing for you!)
    Reset your password
    You can change or reset the password for your Apple ID account by providing some information.
    Select your authentication method.
    Email authentication: To access your information, we will send an email to the rescue email address on file for you.
      Answer security questions: To access your information, you will need to answer the security question(s) provided when you originally created your Apple ID.
    If you did not set up a Rescue email address:
    1. Go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
       Then select 'iTunes Store', and on the next screen select 'Account Management'
       Next choose 'Apple ID Account Security' and fill in that you'd like your security   
       questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)
    2. Once your questions have been reset, and you set up new ones, also set up a RESCUE EMAIL ADDRESS, so if you forget them again, you won't have to go through all of this.....
    Hope this helps!
    Cheers,
    GB

  • TS2446 Can't remember my questions so I can't get into my account

    Need to get into my account

    Hi Bayspudden,
    If you set up a Rescue email address:
    Go into Manage Your AppleID, https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/, select Password and Security, and click the first option (see below), and you will be able to proceed from there..... (I HOPE the first button is showing for you!)
    Reset your password
    You can change or reset the password for your Apple ID account by providing some information.
    Select your authentication method.
    Email authentication: To access your information, we will send an email to the rescue email address on file for you.
      Answer security questions: To access your information, you will need to answer the security question(s) provided when you originally created your Apple ID.
    If you did not set up a Rescue email address:
    1. Go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
       Then select 'iTunes Store', and on the next screen select 'Account Management'
       Next choose 'Apple ID Account Security' and fill in that you'd like your security   
       questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)
    2. Once your questions have been reset, and you set up new ones, also set up a RESCUE EMAIL ADDRESS, so if you forget them again, you won't have to go through all of this.....
    Hope this helps!
    Cheers,
    GB

  • HT1539 security questions are asked when i try to authorize a digital copy on itunes

    when putting in a code for a digital copy of a movie i purchased i get the "to help ensure the security of your apple id choose three questions and provide your answers below" thing. why is this happening and how do i input anything? the only planes to type in is the plane for the code itself.

    There is no "more like this" button

  • BSP interview questions

    hi BSP GURUS,
    anyone have BSP interview questions plz provide me.
    thanks and regards,
    bala.

    Hi,
    As mentioned in /people/michael.eacrett/blog/2006/05/23/see-no-evil-hear-no-evil-speak-no-evil-and-write-no-evil--to-remove-postings-on-sdn-forums-or-not, /people/sap.user72/blog/2006/06/30/ebooks-free-shop
    and /people/eddy.declercq/blog/2006/07/14/from-the-grumpy-old-man-how-to-copy-a-cat
    this is copyrighted material which may not be copied without the permission of the author.
    Check also things like
    http://www.amazon.com/s/ref=nb_ss_gw/103-6826608-2100629?url=search-alias%3Daps&field-keywords=sap+certification&Go.x=0&Go.y=0&Go=Go
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

Maybe you are looking for