What are the steps for publish applications WD ABAP in the portal

Dear Experts.
The developers created an appplications WD ABAP. And my work is publish this development in the Portal of ESS.
Anyone can help me with the steps for publish the development(applications WD ABAP) in the portal.
Thank in advance for your help,
Best Regards
Carmen.

Hi ,
Please follow the below links for creating ABAp web dynpro iview in portal.
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/1d/e4a34273f60b31e10000000a1550b0/frameset.htm
http://www.sapdev.co.uk/sap-webapps/sap-portal/iview-wdp.htm
Also you have to ensure that the system is created in portal and also check the system connectivity with backend.
You need to select this system while creating iview.
The below links will help you to create systems in portal.
http://wiki.sdn.sap.com/wiki/display/EP/11Systems-+Creation
http://wiki.sdn.sap.com/wiki/display/EP/SystemCreationin+portal
http://wiki.sdn.sap.com/wiki/display/EP/HowtoCreateSystemObjectinthePortalforConnectingtoSAPbackend+System
Hope these will help you.
Regards,m
Sandip

Similar Messages

  • What are the steps for adding a new field to the ST for CRM 2007?.

    Yeah, I know it's a basic question. I'm fairly familiar with CRM 5.0 but 2007 is new to me and there a good few changes.
    If I need to add a new field (probably with some processing to set its value) to the Service ticket what would be the steps I need to take to achieve this in CRM  2007?.
    Your help would be much appreciated.
    Jas.

    Are we talking about the EEW Business objects displayed in the EEWB as there is no business object called 'CRM OPPORTUNITY', but there is one called 'OPPORTUNITY'. Just wanted to make sure I was on the right track.
    So, as I need to change the service ticket it would mean that my transaction type will be service request,or whatever the shorted value is, is that correct?.
    I can see the transaction types in table CRMC_PROC_TYPE_T, although it looks like I need to pick SRVO (Service order) at a guess, and if this is right I'm looking for the EEW Business object to match. But it feels like guesswork to me. For example, I could choose EEW Business object 'SERVICE_TRANSACTION' which has an Extension type of 'CUSTOMER_H', or I could choose EEW Business object 'SERVICE_CONTRACT' or 'SERVICE_CONFIRMATION', although the last is unlikely. But, my point is there is so much open to interpreatation, and I'm expecting it to be more exact. Perhaps I'm just missing something.
    Jas.
    Edited by: Jason Stratham on Sep 4, 2009 2:30 PM
    Edited by: Jason Stratham on Sep 4, 2009 2:39 PM

  • What are EXACT STEPS for giving an applet unrestricted access?

    Hello all,
    My company has developed a library for Java applications, and it's packaged in a jar file. We recently needed to create an applet to put on our website to demo the library's functionality. However, because it wasn't designed to be used in an applet, we get all kinds of security violations when running it in a web browser (reading system properties, reading Preferences API, reading local files, etc.)
    What we want is a really simple way for our potential customers to run this applet and give it permission to do whatever. We're a trustworthy company so they will be willing to accept an applet signed by us. However, they will not be willing (or even know how) to modify security policy files on their local machine.
    Can an applet signed by us get these permissions without the end user having to modify their policy file? I tried signing the applet using the techniques from
    http://www-personal.umich.edu/~lsiden/tutorials/signed-applet/signed-applet.html
    but the link may be out-of-date and it didn't work. Frankly I think Sun has failed miserably with regards to applet security - they made it incredibly difficult to do correctly and they provide no documentation on how to do it. Basically every topic in this forum is asking the same question - how do you easily give an applet permission to do what it needs to do?
    So here's the question: once and for all, can anyone provide a list of the exact steps necessary to give an applet permissions?

    Hello.
    "1. Create your code for the applet as usual.
    It is not necessary to set any permissions or use security managers in
    the code.
    2. Install JDK 1.3
    Path for use of the following commands: [jdk 1.3 path]\bin\
    (commands are keytool, jar, jarsigner)
    Password for the keystore is *any* password. Only Sun knows why...
    perhaps ;-)
    3. Generate key: keytool -genkey -keyalg rsa -alias tstkey
    Enter keystore password: *******
    What is your first and last name?
    [Unknown]: Your Name
    What is the name of your organizational unit?
    [Unknown]: YourUnit
    What is the name of your organization?
    [Unknown]: YourOrg
    What is the name of your City or Locality?
    [Unknown]: YourCity
    What is the name of your State or Province?
    [Unknown]: YS
    What is the two-letter country code for this unit?
    [Unknown]: US
    Is CN=Your Name, OU=YourUnit, O=YourOrg, L=YourCity, ST=YS, C=US
    correct?
    [no]: yes
    (wait...)
    Enter key password for tstkey
    (RETURN if same as keystore password):
    (press [enter])
    4. Export key: keytool -export -alias tstkey -file tstcert.crt
    Enter keystore password: *******
    Certificate stored in file tstcert.crt
    5. Create JAR: jar cvf tst.jar tst.class
    Add all classes used in your project by typing the classnames in the
    same line.
    added manifest
    adding: tst.class(in = 849) (out= 536)(deflated 36%)
    6. Verify JAR: jar tvf tst.jar
    Thu Jul 27 12:58:28 GMT+02:00 2000 META-INF/
    68 Thu Jul 27 12:58:28 GMT+02:00 2000 META-INF/MANIFEST.MF
    849 Thu Jul 27 12:49:04 GMT+02:00 2000 tst.class
    7. Sign JAR: jarsigner tst.jar tstkey
    Enter Passphrase for keystore: *******
    8. Verifiy Signing: jarsigner -verify -verbose -certs tst.jar
    130 Thu Jul 27 13:04:12 GMT+02:00 2000 META-INF/MANIFEST.MF
    183 Thu Jul 27 13:04:12 GMT+02:00 2000 META-INF/TSTKEY.SF
    920 Thu Jul 27 13:04:12 GMT+02:00 2000 META-INF/TSTKEY.RSA
    Thu Jul 27 12:58:28 GMT+02:00 2000 META-INF/
    smk 849 Thu Jul 27 12:49:04 GMT+02:00 2000 tst.class
    X.509, CN=Your Name, OU=YourUnit, O=YourOrg, L=YourCity, ST=YS, C=US
    (tstkey)
    s = signature was verified
    m = entry is listed in manifest
    k = at least one certificate was found in keystore
    i = at least one certificate was found in identity scope
    jar verified.
    9. Create HTML-File for use of the Applet by the Sun Plugin 1.3
    (recommended to use HTML Converter Version 1.3)
    10. Place a link to the .crt file (created in step 4) in the HTML-File.
    This .crt file has to be opened by the browser and has to be set to
    trusted,
    as the root CA for testing is not known to the browser. For use with
    "real" certificates, this step should not be necessary."
    Only one my comment. You should sign all jars that your applet requires.

  • What are basic steps for using Handbrake ripping software?

    I free downloaded Handbrake 0.8.0b1 to my 10.4.9 Mac OSX intending to download a DVD of home 8mm movies, that had been compiled by comm. photo shop, so that I could use iMovie & iDVD programmes to create new DVDs of segments of the 8mm movies. Can't find basic instructions on how to run Handbrake. When I open it the menu is mostly greyed out, so I have little or no choice. Tried downloading parts of the DVD several times, and only once did it register a file (in desktop) which I was able to open. I subsequently lost that by trying to move its destination. Other times a destination for the download is shown in the menu, (greyed out) but it isn't registered anywhere on the hard drive, nor shown on the desktop. So I would appreciate learning the elementary abc's of the steps to use that software.
      Mac OS X (10.4.9)  

    These Apple-hosted forums are best for Q&A about Apple software. The best place to get info about using non-Apple software is from the developers themselves. Check out the Handbrake FAQ page and/or post your question on the Handbrake developers' forums.

  • What are exercise steps for RTI scenario

    hi,
    we have configured AII and EM using RTI scenario configuration guide.
    To run the scenario in a systmatic way, is there any  any instruction booklet containing steps and the transactions.  like go to this system and do this, go to that system and do that.
    regards,
    thanks in advance,
    Sathyanag

    hi,
       The configuration Guide available for RTI processing in AII 4.0 should have enough information to help you out.
    regards,
    arul sekar.

  • Step for Publish a development created with Webdynpro for Java

    Good Afternoon.
    I am new in this of publish development in the portal.
    We created a development with Webdynpro java using RFC. We want know what are the step for publish this development in the portal ESS?
    The development work fine. But i don't know how to publish this in the portal.
    What configurations i have that do In the part of ECC and in the part of portal.?.
    Can someone help me?
    Kind Regards-

    Hi,
    When i have that do configurations for the following paths:
    Employee Self-Service>General Settings>Homepage for Self-Services-->Resources
    Employee Self-Service>General Settings>Homepage for Self-Services-->Headers and Area Group Pages
    Employee Self-Service>General Settings>Homepage for Self-Services-->Areas
    Employee Self-Service>General Settings>Homepage for Self-Services-->Subareas
    Employee Self-Service>General Settings>Homepage for Self-Services-->Services.
    Kind Regards,

  • Still on PS3? What are you waiting for?

    Are you still playing PlayStation 3? Why haven't you moved to the new generation with PlayStation 4? What are you waiting for? A specific game? The right price? Morpheus? 

    i'm broke at the moment, but in all fairness, I've got plenty of stuff to keep me busy as it is on my PS3 (as well as my WiiU, Amiga, Spectrum, 3DS, PC and Atarti2600) so I have no real need to upgrade. Furthermore, I'm not sure where to go next gen yet. It's tooe arly days to make a sensible decisison. Morpheus is callling to me, but currently I am much more impressed with the XboxOne with all its functionality, external HDD support and codecs, than the rather barren and user-unfriendly (for me anyway) PS4. I am also very angry and unforgiving with Sony for all the content removal on both my PS3 and SmartTV (which has lost Facebook, Midnight Pulp, Sony Entertainment TV, Crackle, Viewster and a whole host of other apps they decided they didn't want to run anymore.) As well as loads of things on the TV that just dont work properly that they cant be bothered to fix, incluing something that casues Youtube to crash all the time. The loss of PSHome was the final straw for me with Sony. Contrary to what a lot of people like to think it was very busy, and for me it was quite important, due to health issues I am fairly housebound, and it was a very good way for me to socialize.I just don't trust Sony anymore to make something that won't be downgraded in the near future. If Morpheus is great then I might be tempted to PS4 in time, but with rumors starting to emerge that the XboXone might support the Oculus, Sony have even lost the VR edge. Just wait and see for now.

  • What are environmental properties for LDAPRealm authentication

    Hi All,
    I am trying to authenticate a user in LDAPRealm using the weblogic helper
    class Authenticate.authenticate(env,subject) method. Can anyone tell what
    are environmental properties . for eg url, should we give the weblogic
    server url or ldap server url. Can anyone give some example.
    Thanks in advance
    Suresh

    Hi Ganesh,
    Thanks for your reply.
    I have tried out by changing "property for sorting = cm_modified".
    but its not effecting the News Author.
    where in News Author the modified one is being displayed first.
    But my requirement is that the one which I have created new news should be displayed first not the modified news.
    Thanks & Regards,
    Jasshu.
    Edited by: Jasshu on Jul 19, 2011 12:24 PM

  • Steps for Running T-code MIRO in the background

    HI,
    Plz let me know the steps for running T-code MIRO in the background Programatically.
    Regards

    Hi
    check following link it will help to you
    [http://help.sap.com/saphelp_46c/helpdata/en/a8/b992bd452b11d189430000e829fbbd/content.htm]
    [invoice verification in background;
    Regards
    Kailas Ugale

  • What are the steps for loading master data

    Hello
    what are the steps for loading master data? i want to learn about loading all master data and the steps to choose the best way to load the data.
    if anyone has documents please send me the documents i will be really greatful
    [email protected] thanks everyone
    Evion

    Hi Heng,
    Download the data into a CSV file.
    Write a program using GUI_UPLOAD to upload the CSV file and insert records.Chk the below link for example
    http://www.sap-img.com/abap/vendor-master-upload-program.htm
    Reward Points for the useful solutions.
    Regards,
    Harini.S

  • Hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    Legality aside (I'm not a lawyer and have no opinion on the matter) in order to make a purchase of an iPhone 5 you would need to travel to a country where they are for sale and purchase it there. Be sure to get one that is officially unlocked or you would not be able to use it with your cell carrier. Be sure that your carrier supports use of the iPhone before you buy. Also note that the warranty of the iPhone is only valid in the country of purchase.
    Appe does not ship outside of the countries where it sells the phones.

  • What are the steps for using the backup files to reload data to my blackberry curve (8310, i think)?

    What are the steps for using the backup files to reload data to my blackberry curve (8310, i think)?

    Connect BB to PC. On 'Desktop Manager'>Backup & Restore tab>Click Restore. Double click .ipd file (backup file created from Desktop Manager).

  • What are the steps for integration FI to PP

    hai
    what are the steps for integration with FI to PP
    Thanks & regards,
    PG BABU

    Hi,
    Integration is with CO and PP
    In CO, Cost Centers are Created using T.code KS01.
    In CO, Activity Types are created using T.Code KL01.
    Both should be combined Using T.code KP26.
    Cost Centers are assigned to Work Centers using T.Code CR02.
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

  • What  are the steps for merging of database files ?

    hi
    i have 23 datafiles in a tablespace .i want to merge these 23 datafiles into 4 to 5 datafiles.What are the steps for merging of database files
    Edited by: mithun on Oct 22, 2011 11:29 PM

    >
    i have 23 datafiles in a tablespace .i want to merge these 23 datafiles into no of
    small no of datafiles.What are the steps for merging of database filesYou didn't mention your Oracle version.
    See here for creating tablespaces http://www.adp-gmbh.ch/ora/sql/create_tablespace.html.
    You can specify as many (or as few) datafiles as you like.
    Then create tables in your new tablespace x_old_table_name(s) - you can Google this.
    Then select the data from old_table_name(s) into x_old_table_name(s).
    Drop old_table_name(s)
    Rename x_old_table_name(s) old_table_name(s).
    There may be a better way.
    Paul...

  • I have written a book with the ibooks application and I have gone through all the steps of publishing it to the itunes book store, but how can I be sure it went through?  I got the big green check and it says it was uploaded, but what do I do now?  How do

    I have written a book with the  ibooks application and I have gone through the process of publishing it through itunes to the itunes book store.  Everything seems to work and i get to the end of the process and get a big green check.  However, what now?  How do I check to see if it actually got through to the book store or not?
    Thanks.

    Hi khicks48,
    Welcome to the Support Communities!
    The article below will explains the publishing process for the iBookstore:
    Apple - iTunes - Partner Programs - Book Publishers
    I hope this information helps ....
    Have a great day!
    - Judy

Maybe you are looking for

  • Is it possible to crossfire intel HD graphics with amd radeon?

    Hi, I installed Win 8.1 on my Lenovo G510, after installing drivers i noticed that there are 2 graphic cards in the "Device Manager" (see below). I want to know is it possible to crossfire these 2 cards, if yes, how? And if no, do I need to uninstall

  • USER EXIT/ BADI (The price should not be changed in the billing document)

    Hi all, We have given manual entry provision for pricing in Sales order level. But as per the company requirement, the price should not be changed in the billing document. Also the point to be considered is, it is a delivery based billing.  Kindly he

  • Why does FCP show 1440x1080 and Quicktime says 1920x1080 for SAME CLIP ?

    I'm pulling in footage via Firewire off a SONY HDR-HC3 camera. Manual says resolution is 1920x1080, yet when I set up my project (HDV 1080i) the clips come in and say, 1440x1080. Is there serious compression loss happening in the process?

  • Contents of second prompt list based on value selected in first prompt?

    I need to display two prompts: "Product Family" and "Products". When the user selects a product family, I need the list of products to be filtered to the selected product family. In other words, the contents of the second prompt's list needs to be ba

  • IDOC to multiple header scenario..

    Hi, My scenario is Idoc to multiple flle scenario..(CDMA & GSM files needs to routed to differient structures) The requirement is Idoc is triggered at R/3 ECC side, at the target end we have 3 structures, the 1st structure is common as it has email d