(Looking for) Old discussion about »best« justification settings

Hi there!
I seem to remember there once was a vivid discussion about the best working justification settings in the old days of this forum – about 2 or 3 years ago, I would guess. Quoting »justification settings« I mean this tricky palette with minimum, desired and maximum values for word spacing, letter spacing, glyph scaling etc. I believe it was Dave Saunders among others taking part in that discussion ...
Well, the forum search didn’t help me a lot. Is there a chance to find any old discussion here at all?
Cheers,
Klaus

I have archives which are not on the forums any longer. I didn't find a post from Dave, but here's some posts from others...
Ole Kvern:
Fellow InDesigners,
For whatever it's worth, I start with:
Word Spacing: 95 / 100/ 140
I never use any letter spacing or glyph scaling (so those settings are at 0/0/0 and 100/100/100, respectively). I turn on optical kerning and use the paragraph composer. I put fairly tight limits on hyphenation.
This approach will sometimes result in overly-wide word spacing, but I've found that a.) wide word spacing is easy to find and fix, and b.) the reader's eye is less sensitive to variation in word spacing than it is to variation in letter spacing.
I look at every line in the book. No matter what your spacing settings are, nothing absolves you from this responsibility.
I think it works pretty well. Your mileage may vary.:-)
Kenneth Benson:
The "right" values for these settings depends on typeface, size, column
width, hyphenation settings, and the phase of the moon, but most books
use something close to 100% for Desired, something less than but close
to Desired for Minimum, and something greater than Desired for Maximum.
I'm looking at a book now that uses a 27p wide column, 10/12 Sabon, with
Justification settings at 80/100/133, but in this same spec I've seen
90/115/200 and 75/95/150. You need to give the program a range in which
to work; if you tell it to use 100/100/100, all the spaces will be
exactly the same size. The narrower the column, the bigger the type, the
more restrictive the hyphenation settings, the more generous you should
be with min/max settings. The wider the column, the smaller the type,
the less restrictive the hyphenation settings, the more restrictive you
can be with min/max settings. In the end, it comes down to what looks
best. Try a variety of settings on one page of justified type, and then
pick the one that looks the most readable.
Dominic Hurley:
Depends on the font (which is another point to consider - not all digital fonts with the same name have the same metrics, and if you are trying to match a book set with metal type you're in for a lot of manual work). Desired is usually set at 100 per cent (which means ID will strive to use the word spacing set in the font). I usually don't like seeing word spacing set below 90 per cent. Maximum is what you can live with. I always leave letterspacing set at 0 (I don't believe in it), but those who do use it will normally use a very tight range.
Mike Witherell:
No matter what Justification settings you setup in InDesign paragraph styles, InDesign will vary from it. My belief is to give it more parameters to work with, in order to get closer to what I want to see more often. I setup at least 2 if not all 3 settings to have a bit of leeway. For example:
Word Spacing: 80 / 100/ 120
Letter Spacing: -5 / 0 / 5
Glyph Scaling: 97% / 100% / 103%
If the OP wants looser spacing most of the time, he might try increasing the numbers, especially the desired, like this:
Word Spacing: 100 / 120 / 140
Letter Spacing: 5 / 10 / 15
I usually don't give an tracking values to the styles at all.
My apologies in advance to those who are horrified at the idea of glyph scaling.
There was another lengthy discussion on the pros and cons of glyph scaling...
Harbs

Similar Messages

  • Looking for ideas/discussion on "Best Approach"

    I have to create a form using JSP/Servlets with the following form fields
    Customer Details
    Customer ID
    Name
    Street
    City
    Country
    Product Details
    Product ID
    Product Name
    Manufacturer
    Product Code
    Country of Production //Where the product was manufactured
    Product Certificate Details
    Certificate ID
    Issue Date
    Country of Issue
    The purpose of the form is so that the user can enter the customer details, product details and certificate details and submit the form for the data to be saved on to an database. That is ok if it was that simple :)
    The idea is to make the form as easy as possible to complete so the following functionality will be available on the form.
    A search icon will be available next to Customer ID which when clicked will display a pop up window with a list of all the customer ids available. The user can then select a customerid from the pop up window and the application will populate the customer details on the parent window based on the ID.
    A similar type of popup/lookup window will be available for Productid, product code in product details and certificate id in certificate details.
    There will also be a lookup window for all the country elements in the form. I.e Country under customer details, Country of production and country of issue.
    Now the bit that i am interested in is what is the best way of implementing this using jsp,servlets and struts. I am mainly interested in knowing how you would implement the following functionality
    1 - The database stores nearly 23,000 product codes. If the user selects the search icon to load all the product codes so that they can select one, how would you manage these? Presumabely it wont make sense to display 23,000 product codes for the user to select 1 from the list. I think the best way to do this is to paginate the list on the popup window. Is there anything in JSP to simplify this?
    The other question is where/how would you store the product codes on the client? or would you store them at all?
    2. The other thing that i would like some advice on is what is the best way to implement the lookup window for Country, Country of Production and Country of issue. Im thinking as all these 3 elements are retrieving the same data i should have a generic component that can be used for all 3. How can you make the generic component to determine which form field of the 3 is to be populated if they have different names?
    3. And finally when the popup window loads, is there any other way other than Javascript to populate a form element on a parent window based on a clicked hyperlink on a child window?
    4. And finally finally, is it better to display the pop window in a "new window" via a new jsp request or a hidden css DIV layer?
    Thanks
    Edited by: ziggy on Nov 7, 2008 11:57 AM

    I have to create a form using JSP/Servlets with the following form fields
    Customer Details
    Customer ID
    Name
    Street
    City
    Country
    Product Details
    Product ID
    Product Name
    Manufacturer
    Product Code
    Country of Production //Where the product was manufactured
    Product Certificate Details
    Certificate ID
    Issue Date
    Country of Issue
    The purpose of the form is so that the user can enter the customer details, product details and certificate details and submit the form for the data to be saved on to an database. That is ok if it was that simple :)
    The idea is to make the form as easy as possible to complete so the following functionality will be available on the form.
    A search icon will be available next to Customer ID which when clicked will display a pop up window with a list of all the customer ids available. The user can then select a customerid from the pop up window and the application will populate the customer details on the parent window based on the ID.
    A similar type of popup/lookup window will be available for Productid, product code in product details and certificate id in certificate details.
    There will also be a lookup window for all the country elements in the form. I.e Country under customer details, Country of production and country of issue.
    Now the bit that i am interested in is what is the best way of implementing this using jsp,servlets and struts. I am mainly interested in knowing how you would implement the following functionality
    1 - The database stores nearly 23,000 product codes. If the user selects the search icon to load all the product codes so that they can select one, how would you manage these? Presumabely it wont make sense to display 23,000 product codes for the user to select 1 from the list. I think the best way to do this is to paginate the list on the popup window. Is there anything in JSP to simplify this?
    The other question is where/how would you store the product codes on the client? or would you store them at all?
    2. The other thing that i would like some advice on is what is the best way to implement the lookup window for Country, Country of Production and Country of issue. Im thinking as all these 3 elements are retrieving the same data i should have a generic component that can be used for all 3. How can you make the generic component to determine which form field of the 3 is to be populated if they have different names?
    3. And finally when the popup window loads, is there any other way other than Javascript to populate a form element on a parent window based on a clicked hyperlink on a child window?
    4. And finally finally, is it better to display the pop window in a "new window" via a new jsp request or a hidden css DIV layer?
    Thanks
    Edited by: ziggy on Nov 7, 2008 11:57 AM

  • I have a MacBook Pro 5,4 running OSX 10.6.8 and Safari 5.1.10. A website i like has a known bug with 5.1.10 and recommends I install a newer version of Safari or use Firefox or Chrome. Just looking for advice on the best approach. Thanks!

    I have a MacBook Pro 5,4 running OSX 10.6.8 and Safari 5.1.10. A website i like has a known bug with 5.1.10 and recommends I install a newer version of Safari or use Firefox or Chrome. Just looking for advice on the best approach. Thanks!

    Unfortunately, Safari cannot be updated past 5.1.10 on a Mac running v10.6.8.
    So, the options are to upgrade to a newer OS X or use Firefox or  Chrome.
    Be aware, Apple no longer support Snow Leopard v10.6 >  www.ibtimes.com/apple-kills-snow-leopard-os-x-106-no-longer-receives-security-u pdates-1558393
    See if your Mac can run v10.9 Mavericks >  OS X Mavericks: System Requirements
    If so, you can download and install Mavericks for free from the App Store.
    Read prior to upgrading >   Upgrading to 10.7 and above, don't forget Rosetta! | Apple Support Communities

  • Why tomcat is still looking for old jar files?

    Please help me it is a very serious problem.
    I updated one of the jar files used by the project. I am using a new method that is available only in the new library. I removed the old jar files in my local system, and everything worked fine. Then I commit those files to the subversion, which is in the testing server, and then I created the war file. The war is successfully created, then I deployed to the tomcat. But, now there is an error in the portion I am using the method that is only available in the new jar files.
    One of the error when I go to that portion is:
    1. No Such Method Exists
    The other errors on log files are:
    1.
    WARNING: Failed to open JAR
    java.util.zip.ZipException: No such file or directory
    2.
    validateJarFile(tomcat/webapps/ROOT/WEB-INF/lib/j2ee.jar) - jar not loaded. See Servlet Spe
    c 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
    Please help me, I have tried every other way to solve this. I have tried removing all the old jar files there were, and replacing with the new one. I have tried creating a war file and ftping to the testing server.
    I problem is still there and it is because the testing server's tomcat is still looking for old jar files. I used Netbeans and add jar files as usual method.

    Check the contents of your WAR file that you are deploying on the testing server to see if it contains the JAR that you can't find.
    More than likely you are building your WAR file and your new JAR file is not being included in the build.

  • Old computer crashed.  trying to sync my iphone with new computer but phone is looking for old computer.  how do i change it?

    old computer crashed.  iphone is looking for old computer so I can't get it to sync with my new computer.  Suggestions?

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • Looking for DAM case studies/best practices

    I just began working at school and we have a TON of old photos. My advice is just to permanently archive older photographs and begin fresh with Lightroom and a good digital asset management policy.
    I know there are resources and tutorials on DAM with Lightroom, but I'm looking for examples of how other institutions, schools, organizations and non-profits are using Lightroom and Bridge. Anyone know if any place where I can find something like this?

    Yes, semantically speaking, Lr does not physically house nor is it an actual physical repository for image files. For those uncomfortable with certain terms ... they should request that Adobe address all other troubling terminology in their software so we all can feel a bit more comfortable ... since we don't actually import images into Lr (other than graphic identity plates and graphic watermarks) ... we merely reference those files in Lr. Perhaps Adobe could label that button/action more accurately as a start.
    If we do not physically import photos into Lr, then what use is there to have a button for the function of Export? If we didn't actually import any images into Lr ... how is it possible to export an image out of Lr? Or, how about the fact that the Camera Calibration panel does not actually calibrate cameras for another? ... but I digress ...
    Indeed, from a physical standpoint, the files we manage using Lr are not actually stored inside the  Lr catalog ... however, all the extremely valuable camera generated EXIF and IPTC along with user generated metadata is stored in a repository that is known as the .lrcat file. Of course, one should not confuse that this repository has any actual images stored within.
    While it may be preferred, and more comfortable, to be perfectly accurate in discussing such terms, we can also drown in a sea of semantic minutiae if we all insist on picking nits with such phrases used in the discussion as well.

  • Looking for old Nokia ringtones

    Hi, I'm looking for some old Nokia ringtones (ah, those days). The Nokia ringtones called Airy, Coconut, and Beach are some ringtones I'm currently looking. If any one can help me I'll be greatful.
    Nokia should release their previous ringtones for us, because it's so good. I like the Nokia tune play in harp instrument that can be found in Nokia 1600.

    Hi, Chiyawa. We appreciate your interest in our products. You can try visiting any Nokia store or authorized Nokia retailers for their availability in your area. Check your local support page at http://www.microsoft.com/en/mobile/support/locations/. All the best and welcome to our community. ;-)

  • New iMac looks for old Mac tower

    I purchased a new iMac recently and used Migration Assistant to move my Documents folder over from my old G5 Tower. To the best of my memory, I did not use Migration Assistant to move system files or applications over to the iMac.
    Once I thought I had everything configured just right, 3 things occured where the new iMac was looking for the old G5 Tower:
    (1) at startup, a dialog twice appeared, indicating that the old G5 could not be found. I used the Accounts/Log In Items to disable start up items that were "unidentified." First problem solved.
    (2) When I try to print, the iMac looks for my old G5 when I first try to access a pulldown menu in the print dialog window, and after quite awhile an alert message appears indicating that the G5 server is unavailable. I've tried deleting all installed printers and then reinstalling them, to no avail.
    (3) In my folder windows, under the Places list, there is a favorite folder that is repeated twice, one that links to the "04_FT" folder on the new iMac, and an identically named item that does not function as a link (but a folder with this name did live on the old G5) and I'm unable to remove it from the list. When I Control click on it, the only option I get is to "Open Sidebar Preferences."
    I suspect that both (2) and (3) are similar "ghost" references back to the old G5, but I don't know how to remove them.
    I would very much appreciate any help or suggestions that the iMac community might have to offer.

    I would recommend starting over and instead of using Migration Assistant this time using Setup Assistant. They are cousins, similar but different. First SA is more reliable and second it will not create a second user account. Because you are migrating from a PPC machine I would migrate everything EXCEPT applications. You should manually install your apps, this will give you the opportunity to udate the ones that need it and I'm sure there are many. You may even apps that won't run on Intel based machines so why migrate them at all? You can use the Setup Assistant tips beginning at "Second chance...." You can either restore from your old machine or from one of it's backups. I think you'll see it's a pretty clean process, something you passed over (I'm not sure why) when  you turned on the new iMac for the first time.

  • Looking for old arrow-hitting-target alert sound

    I'm looking for an alert sound from when I first used Macs in about 1989,
    around the time of the Mac SE. The alert sounds like an arrow flying
    through the air, striking a target, and briefly quivering.
    I'd love to find this sound in a form that could be used on a current Intel
    Mac running MacOS X 10.4.
    Thanks,
    Greg
      Mac OS X (10.4.6)  

    Jim,
    Yes, I'm still here I'm told this sound would be in the old SND format, but that iTunes can convert that format if you're able to find it.
    Thanks,
    Greg

  • Since lion upgrade iMac keeps looking for old server

    Hi,
    I have a NAS prior to Lion upgrade which was working perfectly. Now with the Lion upgrade the NAS (Sitecom) ther were some issues. I have reinstalled the NAs and had given it a new name. I can find the NAs now so thats not a problem.
    But almost every hour I get 2 warning that he can not find the "old NAS", it really start annoying me and I've looked everywhere and I don't even find any link (Finder) towards it so I don't know what to do to get rid of this message, receiving it every hour twice really start getting on my nerves.
    Sorry for th Dutch, but the message translates;
    A problem has occured with connecting to the server 'VanBeeckNAS'
    The server doesn't exist or is currently not available. Check the servername or the IP-address of the server, ...
    Any help is highly appreciated.
    Peter

    Same problem since lion. Not only can I not back up to the server it keeps looking for it several times on start up. Real annoying.

  • IMovie 11 freezing looking for old (trashed) computer doing iphoto import?

    Odd problem with my new iMovie. When I try to run it and it goes through the update of files from iPhoto, it freezes and says that the network connection with an old desktop computer we used to have is broken. Then it just reappears and will never complete the iphoto transfer. I have changed iphoto libraries to a new one and that solved the problem, but we have a ton of movies in our iphoto library that I need in imovie. Does anyone know how to disassociate iphoto library from an old computer? In iphoto there are no issues with looking for the old computer, and I don't think we ever had them synced to begin with. Any help is appreciated.

    Hello,
    I have the same problem on my mid 2012 MBP retina 15 inch. For example, when i am importing from facetime in final cut, sometimes it records in 720HD @ 24fps, and sometimes in non-HD @ 17fps.
    Everything is up to date, i have tried recording from photobooth and quicktime, and the issue remains the same.

  • Looking for old Missile Command-type game

    I used to play this Missile Command clone around 10 years ago, I remember a black background and colorful bases and "missile lines". Can't remember what it was called though. If anyone knows that would be awesome.

    d. t.
    Are you looking for online play? I did a Google search for Missile Command and came up with a bunch of online Missile Command games. I was able to save a java based version as a web archive with Safari and play offline.
    I have the old Missile Command in black and white, but I got it in the OS 7 days so I don't remember where I got it.
    Shane
    1.6 ghz g5, G4 500 PDQ(Wallstreet), TiBook 867    

  • Looking for old patch 106257-04 or earlier (Solaris 2.6)

    I am looking for an older version of patch 106257-04 for solaris 2.6. This is for testing our product on solaris 2.6 with a patch level before 106257-05 (which I have).
    Thanks,
    Brian Walton

    Hi
    You're not going to find the old version of the patch your after on sunsolve, only the latest revisions seem to be available for download. You could try searching for some alternate sites which might hold copies of the old patch but I'd be disinclined to download a patch from any old site and put it on a production server.
    If you've got old copies of the Sunsolve CDs you might find it on there, otherwise your going to have to use the latest revision.
    If you've got a support agreement with Sun, you could try requesting it from your account manager.
    regards

  • Can't complete wireless setup for new router. Printer keeps looking for old router.

    I'm not able to connect my printer to my new wireless modem. My printer continues to look for the older wireless modem. I'm using windows 8. In setup, when it gets to the window "change usb to wireless," my printer can't be found.  I printed out the HP Network Configuration Page and it shows that the new network is "discovered." On the Diagnostics Summary, the "Wireless On" and Wireless Working" passes, but "Network Name (SSID) Found" is Fail. 
    Where in Win8 can I find my router properties? I might can enter the printer WPS PIN there, but can't find it! Thank you for any help!

    @judyw217, Welcome to the forums!
    I hope to help you with the connection issues you're having when trying to connect your Deskjet F4580 to your "new network" as you now have a new router. I have a few ideas in mind that you can try to get started!
    First try power cycling the network devices. Sometimes all of the devices just need a restart!:
    Turn off the printer and computer and unplug the router for 1 minute (do not press any buttons on the router).
    Plug the router back in and wait another minute, next turn on the printer and computer.
    Now check to see if your SSID is found (your network).
    If the network is still not found, try running the Print and Scan Doctor on your computer to see if the tool can detect your printer and add it to the network.
    If the printer is still not connecting to your router, check your router settings. If you need assistance checking the router settings, contact your router provider. I will let you know which options you are looking to check:
    Network name and password to have no spaces or punctuation.
    If using WPA2 security, switch to WPA personal.
    Dual broadcast Wireless b/g/n (printer may connect to g).
    Turn Mac Filtering Off.
    Firewall settings need to be at there default settings, or set to a lower security.
    Multicasting "on".
    Following ports need to be un-blocked:
    Incoming (UDP) ports : 137, 138, 161, 427
    Outgoing (TCP) ports : 137, 139, 427, 9100, 9220, 9500
    Just to add, here are instructions to help you with Setting Up the Printer for a Wireless Network for the HP Deskjet F4580 and F4583 All-in-One Printers
    I hope this helps, let me know the outcome please!
    If you wish to send me a "thanks for responding", click the thumbs up  below!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • I am looking for your suggestions about Netweaver Enterprise Portal

    Hi,
    I am Mallikarjun, having 3 years of experience in SAP - ABAP programming and also I am having enough conceptual knowledge on ABAP Objects & JAVA, even I am aware of Web Dynpro ABAP. Now I am planning to learn Netweaver Enterprise Portal, for that I am looking for your valuable suggestions and even I am expecting your help. Here I have some quarries:
    1.     What is the importance of Netweaver Enterprise Portal?
    2.     What are the different concepts of Enterprise Portal?
    3.     Step by step procedure to learn Enterprise portal?
    4.     As a developer (EP) what are the roles and responsibilities?
    5.     What should I learn to work as a EP Content developer?
    If you have any Enterprise Portal documentation or material, please you can share with me, it helps me a lot.
    Thanks & regards,
    Malllikarjun.

    Hi Mallik  ,
    The following r excellent websites containing PDF & PPT docs which will make u'r learning easier as a BEGINNER:
    EP BOOK
    http://searchsap.techtarget.com/searchSAP/downloads/chapter-december.pdf
    EP Introduction
    http://en.wikipedia.org/wiki/Enterprise_information_portal
    EP Introduction
    http://www.sappoint.com/PHPWebUI/index.php5?menu=ConsultingEnterprisePortals&title=Consulting%20Services%20and%20Solutions%20-%20Enterprise%20Portals
    How to develop SAP Enterprise Portal with WebDynpro
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/15efce90-0201-0010-e8ae-f74055037139
    Migrating SAP Enterprise Portal
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4be0a6e3-0601-0010-6493-913104fc7468
    All Articles on SAP NetWeaver Portal
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/10f7a71d-d911-2a10-39b0-8a9f318c94ac?startindex=21
    SAP NetWeaver Portal How-to Guides for SAP NetWeaver 2004
    Portal How-to Guides for SAP NetWeaver 2004?prtmode=print
    SAP NetWeaver Portal eLearning Catalog
    https://www.sdn.sap.com/irj/sdn/portal-elearning
    AN EXCELLENT BOOK ON DETAILS OF SAP ENTERPRISE PORTAL
    http://searchsap.techtarget.com/searchSAP/downloads/chapter-december.pdf
    Get ready for SAP ENTERPRISE PORTAL
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6d5ca54c-0601-0010-56a0-812227d24327
    SAP ENTERPRISE PORTAL - PORTAL CONTENT
    http://www.sap.com/platform/netweaver/pdf/BWP_Portal_Content.pdf
    Beginning EP Development
    Beginning EP Development
    PORTAL(SAP LIBRARY)
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/content.htm
    HOW TO PERFORM INITIAL SIZING OF ENTERPRISE PORTAL 6.0
    http://help.sap.com/bp_epv260/EP_JA/documentation/How-to_Guides/01_Sizing_EP_60_init2.pdf
    SAP NetWeaver Portal eLearning Catalog
    https://webservice.sdn.sap.com/irj/sdn/portal-elearning
    SETTING UP U'R SAP ENTERPRISE PORTAL SYSTEM LANDSCAPE
    http://www.sappro.com/downloads/SystemDefinitions04.pdf
    Integration into the SAP Enterprise Portal
    http://help.sap.com/saphelp_nw04/helpdata/en/a3/7b583c2439e66fe10000000a114084/content.htm
    Administration Guide
    http://help.sap.com/saphelp_nw70/helpdata/en/ec/171e3e7181b60ae10000000a114084/frameset.htm
    Themes and Permissions
    http://help.sap.com/saphelp_nw70/helpdata/en/26/3df46c0584cd4eb31e91aa7bcf1893/frameset.htm
    Installing and configuring the preview edition of EP
    Installing and configuring the preview edition of EP
    TRANSPORTING SAP NETWEAVER PORTAL CONTENT
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/ep%206.0%20sp2.0/best%20practice%20for%20transporting%20sap%20netweaver%20portal%20content.pdf
    SAP NetWeaver Portal How-to Guides for SAP NetWeaver 2004
    Portal How-to Guides for SAP NetWeaver 2004
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/ep%206.0%20sp2.0/sap%20ep%206.0%20integration%20using%20jsr168%20and%20wsrp.ppt#285,1,Slide 1
    CITRIX SOLUTIONS FOR SAP ENTERPRISE PORTAL
    http://www.citrix.com/site/resources/dynamic/partnerDocs/Citrix%20-%20SAP%20Business%20White%20Paper.pdf
    HOW TO INTEROPERATE SAP ENTERPRISE PORTAL AND IBM WEBSPHERE PORTAL SERVER
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4a3addc4-0501-0010-bfbb-9cdd29581adf
    installation
    Enterprise Portal 6.0 Installation
    http://help.sap.com/bp_epv260/EP_EN/documentation/EP/N02_BB_InstallGuide_EN_US.doc
    Installing SAP Enterprise Portal 6.0 SP2     
    http://help.sap.com/bp_epv260/EP_JA/documentation/How-to_Guides/02_Introduction_v1_final.pdf
    How to migrate from SAP Enterprise Portal 6.0 SP2 to SAP Netweaver '04
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/778ac2ee-0901-0010-61a9-a2e174996bd7
    Get ready for SAP Enterprise Portal 6.0
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6d5ca54c-0601-0010-56a0-812227d24327
    Mastering SAP Enterprise Portal 6.0 Application Development
    http://www.sap-hefte.de/download/dateien/1000/075_leseprobe.pdf
    Get u'r SAP Enterprise Portal 6.0 smooth start
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/48f4aa4c-0601-0010-4fb3-abc9042dac4b

Maybe you are looking for

  • How to get the CSS to show up in the inspector for a Drupal7 Zen subtheme.

    Has anyone used this on a Zen theme for Drupal? Maybe it's getting confused by the php generated array of stylesheets?

  • Creditors Aging Report

    Dear SAP Experts, I am running Creditors aging analysis through the Standard SAP transaction FKI3 (Vendor line item analysis). But the report output is not matching with the vendor line item display (FBL1N). But if I select NOTED ITEMS in FBL1N ,then

  • BPM (blocks) stops for Abort messages

    Hi, We are using a RFC to get details from R/3 in a BPM scenario and handled exceptions for this RFC response. Our problem is the error handling behaves well when it has an error or success wherease for an abort messages, the entire process stops wit

  • Async webservice with Callback

    Hi Experts, How to call a Asynchronous Microsoft webservice(Used callback mechanism) from XI? First I have to call the Microsoft webservice, it will return acknowledgement about the status. Again I have to invoke the webservice then it(microsoft) wil

  • Running VC example applications

    I'm trying to learn VC with the examples provided by VC Modeling Resource Center (Visual Composer Modeling Resource Center [original link is broken]). I downloaded an example and it comes with two files (gml and sql). I tried to follow the tutorial "