Help me for MI Applications on WAS SP12

Hi All,
Could anyone guide me for MI development.
I have the following infrastructure.
i have installed wAS-SR12,EP-SP12, NWDS SP12.
i could able to get the SAP MI login screen from this url http://eportal:50000/mi. But unable to find the proper userid and password (i am giving the administrator and its password), System as localhost (ie., xportal), system number = 00. On log on, i am getting the username and password incorrect.
I am not sure, whether i have got MI got installed or not. From forums i found that the Mobile Infrastructure automatically when we install the WAS SP12.
Could anyone help me to show the steps if i am missing anything. Like what are the steps i need to have to start working on MI applications using webdynpros.. Please help me..
Thanks & Regards,
Raghavendra Pothula

Hi Raj,
  You need to have an ABAP+ JAVA Stack installation of the WAS 6.40 to use MI.
Initially you will need to setup the props file, add the appropriate authorization and then should be able to Synchronize. If you follow the MI Installation Guide for SP12 you will be fine.
FYI to get to the MI Webconsole you should access it via
http://eportal:50000/me rather than http://eportal:50000/mi
-wael

Similar Messages

  • Help Text for Webdynpro Application

    Hi Guys,
    I've created a "Help" link. clicking on it displays a popup  Help_Window. I want to display paragraph of  Text in this Help_Window.
    Is there any element available where i can enter a paragraph of text ?
    ( my goal is to create  documentation for the application. just like we do documentation for se38 programs )
    Your inputs are highly appreciated.
    Thanks in Advance.
    Arun.

    Solution :
    1. Create MIME to import the help.PDF file which contains documentation to your application
    2. In Help_View i have included the element INTERACTIVE_FORM.
    3. In method WDDOINIT of HELP_VIEW  i have included the following code to call the help.pdf file
      data:
        mime_repository type ref to if_mr_api,
        content type xstring,
        url type string value '/SAP/BC/WebDynpro/SAP/WDR_TEST_ADOBE_PDF_ONLY/test.pdf'.
      mime_repository = cl_mime_repository_api=>get_api( ).
      call method mime_repository->get
        exporting
          i_url = url
        importing
          e_content = content.
      wd_context->set_attribute( name = 'PDF' value = content ).
    4. on clicking the help link from my main window i'm calling the HELP_VIEW as a popup window. in this window it displays the help.pdf file which give the documentation about the application.
    check example - WDR_TEST_ADOBE_PDF_ONLY

  • How to implement the documentation help function for webdynpro application

    We have implemented SAP Travelmanagement ESS services which uses ABAP Webdynpro. In each of the screen there is a "help" link on the top right corner. I would like to know how to use this function to link a help file that explains what needs to be done on each screen.
    My requirement is to provide screen specific help information as a document for each of the screen in my webdynpro application.
    Any suggestions, options, samples from the experts would be most appreciated.
    Regards
    Vivek

    Hi Vivek,
    seems to be your WDA are built by FPM, thats how by default you will be getting help link in top corner.
    when you click on help link it has to display the help related data.
    for this sap calls the standard wdc: WDHC_COMPONENT and the view:WDHC_APPL_HELP in this view you will see the element as: TEXT to fill some text which is your help data.
    there might be some way to fill this TEXT (text view) try this.
    or else i will check and upate you soon.
    all the best.
    Regards,
    Mahesh.Gattu

  • Help me for some applications in 520

    i need below applications for my 520
    1.traffic applications-to know rout,traffic jam,police,accident details on road.
    2.spy applications-my daughter also using android.her complete call history and message details i need.
    3.scanner-any software for using my phone as scanner.
    4.travelling route hotel details also i need
    i dont know the good softwares for my above needs.
    can help me

    1. here maps and here drive
    2. you should better find those apps yourself...
    3. handyscan
    4. priceline hotels and hotels.com
    The silence will fall

  • Help screen for MII application?

    I am part of a team that is developing a pretty big and complicated system built with .irpt pages and MII applets, queries, displays and transactions.
    Does MII offer a way to build a custom help screen, similar to Microsoft's HTML help?  How have creators of other MII applications done their help screens?  Are there any examples to look at?
    Thanks in advance!

    MII does not offer a special tool for creating help pages. You can use any tool for building dynamic web pages that you would also use to build your application, even external tools like Adobe Flex to create nice screens.
    I once created a PDF User Guide which I linked into the User Navigation, so users can read it online or print it easily if needed. You may create help buttons that open small help pop ups.
    Perhaps other users can share there ideas?
    Michael

  • How do I make a global helper servlet for all applications?

    I am running about five different web applications in tomcat 5.0.24. They all need to do some spelling correction from time to time. I have a spelling correction API and a bunch of dictionaries, etc. so I can do it just fine. The problem is, I don't want each application to create all the dictionaries because then I end up with five spell checking programs and five dictionaries being accessed (basically I am exactly repeating myself five times and I start running out of memory). I would like to have a servlet that just sits waiting all the time and which any other servlet or JSP in any of my web applications can quickly dash of a spell check request to at any time.
    How do I do this?
    I think I need to write a servlet since I want to run it in tomcat and access it from my webapps, but it might not need to be a servlet since it is never actually contacted from a browser and will not ever write anything back to the client. I just need my other servlets and JSPs to access the spell checking functionality from time to time.

    I'd say tomcat/common/lib is a good guess for where you'd put the class's jar file, but I don't use Tomcat so I can't say for sure. As for how to only have one dictionary, you need a singleton class, i.e. one that only permits one instance of the class to be created. Like this, if you haven't heard of it:public class SpellChecker {
      // create a single SpellChecker here:
      private SpellChecker theInstance = new SpellChecker();
      // don't let anybody else create another one:
      private SpellChecker() {}
      // provide a method for returning the single instance:
      public static SpellChecker getInstance() {
        return theInstance;
      // remaining methods go here
      // watch out for synchronization issues
    }To get hold of the spell-checker, just doSpellChecker.getInstance()PC²

  • Design Pattern help needed for MDI application

    Hi,
    I am writing an mdi application which contains a JSplitPane. The left pane contains a JTree and the right contains a JDesktopPane which houses n number of JInternalFrames. The JInternal Frames need access to the JTree. Also both panes (objects w/in) need access to elements of the JFrame. I am currently implemeting access by making most of the JFrame objects static and creating getter/setter methods for access. Does anyone know any desing patterns I might use to solve this dilemma?
    Thanks,
    John

    The observer design pattern causes the child objects to chage state when the parent changes state. The type of pattern I need would allow the child objects of the parent JFrame to be available globally without having to make them static. I am wrong in this? Would the observer pattern solve this issue.

  • How to create a help page in my application like the one in HTMLDB ?

    Hi,
    What's the best way to create a help file for my application and link it like the help link at the top right of HTMLDB ?
    Thank you.

    That's what I did, but I have a lot of screen captures. Where would be the best place to save those gif, server or in the database by loading them via the images tab in HTMLDB ?
    Thank you.

  • I initially downloaded the application and was able to gain access to all of my photos through album, photostream, fb, etc. Now it will not pull any. After deleting the app and attempting to download it, it says I must pay for it (again) any help would be

    I initially downloaded the application and was able to gain access to all of my photos through album, photostream, fb, etc. Now it will not pull any. After deleting the app and attempting to download it, it says I must pay for it (again) any help would be appreciated.

    Sounds like a verification issue on whatever marketplace you bought PS Touch from. Did you try contacting Google or Apple to see what they say?

  • The Help Link from the Application Pages Does not Work for Peoplesoft Campus Solutions 9.0

    Hi everyone.
    I have a problem, I have been trying to set up the Help Link from the Application Pages for Peoplesoft Campus Solutions 9.0 according to the instructions given in the Document: http://docs.oracle.com/cd/E17566_01/epm91pbr0/eng/psbooks/EnablingtheHelpLinkfromApplicationPages.pdf ,  (referenced in the Doc ID 1289101.1, E-PB: How to Set Up the Context Sensitive Help with Hosted PeopleBooks using Universal Linking).
    I follow the instructions of that document carefully:
    I go to: PeopleTools -> Web Profile -> Web Profile Configuration
        2. Then I choose the Web Profile: "Development".
        3. Then Change the value for the Help URL field by entering the following URL format: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hrcs90r5 , the ctx parameter selected is the one that correspond to  the Campus Solutions (hrcs90r5) according to the Product Line Code Table (ULinkID) especified in the mentioned document.
        4. Stop the Web Domain and Clear cache.
        5. Start the Web Domain again.
    After setting up the Web Profile Configuration I test the help links, thas is why I click in the Help link in any Peoplesoft CS 9.0 Application Page (modify a person), but the next error message appears: "We're sorry, the topic you requested was not found.".
    I tried many combinations with the ctx parameters URL but it does not work yet. 
    I did the same test, but this time using the Help URL field with a HRMS ctx parameter by entering the following URL format: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hcm92pbr5 , and It works fine !!!
    According to the previous test you realize that It works with HRMS ctx parameter but not with Campus Solutions 9.0 ctx parameter,  Does anybody know what else can I do ? Am I doing anything wrong or missing? or maybe the Oracle's ctx parameter for Campus Solutions URL It is broken simply.
    Thanks for you help and feedback.

    2799444 - The page you are testing with appears to be a Workforce Administration page. Is that correct?
    The CS PeopleBooks would only work for CS pages, e.g.: try navigating to Main Menu > Campus Community > Personal Information > Add/Update a Person
    Also, you can use multiple ctx parameters:
    E.g.: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hrcs90r5&ctx=hcm92pbr5&ctx=pt852pbh2
    This way the help would work for the HR related pages like Workforce Administration, Campus Solutions pages like Campus Community and also PeopleTools pages like Web Profile Configuration. Hope this clarifies your question. Thanks!

  • Apple Application Support was not found help!!!!!

    A few days ago i got on iTunes but this error message came up saying
    Apple Application Support was not found.
    Apple Application Support is required to run iTunes. Please uninstall
    iTunes, then install iTunes again.
    Error 2 (Windows error 2)
    I have looked at many discussions and forum posts and most of them say to extract the itunes setup with winrar
    but i cannot see where it says to extract all i see is add to and compress.
    Please help me!!! I run windows 7 on an Acer laptop if this means anything. It would be highly appreciated thank you!

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it, which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if one component, such as Apple Application Support, won't install normally.
    tt2

  • Cannot install ITunes--Mesage is "Apple Application Support was not found.  Apple application Support is required to run ITunes Helper.  Please uninstall ITunes, then install ITunes again.  Error 2 (Windows Error 2)

    Cannot install ITunes--Mesage is "Apple Application Support was not found.  Apple application Support is required to run ITunes Helper.  Please uninstall ITunes, then install ITunes again.  Error 2 (Windows Error 2)

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • When I try to run iTunes I receive the following error message: "Apple Application Support was not found.  Apple Application Support is required to run iTunes helper.  Please unistall iTunes, then install iTunes again". I have done this twice.  What now?

    When I try to run iTunes I receive the following error message: "Apple Application Support was not found.  Apple Application Support is required to run iTunes helper.  Please unistall iTunes, then install iTunes again". I have done this twice and continue to get the error message.  What now?

    Hi texasslagle,
    It sounds like you are having issues installing iTunes on your Windows 7 PC, a frustrating situation I am sure.
    There is an article that you may want to use to try to complete your install here -
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/ts5376
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Please help me with this error: "Apple application support was not found... Error 2"

    Can anyone please help me with this error: "Apple application support was not found... Error 2"
    I've followed the instructions by removing all Apple files from my laptop, but when I reinstall the iTunes software it still comes up with this message:
    "Apple application support is required to run iTunesHelper. Please uninstall iTunes, then install iTunes again. Error 2"
    Thank you

    iTunes "Apple Application Support is required... Error 2" and possible fix.
    I know this is a bit late but I came accross this thread trying to resolve this same problem and came up with a solution that worked for me, so thought I would share it here too. I hope it helps someone else.
    I just resolved this on Win Vista (should apply equally for Win7 too). Please uninstall iTunes before proceeding though. I'll walk you through the process I followed, if you like you can jump straight to the Solution section.
    Problems:
    The initial error during the installation of iTunes was:
    An error occurred during the installation of assembly 'Microsoft.VC80.CRT,version="8.0.50727.4053",type="win32",publicKeyToken='1fc8b 3b9a1e18e3b",processorarchitecture="x86". Please refer to Help and Support for more information. HRESULT:0x8007054F
    The error (after installing iTunes) when trying to run iTunes was:
    Apple Application Support is required to run iTunes. Please uninstall iTunes, then install iTunes again. Error 2 (Windows error 2).
    After trying various fixes around the forums I came across this MSKB article, which relates to the first installation error:
    http://support.microsoft.com/kb/2688946
    This lead me to trying to install MS Visual C++ but I received the following error trying to install that:
    Error 1935.An error occurred during the installation of assembly ‘Microsoft.VC80.ATL,type=”win32”,version=”8.0.50727.762”,publicKeyToken=”1fc8b3 b9a1e18e3b”,processorArchitecture=”amd64”’. Please refer to Help and Support for more information. HRESULT: 0x80070BC9. Assembly interface: IassemblyCacheItem, function: Commit, component: {837BF1EB-D770-94EB-A01F-C8B3B9A1E18E}
    Note: The installation of VC++ rolls back when it fails.
    Solution:
    Through this error I found this MSKB article:
    http://support.microsoft.com/kb/946414
    The Automated MS "Fix It" msi package didn’t work.
    Note: Please backup your registry first (see the above MSKB article for instructions).
    I opened the registry and (as instructed in the MSKB article) deleted the following keys:
    HKEY_LOCAL_MACHINE\COMPONENTS\
    PendingXmlIdentifier
    NextQueueEntryIndex
    AdvancedInstallersNeedResolving
    Reboot and reinstall iTunes.
    If it helps you please like this so others can find it.

  • HELP!  I had iPhoto on my mac, for some reason it was not responding down loaded a new version but can't find my photos. any ideas please.  I thought once on the mac always on the mac.

    HELP!  I had iPhoto on my mac, for some reason it was not responding or damaged.   down loaded a new version but can't find my photos. any ideas please.  I thought once on the mac always on the mac.

    Sorry but we need details to help
    What version of the OS do you have? What has changed since iPhtoo worked?
    What exactly is the problem - you say "it was not responding" - You downloaded a new version (what version)" -you can't find yoru photos" none of which is helpful
    look in your applications folder - is there an Iphoto application there? If so get info and report the version
    Look in the picures folder - is there an iPhoto library there? If so exactly (including exact error messages) happens if you double click on it?
    what else can you tell us that might help us assist you?
    LN

Maybe you are looking for

  • Error while updating patch level 11 of HR

    Dear All, I am getting following error while updating HR patch level 11. Phase OBJECTS_LOCKED_?: Objects Locked in Requests Request      Names of Locked Transport Objects MRDK900089   LIMU REPS H99_POST_PAYMENT              LIMU REPS RPCIPE00 MRDK900

  • Open Item Import fails with a process_flag = -999 or -888

    Problem description ============ The Open Item Import fails with a process_flag = -999 in mtl_system_items_interface. This keeps the item from being imported into mtl_system_items. The process_flag has to be set back to 1 to have the row(s) reprocess

  • Java script and css files are not loaded

    I am using 9iAS 1.0.2.2.2a on Windows Server Family 2000. My web application is using bc4j and developed in JDeveloper 3.2. I am also using Apache and web cache and caching js and css files. Problem is some times it does not load js files but load cs

  • Sales volum for extended rebate agreement

    HI All, i made an extended rebate agreement and asales order accordein to this agreement, dleivery and billing then i returned back to the agreement to make settlement but i found this massage (( The sales volume for agreement 131 is not current)) i

  • Are there any programmatic means of reducing paging and increasing efficiency of insert/updates?

    We have a multi-terabyte database which daily receives tens of thousands of records to insert or update. Most online advice on reducing memory paging covers server memory options and dynamic memory management techniques. Are there any tested programm