Help in clear ..................

hi  Gurus...
i have a small issue in my report where
my select is working good and satisfying the screen condition and according fetches values
but inside the loop ,  i have used a read stmt to  check sy-subrc NE 0 and gets appended to my itable ,
but thing is that , when i have a conditio which doesnt satisfy the sel. screen
the field that is inside the  read stmt ...tat column value  alone returns in the  ALV , i have used the clear but than its showin in the o/p.
wat ever field i use inside the read get shown in the o/p thou the cond is not satisfied, where to clear
PLZ HELP
i have given my code..........................
  LOOP AT it_pos INTO wa_pos .
    READ TABLE it_kna1 INTO wa_kna1 WITH KEY kunnr = wa_pos-konto .
    IF sy-subrc = 0.
      wa_final-name1 = wa_kna1-name1.
      wa_final-budat = wa_pos-budat.
      READ TABLE it_t005u INTO wa_t005u WITH KEY  bland = wa_kna1-regio.
      IF sy-subrc = 0.
        wa_final-bezei = wa_t005u-bezei.
      ENDIF.
    ENDIF.
*read table it_vbrp into wa_vbrp with key vbeln = wa_vbeln.*
*if sy-subrc ne 0.*
*wa_final-xblnr = wa_pos-xblnr.
*append wa_final to it_final.
*endif.
    LOOP AT it_vbrp INTO wa_vbrp  WHERE  vbeln = wa_vbeln .
      READ TABLE it_vbrk INTO wa_vbrk WITH KEY vbeln = wa_vbrp-vbeln.
      IF sy-subrc = 0.
        wa_final-knumv = wa_vbrk-knumv.
      ENDIF.
      wa_final-arktx = wa_vbrp-arktx.
      wa_final-fkimg = wa_vbrp-fkimg.
      wa_final-sgtxt = wa_pos-sgtxt.
      LOOP AT it_konv INTO wa_konv WHERE knumv = wa_vbrk-knumv AND  kposn = wa_vbrp-posnr.
        wa_pos-dmshb = ( wa_konv-kwert ) - ( ( wa_konv-kwert * ra_data ) / 100 ).
        wa_final-dmbtr = wa_pos-dmshb.
        APPEND wa_final TO it_final.
      ENDLOOP.
    ENDLOOP.
    CLEAR:  wa_kna1, wa_t005u,wa_vbrk, wa_vbrp, wa_konv, wa_final, wa_pos.
  ENDLOOP.
Edited by: Matt on Apr 13, 2009 8:02 AM Please wrap code in  tags.  See how much easier it is to read!
Edited by: Matt on Apr 13, 2009 8:03 AM - corrected indenting

LOOP AT it_pos INTO wa_pos . -
>>> main loop
READ TABLE it_kna1 INTO wa_kna1 WITH KEY kunnr = wa_pos-konto . -->> 1st read
IF sy-subrc = 0.
   wa_final-name1 = wa_kna1-name1.
   wa_final-budat = wa_pos-budat.
   read table it_t005u into wa_t005u with key bland = wa_kna1-regio.
   If sy-subrc = 0.
   wa_final-bezei = wa_t005u-bezei.
   Endif.
Endif.
   read table it_vbrp into wa_vbrp with key vbeln = wa_vbeln.  --->> 2nd read
   If sy-subrc NE 0.
   wa_final-xblnr = wa_pos-xblnr.
   append wa_final to it_final.
   Endif.
Loop at it_vbrp into wa_vbrp where vbeln = wa_vbeln .  -->> 2nd loop
read table it_vbrk into wa_vbrk with key vbeln = wa_vbrp-vbeln.
If sy-subrc = 0.
wa_final-knumv = wa_vbrk-knumv.
Endif.
wa_final-arktx = wa_vbrp-arktx.
wa_Final-fkimg = wa_vbrp-fkimg.
wa_final-sgtxt = wa_pos-sgtxt.
Loop at it_konv into wa_konv where knumv = wa_vbrk-knumv and kposn = wa_vbrp-posnr.
wa_pos-dmshb = ( wa_konv-kwert ) - ( ( wa_konv-kwert * ra_data ) / 100 ).
wa_final-dmbtr = wa_pos-dmshb.
Append wa_final to it_final.
Endloop.
Endloop.
clear: wa_kna1, wa_t005u,wa_vbrk, wa_vbrp, wa_konv, wa_final, wa_pos.
ENDLOOP.
main loop satisfied ....
1st read not satisfied..
2nd read satisfied the if condition.
2nd loop not satisfied.
then the result is as u said...only one colum will get appended and will be shown in the O/P.

Similar Messages

  • Help with "clearing" in three column format

    The code is pasted in below of a three column page I have created.  However, the background color in the sidebars does not reach to the footer it follows the content.  I know that I need to "clear" the columns but as a newbie I'm not sure how to do so.  Any help would be appreciated.
    Thanks!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #CCC;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    .thrColLiqHdr #container {
    width: 80%;  /* this will create a container 80% of the browser width */
    background: #FFFFFF;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 1px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    .thrColLiqHdr #header {
    background: #DDDDDD;
    padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    .thrColLiqHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    /* Tips for sidebars:
    1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width.
    2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColLiqHdr #sidebar1 p" rule.
    3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
    .thrColLiqHdr #sidebar1 {
    float: left; /* this element must precede in the source order any element you would like it be positioned next to */
    width: 30%; /* since this element is floated, a width must be given */
    background: #3399FF; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 0; /* top and bottom padding create visual space within this div  */
    .thrColLiqHdr #sidebar2 {
    float: right; /* this element must precede in the source order any element you would like it be positioned next to */
    width: 30%; /* since this element is floated, a width must be given */
    background: #3399FF; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 0; /* top and bottom padding create visual space within this div */
    .thrColLiqHdr #sidebar1 p, .thrColLiqHdr #sidebar1 h3, .thrColLiqHdr #sidebar2 p, .thrColLiqHdr #sidebar2 h3 {
    margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
    margin-right: 10px;
    /* Tips for mainContent:
    1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
    2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
    3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
    .thrColLiqHdr #mainContent {
    margin: 0 24% 0 23.5%; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
    .thrColLiqHdr #footer {
    padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#DDDDDD;
    .thrColLiqHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    /* Miscellaneous classes for reuse */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain its child floats */
    clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    a:link {
    text-decoration: none;
    color: #000;
    a:visited {
    text-decoration: none;
    color: #000;
    a:hover {
    text-decoration: none;
    a:active {
    text-decoration: none;
    -->
    </style><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .thrColLiqHdr #sidebar2, .thrColLiqHdr #sidebar1 { padding-top: 30px; }
    .thrColLiqHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]--></head>
    <body class="thrColLiqHdr">
    <div id="container">
    <div id="header">
        <h1>Header</h1>
      <!-- end #header --></div>
      <div id="sidebar1">
    <h3>Today's Top Health News</h3>
        <p>Vitmains C and E cleared in melanoma scare. </p>
    <p>Older men often binge drink, too</p>
    <p>Short kids are psychologically OK</p>
    <p>New drug for schizophrenia and bipolar disorder approved</p>
    <p>Mediterrenean Diet plus exercise lowers risk of Alzheimer's Disease</p>
    <p>Not enough sleep may raise the risk of diabetes</p>
      <!-- end #sidebar1 --></div>
      <div id="sidebar2">
        <h3>Podcasts: In-depth, awarding winning Radio Health Journal Reporting</h3>
        <p><img src="../graphics/I-am-safe-now.jpg" width="106" height="80" align="left" />
    <p>Perinatal Hospice: Giving meaning and easing grief when birth to death is measured in hours </p>
    <p>Medical Mystery Shoppers: Fake patient who keep healthcare quality high</p>
    <p>Pediatric Live Transplants: Children can receive a slice from a living adult donor</p>
    <p>The Selling of healthcare reform: Why revved up rhetoric matters more than facts</p>
    <p>Early Alzheimer's diagnosis: The benefits of early treatment</p>
    <p>Dementia drugs: Are medications too common in nursing homes?</p>
    <p>Pregorexia: Anorexia while pregnant-more common than we think</p>
    <p>Mop men: People who clean up after unexpected death</p>
    <p>Gout: The return of the "disease of kings"</p>
    <p>Prevention and healthcare reform: How much money can prevention really save?</p>
      <!-- end #sidebar2 --></div>
      <div id="mainContent">
        <h1> Featured Content </h1>
        <p><a href="http://speakaboutbipolardepression.com/">The economy is leadiny many Americans to feel additional stress.  This is particularly concerning for the more than 8 million Americans with bipolar disorder.</a></p>
        <p>As modern medicine extends life expectancy, prevelance of Alzheimer's Disease in the U.S. is expected to skyrocket from about 5 million to 16 million in 2050.  Understanding risk factors is more important than ever. </p>
        <p>You might thing a blood transfusion ordered by a physician would be safe and effective.  But a new analysis by an international panel sbows most transfusions have little benefit.  In fact, they may be dangerous.</p>
        <h2>Information about our program's guests </h2>
        <p>Developing A Brain Eraser: Dr. Andre Fenton</p>
    <p>Too sexy, Too soon: Kids, the media, and sex: Dr. Diane Levin, author of "So Sexy So Soon: The new sexualized childhood and what parents can do to protect their kids"</p>
    <p>Everything You Always Wanted To Know About...Death: Harold Schechter, author of "The Whole Death Catalog: A Lively Guide To The Bitter End"</p>
    <p>Borderline Personality Disorder: Randi Kreger, cofounder of BPDcentral.com</p>
    <!-- end #mainContent --></div>
    <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
      <div id="footer">
        <p>Footer</p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    </body>
    </html>

    Are you posting to the right forum? This is a Designer form where we are working with PDF forms. This looks like HTML!
    Paul

  • Problem in search help field clear

    Hi,
      I have two customised screen fields for these i created search helps through FM F4IF_INT_TABLE_VALUE_REQUEST.one is type and another one is subtype.If i select a type then corresponding subtypes will be displayed for subtype field.for this iam maintaining a table with these two fields.i have one blank value for subtype.my problem is if select a type, then i go for subtype if i choose a value it's displaying propely.After that if i select a blank value for subtype it's not replacing the value with blank.it's showing previous value.Here iam sending the code too.
    MODULE ONVALUE_REQUEST_ZZINSSUBTYPE1 INPUT.
      REFRESH: GT_ZZINSSUBTYPE,
               GT_RETURN1.
      clear ekko-zzinssubtype1.
    SELECT ZZINSTYPE ZZINSSUBTYPE FROM ZINS_DATA INTO TABLE GT_ZZINSSUBTYPE
                                          WHERE ZZINSTYPE = EKKO-ZZINSTYPE1.
      CLEAR: GT_RETURN1,
             EKKO-zzinssubtype1.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD        = 'EKKO-ZZINSSUBTYPE1'
          VALUE_ORG       = 'S'
        TABLES
          VALUE_TAB       = GT_ZZINSSUBTYPE
          RETURN_TAB      = GT_RETURN1
        EXCEPTIONS
          PARAMETER_ERROR = 1
          NO_VALUES_FOUND = 2
          OTHERS          = 3.
      IF SY-SUBRC EQ 0.
        clear ekko-zzinssubtype1.
        READ TABLE GT_RETURN1 INDEX 1.
        MOVE GT_RETURN1-FIELDVAL TO EKKO-ZZINSSUBTYPE1.
      ELSE.
        MESSAGE 'THERE IS NO INSURANCE SUB TYPE' TYPE 'I'.
      ENDIF.
    ENDMODULE.                  " ONVALUE_REQUEST_ZZINSSUBTYPE1  INPUT

    Hi,
    Try with this
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          retfield        = 'ZTABLE5-HEADER_NAME'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          value_org       = 'S'
    No need to move
    Cheers,
    Sasi

  • Need help in clearing string buffer during dynamic VO where clause in oaf

    Hi All,
    I am dynamically setting where clause in OAF using string buffer, but the issue is when i am executing the vo multiple times so the old data in the string buffer it is not clearing .so every time my where clause adding to the query and it is erroring out, please help me how to clear string buffer class in oaf.
    Thnaks

    Hi,
    Could you please share the code segment for reference. Then we can tell the solution.
    Regards,
    Tarun

  • Help Please***************-Clear a item on the finder menu

    I have a listing on my finder menu under the places block. The folder is named Untitled Cd with the yellow Burn symbol next to it. This listing is not selectable and I can not find a way to clear the item. Re-setting the finder preferences did not kill it. Any ideas?????
    Message was edited by: pdaug

    Boy that was easy. It did not even occur to me to try that. Thanks for the help!

  • Help me clear the OCP sql and pl/sql exam

    can anybody out there guide me how should i proceed with the preparation and what all should i study to clear the SQL and PL/SQL OCP exam.
    thank you all in advance..

    Try going for the Exam Cram. The exam at the end of the book will definitely help a lot. The rest of the book might help, so just give it a try.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Nosferatu:
    Hello people...
    I'm taking a preparation course for the Oracle DBA certification exam. I just finished preparing for the first exam -- SQL and PL/SQL.. The book I used for the course Oracle 8i DBA Certification Exam Guide as well as TEach yourself SQL in 21 days and Teach yourself PL/SQL in 21 days...
    I'd say I'm prepared to pass the exam... Before I make my first attempt, I am thinking of going through the Exam Cram for the first exam. However, judging from the reviews on amazon.com, the book doesn't seem to be helpful...
    Anyone have any tips or recommendations before I take the exam? Should I go through the Exam Cram? If not, are there better books to go through for last minute preparations?
    Also, how many questions on the exam and what percentage do I need to pass?
    Any input would be much appreciated... Thanks for ur help!<HR></BLOCKQUOTE>
    null

  • Can anyone help with clearing space on my Mac Mini, it says the hard drive is full and runs slowly.

    Please help, we got the Mac Mini from a family member so it may have his stuff on it but no longer required, we have only put a smal amount of data on it so don't believe we have over filled it. I backed up to a hard drive all photos etc as I thought it may be them filling it, now I cannot even scan a document to it. Is there any way to Defrag it as you can normally do to a windows system as well as either declutter it or restore the whole thing.
    Best Regards
    Smithy

    The first thing to do with a second-hand computer is to erase the internal drive and install a clean copy of OS X. You — not the previous owner — must do that. How you do it depends on the model, and on whether you already own another Mac. If you're not sure of the model, enter the serial number on this page. Then find the model on this page to see what OS version was originally installed.
    1. You don't own another Mac.
    If the machine shipped with OS X 10.4 or 10.5, you need a boxed and shrink-wrapped retail Snow Leopard (OS X 10.6) installation disc from the Apple Store or a reputable reseller — not from eBay or anything of the kind. If the machine has less than 1 GB of memory, you'll need to add more in order to install 10.6. Preferably, install as much memory as it can take, according to the technical specifications.
    If the machine shipped with OS X 10.6, you need the installation media that came with it: gray installation discs, or a USB flash drive for some MacBook Air models. For early MBA models, you may need a USB optical drive or Remote Disc. You should have received the media from the previous owner, but if you didn't, order replacements from Apple. A retail disc, or the gray discs from another model, will not work.
    To boot from an optical disc or a flash drive, insert it, then reboot and hold down the C key at the startup chime. Release the key when you see the gray Apple logo on the screen.
    If the machine shipped with OS X 10.7 or later, you don't need media. It should boot into Internet Recovery mode when you hold down the key combination option-command-R at the startup chime. Release the keys when you see a spinning globe.
    2. You do own another Mac.
    If you already own another Mac that was upgraded in the App Store to the version of OS X that you want to install, and if the new Mac is compatible with it, then you can install it. Use Recovery Disk Assistant to create a bootable USB device and boot the new Mac from it by holding down the C key at the startup chime. Alternatively, if you have a Time Machine backup of OS X 10.7.3 or later on an external hard drive (not a Time Capsule or other network device), you can boot from that by holding down the option key and selecting it from the row of icons that appears. Note that if your other Mac was never upgraded in the App Store, you can't use this method.
    Once booted in Recovery, launch Disk Utility and select the icon of the internal drive — not any of the volume icons nested beneath it. In the Partition tab, select the default options: a GUID partition table with one data volume in Mac OS Extended (Journaled) format. This operation will permanently remove all existing data on the drive.
    After partitioning, quit Disk Utility and run the OS X Installer. You will need the Apple ID and password that you used to upgrade. When the installation is done, the system will automatically reboot into the Setup Assistant, which will prompt you to transfer the data from another Mac, its backups, or from a Windows computer. If you have any data to transfer, this is usually the best time to do it.
    Then run Software Update and install all available system updates from Apple. To upgrade to a major version of OS X newer than 10.6, get it from the Mac App Store. Note that you can't keep an upgraded version that was installed by the previous owner. He or she can't legally transfer it to you, and without the Apple ID you won't be able to update it in Software Update or reinstall, if that becomes necessary. The same goes for any App Store products that the previous owner installed — you have to repurchase them.
    If the previous owner "accepted" the bundled iLife applications (iPhoto, iMovie, and Garage Band) in the App Store so that he or she could update them, then they're linked to that Apple ID and you won't be able to download them without buying them. Reportedly, Mac App Store Customer Service has sometimes issued redemption codes for these apps to second owners who asked.
    If the previous owner didn't deauthorize the computer in the iTunes Store under his Apple ID, you wont be able to  authorize it immediately under your ID. In that case, you'll either have to wait up to 90 days or contact iTunes Support.

  • I recently moved my iTunes folder to a portable drive to make space on my macbook pro with Mavericks, and now the space is still taken up by back ups? any help to clear this space up would be greatly appreciated! Oh btw, macbook pro backs up to time caps

    Im trying to free up some of the space on my macbook pro, its been filled up with itunes hd movies, so i purchased a 1TB portable hard drive and moved all my itunes files to it to free up some space. When i went into about this mac and checked storage, it says i have over 400GB's of back ups. I back up everyday through time machine to my time capsule, not sure what to do, any help is much appreciated! thanks

    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself, nor should you disable them or Time Machine.

  • Help, was clearing HD out and now will not start up!

    I think I may have deleted some files i shouldn't have whilst trying to free up some space on my imac. If I turn it on it goes to the screen with the grey box telling me to restart my computer. Over the screen there is loads of text starting with, panic(cpu 0): unable to find driver for this platform: "powermac4.2" and then more text and numbers. I cannot do anything beyond this point.I am using another computer at the moment. Have I just killed my computer or can anybody help??
    imac g4   Mac OS X (10.3.8)  

    Hello and Welcome to Apple Discussions. 
    You are suffering what's known as a Kernel Panic due to those missing system files. Without knowing what's missing exactly the only what ahead is to boot from the OS X Install disk and conduct and Archive and Install. Your data will remain intact but the system preferences etc will be replaced.
    I dare say you don't want the lecture on 'messing with system files' or 'having a whole system back-up on an external drive'?
    Let us know how you get on.
    kind regards
    mrtotes

  • Need Help on Clearing my doubts

    Hi all,
    I have a question on running Apache and Tomcat with the use of mod_jk connector. With all the guide I have gathered from the web. Below are my configuration:
    Red Hat 8.0
    Apache 2.0.46 Using Port 80
    Tomcat 4.1.24 Using Port 8080
    J2SDK 1.4.1
    I have no problem running these two applications. However, I cannot seems to access the default 'example' folder that comes with tomcat on port 80. Accessing it on port 8080 has no problem for me.
    Please note that all my configuration is done with the help of the following url:
    http://www.johnturner.com/howto/rh72-howto.html
    According to one of the mail which I have received, I saw him putting this in apache : httpd.conf:
    ============================================================================
    JkWorkersFile /home/gmh2441/uPortal/Tomcat_4-0-4/conf/workers.properties
    JkLogFile /home/gmh2441/uPortal/Tomcat_4-0-4/logs/mod_jk.log
    JkLogLevel debug
    JkOptions +ForwardDirectories
    Alias /examples /home/gmh2441/uPortal/Tomcat_4-0-4/webapps/examples
    <Directory "/home/gmh2441/uPortal/Tomcat_4-0-4/webapps/examples">
    Options Indexes FollowSymLinks
    </Directory>
    <Location "/examples/WEB-INF/">
    AllowOverride None
    deny from all
    </Location>
    ============================================================================
    I tried putting the same thing into my httpd.conf, and now accessing the example folder on port 80 works!.
    My question is :
    1) Based on the above config, it is asking apache to 're-direct' this folder to the tomcat container and thus run on it. In that case, is apache pushing all the jobs to tomcat instead?. What if some of the files in this folder contains some html and is tomcat or apache processing it??
    2) Secondly, if I were to have more folders which I need to publish on the web, does it mean that I have to add or of it on this config file in order for it to work?
    3) I would appreciate if there are some kind soul could give me some URL on how to utilize apache tomcat to process both static and jsp content.
    Thanks in advance,
    Joe

    make sure in your tomcat/conf/server.xml file that the Connector for 8009 is not commented out.

  • Need help in clearing an invalid value entered in an inputLOV popup.

    Hi
    I am using the JDeveloper Studio Edition Version 11.1.1.1.0
    Our application uses the Springs Framework with ADF. We used an af:inputListOfValues component coupled with a disabled af:inputText component to make it like a name-value pair. As soon as you enter a valid value in the inputLOV component and tab out, the description corresponding to it will be populated(partial trigger) in the disabled inputText component. There is an inputListOfValues model object in our backing bean which feeds the list of values to choose from.
    When we enter an invalid value in the lov and tab out, the popup with all the possible values comes up, which is correct and expected. Now, when the user clicks on "Cancel" in the popup, we are supposed to clear the invalid value entered in the lov component. We tried all possible approaches known to use including AOP(Aspect Oriented Programming) to intercept the call when the user clicks on the "Cancel" button but we just could not make it work.
    Does anyone know if a way to clear the entered value upon clicking cancel?
    Please let me know if more details are required about our implementation to answer my question.
    Thanks,
    Manoj

    Godwin wrote:
    when ever the Schema is updated the table should not get affected.. Is there a way to solve my problem.. If you change the XML schema associated with the table, then old data won't be valid anymore : how do you want to deal with that?
    Besides, you chose to create the table with Object-Relational storage, you have to understand how it works.
    When you register the schema with genTypes = true, Oracle creates a set of object types that map the XML structure to SQL.
    In this case, old data will not only be invalid but also won't fit in the new structure.
    Do you just need a table for storing valid XML documents according to the current schema?
    If that is so, maybe unstructured CLOB storage is best suited here, with a trigger to validate new rows inserted.
    See this thread for an overview of schema validation : {thread:id=416458}
    And of course, Oracle documentation :
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb05sto.htm#ADXDB0600
    For specific questions about XML DB (schema validation, types of storage etc.), you can post here : {forum:id=34}

  • Help with Clearing Local and Document Currency

    I'm looking at the transactions below.
    DocumentNo     Type     Clrng doc.     Period     PK     Doc. Date     DC Cur     DC Curr     loc.cur.     LCurr
    100012081     SA     100012083     009     50     19/08/2009     -1,000.00     EUR     -865.50     GBP
    100012082     SA     100012083     009     40     19/08/2009     865.50     GBP     865.50     GBP
    I have two difference document currencies.  When I clear the document the posting is as below.
    DocumentNo     Type     Clrng doc.     Period     PK     Doc. Date     DC Cur     DC Curr     loc.cur.     LCurr
    100012083     AB     100012083     009     40     19/08/2009     865.50     GBP     865.50     GBP
    100012083     AB     100012083     009     50     19/08/2009     -865.50     GBP     -865.50     GBP
    Document Currency above is not cleared to zero for EURO or GBP...
    My questions is why when clearing two different line items in two different documents. The balance on the document currency does not come back to zero.
    I would have expect to see the following.
    DocumentNo     Type     Clrng doc.     Period     PK     Doc. Date     DC Cur     DC Curr     loc.cur.     LCurr
    100012083     AB     100012083     009     40     19/08/2009     1,000.00     EUR     865.50     GBP
    100012083     AB     100012083     009     50     19/08/2009     -865.50     GBP     -865.50     GBP
    Which would result in the Document Currecny being Zero in both Euro's and GBP and Local Cleared.

    The posting you are expecting to see cannot be achieved in SAP because document currency is at accounting document header level and it applies to all line items in that document.  In short, document currency has to be the same in all line items.  You most likely have "No forex rate diff. when clearing in LC" checkbox checked in your company code global parameters (OBY6).  If you remove that, system will not be able to post the entry it posted (doc. no. 100012083) unless you configure exchange rate diff. account determination in OB09.

  • Need help to clear concepts of V1,V2 and V3 updates in R/3

    please see the thread below and help....
    want to know whether my concepts about V1,V2 and V3 are correct or not

    solved

  • Need help in clearing data

    Hi All,
    Im facing a peculiar problem.
    Im getting some data from one Function module into one variable.
    Sometimes the variable is having values such as 0, 0.0, 0.00 like that.(system is still considering 0.0 as a value)
    If such is a case I dont want to print that value(say 0.0) on output.
    Pls help me how to initialize the variable with space, if it has the values like 0, 0.0, 0.00 etc..
    Pls help me with ur valuable suggestions.
    Thanks,
    Priya

    Hi Priya,
    Just check the sample code. Here need to pass the variable in to another pack (p) type variable. Then check the initial. based on that you can write it.
    data: l_val_c TYPE char20 VALUE ' 0.00',
          l_val_p TYPE p LENGTH 15 DECIMALS 3.
          l_val_p = l_val_c.
          IF l_val_p IS INITIAL.
            BREAK-POINT.
          ENDIF.
    Thanks
    Subhankar

  • Can anyone help me clear up this AMD vs Nvidia GPU thing?

    Hi all.  Bit of a tricky one, this.
    I'm building a PC for PS and PP (amongst other things), and I'm trying to choose the best graphics card  for hardware acceleration in CS6 - predictable, I know.
    Absolutely everyone - including Adobe - says that only Nvidia cards (i.e. CUDA) are supported for Mercury GPU acceleration in Windows, except for three AMD cards on MacBook Pros only.  (Official list here and an addendum here.)
    So far so good.  Nvidia card it is.  But then, while making one final check, I stumble across this little announcement:
    http://blogs.amd.com/fusion/2012/04/24/adobe-and-amd-enable-brilliant-experiences/
    In which AMD shows off OpenCL hardware acceleration on a Windows PC in CS6.  It all looks pretty official - Adobe supplied the test images.  I'm also pretty sure I'm not hallucinating.  CS6.  Radeon.  Windows 7.  Yup.  All there:
    Test system was a notebook with AMD A8-3530MX APU with AMD Radeon™ HD 6620G Graphics, 1.9GHz, 4G 1600 DDR3 Memory, Windows 7 Pro, 64-bit.
    It's unlikely to be a typo, since the article also says:
    Taking the example of a mainstream notebook PC based on an AMD A8-3530MX, Liquify is up to 456%* faster when accelerated by AMD Radeon™ graphics technology in the APU.
    Unless I'm missing something blindingly obvious (always possible) - AMD are clearly talking about OpenCL + CS6 + Mercury + Windows.
    So now I'm totally confused.  If I get a Radeon card, will hardware acceleration work?  What's going on?  Do Adobe support this?  Do they even know it happened?  Did the AMD rep "misspeak"?  Am I talking about an elephant in the room?
    Too many questions.  So I'll boil it down to two:
    If everyone is saying Nvidia only for Windows - why does AMD apparently disagree?
    And if it's a toss-up between AMD/OpenCL and Nvidia/CUDA - which one has the performance edge?
    Thanks in advance for any light you folks can cast on this.  I'm in a world of confusion right now. 

    I share the frustration about readily learning what cards can accelerate the Mercury Playback Engine with Premiere Pro 6.03.  The GTX 680 is supported on Windows as of 6.03 but the PP spec page has still not been updated.
    As recent as after the release of 6.03 in September, 2012, AMD demonstrated a preview build of Premiere Pro MPE running with OpenCL.
    http://forums.creativecow.net/thread/3/930462
    http://www.youtube.com/watch?v=J6MroxhsLT0
    http://blogs.amd.com/fusion/2012/09/04/exclusive-technology-preview-of-adobe-premiere-pro- unveiled-at-ibc/
    However, if you want certain acceleration now, RJL and Harm know best.

Maybe you are looking for

  • About JNI

    Hi, I am new to JNI programming. I tested the following hello world programm: HelloWorld.java: class HelloWorld { public native void displayHelloWorld(); static { System.loadLibrary("HelloWorld"); public static void main(String[] args) { new HelloWor

  • EXPORT - IMPORT in BACKGROUND JOB

    Hello ABAP Gurus, There are two programs I am using. In 1st Program I am Exporting the Data to the ABAP Memory and then after that scheduling the second program in background from 1st Program through 1 ) JOB_OPEN 2 ) SUBMIT 3 ) JOB_CLOSE Now I am try

  • Trouble doing an erase and install

    ocquired the panther retail disks I need to do the erase and install. I have an ibook dual with os 2.8 in it. I do not know who the administrator is nor the password. I learned here that I could do an erase and install with the correct disks. I want

  • Library mess when copying

    I've noticed that if you copy a MovieClip from one library to another there can be many duplicate folders that are generated. For instance, lets say I have a library with 2 folders: Buttons and Movieclips. And I have a MovieClip symbol in the Moviecl

  • Cleaning up old files on disk

    What's the best method folks are using to clean up their hard drives, and get rid of obsolete files?