Navs Issue

Dear Gurus,
                        am configuring CST using MM pricing procedure.In purchase order the material price is 1500 rs. I gave CST 5% amount manually.but this amount not showing in the net amount.
                        in pricing i use VST as account key for NAVS.
                       My question is wer should i check the tax amount gng??
plz explain...........
thx in adv.........

Dear Nisha,
                           thanks for ur reply.My client wants to calculate tax by tax code and they wants to give octroi manually.
but this scenario not possible.
                           so that am configuring tax procedure and octroi manually using mm pricing procedure.
                          Now everything working fine.
                           but i want where the amount of NAVS gng?where to check that??
plz reply.............
thx in advance.........

Similar Messages

  • Responsive Nav Issue

    I've asked a lot of questions on here about the responsive nav on my site and I have 2 last issues with it.
    1. I want the nav bar to behave as it does, but be centered on the screen.  Can't seem to get it off of the left.
    2. The drop down menu under Media uses images instead of text.  The images are stretching/shrinking to fit the space but I want them to fit at their actual size.
    How can I achieve these two things?  Here's a link for example, and my code.
    http://www.jradrocks.com/indexnew2
    HTML
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>J.Rad</title>
    <link type="text/css" rel="stylesheet" href="main.css" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
    <body>
    <header><img src="Background-Images/Sick-Fantasy-Banner.png" alt="Banner Image"></header>
    <div>
    <nav id="nav" role="navigation">
        <a href="#nav" title="Show navigation"><img src="Background-Images/Menu.png" alt="Menu"></a>
        <a href="#" title="Hide navigation"><img src="Background-Images/Menu.png" alt="Menu"></a>
        <ul>
            <li><a href="/"><img src="Background-Images/News.png" alt="News"></a></li>
            <li><a href="/"><img src="Background-Images/Bio.png" alt="Bio"></a></li>
            <li><a href="/"><img src="Background-Images/Tour.png" alt="Tour"></a></li>
            <li><a href="/"><img src="Background-Images/Store.png" alt="Store"></a></li>
            <li>
                <a href="/" aria-haspopup="true"><img src="Background-Images/Media.png" alt="Media"></a>
                <ul>
                    <li><a href="/"><img src="Background-Images/Music.png" alt="Music"></a></li>
                    <li><a href="/"><img src="Background-Images/Photos.png" alt="Photos"></a></li>
                    <li><a href="/"><img src="Background-Images/Videos.png" alt="Videos"></a></li>
                </ul>
            </li>
            <li><a href="/"><img src="Background-Images/Contact.png" alt="Contact"></a></li>
        </ul>
    </nav>
    <nav id="social" role="navigation">
        <ul>
            <li><a href="/"><img src="Background-Images/Instagram.png" alt="Instagram"></a></li>
            <li><a href="/"><img src="Background-Images/YouTube.png" alt="YouTube"></a></li>
            <li><a href="/"><img src="Background-Images/Twitter.png" alt="Twitter"></a></li>
            <li><a href="/"><img src="Background-Images/Facebook.png" alt="Facebook"></a></li>
        </ul>
    </nav>
    </div>
    <div class="clearfix"></div>
    <div id="container">
    <section id="left-column">
      This is the left column.<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
    </section>
    <aside id="right-column">
      This is the right column.<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
    </aside> 
    </div>
    <footer>
    </footer>
    </body>
    </html>
    CSS
    @charset "UTF-8";
    /* CSS Document */
        margin: 0; 
        padding: 0; 
    body {
      height:100%;
      background-attachment: fixed;
      background-image: url(Background-Images/Sick-Fantasy-Background.png);
      background-position: center top;
      background-size:cover;
    header {
      overflow:hidden;
      background-size:cover;
      background-image: url(Background-Images/Rust-and-Foamy-Blood-Texture.png);
      background-position: center center;
    header img { 
        display: block; 
        margin: auto; 
    img {
      max-width:100%;
    div {
      width:100%;
      max-width:960px;
      background-color:#000000;
      background-size:cover;
    #nav
      width: 100%; /* 1000 */
      position: absolute;
      background-color:#000000;
      background-size:cover;
      #nav > a
      display: none;
      #nav li
      position: relative;
      #nav li a
      display: block;
      #nav li a:active
      background-color: #996600 !important;
      #nav span:after
      display: inline-block;
      position: relative;
      /* first level */
      #nav > ul
      background-color: #000000;
      margin-left:25px;
      #nav > ul > li
      float: left;
      list-style:none;
      #nav > ul > li > a
      height: 100%;
      #nav > ul > li:hover > a,
      #nav > ul:not( :hover ) > li.active > a
      background-color: #996600;
      /* second level */
      #nav li ul
      background-color: #e15a1f;
      display: none;
      position: absolute;
      list-style:none;
      #nav li:hover ul
      display: block;
      #nav li:not( :first-child ):hover ul
      left: 0px;
      #nav li ul a
      #nav li ul li a:hover,
      #nav li ul:not( :hover ) li.active a
      background-color: #996600;
    #social
      float:right;
      background-color:#000000;
      background-size:cover;
      #social > a
      display: none;
      #social li
      position: relative;
      #social li a
      display: block;
      #social li a:active
      background-color: #996600 !important;
      #social span:after
      display: inline-block;
      position: relative;
      /* first level */
      #social > ul
      background-color: #000000;
      margin-right:25px;
      #social > ul > li
      float: right;
      list-style:none;
      #social > ul > li > a
      height: 100%;
      #social > ul > li:hover > a,
      #social > ul:not( :hover ) > li.active > a
      background-color: #996600;
    .clearfix {
        clear:both;
        display:block;
    #container {
      width:960px;
      margin-top:10px;
      margin-left:auto;
      margin-right:auto;
      margin-bottom:auto;
    #left-column {
      width:63%;
      float:left;
      background:url(Background-Images/Transparent-Black-Background.png);
      padding:5px;
      margin-right:2%;
      margin-bottom:2%;
    #right-column {
      width:33%;
      float:left;
      background:#FF0000;
      padding:5px;
      margin-bottom:2%;
    .clearfix {
        clear:both;
        display:block;
    footer {
      background-color: #000;
      background-size:cover;
    @media screen and (max-width:1024px) {
      #body {
         width:100%;
      #header {
         width:100%;
      #container {
      width:100%;
      #left-column {
      width:62%;
      margin-left:1%;
      #right-column {
      width:31%;
      float:right;
      margin-right:1%;
      img {
      width:100%;
    @media screen and (max-width:670px) {
      #nav
            width:100%;
      position: absolute;
            #nav > a
            #nav:not( :target ) > a:first-of-type,
            #nav:target > a:last-of-type
                display: block;
        /* first level */
        #nav > ul
            display: none;
            position: absolute;
            #nav:target > ul
                display: block;
            #nav > ul > li
      float: none;
      list-style:none;
        /* second level */
        #nav li ul
            position: static;
      #nav img {
        width:inherit;
      #social > ul
      margin-right:0px;
      #container {
      width:100%;
      #left-column {
      width:100%;
      margin-left:0px;
      #right-column {
      width:100%;
    @media screen and (max-width:300px) {
      #header {
         width:100%;
      background-size:cover;
      #container {
      width:100%;

    Do you really need to support IE8?  Very few people still use it. 
    If you must support IE8, create an IE-only stylesheet with your desktop layout styles.  Insert it inside  a conditional comment for pre-IE9 browsers. 
    Make sure to insert this after all other styles and stylesheets, just before your closing </head> tag.
    <!--[if lt IE 9]>
    <link href="IE-only.css" rel="stylesheet" type="text/css">
    <![endif]-->
    </head>
    Nancy O.

  • Overlapping BSS/NAV Issue

    Hi All,
    Just a theoretical question here. Both networks in clear with no encryption or authentication.
    If I had an AP that was on my location and it was for corporate data traffic for my employees - on Channel 6 - SSID Corporate
    Then
    There is a coffee shop AP next door again on channel 6 and both APs are very close together - SSID Coffeeshop
    The medium is shared, so all my wireless employees would receive the coffee shop traffic and the coffee shop devices would receive my corporate data traffic. Is that correct?
    Also, if a coffee shop packet is transmitted into the RF, and I receive it, my corporate data traffic would receive the packet, set the NAV on my corporate client and defer sending until the medium is free again, is this correct?
    Many thx indeed,
    Ken

    Hi Elliott,
    Im kinda confused, so please bear with me mate please
    The RF cells are overlapping (co-channel interference).  (Please see jpeg image)
    Question 1a
    I was under the impression that the RF medium was the same as ethernet medium.  All traffic is flooded out to the medium, then every STA in that medium receices that frame, then inspects the mac layer address and if it does not contain a destination MAC layer address of itself, the STA simply drops it.
    Question 1b
    So with the situation of two networks operating in the same frequency, the coffee shop user sends a frame into the air (lets just say is is simply browsing the web and does a HTTP request and sends it to his default gateway),  all STAs and APs on corporate network and coffee shop network receive this packet,  the coffe shop AP is the default gateway so accepts it, all other devices drop the frame.
    Question 2
    So if both parts to question 1 are correct,  when the coffee shop user sends that frame, I would assume all STAs and APs on coffee shop network and corporate network, that operate in that frequency, will receive that frame, look at the duration field in the frame and set their NAV field to defer sending for the NAV.
    Could we please clarify this point.
    Many thx indeed for the great help,
    Ken

  • Nokia N93 questions

    hey guys...
    i just got myself the n93 a few weeks back and i have a few questions. I want to get the sat nav software for my phone, i was told i need to get some other stuff as well...is this true or is the seller trying to rip me off? one more, whats the largest capacity for the mmc supported without causing any problems? Thanks in advance.
    just breathe

    i see...im looking to get the 1gb one for now because i dont store too many songs in my phone but having 2gb is always better..hehe...i looked up more info on the sat nav issue and it seems that it requires a bluetooth gps module which would enable the satelites to locate the position of the phone...anyone tried sat nav on the n93? i would really appreciate feedbacks...its not necessary for me to have it at all but i just like the thought of having it..
    just breathe

  • IE problems

    Hi there,
    I am having problems with my top navigation bar in IE 7 & under (8 seems to be fine), where the last link "press" has dropped to the next line under "home".
    And in IE 6 & under my sidebar nav has moved over to the right.
    I am new to this so I have been trying to work out what bugs have been causing this so I can apply Conditional comments.
    Could the side bar nav issue be the double float margin bug? I am still trying to work out what bug relates to the top nav.
    Does anyone know?
    http://www.denotestationery.com/denote_localroot1/denotehome.html
    Thanks in advance

    UPDATED:
    Try this in your CSS, you need to expand the div to 675px;
    #topnavcontainer {
    BACKGROUND-IMAGE: url(navlines.png);
    MARGIN-TOP: 35px;
    WIDTH:675px;
    DISPLAY: inline;
    BACKGROUND-REPEAT: repeat-x;
    FLOAT: right;
    HEIGHT: 34px;
    MARGIN-RIGHT: 30px
    Jim
    Your width of your #topnavcontainer is too narrow also. If you increase the size to 675px, it displays correctly if  you put  your float back in.

  • N73 v3.0704.1.0.1 vs v4.0726.2.0.1

    Comparing the last firmware released (v4.0726.2.0.1) with a older one (v3.0704.1.0.1), these are proven to be the main Pros & Cons:
    Pros:
    - The Music Player from N73 ME
    - New RealPlayer version
    - New Quickoffice version
    - "Search" app with plugins
    - "Web", "Download!" & "Services" are grouped in a new folder called "Internet"
    - Better memory management
    - Stereo Bluetooth A2DP profile
    - FOTA support under "Device Mgr."
    - Switching between White balance modes (Sunny, Cloudy, Incandescent, Fluorescent) are visible in the preview window
    Cons:
    - Music Player starts by default with the phone OS
    - A blinking cursor that appears in the right on the active call baloon
    - No more "Snakes"; even worse, after installing this game manually from N95 support page the device needs about 85 seconds to boot-up
    - No more 3D Effects and other sounds
    - No more support for bluetooth GPS receivers under third party apps like Tom-Tom and Route66; the older v3.0704.1.0.1 used to have this kind of support
    - Camera focus & shutter sounds are very louder and a second late than the real focus/shutter moments
    - In Close-up mode, the distance between the camera and the subject now is way bigger (at least 8 - 10 cm)
    Nokia, hope you preserve the Pros and fix the Bugs in your next FW release.
    Best regards,
    Previous (starting with '99): 5110 (2 pcs.); 6110; 6150 (2 pcs.); 6210; 6310i; 6680; N70; N73; N82 Silver; N97 Transition Black; N97 mini Cherry Black; iPhone 3GS 16GB Black; iPhone 4 16GB Black; N8-00 Dark Grey; iPhone 4S 16GB Black; iPhone 5s 32GB Space Gray
    Current: 808 PureView Black (Nokia Belle FP2, v113.010.1507) & iPhone 6 64GB Space Gray (iOS 8.1.2)

    Thanks Dj_nick I appreciate your reply. Just a note to you all. Yet another opinion here to add to the vast amount.
    I find the update grand. Phone is MUCH quicker loading the memory, loading the camera, or most noticable of all is browsing the gallery. the pictures load up twice as fast when cycling through the gallery. The small camera is definitely much better. less noise. Have not taken any big pics off the phone onto the PC yet but they look good in the phone and the size looks fine. not too small in KB at all.
    Thats my experience of the new package. All my apps were on my memory card not my phone memory so no hassle restoring them. Im delighted with 4.07. Im sorry to hear some of you are having the sat nav issues. hope it gets sorted for you soon.
    If you don't have sat nav and are just concerned about the camera etc, go for it. looks perfect to me and I take tons of pics. I've heard its sharper too, but no idea till I examine my pics on PC. the music player is better too for you non ME phones like mine. You can now seek through a track and the feel is more like an mp3 player than before.
    Hope this helps.
    Neil
    5110, 3210, 3220, 8210, 8850, 7210, 6230i, N73, N95 8gb, E51, N82

  • Corrupt Dreamweaver CS3 files

    I've been working on a websites, my second one, for over a
    month now and I've really enjoyed getting to know Dreamweaver CS3.
    Unfortunately, the inevitable happened last night.
    I returned to my computer (Macbook Pro OSX 10.4.11) and
    opened my html and CSS files and both were corrupt. All the code
    was gone and some sort of jibberish was in it's place. This is the
    second time this has happened and I have not installed any
    extensions.
    There was no error message when I opened the file and I can
    only guess what the problem might be. I recently moved the files
    from my local folder to my desktop because I wasn't ready to
    publish yet. Dreamweaver, or my Mac, was also having trouble
    recognizing Jpeg files.
    I'm pretty disappointed but really don't know what to do.
    I've considered two resolutions, neither of which is very
    appealing. First, I could reinstall Dreamweaver and make sure all
    files are placed properly in the root folder, or second, I could
    reinstall the entire OS and all CS3 apps.
    I know recovering the files is not likely, and I have earlier
    versions saved, but more importantly, I want to make sure
    Dreamweaver works properly in the future so I can avoid having to
    redo weeks of work. If anyone has advice or has experienced
    something similar, I would sincerely appreciate your input.
    Many thanks.
    Doug

    Thanks much for the reply.
    This isn't a live site so no FTP or remote server was
    involved. I wonder if moving the files to my desktop caused the
    problem? All files for the site were originally set up in the
    shared folder for publishing from the mac but they were always
    local. I moved them to the desktop to rebuild and test a rollover
    nav issue which I was able to resolve (a big step forward)
    But now, all files are corrupt.
    I'm seriously considering reinstalling the entire OS and
    apps. Backing up all my design files and the resources saved to
    bridge would be a pain, for sure, but the main goal is to have a
    stable environment for development moving forward as I'll be taking
    courses to incorporate mySQL and PHP this fall.
    This did happen one other time, so maybe it's an installation
    issue. I wish I could provide more info but I'm stumped.
    Disappointing...

  • SG is released OS v3.2.1 ROM (111109_SG)

    Finally is released. 
    Flash successful but after restart there is a lot of Force close on the installed applications. 
    To overcome this you need to perofrm a factory reset. 
    Thanks 

    Thanks Dj_nick I appreciate your reply. Just a note to you all. Yet another opinion here to add to the vast amount.
    I find the update grand. Phone is MUCH quicker loading the memory, loading the camera, or most noticable of all is browsing the gallery. the pictures load up twice as fast when cycling through the gallery. The small camera is definitely much better. less noise. Have not taken any big pics off the phone onto the PC yet but they look good in the phone and the size looks fine. not too small in KB at all.
    Thats my experience of the new package. All my apps were on my memory card not my phone memory so no hassle restoring them. Im delighted with 4.07. Im sorry to hear some of you are having the sat nav issues. hope it gets sorted for you soon.
    If you don't have sat nav and are just concerned about the camera etc, go for it. looks perfect to me and I take tons of pics. I've heard its sharper too, but no idea till I examine my pics on PC. the music player is better too for you non ME phones like mine. You can now seek through a track and the feel is more like an mp3 player than before.
    Hope this helps.
    Neil
    5110, 3210, 3220, 8210, 8850, 7210, 6230i, N73, N95 8gb, E51, N82

  • For those who are interested in buying a W520: flaw summary

    Hey,
    I´m still indecisive whether I want to get my own W520 or not. Part of it of course is the number of issues people have been unveiling in this forum. For all those who are considering too, and for my self I'd like to summarize the bugs and flaws that are still present and those that had been fixed by Lenovo since the launch of the W520 back in march.
    No question, the W520 is a nice and impressive machine and no laptop out there comes with really no problems at all.
    I guess it's just looking like Lenovos are quite flawed these days because everyone expects those to be 100% fine, since they are thinkpads and thinkpads are as a matter of a fact flawless.
    Quick list of things that should (hopefully) sooner or later be fixed:
    Software bugs and flaws:
    power management regulation that's supposed to keep the battery alive by limiting the CPU to 800 MHz does get confused by changing the power supply while sleeping, resulting in a throttled machine with AC power supply or a unthrottled machine running on battery, unless you plug-out and plug-in your power supply again while running
    troublesome bluetooth driver wiped some harddrives (fixed now, or at least that particular driver is no longer downloadable)
    fancontrol goes crazy and pulses every 5 or 30 seconds (for many people)
    fan is too active (too loud) while having no or low load on the system
    warmboot issues with an SSD as main drive delays startup because of an unnecessary check
    some driver seems to constantly write something onto your main drive while the ODD is mounted (which would lead to wearing out a SSD, not confirmed by others yet)
    Hardware bugs and flaws:
    fan creates a high frequent noise starting at 2nd level of speed (?)
    many accessory products like the docking station and the ultra bay HDD carrier were advertised as fitting for the W520 as well as for the W510, but obviously don't fit
    (two people in this forum had dieing speakers that would do nothing but make a clicking noise)
    Is this pretty much what I'll run into when I order my own W520 or did I miss something?
    For the time being:
    using TPFC
    always restart manually with "shutdown" while using a ssd
    double checking if it's the right docking and ultra bay for the w520
    and plugging the power supply just after turning the machine on
    solves all the issues reportet here, except for the high pitched noise of the fan, that many people complain about,
    or doesn't it?
    (not listed abone for beeing more a feature than a bug or something like that:
    ultra nav issues caused by manufacturers settings
    network issues caused by manufacturers setting
    problems with unsupported ram)
    so long,
    and thanks for all the fish

    The issue that is most annoying for me is"
    - warmboot issues with an SSD as main drive delays startup (by 40 seconds) because of an unnecessary check
    (I have the Intel 510 SSD).
    Otherwise, the W520 is the best laptop I have ever owned and very FAST!!!
    W520 4270CTO i7-2820QM Quadro2000M 1920x1080 Display 16GB RAM 2x240GB Intel 510 SSDs (RAID 0) - BIOS 1.42 - PCMark7:4,568
    Samsung Series 9 15-inch NP900X4C-A03US - PCMark7: 4674

  • Report Issue - Nav Attribute

    Hi All,
        Here is my issue...
    I've a sales report against Multi Provider to display a filed <b>'Province Ship To'</b>, it is a Nav attribute of <b>'Customer Ship To'</b>. I've verified in mastre data of <b>'Province Ship To'</b> that there are values for both text (Medium & Short) & Key and also verified values exits in MP through LISTCUBE. But when I run a query I'm getting 'Not Assigned" value for <b>'Province Ship To'</b> and I need to see full description it.
    I'd appreciate if some one could help me on this as this is urgent...
    Thanks
    BI Consultant

    Thats what I did, display as both TEXT & KEY. For KEY it is  showing up, for example OR in KEY but not showing up the description for TEXT/Name column, isntead it is showing as "Not Assigned" for all records.
    I've verified Short & Med description extits for all records in Masterdata.
    Example:
    <b>Key                                    Txt/Name Desc.</b>
    OR                                         Oregon
    CA                                          California
    CT                                           Connecticut
    Thanks

  • Issue in KM Nav iView with the customized Layoutset after upgrade7.3

    Hi Experts,
        Do we need to do any post configuration of customized Layout set after upgrade to 7.3?.All the KM Navigation iviews which is using the customized Layout set is throwing error.Able to see the content of the KM folder in iView but when i click on the link it throws
    403
    The requested operation is forbidden for this resource.
    stack trace
    com.sapportals.wcm.protocol.webdav.server.WDServletException
         at com.sapportals.wcm.protocol.webdav.server.WDGetHandler.handleRedirectCase(WDGetHandler.java:860)
         at com.sapportals.wcm.protocol.webdav.server.WDGetHandler.internalHandle(WDGetHandler.java:355)
         at com.sapportals.wcm.protocol.webdav.server.WDGetHandler.handle(WDGetHandler.java:280)
         at com.sapportals.wcm.protocol.webdav.server.WDServlet.doGet(WDServlet.java:846)
         at com.sapportals.wcm.protocol.webdav.server.WDServlet.service(WDServlet.java:523)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
         at com.sapportals.wcm.portal.proxy.PCProxyServlet.service(PCProxyServlet.java:344)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
         at com.sap.portal.prt.broker.ServletComponentItem$ServletWrapperComponent.doContent(ServletComponentItem.java:99)
    If i remove the Layout set from the iview then i could able to access the links in the KM Nav iView.
    I tried to import the Layoutset from another development environment,but its throwing exception
    ConfigException: while trying to invoke the method com.sapportals.config.service.impexp.IConfigImport.doImport(com.sapportals.config.service.impexp.Scenario) of an object loaded from field com.sapportals.wcm.control.config.ConfigImport.configImport of an object loaded from local variable 'this'
    If i Navigate to System Admin->Knowledge Management->content Management->User Interface->Settings->Layout set i am getting the below warning at the top
    The following configuration objects have some invalid or problematic properties: "pccMimesSelector"
      If any of you faced these issue.Please provide valuable suggestion
    Naga

    Hi Jitendra,
    Kindly see the reply Johan has given.
    <i>But I thought of something else. If you only want to use this for showing a document on the logon page, perhaps it is easier to create a portal component which retrieves the content of the KM document using the service user, and just copy this content to the output stream of the response. Then set the authscheme of this component to anonymous. You won't have any security risks in this approach, because anonymous users have no way of accessing KM content.</i>
    I guess that should solve your problem. You can create a component with AuthScheme as anonymous and in the component, read the KM doc using a service user. Then you can display the content to the end user.
    Hope this helps you.
    Regards
    Ranjith

  • Issue with nav buttons in an image gallery

    Hello,
    I'm very new to flash and am using CS4/AS3. I have three image galleries of three images each. The images load dynamically from files on my computer. I've set it up so that when you click on a tab, you see a different set of three images.
    The images load properly and it works to click forward to view them (that is, clicking on the image itself or the forward nav arrow). The issue I'm having is with the backward nav arrow. I keep geting an error message "Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found" when I click it.
    The backward nav arrow works on the first gallery (egypt gallery) if I click that one first. But it doesn't work on the other two, and if I click back to the Egypt gallery after having been in the other two galleries, the back navigation no longer works in their either.
    Basically, I want the user to be able to click on a tab to load the images, and then be able to click back and forth between the images. If they reach the last image in a gallery, I just want it to stop advancing and stay put on the final image, but for the user to be able to click backwards through them if desired. My code is pasted below (I'm sure it's more complicated than it needs to be... just a result of me being a complete novice!)
    Any help or suggestions would be very much appreciated. Thanks so much.
    stop();
    //egypt gallery//
    var myloader:Loader = new Loader();
    var myrequest:URLRequest = new URLRequest("images1/egypt1.jpg")
    var counter:Number=1
    var total:int=3;
    egypt_mc.addEventListener(MouseEvent.CLICK, cover);
    function cover (e:MouseEvent):void{
    object1_mc.x=414.15;
    object1_mc.y=101.35;
    object2_mc.x=520;
    object2_mc.y=60;
    object3_mc.x=630;
    object3_mc.y=60;
    left_mc.x=15;
    left_mc.y=340;
    right_mc.x=680;
    right_mc.y=340;
    stage.addChild(myloader);
    myloader.x = 28;
    myloader.y = 175;
    myloader.load(myrequest);
    myloader2.unload();
    myloader3.unload();
    myloader.addEventListener(MouseEvent.CLICK, shownextpicture)
    function shownextpicture(e:MouseEvent):void{
    counter = counter + 1;
    if(counter<=total){
    myrequest.url="images1/egypt"+counter+".jpg"
    myloader.load(myrequest)
    right_mc.addEventListener(MouseEvent.CLICK, forward)
    function forward(e:MouseEvent):void{
    counter = counter + 1;
    if(counter<=total){
    myrequest.url="images1/egypt"+counter+".jpg"
    myloader.load(myrequest)
    left_mc.addEventListener(MouseEvent.CLICK, back)
    function back(e:MouseEvent):void{
    counter = counter - 1;
    if(counter>0){
    myrequest.url="images1/egypt"+counter+".jpg"
    myloader.load(myrequest)
    //wikileaks gallery//
    var myloader2:Loader = new Loader();
    var myrequest2:URLRequest = new URLRequest("images2/wikileaks4.jpg")
    var counter2:Number=4
    var total2:int=6;
    wiki_mc.addEventListener(MouseEvent.CLICK, cover2);
    function cover2 (e:MouseEvent):void{
    object1_mc.x=410;
    object1_mc.y=60;
    object2_mc.x=521.35;
    object2_mc.y=102;
    object3_mc.x=630;
    object3_mc.y=60;
    left2_mc.x=15;
    left2_mc.y=340;
    right2_mc.x=680;
    right2_mc.y=340;
    stage.addChild(myloader2);
    myloader2.x = 28;
    myloader2.y = 175;
    myloader2.load(myrequest2);
    myloader.unload();
    myloader2.unload();
    myloader2.addEventListener(MouseEvent.CLICK, shownextpicture2)
    function shownextpicture2(e:MouseEvent):void{
    counter2 = counter2 + 1;
    if(counter2<=total2){
    myrequest2.url="images2/wikileaks"+counter2+".jpg"
    myloader2.load(myrequest2)
    right2_mc.addEventListener(MouseEvent.CLICK, forward2)
    function forward2(e:MouseEvent):void{
    counter2 = counter2 + 1;
    if(counter2<=total2){
    myrequest2.url="images2/wikileaks"+counter2+".jpg"
    myloader2.load(myrequest2)
    left2_mc.addEventListener(MouseEvent.CLICK, back2)
    function back2(e:MouseEvent):void{
    counter2 = counter2 - 1;
    if(counter2>4){
    myrequest.url="images2/wikileaks"+counter2+".jpg"
    myloader2.load(myrequest2)
    //scientology gallery//
    var myloader3:Loader = new Loader();
    var myrequest3:URLRequest = new URLRequest("images3/scientology7.jpg")
    var counter3:Number=7
    var total3:int=9;
    scien_mc.addEventListener(MouseEvent.CLICK, cover3);
    function cover3 (e:MouseEvent):void{
    object1_mc.x=410;
    object1_mc.y=60;
    object2_mc.x=520;
    object2_mc.y=60;
    object3_mc.x=629.95;
    object3_mc.y=100.8;
    left3_mc.x=15;
    left3_mc.y=340;
    right3_mc.x=680;
    right3_mc.y=340;
    stage.addChild(myloader3);
    myloader3.x = 28;
    myloader3.y = 175;
    myloader3.load(myrequest3);
    myloader.unload();
    myloader2.unload();
    myloader3.addEventListener(MouseEvent.CLICK, shownextpicture3)
    function shownextpicture3(e:MouseEvent):void{
    counter3 = counter3 + 1;
    if(counter3<=total3){
    myrequest3.url="images3/scientology"+counter3+".jpg"
    myloader3.load(myrequest3)
    right3_mc.addEventListener(MouseEvent.CLICK, forward3)
    function forward3(e:MouseEvent):void{
    counter3 = counter3 + 1;
    if(counter3<=total3){
    myrequest3.url="images3/scientology"+counter3+".jpg"
    myloader3.load(myrequest3)
    left_mc.addEventListener(MouseEvent.CLICK, back3)
    function back3(e:MouseEvent):void{
    counter = counter - 1;
    if(counter>0){
    myrequest.url="images3/scientology"+counter+".jpg"
    myloader.load(myrequest)

    You want to have the trace triggered when the problem occurs, so if the problem occurs when you use your back button, then you want to tie it in to that somehow.  I don't know why you are trying to trace all that you show.  The main thing you want to find out is why it is not finding the file, which will be defined by whatever value it is trying to use as a url.  Try to focus on the data you need to see and not just anything that comes to mind.

  • My Bootstrap nav conundrum: Does anyone who has used a bootstrap nav in BC had this issue...

    My Bootstrap nav conundrum: Does anyone who has used a bootstrap nav in BC had this issue or know the fix: If you look at any page on http://www.aerotype.com, the first two clicks on almost any part of the page (like the rotator image left or right arrow) cause the page to jump, and you open the inspector on the top nav area and look at the div with the class="navbar-collapse collapse navbar-right navbar-ex1-collapse" you'll see that an additional class, .in, is added and .collapse is removed on the first click, and a style="height: auto;" is added, then on the second click it's changed to style="height: 0;"... I can't figure our what is causing 'in' to be added to the class (or .collapse removed), what it's for, or how to change it, if that is the issue... the his doesn't happen when the class: navbar-collapse is removed, so I think is has something to do with that but of course the collapse doesn't function without it. If anyone can enlighten me on what is going on I would Greatly appreciate it.

    You have this click function on the top'ish part of your site.js that is causing this issue!
    // collapse navbar in phone mode on click $(document).on('click',function(){ $('.navbar-collapse').collapse('hide'); }) // end collapse navbar in phone mode on click
    Your are better off just deleting it (the click function) as it is not doing what the code comment says it does.

  • Analysis Authorization for nav Attr Issue

    Hello:
    I have a 0COMP_CODE as an attribute of 0SALSORG and it is marked as authorization relevant. i.e 0SALESORG_0COMP_CODE is authorization relevant.
    I created an analysis authorization Object ZCOMPCODE_1000 by adding following in it.
    InfoObject           Value
    0COMP_CODE  = 1000
    0SALESORG = *
    0SALESORG_0COMP_CODE = 1000
    0TCAACTVT = *
    0TCAIPROV - *
    0TCAKYFNM = *
    0TCAVALID = *
    Now I have a report on a cube which has 0SALESORG as char and also 0SALESORG as a variable on selection.
    When I run a query for sales org = 1000, I can see rsults as sales org 1000 is assigned to company code 1000.
    If I run report for sales org 2000, I should get not authorized message as 2000 is not assigned to company code 1000 and I only have a role assigned to me which has analysis authorization object ZCOMPCODE_1000. But Still I am getting report results.
    Please explain Why and How can I overcome this issue.
    Thanks

    First of all it is strange that we see two appearances of sales org.
    0SALESORG = *
    0SALESORG_0COMP_CODE = 1000
    Probably the star value overrides the setting in the second one.
    Besides did you create the variable in the query as authorization relevant or you will have problems there.

  • Web Template Nav Block char issue.

    Hi folks,
    We have an issue with one of our web templates.  In one of the navigation blocks there are some characteristics, for example, some are like as below.
    G/L Account
    Asset
    Cost Center
    Order
    Network
    WBS Element
    Cost Center (Accoung string -correct object)
    Sales document
    The second object from bottom supposed to show as 'Account String' since the char is accounting string itself, insted, it is showing as Cost Center which is not correct.
    The web template has 'personalization' checked.
    This issue is happening with one user id.  For other users (using their logon credentials), it is showing correctly.
    I really appreciate any inputs.
    Thanks.
    G.

    Duplicate thread........
    I have already answered this in other forum.

Maybe you are looking for

  • When creating a new document, how do I designate an AA  cover master and BB back page master?

    I am starting a new document with CS-5 that is a pamphlet with different header and footers on the cover page, back page and internal pages. How do I designate the AA cover page, BB back page and internal A Master pages in the page menu?

  • I can no longer create a new folder on my desktop

    Both my boyfriend and I have searched ad nauseum and cannot find out why I can no longer create a new folder on my desktop. When we try, we get an error message that says "the operation can't be completed because you don't have the necessary permissi

  • Matrox MXO2 mini

    Hi I have for some time used the Matrox MXO2 mini on one of my two Premiere Pro CC PC's, and wanted to share my experience in case others was wondering how it is. http://www.matrox.com/video/en/products/mxo2_mini/ My config on the PC is: ASUS X79 Pro

  • Wine + WoW black background, no/stretched models

    Before the new xorg update I could play World of Warcraft on my laptop just fine, as shown in the screenshot below: http://image.devmonkey.nl/files/1/Scrot … _scrot.png After the update something changed, I still can't find what I have to change but

  • Max screen resolution different under lion?

    okay, is it just me, or does a 4 year old 20" imac have a smaller max resolution under lion than it did before?  it's kind of hard to tell if everything is bigger now, but without doubt all the icons on my desktop are a LOT bigger than they were befo