Configuring DAM and Dispatcher - shorten URL

Hello all,
I'm trying to configure CQ DAM with Apache 2.2 and Dispatcher, to serve only assets.
I've successfully configured them, as when I upload a new asset, it automatically replicates in Publish instance and perfom the cache. Thus I can access the new image via:
Author: localhost:4502/content/dam/NEWFOLDER/image.jpg
Publish: localhost:4503/content/dam/NEWFOLDER/image.jpg
Dispatcher: localhost/content/dam/NEWFOLDER/image.jpg
However I would like to use a shorten URL to this image, for example:
localhost/NEWFOLDER/image.jpg
In other words, remove the /content/dam piece from the request URL.
I've checked the following threads:
http://www.wemblog.com/2012/07/how-to-use-dispatcher-with-mapped.html
http://helpx.adobe.com/cq/kb/HowToFlushMappedContent.html
But as far as I understand I don't need to configure the /etc/map in the Publish instance, as I'm only using DAM and configuring mod_rewrite at Apache server would be enough.
So, in the httpd.conf I wrote the following rule:
RewriteEngine On
RewriteRule ^/(.*)$ /content/dam/$1 [PT]
And Dispatcher.any is the default one.
The point is, when I disable the Dispatcher, I'm able to type the shorten URL and get the image. But this is not happening otherwise, when the Dispatcher is on I get the Not Found error: /image.jpg as it's looking for the image at root directory.
So, any clues on how I can achieve this?
Thanks in advance!

Hi Scott,
Thanks for the quick response.
I've followed the instructions but no success. The image has been put corretly onto cache folder on the webserver ([docRoot]/content/dam/FOLDER/image.jpg
But when I try to acces, it doesn't work: http://localhost/FOLDER/image.jpg
Instead, it returns the error below:
No resource found
Cannot serve request to /folder/image.jpg on this server
ApacheSling/2.2 (Day-Servlet-Engine/4.1.24, Java HotSpot(TM) Client VM 1.6.0_35, Windows 7 6.1 x86)
See below my httpd.conf and Dispatcher.any configuration:
HTTPD.CONF
ServerRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2"
Listen 80
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule include_module modules/mod_include.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule dispatcher_module modules/disp_apache2.2.dll
<IfModule disp_apache2.c>       
        DispatcherConfig conf/dispatcher.any       
        DispatcherLog logs/dispatcher.log       
        DispatcherLogLevel 3
        DispatcherNoServerHeader 0
        DispatcherDeclineRoot 0
        DispatcherUseProcessedURL 1
        DispatcherPassError 0       
</IfModule>
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
    User daemon
    Group daemon
</IfModule>
</IfModule>
<VirtualHost *:80>
  ServerName localhost
  DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/sitea"
  RewriteEngine  on
  RewriteRule ^/(.*\.html)$ /content/dam/$1.html [PT]
   <Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/sitea">
     <IfModule disp_apache2.c>
       SetHandler dispatcher-handler
       ModMimeUsePathInfo On
     </IfModule>
     Options FollowSymLinks
     AllowOverride None
   </Directory>
</VirtualHost>
DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs"
<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs">   
    Options Indexes FollowSymLinks   
    AllowOverride All  
    Order allow,deny
    Allow from all
</Directory>
<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>
<FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
</FilesMatch>
ErrorLog "logs/error.log"
LogLevel warn
<IfModule log_config_module>  
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>    
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    CustomLog "logs/access.log" common
</IfModule>
<IfModule alias_module>   
    ScriptAlias /cgi-bin/ "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/cgi-bin/"
</IfModule>
<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>
DefaultType text/plain
<IfModule mime_module>   
    TypesConfig conf/mime.types   
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz 
</IfModule>
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Dispatcher.any
/farms
  /website
    /clientheaders
    /virtualhosts
    /renders
      /publish1
        /hostname "127.0.0.1"       
        /port "4503"      
    /filter
      /0001 { /type "deny"  /glob "*" }
      /0023 { /type "allow" /glob "* /content*" }  # disable this rule to allow mapped content only
      /0041 { /type "allow" /glob "* *.css *"   }  # enable css
      /0042 { /type "allow" /glob "* *.gif *"   }  # enable gifs
      /0043 { /type "allow" /glob "* *.ico *"   }  # enable icos
      /0044 { /type "allow" /glob "* *.js *"    }  # enable javascript
      /0045 { /type "allow" /glob "* *.png *"   }  # enable png
      /0046 { /type "allow" /glob "* *.swf *"   }  # enable flash
      /0047 { /type "allow" /glob "* *.jpg *"   }  # enable flash
      /0061 { /type "allow" /glob "POST /content/[.]*.form.html" }  # allow POSTs to form selectors under content
      /0062 { /type "allow" /glob "* /libs/cq/personalization/*"  }  # enable personalization
      /0081 { /type "deny"  /glob "GET *.infinity.json*" }
      /0082 { /type "deny"  /glob "GET *.tidy.json*"     }
      /0083 { /type "deny"  /glob "GET *.sysview.xml*"   }
      /0084 { /type "deny"  /glob "GET *.docview.json*"  }
      /0085 { /type "deny"  /glob "GET *.docview.xml*"  }
      /0086 { /type "deny"  /glob "GET *.*[0-9].json*" }
      /0090 { /type "deny"  /glob "* *.query.json*" }
    /cache
      /docroot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/sitea"
      /statfileslevel "0"
      /allowAuthorized "1"
      /rules
        /0000
          /glob "*"
          /type "allow"
      /invalidate
        /0000
          /glob "*"
          /type "deny"
        /0001
          /glob "*.html"
          /type "allow"
      /allowedClients
    /statistics
      /categories
        /html
          /glob "*.html"
        /others
          /glob "*"
What do you suggest?
Thanks!

Similar Messages

  • User-defined value help and dispatcher configuration

    HI all.
    This is adrian. I gots my hands in PCUI. Facing a prob. Hope someone can help.
    The User-defined value help and dispatcher iViews in CRM-PCUI are no longer displayed after I installed CRM 4.0 Support Package 03. I also get a portal error when I execute the link.
    Did some one work with such a prob.
    Acosta.

    Adrian,
    I did work with a lil of PCUI some time back.
    Well the upfront easy solution is upgrade your pack level to one less than the latest.
    Julius

  • How to customize SSO Login URL and EBS AppsLocalLogin URL

    EBS version is 12.1.3 with SSO enabled (version 10.1.4.3)
    Original URL as follows:
    1) SSO Login : http://cmcsifsdev01.cmc.gov.my:8006
    2) EBS Local Login : http://cmcsifsdev01.cmc.gov.my:8006/OA_HTML/AppsLocalLogin.jsp
    There was a requirement from user to change the HTTP port from 8006 to 80 and use custom url. Using metalink note : How To Configure Apache In R12 (10.1.3) To Listen on a Restricted Port Such as 80 or 443 [ID 578001.1], i managed to change it as follows:
    Current URL
    1) SSO Login : http://sifsstg.skmm.gov.my
    2) EBS Local Login : http://sifsstg.skmm.gov.my/OA_HTML/AppsLocalLogin.jsp
    But there is new requirement to the current URL as follows:
    New requirement:
    1) SSO Login : http://sifsstgsso.skmm.gov.my (change from 'http://sifsstg.skmm.gov.my' to 'http://sifsstgsso.skmm.gov.my')
    2) EBS Local Login : http://sifsstg.skmm.gov.my (change from 'http://sifsstg.skmm.gov.my/OA_HTML/AppsLocalLogin.jsp' to 'http://sifsstg.skmm.gov.my')
    Is it possible to implement this new requirement? If possible, please advice me further.
    Appreciate any comments. Thank you in advance.

    How many web tiers do u have?
    For,
    1) SSO Login : http://sifsstgsso.skmm.gov.my (change from 'http://sifsstg.skmm.gov.my' to 'http://sifsstgsso.skmm.gov.my')
    You can define change the EBS HTTP server to use a Virtual Host/Reverse Proxy in front (e.g. WebCache/Apache Standalone). Do re-register this mid tier with SSO Server.
    You can follow:- Installing and Configuring Web Cache 10g and Oracle E-Business Suite 12 [ID 380486.1]
    However that same web server is servicing for AppsLocalLogin.jsp also. So i am not really sure whether u can really define another virtual host on RP side to access it with a different URL.
    (2) EBS Local Login : http://sifsstg.skmm.gov.my (change from 'http://sifsstg.skmm.gov.my/OA_HTML/AppsLocalLogin.jsp' to 'http://sifsstg.skmm.gov.my'))

  • Seeburger help required for Supplier Invoice (EDI 810) and Dispatch Advice

    Hi All,
    Pls let me blog/steps for scenario for Supplier Invoice and Dispatch Advice using Seeburger.
    For Supplier Invoice I assume R/3 will send data to Vendor (810).
    1. Pls let me know for R/3 to XI will we use INVOCE IDOC?
    2. Pls let me know for R/3 to XI Communication do we will use same Distributiion Model setup?
    3. Pls let me know what Seeburger BIC modules I need to use in Seeburger AS2/File Receiver Adapter
    4. Which Interface and Adapter  I need to use for 810 and which Interface and Adapter  I need to use for 997.
        Pls send its setup with its Mappings defined in Modules.
    5. What is Disptach Advice?  Is it also same like Supplier Invoice ? Does it also have EDI Number and if yes then what?
    Pls send me blogs for the above Supplier Invoice and Dispatch Advice settings.
    Regards

    >
    Rickkk wrote:
    > Hi Ravi and All
    >
    > I am thankful to all of you for great help of yours.
    >
    > Steps:
    >
    > 1) I wil create an INvoice in your backend system. It will generate an IDOC.
    > 2) This IDOC will be sent to my XI system.
    > 3) I will map the IDOC to the Target XML 810 --- From where I will get this Target XML 810 ?
    YOu have to login to the Physical box in which XI is installed (Take Basis Help.
    In one of the drives, you will find a folder called seeburger.
    Inside that folder, you can browse to find the XSD structure for your 810 .
    YOu will find different XSDs for different versions of 810.
    Suppose your EDI 810 version is 4010, then you have to use the XSD for 810 4010 version (There will be separate folders for each transaction set/version combination.
    It will be there also in the software CD that seeburger provides when you buy it.
    > 4) I need a seeburger receiver AS2 adapter that consist of modules that will convert the XML 810 docuemnt to EDI document.
    >
    > Below are the modules will be present in you suggested seeburger receiver AS2 adapter
    > module key                  Parameter name               Parameter value
    > bic                                destSourceMsg               MainDocument
    > bic                                destTargetMsg                MainDocument
    > bic                                mappingName                  <the name of your X2E mapping for 810>
    > exit                               JNDIName                         deployedAdapters/SeeXIAS2/shareable/SeeXIAS2
    >
    Yes.
    > 5. As per blog  -
    /people/rajeshkumar.pasupula/blog/2009/08/05/wanna-implement-seeburger-for-edi-find-the-booster
    >
    > For 997 Interface we are using seeburger Sender adapter and for 850 Interface we are using Split997 Sender adapter -- Reverse order
    >
    > For this scenario will it be like this again like
    > For 997 Interface we will use Seeburger Receiver AS2 Adapter where the above modules are configured -- Pls suggest
    >
    > For 810  Interface we will use Split997 Receiver adapter -- No modules configured Pls suggest
    >
    > I request you to kindly send me snapshots or blogs which has snapsot for this scenario.
    >
    No need of split 997 in outbound case. In this case, you will send the 810 and the partner will send the 997.
    So, to receive that 997 file, you need another scenario. You need the split 997 communication channel only in inbound case like in 850, but not in outbound case.
    > Last point -- is Dispatch advice direction is like 850 (Inbound ) or its direction is like 810 (outbound)?
    > Do we have IDOC or something like that present and its mapping ?
    >
    like I said earlier, it is an outbound document if your company is the vendor.
    It will be inbound if your company is the Customer to some other company.
    The IDOC that is used usually will be DESADV idoc.
    > Regards

  • Difference between Web Service URL and Report Manager URL

    What is the difference between Web Service URL and Report Manager URL in Reporting Service configuration manager in SQl Server 2008 Reporting Setrvices

    Another way to put it is the Web Service URL is just that, its used for services that are connecting to issue API calls.  The Report Manager URL is the nice GUI that users should use.  If you click the links, you should see the difference.  I
    am sure you have likely done that, but functionally one is for programmatic purposes and the other to be the front end graphical user interface.
    Sometimes pictures help as well...
    http://bretstateham.com/reporting-services-architecture-diagram%E2%80%A6/

  • Possible to configure HLS segments with different URL than governing M3U8 playlist?

    Currently we have 4 AMS servers with VOD applications for RTMPe and HLSe. These are load balanced by round-robin DNS, such that any request to VOD content could hit one of 4 servers depending on the DNS record served (DNS TTL=5mins).
    RTMPe works fine 100% of the time. We are having intermittent issues with HLSe and IOS devices in that randomly the stream will stop in our player (Brightcove based). Player logs seem to indicate requests to HLSe segments showing as not found/error when the content freeze occurs.
    My initial guess is that requests to VOD content may come from one AMS server and contain segment URLS also based on the DNS round robin hostname, then potential mid-playlist the DNS updates and you request the next segments from another server, potentially causing issues(??).
    e.g.
    Playlist:
    http://DNS-RR-HOSTNAME/mycontent.m3u8 - DNS resolves to AMS01, playlist served by AMS01
    Segments:
    http://DNS-RR-HOSTNAME/mycontent-seg01.ts - served by AMS01
    http://DNS-RR-HOSTNAME/mycontent-seg02.ts - served by AMS01
    http://DNS-RR-HOSTNAME/mycontent-seg03.ts - served by AMS01 (DNS flips to AMS02).
    http://DNS-RR-HOSTNAME/mycontent-seg04.ts - served by AMS02
    http://DNS-RR-HOSTNAME/mycontent-seg05.ts - served by AMS02
    Could this situation potentially cause player to halt playout? Is it possible to configure AMS to serve the HLS segments using a different hostname, whilst still being able to serve the playlist from the DNS RR hostname. This way the playlist would return a list of segments direct from the server that served the initial playlist. e.g.
    Playlist:
    http://DNS-RR-HOSTNAME/mycontent.m3u8 - DNS resolves to AMS01, playlist served by AMS01
    AMS01 serves segments with hostname of itself only:
    Segments:
    http://AMS01-DIRECT-HOSTNAME/mycontent-seg01.ts
    http://AMS01-DIRECT-HOSTNAME/mycontent-seg02.ts
    http://AMS01-DIRECT-HOSTNAME/mycontent-seg03.ts
    http://AMS01-DIRECT-HOSTNAME/mycontent-seg04.ts
    http://AMS01-DIRECT-HOSTNAME/mycontent-seg05.ts
    Playlist:
    http://DNS-RR-HOSTNAME/mycontent.m3u8 - DNS resolves to AMS02, playlist served by AMS02
    AMS02 serves segments with hostname of itself only:
    Segments:
    http://AMS02-DIRECT-HOSTNAME/mycontent-seg01.ts
    http://AMS02-DIRECT-HOSTNAME/mycontent-seg02.ts
    http://AMS02-DIRECT-HOSTNAME/mycontent-seg03.ts
    http://AMS02-DIRECT-HOSTNAME/mycontent-seg04.ts
    http://AMS02-DIRECT-HOSTNAME/mycontent-seg05.ts

    the link http://localhost/awstats/awstats.pl started opening.
    the problem was the permission of the directories  in /usr/share/webapps/awstats/ i changes 755 then it started working

  • Shorten url in iWeb

    Hello there folks, I have a portfolio about my work as a architectural technologist at http://www.simonenevoldsen.dk. To build up this website I have been using iWeb and comes the problem! I have used the blog version of iWeb and because that when you click at one of my completed assignments I'll see a long and ugly url.
    I would like it to go like this www.simonenevoldsen.dk/archtech/4sem/Outline_Proposal but it doesn't!
    I sound like instead www.simonenevoldsen.dk/4semester/Optegnelser/2014/10/3_Outline_Proposal
    Can you help me using iWeb or an Adobe product like Dreamweaver?
    Regards Simon

    Google
    how to shorten url in iweb blog

  • Can I use a shortened URL on iPhone4s Version 7.1.1?

    Can someone please help me! I am trying to pull up a shortened URL on my iPhone 4s Version 7.1.1. It keeps on erroring out. Is there anyway we can use a shortened URL on the iPhone, It works perfectly on My Mac Chrome and Safari. iPad 2 also works, but for some reason it won't on my iPhone 4s.
    Any help would be greatly appreciated.
    Thank you!

    Is there anyone that can help me with this issue. I really need an answer as soon as possible. I need to figure out why a shortened URL is not working on my version on iphone 4S 7.1.1.
    Thank you for all your help!!!

  • Making Server and Dispatcher as windows services

    Hi,
    How do I make server and dispatch as a part of windows services. So that they can get start when operating system starts instead of going to the folder and clicking on go.bat. Any documentation?
    Thanks in advance.
    Maya.

    Hi Maya,
    here is how to do it:
    1. Start the Config-Tool (DRIVE:\usr\sap\<J2EE_SID>\j2ee\j2ee_<INSTANCE_NR>\configtool\configtool.bat)
    2. Go to: cluster\dispatcher -> NT Service (Tab)
         choose: Enabled NT Service
    3. Go to: cluster\server -> NT Service (Tab)
         choose: Enabled NT Service
    3. Go to: cluster\state -> NT Service (Tab)
         choose: Enabled NT Service
    4. Go to: cluster\dispatcher -> services -> r3startup
         elements = 0
         -> Add
    5. Go to: File -> Aply
    6. In a Windows CommandShell (CMD) type:  DRIVE:\usr\sap\<J2EE_SID>\j2ee\j2ee_<INSTANCE_NR>\configtool\service -install
    7. Now you can start State Controler, Dispatcher, Server & from the windows services (in this sequence).
    You can also configure the services to start automatic (at windows startup) or not.
    Hope this helps,
    Robert
    PS: You can also consider installing the startup framework with the Enterprise Portal 6.0 SP2 on J2EE 6.20. It's also installed as a windows service and additionaly takes care of restarting processes, which have died/crashed as well as makes possible to unify the clustermanagement (under different operational systems).

  • How to open an URL and close the URL window, using adobe javascript

    Hi,
      Is it possible to open an URL and close the URL back again(without allowing the user to perform any other operation)? I was able to acheive the opening of the URL, using the app.launchURL("address". true); - But here it lauches in new window, and how do i close the window using the javascript. Is it possible?
    Thanks.

    Hi all
    In addition to what Bobby W - Adobe TS added, you might find
    the following useful as a bypass or workaround to the pesky prompt.
    var pw=window.parent;pw.opener=window.self;window.open("
    http://www.adobe.com");
    pw.close();
    I think this will only work for IE browsers. Actually, I
    think the whole window.close() only works for IE, but could be
    wrong about that.
    Cheers... Rick

  • [SOLVED] How to configure prosody and jitsi to work together?

    Hi,
    I want to use prosody to connect several jitsi accounts on different computers on a LAN. I have followed the Prosody page in our wiki to set up Prosody and some user accounts. The service starts and ss -tul indicates that it is listening on the expected ports. I have created the missing key and certificate files expected by the default setup and placed them in /etc/prosody/certs.
    I have created the account foo@localhost using prosodyctl adduser foo@localhost.
    In jitsi I have created an XMPP account (foo@localhost) on the same host as prosody. The account appears but it fails to connect to the server. Jitsi displays error messages on the console which indicates that the server does not support TLS connections even though these are enabled in the prosody configuration file (and lua51-sec is installed).
    I have tried numerous variations of disabling encryption in both prosody and jitsi but I either get the same error message or jitsi simply hangs while trying to connect to the server.
    So far the only thing that I've been able to find that deals specifically with prosody and jitsi is an episode of the Linux Action Show from last year that skimps on the details of the setup. The various online documentation that I've found seems to be for an older version or Prosody (e.g. Host entries in the configuration file).
    Does anyone have a similar setup working with the latest versions of Prosody and Jitsi? If so, please share your configurations.
    edit
    I went through the Prosody wiki page again today and managed to get it working. I think my problem was in misconfigured paths for the SSL server certificates in the VirtualHost section.
    Last edited by Xyne (2014-08-13 00:35:51)

    So, i tried both ways but it still didn't work.
    anrxc: i didn't know i could still prevent DNS leak without privoxy. Privoxy always blocked flash animations and videos (like youtube) here. I'll try to set up this better tomorrow when i have more time.
    By the way, after following your guide, i got this when executing /usr/bin/tor:
    Jan 10 19:29:16.993 [notice] Tor v0.2.1.21. This is experimental software. Do not rely on it for strong anonymity. (Running on Linux x86_64)
    Jan 10 19:29:16.994 [warn] Skipping obsolete configuration option 'Group'
    Jan 10 19:29:16.995 [notice] Initialized libevent version 1.4.12-stable using method epoll. Good.
    Jan 10 19:29:16.995 [notice] Opening Socks listener on 127.0.0.1:9050
    Jan 10 19:29:16.995 [notice] Opening Socks listener on 192.168.0.1:9050
    Jan 10 19:29:16.995 [warn] Could not bind to 192.168.0.1:9050: Cannot assign requested address
    Jan 10 19:29:16.995 [notice] Closing partially-constructed listener Socks listener on 127.0.0.1:9050
    Jan 10 19:29:16.995 [warn] Failed to parse/validate config: Failed to bind one of the listener ports.
    Jan 10 19:29:16.995 [err] Reading config failed--see warnings above.
    Last edited by ILoveJapaneseGirls (2010-01-10 22:00:12)

  • How to remove bullets and spacing for url links in the Related Links iview?

    I tried to look for a property that I can edit the look-n-feel of the url links in the Related Link iView using "Theme Editor".
    All I need is to remove the bullets and increase some vertical spacing between the links.
    Currently, it looks like this:
    URL iView A
    URL Iview B
    I go through the whole section of Related Links properties, none of them seems to do what I want.
    Here are the list of properties in Related Link section (of Navigation Panel):
    Link Color
    Text Decoration of Link
    Hover Color
    Text Decoration of Hovered Link
    Initially, I thought "Text Decoration of Link" should be the right property I should look at. But there are a drop-down with 5 options: None, Underline, Blinking, Overline and Line-Through, which really can't achieve what I want.
    Thanks for advice.
    Kent
    Post with Diagram Illustration:
    <a href="http://sapnetweaverforum.blogspot.com/2006/11/how-to-remove-bullets-and-spacing-for.html">How to remove bullets and spacing for url links in the Related Links iview?</a>
    Message was edited by: Kent C.

    Hi, Kai.
    I checked the Related iView properties (URL Template), I don't see what layoutset it is really using. I am not sure, is that a layout set apply to the Related Link Iview?
    For the regular KM iView, I will see what Layout Set I want to apply, then I can go and change the properties (of layout coontroller, collection renderer & resource renderer)you mentioned. But for this Related Link iView, I really don't know. I guess it may be in the code itself.
    If there is a layout set for Related Link iView (or the place to apply layout set to it), can you point to me which one is that? (I did a search through the layout set names, I only find the AppQuicklinkExplorer (I used this for Dynamic Nav. Link iView before), if I can aply this layout set to Related Link iView, my problem will be solved.)
    Thanks for help.
    Kent

  • The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.

    We are in the process of removing a child domain from the forest and are down to two DCs. These are both Server 2008r2 sp1 servers, one physical and virtual (PDC). When I try to remove a DC (not the PDC emulator) I get the following error:
    The operation failed because:
    Active Directory Domain Services could not transfer the remaining data in directory partition DC=DomainDnsZones,DC=mydomain,DC=local to
    Active Directory Domain Controller \\V-Svr03.mydomain.local.
    The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles."
    I have checked replication with repadmin /showrepl and all connections were successful. The dcdiag /test:kccEvent test on all servers passed.
    Most DCdiag tests are successful. The only failure is on NCSecDesc when running dcdiag /test:NCSecDesc
       Testing server: Default-First-Site\DC1-DEV-OFC
          Starting test: NCSecDesc
             Error NT AUTHORITY\ENTERPRISE DOMAIN CONTROLLERS doesn't have
                Replicating Directory Changes In Filtered Set
             access rights for the naming context:
             DC=ForestDnsZones,DC=hookemup,DC=local
             ......................... DC1-DEV-OFC failed test NCSecDesc
    In researching this I find "If you do not plan to add an RODC to the forest, you can disregard this error."
    We have not successfully run ADprep /rodcPrep nor do we plan on having any Read-Only DCs, so I think we can ignor this error. We did try running ADprep /rodcPrep but got an LDAP error which I can duplicate if this is important.
    Schema and Naming FSMOs are on a DC higher in the forest. RID, PDC, and Infrastructure FSMOs for the child domain are on the Virtual server (PDC).
    Any guidance on where to go from here would be greatly appreciated as I have no more hair on my head to pull.

    Ok... I ran repadmin /showreps /v again and it shows no errors
    C:\>repadmin /showreps /v
    Default-First-Site\DC1-DEV-OFC
    DSA Options: IS_GC
    Site Options: (none)
    DSA object GUID: b294c59f-8b46-4133-89c5-0f30bfd49607
    DSA invocationID: 1054285d-cffe-42b4-8074-e2d44adbb151
    ==== INBOUND NEIGHBORS ======================================
    CN=Configuration,DC=mydomain,DC=local
        Default-First-Site\HESTIA via RPC
            DSA object GUID: b464fde9-29d7-4490-9582-fe9270050d50
            Address: b464fde9-29d7-4490-9582-fe9270050d50._msdcs.mydomain.local
            DSA invocationID: afea3845-9fa8-40a6-a477-84348a206348
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 16381490/OU, 16381490/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 114817/OU, 114817/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\V-SVR01 via RPC
            DSA object GUID: e2f794eb-9658-4bad-b695-3d8c08f46371
            Address: e2f794eb-9658-4bad-b695-3d8c08f46371._msdcs.mydomain.local
            DSA invocationID: 07bb0fe9-bca9-46d1-92ce-308d36da478d
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 66047/OU, 66047/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\ATHENA via RPC
            DSA object GUID: cb00a5b0-6dea-473c-bb42-19356dd9ed36
            Address: cb00a5b0-6dea-473c-bb42-19356dd9ed36._msdcs.mydomain.local
            DSA invocationID: 57313a9c-46a2-4b94-87cc-b3f91d54faed
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 8098197/OU, 8098197/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
    CN=Schema,CN=Configuration,DC=mydomain,DC=local
        Default-First-Site\ATHENA via RPC
            DSA object GUID: cb00a5b0-6dea-473c-bb42-19356dd9ed36
            Address: cb00a5b0-6dea-473c-bb42-19356dd9ed36._msdcs.mydomain.local
            DSA invocationID: 57313a9c-46a2-4b94-87cc-b3f91d54faed
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 8097482/OU, 8097482/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\V-SVR01 via RPC
            DSA object GUID: e2f794eb-9658-4bad-b695-3d8c08f46371
            Address: e2f794eb-9658-4bad-b695-3d8c08f46371._msdcs.mydomain.local
            DSA invocationID: 07bb0fe9-bca9-46d1-92ce-308d36da478d
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 65239/OU, 65239/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 114149/OU, 114149/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\HESTIA via RPC
            DSA object GUID: b464fde9-29d7-4490-9582-fe9270050d50
            Address: b464fde9-29d7-4490-9582-fe9270050d50._msdcs.mydomain.local
            DSA invocationID: afea3845-9fa8-40a6-a477-84348a206348
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 16381373/OU, 16381373/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
    DC=ForestDnsZones,DC=mydomain,DC=local
        Default-First-Site\V-SVR01 via RPC
            DSA object GUID: e2f794eb-9658-4bad-b695-3d8c08f46371
            Address: e2f794eb-9658-4bad-b695-3d8c08f46371._msdcs.mydomain.local
            DSA invocationID: 07bb0fe9-bca9-46d1-92ce-308d36da478d
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 66295/OU, 66295/PU
            Last attempt @ 2012-10-29 13:57:48 was successful.
        Default-First-Site\ATHENA via RPC
            DSA object GUID: cb00a5b0-6dea-473c-bb42-19356dd9ed36
            Address: cb00a5b0-6dea-473c-bb42-19356dd9ed36._msdcs.mydomain.local
            DSA invocationID: 57313a9c-46a2-4b94-87cc-b3f91d54faed
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 8098367/OU, 8098367/PU
            Last attempt @ 2012-10-29 13:58:13 was successful.
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 115032/OU, 115032/PU
            Last attempt @ 2012-10-29 13:58:25 was successful.
        Default-First-Site\HESTIA via RPC
            DSA object GUID: b464fde9-29d7-4490-9582-fe9270050d50
            Address: b464fde9-29d7-4490-9582-fe9270050d50._msdcs.mydomain.local
            DSA invocationID: afea3845-9fa8-40a6-a477-84348a206348
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 16381653/OU, 16381653/PU
            Last attempt @ 2012-10-29 13:58:34 was successful.
    DC=mySUBdomain,DC=local
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 114871/OU, 114871/PU
            Last attempt @ 2012-10-29 13:54:02 was successful.
    DC=DomainDnsZones,DC=mySUBdomain,DC=local
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS WRITEABLE
            USNs: 114017/OU, 114017/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
    DC=mydomain,DC=local
        Default-First-Site\V-SVR03 via RPC
            DSA object GUID: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8
            Address: 53018cc4-b8c9-48ce-9a54-1b987e7b08c8._msdcs.mydomain.local
            DSA invocationID: 45de2c10-ec8b-443d-a645-db4e0a352a23
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS
            USNs: 114017/OU, 114017/PU
            Last attempt @ 2012-10-29 13:52:39 was successful.
        Default-First-Site\HESTIA via RPC
            DSA object GUID: b464fde9-29d7-4490-9582-fe9270050d50
            Address: b464fde9-29d7-4490-9582-fe9270050d50._msdcs.mydomain.local
            DSA invocationID: afea3845-9fa8-40a6-a477-84348a206348
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS
            USNs: 16381614/OU, 16381614/PU
            Last attempt @ 2012-10-29 13:56:52 was successful.
        Default-First-Site\V-SVR01 via RPC
            DSA object GUID: e2f794eb-9658-4bad-b695-3d8c08f46371
            Address: e2f794eb-9658-4bad-b695-3d8c08f46371._msdcs.mydomain.local
            DSA invocationID: 07bb0fe9-bca9-46d1-92ce-308d36da478d
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS
            USNs: 66325/OU, 66325/PU
            Last attempt @ 2012-10-29 13:58:34 was successful.
        Default-First-Site\ATHENA via RPC
            DSA object GUID: cb00a5b0-6dea-473c-bb42-19356dd9ed36
            Address: cb00a5b0-6dea-473c-bb42-19356dd9ed36._msdcs.mydomain.local
            DSA invocationID: 57313a9c-46a2-4b94-87cc-b3f91d54faed
            SYNC_ON_STARTUP DO_SCHEDULED_SYNCS
            USNs: 8098385/OU, 8098385/PU
            Last attempt @ 2012-10-29 13:58:38 was successful.

  • Front end Backend Modeling Configuration Reporting and Extraction.

    Hi..All
    Can Any one plz explain the terms "Front end","Back end" related to Modeling,Configuration,Reporting and Extraction.
    Thanks & Regards
    Jonn
    <u>[email protected]</u>

    Hi,
    Frontend is the reporting aspect, i.e Workbooks, queries, Web reporting, Crystal reports, etc.
    Its called the frontend as that's what the users see and they don't see what goes on in the 'backend' i.e Config and Extraction, data manipulations, etc.
    Modeling is used to design the cube, ODS, etc. Also modeling concepts can be used to design frontend queries as well.
    Cheers,
    Kedar

  • BOM explosion in sales order for configurable materials and variants

    Hi,
    I have these materials:
    A: configurable material (header)
    B: variant material (header)
    C: configurable material 1 (position)
    D: configurable material 2 (position)
    E:variant material 1 (position)
    F:variant material 2 (position)
    I can in the sales order explode in this way the BOM (using SD01 application in the position type of the header material):
    1) A --> C+D
    2) B --> E+F
    while I can't make the explosion in this way: A --> EF and A --> CE
    is this possibile? I want to make an explosion of a BOM for a configurable material  and having variants material as sons, or having mix sons (one configurable and one variant)
    Thank you
    Sandra

    Hi Sandara,
    Just check the BOM in cs03 u have maintained !!! If u have maintain the variant material there in the config mat BOM with object dependencies than u can explode !!!!
    Please let me knwo if u any query and also if u elabore more than will help u out

Maybe you are looking for

  • After upgrading to Apeture I lost half the photos. And can no longer download from my digital Camera. What can I do?

    After upgrading to Apeture I lost  half my photos from iPhoto. And find it difficut to transfer images from digital camers. Do you have a solution? Can I download direct to hard drive and skip Aperture?

  • Nokia 5800 restarts when opening themes

    Hi, I have been experiencing a problem with my nokia 5800 ,, everytime i go to the themes panel from settings the phone restarts , what could be the problem ? please help ... Thanks

  • Another victim of the horrid Blue Screen

    I hope someone can help me with this. I've been trying to fix this problem for most of the day. My iBook G4 started going into the blue screen during startup this morning. I've been able to start it up normally about three times today, but the other

  • Help: updating from 6 year old tech

    Hi forum, I currently have an old 12" toshiba laptop. I am long overdue to update my computer equipment, my primary intention is so i can start collecting quality photo and video memories of my wife, future kids, holidays special events etc. Original

  • How to cancel order made today?

    Could I ask for help wit canceling my order made today for moving phone line from Sky and for broadband. Apparently my partner sorted Sky issues when I was ordering BT. What should I do?