About at new  control statement

hello everybody
                            I need a small information about  at new control ..like when i'm using this control to get every new vendor  details ...in the out put its coming the related data like ********** .why its comin like this .can i know .please help me out .
thanks&regards
Lavanya

AT for group change
Change of group when processing loops of extracts and internal tables.
Syntax
AT NEW <f>.
AT END OF <f>.
AT FIRST.
AT LAST.
AT <fg>.
The statements are used to process group levels within a loop using an extract dataset or an internal table. They introduce statement blocks that must be closed with ENDAT. The statements between AT and ENDAT are only executed if the corresponding group change occurred.
When ever you use the control events and display the data you get some scrapped values.
So, to avoid it use <b>READ TABLE <table name> INTO <WA></b>. and then print the values.
Regards,
Pavan P.

Similar Messages

  • Why don't we design radical new controls with the 3D toolkit?

    Hi,
    The first time that a saw the open GL toolkit for LabVIEw I thought thats a great new drug. I played around with it but my computer crashed here and than. I could not find the reason why and so I decided to spend more time with it. Some weeks late I found that my graphic card had a problem and that caused the crashes.
    My last experiment with the toolkit was a 3D gauge.
    While its still not ready it gives a impression what might be possible using this toolkit.
    You will find it as a LV 7.1.1 Version in the attachment.
    If there are more ppl intersted to develop and design completely new controls than fell free to do so and make the rest of the world envious about the things that are possible using LV. Lets give a chance to everyone using LV to use this new controls.
    The first projects could be:
    - a better or more complete 3D gauge ;-)
    - a cool 3 or more position switch.
    - a real advanced thermometer.
    - a multi color LED bar.
    - a pipe with floating water.
    - a cool valve to stop the waterflow.
    - a launch button like in a aircraft.
    - a animated throttle for ships.
    - a gyroscope.
    - a artificial horizon.
    - or a brand new other thing.
    Lets go and give it a chance.
    With kind regards
    Martin Kunze
    With kind regards
    Martin Kunze
    KDI Digital Instrumentation.com
    e-mail: [email protected]
    Tel: +49 (0)441 9490852

    I was looking at your code and thinking about the 512 X 512 limit on the image rendered.
    The attached Vi show how a larger image can be rendered by using more than one "Draw Scene".
    BenMessage Edited by Ben on 06-18-2005 12:52 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Gauge exampleX2.vi ‏230 KB
    X2.JPG ‏83 KB

  • Control statement in internal tables

    hi experts,
    can any body will provide me the control statement of internal table.
                                                               thank you

    Hi,
    check this link
    http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9f1f35c111d1829f0000e829fbfe/content.htm
    Control Break Statements
    Control break statements are used to create statement blocks which process only specific table lines the LOOP – ENDLOOP block.
    You open such a statement block with the control level statement AT and close it with the control level statement ENDAT. The syntax is as follows:
    Table should be sorted when you use control-break statements
    You can break the sequential access of internal tables by using these statements.
    Syntax:
    At first.
    <Statement block>
    Endat.
    This is the first statement to get executed inside the loop (remember control break statements are applicable only inside the loop)
    So in this block you can write or process those statements which you want to get executed when the loop starts.
    At New carrid.
    Write:/ carrid.
    Endat.
    In this case whenever the new carrid is reached, carrid will be written.
    At End of carrid.
    Uline.
    Endat.
    In this case whenever the end of carrid is reached, a line will be drawn.
    At Last.
    Write:/ ‘Last Record is reached’.
    Endat.
    Processing of statements within this block is done when entire processing of entire internal table is over. Usually used to display grand totals.
    You can use either all or one of the above control break statements with in the loop for processing internal table.
    At end of carrid.
    Sum.
    Endat.
    In above case the statement SUM (applicable only within AT-ENDAT) will sum up all the numeric fields in internal table and result is stored in same internal table variable.
    Regards,
    Sruthi

  • Control statements

    When using control statements like AT FIRST...ENDAT.AT NEW (field).... ENDAT.
    Is it necessary to define the field (thru which we r going to group the records) as a first field in internal table?

    Hi,
         Control break statements are used to stop the control at a particular point.
    1. AT NEW f.
    2. AT END OF f.
    3. AT FIRST.
    4. AT LAST.
    Effect
    In a LOOP which processes a dataset created with EXTRACT , you can use special control structures for control break processing. All these structures begin with AT and end with ENDAT . The sequence of statements which lies between them is then executed if a control break occurs.
    You can use these key words for control break processing with extract datasets only if the active LOOP statement is proceesing an extract dataset.
    The control level structure with extract datasets is dynamic. It corresponds exactly to the sort key of the extract dataset, i.e. to the order of fields in the field group HEADER by which the extract dataset was sorted .
    At the start of a new control level (i.e. immediately after AT ), the following occurs in the output area of the current LOOP statement:
    All default key fields (on the right) are filled with "*" after the current control level key.
    All other fields (on the right) are set to their initial values after the current control level key.
    Between AT and ENDAT , you can use SUM to insert the appropriate control totals in the number fields (see also ABAP/4 number types ) of the LOOP output area (on the right) after the current control level key. Summing is supported both at the beginning of a control level ( AT FIRST , AT NEW f ) and also the end of a control level ( AT END OF f , AT LAST ).
    At the end of the control level processing (i.e. after ENDAT ), the old contents of the LOOP output area are restored
    use control break on any fields
    chk this sample program
    REPORT YCHATEST LINE-SIZE 350.
    TABLES MARA.
    DATA : BEGIN OF ITAB OCCURS 0,
             MATNR LIKE MARA-MATNR,
             AMOUNT TYPE P DECIMALS 2,
           END OF ITAB.
    ITAB-MATNR = '12345'.
    ITAB-AMOUNT = '100.20'.
    APPEND ITAB.
    CLEAR ITAB.
    ITAB-MATNR = '12345'.
    ITAB-AMOUNT = '100.20'.
    APPEND ITAB.
    CLEAR ITAB.
    ITAB-MATNR = '3456'.
    ITAB-AMOUNT = '100.20'.
    APPEND ITAB.
    CLEAR ITAB.
    sort itab by matnr amount.
    LOOP AT ITAB.
      AT END OF AMOUNT. 
        WRITE : / ITAB-MATNR , ITAB-AMOUNT.
      ENDAT.
    ENDLOOP.
    Regards

  • Transactional control statements in trigger

    Hi,
      Transaction Control statement, which cannot be executed within a trigger body??why...explain with reason
    its helpful me..

    Ishan wrote:
    "a way you can actually make it work" .... seriously?
    Yes, I was serious. Why? What's wrong with that? Technically speaking, won't it work?
    This is not a way to make it work, it's a way to break an application/process
    Well !!! All the cases?
    Here's  a scenario
    I want to audit a table where if any change done by the user has to be tracked in an audit table, irrespective whether the change has now been rolled back in the main table. I want to see what change was done? How would I do it? Going by your logic of breaking application/process, I should never use trigger as  AUTONOMOUS_TRANSACTION. Am I right? How would I achieve it now?
    Your auditing/tracing code should be in a separate procedure and that procedure should be autonomous, so that the requirement to write autonomous data for that purpose is kept isolated from the trigger code.  Consider this scenario instead.  You want to write audit/trace information from your triggers, so you make the trigger autonomous and put in your code to write the audit/trace information.  Later on, someone who hasn't a clue comes along and decides they need to do something else in that trigger (well why write a new trigger when one already exists?) and they get it to write some data in relation to the data being created by the trigger.  Now you suddenly have a transactionally unsafe application, where this 'child data' can still be written and committed even if there's a problem in the main transaction.  By isolating auding/tracing away to it's own autonomous procedure, you make it clear that it's only the auditing/tracing that should be autonomous and prevent any problems from occuring inside the trigger itself.
    That's more of a way to write bad code that is transactionally unsafe and demonstrates a lack of understanding of database transactional processing or how the rdbms on the server processes commits and could potentially lead to write contention in the writer processes, of which many would be spawned if the number of inserts (in this example) was high.
    The above comment is based on the assumption(which, I never stated) that in whatever scenario my code would be implemented, it would ALWAYS break the process. There are scenarios where this code could be required.
    Here's a link from Oracle Documentation, that uses an example of creating a trigger with AUTONOMOUS_TRANSACTION. If it is a so bad example which "demonstrates a lack of understanding of database transactional processing", why would Oracle even mention it in their documentation?
    http://docs.oracle.com/cd/B19306_01/appdev.102/b14261/sqloperations.htm#BABDHGAB
    And the answer is because there is a way to do it and it could actually be required, even though it's rare.
    I just showed OP, that it's not allowed directly and if required, it can be done as there is a way to do it. When to do it and what could be the consequences was never the scope of the question.
    Yes, and there's ways to jump off cliffs and kill youself, but I wouldn't recommend demonstrating how to do that to people just because it's possible.
    Just because it's in the oracle documentation doesn't always mean it's best practice.  A lot of the documentation was written a long time ago and best practices have changed as well as further functionality added, and Oracle has been known to make mistakes in their documentation too.  However in this example, it's using it for auditing purposes, so the idea was almost there, but they still haven't met best practices of keeping the auditing isolated, so their example is not the best.

  • [svn:osmf:] 13028: Fix bug where NetStream would continue playback upon completion ( due to our not handling the new STOPPED state).

    Revision: 13028
    Revision: 13028
    Author:   [email protected]
    Date:     2009-12-16 18:10:28 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Fix bug where NetStream would continue playback upon completion (due to our not handling the new STOPPED state).  Injection from trait refactoring.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamPlayTrait.as

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • When trying to share new video states referencing media on camera

    when trying to share a new video states referencing media on camera what is the problem?

    I feel your pain. The Adobe forum software does some odd "stuff" with formatting, and once that happens, there seems to be nothing to do about it. I have been caught in that "trick bag," more times, than I can count.
    As for Encoding to WMV, Adobe programs, are not known to do a good job of this, and that is both PrE and PrPro. For years, many users recommended Windows Media Encoder, which was free from MS, and to use that, one would Export/Share to an intermediate file, then use WME to do the WMV Encode. MS discontinued the old WME, but one user (Neale, IIRC) found a replacement. Unfortunately, I do not recall the name, but it was something like MicroSoft Media Encoder Live, or similar. That user tested the new, replacement utility, and thought that it also did a much better job, than PrE/PrPro.
    Still, quality, and especially with motion (either subject, or camera) needs a good Bit-Rate to produce good results, however at the expense of large files. As all Encoders are not created equal, the best that one can do is to find one, that does a good job, and then experiment with the Bit-Rate to get highest quality at a manageable file size. This is the same "balancing act," that we all fight with.
    Good luck, and maybe those, with better memories, can come up with the name of the MS WMV Encoder.
    Hunt

  • About the new Pages, please.

    About the new Pages, please. I've a lot of text in the old '09 version 4.3 -- how do I go about moving it to the new Pages?

    Many thanks for your message, Peter. So glad to have your reply and impressed with all you’ve contributed to this topic here in the past.
    Guess I was hoping that by looking away long enough, things would get better. I’d put aside my book, all in Pages ’09, but now I want to finish it and to move what’s done to Scrivener. Surely there’s some better way to rescue the old stuff than a complete rewrite?
    Seems Scrivener actually uses TextEdit and that’s fine but of course I was using Pages in the first place because I’d like more control of how stuff looks on the page from the start.
    Please tell me: Without losing any text, what are the options?
    Kind regards . . . Fortes

  • When I clicked on Firefox, the update bar started but when it stopped Firfox would not open. The blue screen of death popped up and said something about a new installation. We restarted the computer and now Firefox will not open. Help!

    When I clicked to open Firefox the update bar appeared and an update loaded. Usually when this happens Firefox will open up when the update is finished. This time it did not open. when I clicked on the icon again the blue screen opened and said something about a new installation and if this was the first time you have seen this screen restart your computer and try again. I restarted the computer and when I clicked on the Firefox icon the "hour glass" would appear like it was trying to open but it never would open. I don't know what else to do.

    See below -- the way I asked the question the first time may not be clear. This post was a goof but I can't figure out how to delete it

  • Two questions about the new iWeb

    Hi
    I've got two questions about the new iWeb.
    1. Is it possible to blog online now? Meaning adding a new blog entry without having to be on your own Mac? This is a feature I've been waiting for since iWeb first was released.
    2. Is it possible to choose the format of images? Earlier editions had the option to "optimize" images but that meant it changed it into .png meaning the site got a lot heavier than if .jpg was used. And since I have relatives who still only have an isdn connection I need to be able to have the website as light as possible.
    thanks

    Ah well... thanks for the quick answer
    Message was edited by: Guðlogi

  • Urgent - How to add a new control instead of tabs in JTabbedPane

    Hi,
    Please give me an idea or a sample program for how to add a new control
    in JTabbedpane instead of tabs that means overlay any Java controls or pane
    in the tabpane empty place next to tabs

    "Urgent" is not relevant to the question. Your question is no more important than anybody elses.
    My answer in this posting show a limited solution:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=636289
    Otherwise I suggest you try using a layered pane approach:
    http://java.sun.com/docs/books/tutorial/uiswing/components/layeredpane.html

  • Hi everyone, I have LR 5 that I purchased with a serial number and about a week ago I got the message about a new update, I want to get LR 6 but not the creative cloud, last time from LR4 to LR5 there was just an update without buying the creative cloud,

    Hi everyone, I have LR 5 that I purchased with a serial number and about a week ago I got the message about a new update, I want to get LR 6 but not the creative cloud, last time from LR4 to LR5 there was just an update without buying the creative cloud, is that possible from LR5 to LR6? Thanks so much.

    Welcome to Apple Discussions!
    You can't install 9.2.1 or earlier on any Mac that is only Mac OS X bootable. In fact you need to use the restore disks which came with those Macs to install 9.2.2 on those Macs. 8.6 is only possible to install on Macs which came with 8.6 or earlier. The 9.1 disk may be useful for your 1999 PowerMac G4, but won't be of any use for a 2006 Powerbook G4.
    Adobe Pagemill does not follow w3.org web publishing standards. If you want a webpage editor, get http://www.barebones.com/ BBEdit
    MS Office, there is a free Mac OS X alternative in http://www.neooffice.org/
    Or you can upgrade to the full Office 2004 for the Mac, or get http://www.thinkfree.com/ or Open OS X Office.
    Wordperfect files can be converted to Word files with http://www.dataviz.com/ 's Maclinkplus.
    Microsoft no longer has Internet Explorer for download (that quit being offered January 2006), though that is covered more in my FAQ:
    http://www.macmaps.com/browser.html
    As for other Mac OS X inquiries, I strongly recommend seeing my other FAQ:
    http://www.macmaps.com/macosxnative.html
    which should answer most of your other questions. If you have further questions, please feel free to ask me.
    Disclaimer: Reference to links I make to my Macmaps.com website are a for your information only type reference. I do not get any profit from this page, and it is open to the public.

  • Get a SMS from NOKIA about a NEW FIRMWARE UPDATE T...

    HI to all !
      Now its easy to get notified about a new Firmware update to the mobile from the nokia.
    The task is simple,  just go to
      http://nokia.com/mynokia
      and get registered there by giving your phone details and your mobile number.
    Nokia sent a message to you when the new update is released. it also tells you whether your network provider is approved it or not.
    Not only this.!! you also get a tips and tricks of your phone model now and then.
    Thanks,
    Anilsky

    Welcome to 2008

  • Need create a new control key, which message control is "error mode", then PR or PO

    Hi All,
    Can please help me I got an issue in QM ,
    Issue Description :-  Current QM control key for supplier validation date is “0001”, the message mode is only warning. PR or PO still can be created forcibly. Need create a new control key, which message control is “error mode”, then PR or PO cannot be created successfully.
    I thing should add some additional logic using BADI or USER-EXIT.
    can please help me how to find BADI or USER-EXIT if you know the appropriate BADI please let me know.
    Regards,
    Nani

    Hi,
    I tried that way I entered message control as Defect even purchase requisition is created how can I restricted purchase request ion.
    Regards,
    Nani.   

  • Creation of a new controlling area

    I'm trying to create a new controlling area (trans. OKKP).
    In folder "activate components/control indicators", I wanted to activate Profitability Analysis but the field was in grey and was not possible to change from "component not active" to one of the other activation possibilities.
    I need to know what to do to change this field.
    The client is working with COPA and this set-up was done before to assign the controlling area to the FI company.
    The SAP version is 4.7

    Dear.
    You can activate that through tcd KEKE.
    You know, Before that, Operating concern must be maintained.
    Regards.

Maybe you are looking for

  • Retina macbook pro boots to black screen

    I have a Retina MPB with SSD, etc. Recently after restarting my MPB, a FileVault dialog was presented - I clicked the "cancel" button. After this, my MBP has refused to boot past the initial Apple/grey screen, and instead, stays on a pitch black scre

  • How to customize / integrate Netware 6.5SP8 with postpatches

    Hi, I would like to integrate / customize the original NW65SP8 with some recommended postpatches. Therefore I created a small .IPS / .ICS file which is working fine if runnning manually with NWCONFIG. When try to implement it in e.g. SILENT.ICS the o

  • [URGENT] : ERP11i Using SSO (OID)

    Greetings, I'm using ERP 11i Suite and Oracle AS 10.1.2.0.2 with ID Management 10.1.2 1. does ERP11i users roles and responcibilities can be maintained in OID, so the user from OID be authenticated and then can use the ERP modules according to his ac

  • Weather in iOS 7 Notification Center flashes and disappears

    This is weird. Upgraed to iOS 7 on lauch and the weather description in notification center quickly flashes then is gone. The weather description as text only is instead of the the graphical widget, in my opinion, is far less usable than it used to b

  • I can't convert a large PDF to Word - what's wrong?

    I'm trying to convert a 22MB PDF file and it fails. The only message I get is 'there was an error' or something like that after spending over 2-hours (or so) under the status of 'converting file to Word using Adobe ExportPDF on-line'.  My first thoug