How to get of loop of get objec

can some one tell how to get of logical database PCH.

Hi,
GEt of LDB PCH, if that means to know the logic for it.
Then goto se36 and give name PCH.
It ill display the related table & structures for you.
If you want to see the code for this logical database, then click on the ' SOURCE CODE' tab on the same screen, it will show the code.
Regards,
Amit
Reward all helpful queries.

Similar Messages

  • How to continue the loop after getting the exception NO_DATA_FOUND

    I am inserting 2000 employees attendance data into table through procedure by validating the shifts assigned some times if employee doesn't have shift it raising NO_DATA_FOUND exception, so now I am inserting the details of the employee into one table as a log.
    my question is if 2000 transactions are inserting if exception raised at 1000 record as "NO_DATA_FOUND" is it remaining records will insert into the table? or it will exit from the procedure and stops remaining 1000 transactions?, please advice if any other way to continue the remaining transactions
    oracle version: 11 G R2, OS: Windows 2008 R2

    Do your select statement in a seperate begin...end block, you can cath the excption in the block and do your logging there.
    Something like this
    --just an example from scott/tiger
    Declare
    CNT number := 7851 ;
    vname varchar2(25);
    ins_flag boolean ;
    BEGIN
    while cnt  <= 7935 and cnt >=7850
    LOOP
    Begin
    select ename into vname from emp where empno=cnt ;
    ins_flag := true;
    exception
      when no_data_found then
    -- dbms_output.put_line('no data');
    ins_flag := false;
    end;
      if ins_flag then
      --do insert here
      dbms_output.put_line('do your insert here');
    else
      dbms_output.put_line('no insert');
    end if;
      cnt := cnt+1 ;
    END LOOP;
    end;

  • I have had a reinstall nightmare getting my loops back they are in the apple library, I can access them through the media browser but I only have a few available through the loop browser, how do I get them all back there again? please help

    I have had a reinstall nightmare getting my loops back they are in the apple library, I can access them through the media browser but I only have a few available through the loop browser, how do I get them all back there again? please help

    "Where do I find my hundreds of dollars of downloads I have done since 2005?"
    They will only be where you put them  If you are doing the very basics, then they will be on your computer and they will be in your backup copy of your computer.
    The itunes store is not global at all, never has been. You cannot redownload your content from another country.  You can only use the countrys itunes store for the country that you are physically located.

  • I am using a timed while loop and am unable to get the loop to run at a speed of less than 1ms (I am currently using the Wait(ms) function). How can I get a faster response?

    I am trying to create a virtual engine within a timed while loop and am unable to get the loop to run at a speed of less than 1ms (I am currently using the Wait(ms) function). This does not however allow realistic engine speeds. How can I overcome this? I have access to a PCI-MIO-16E-4 board.

    andyt writes:
    > I am using a timed while loop and am unable to get the loop to run at
    > a speed of less than 1ms (I am currently using the Wait(ms) function).
    > How can I get a faster response?
    >
    > I am trying to create a virtual engine within a timed while loop and
    > am unable to get the loop to run at a speed of less than 1ms (I am
    > currently using the Wait(ms) function). This does not however allow
    > realistic engine speeds. How can I overcome this? I have access to
    > a PCI-MIO-16E-4 board.
    Andy,
    Unless you use a real time platform, getting extactly 1 ms loop rate
    (or even less) is impossible. It starts getting troublesome at about
    0.1 Hz for standard operating systems.
    I'd tackle your problem with "if i mod 10 == 0 then sleep 1 ms".
    Of
    course this is jerky by design.
    HTH,
    Johannes Nie?

  • How to make labview program to get average value of 200 reading from multimeter (by using loop)

    Hello
    How to make labview program to get average value of 200 reading from multimeter (I using using loop) to read voltage from mulmeter  but I like to get average value of all of 200 reding how can I do that?
    Thanks
    Wee
    Solved!
    Go to Solution.

    Another idea with less programming - take advantage of the "free" array that comes with a Chart - i.e. the  History Data.
    1) Wire your DMM data to a Chart. (You can set the chart to invisible if you don't plan on using it in the GUI).
    2) Set the Chart History Length to 200 (right click on the chart, click on Chart History Length...)
    3) On the block diagram, use the History Data Property Node, wire it to Mean.vi, and you're done.
    Easiest running average ever.
    Message Edited by Broken Arrow on 04-07-2010 11:36 AM
    Richard
    Attachments:
    EasyAvg.jpg ‏8 KB

  • How to loop to get value of all checked checkboxes?

    I am a non-techic trying to fix something for work. Your help is really appreciated.
    I have a form with checkboxes (4 check boxes). Everything sumbits fine. SQL db is updated perfectly and data is displayed on webpage w/o any problem. However when I go to edit an entry, on the edit form, (if more then one checkbox were selected oringally), non of the checkboxes are checked. If only one checkbox was selected orinally, that checkbox is selected. What am I missing? I know I am suppose to use loop to get all checked checkbox values, but I have no idea how.
    Here is my code so far.
    <input type="checkbox" name="colors" value="red" <cfif #getResultSet.colors# EQ "red">checked</cfif>>red
        <input type="checkbox" name="colors" value="blue" OR<cfif #getResultSet.colors# EQ "blue">checked</cfif>>blue
        <input type="checkbox" name="colors" value="green" OR<cfif #getResultSet.colors# EQ "green"></cfif>>green
        <input type="checkbox" name="colors" value="yellow" OR<cfif #getResultSet.colors# EQ "yellow">checked</cfif>>yellow

    JayYaj wrote:
    However when I go to edit an entry, on the edit form, (if more then one checkbox were selected oringally), non of the checkboxes are checked. If only one checkbox was selected orinally, that checkbox is selected.
    You've given all the checkboxes the same name. Give them each a unique name and you will be able to access them individually. Current standards also require a unique ID, which can (but does not have to) be the same as the name.
    The "OR" characters in your code are not doing anything. You can safely delete them.

  • How do I get this loop to give me numbers within a range?

    So for a school assignment I need to get a loop to display all the numbers in a certain range. This range is input by the user with a starting number and an end number. For some reason when i put the code in all its giving me is the end number and not the numbers between the start and end. I was wondering if someone could show me what to tweak to fix it. This is the code so far...
    // Add event listener
    submit_btn.addEventListener(MouseEvent.CLICK, onClick);
    function onClick(event:MouseEvent):void {
    // Declare Variables
    var startInput:String;
    var endInput:String;
    var startNum:Number;
    var endNum:Number;
    // Get Start Value from Text Field
    startInput=start_txt.text;
    // Convert value from string to number
    startNum = Number(startInput);
    // Get End Value from Text Field
    endInput=end_txt.text;
    // Convert value from string to number
    endNum = Number(endInput);
    // For loop
    for (var range:int = startNum; range <= endNum; range++ )
        response_txt.text = "The numbers between the inputed integers are " + range + "!";
    I've also include the actual program so you can see it if you want to test it..
    Thanks for your help,
    The Student of Flash

    Being that you're a student and this is an assignment, I have to honor what I believe the intentions of the assignment are, which is for you to solve it and get it working, not for someone else to hand you the solution.  But I can offer a hint...
    It's not a question of slowing it down, it's a question of controlling what gets written to the output textfield when.  If you did the trace you saw that it was rewriting the textfield in each loop.  So just as a hint, look up the appendText() method of the TextField class.

  • How to get a loop run for 1 instance every time a button is pressed

    I need to get a loop run only once everytime a button is pressed.
    Please help me.

    Read the help built into LabVIEW
    Here's online version of the help: http://zone.ni.com/reference/en-XX/help/371361L-01/glang/event_structure/
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Tried to install OS X Yosemite on my MacBook. Got message that it could not be installed on my computer due to error while extracting files from package "Essentials.pkg". When i quit the installer as recommended it goes in a loop and gets stuck.

    Tried to install OS X Yosemite on my MacBook. Got message that it could not be installed on my computer due to error while extracting files from package "Essentials.pkg". When i quit the installer as recommended it goes in a loop and gets stuck.

    Hey corrafromlondon,
    Thanks for the question. After reviewing your post, it sounds like the installer file isn't working. Have you tried deleting the installer and redownloading the installer? I would recommend that you read this article, it may be able to help you isolate or resolve the issue.
    How to install OS X Yosemite on your Mac - Apple Support
    you can find the Yosemite installer app in your Applications folder or Launchpad. 
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • I never used LabView but need to generate a RS-233 serial output string that contains an IRIG timestamp based on a contact closure. Is LabView an appropriate tool to do this? How much does it cost to get started with the product?

    I never used LabView but need to generate a RS-233 serial output string that contains an IRIG timestamp based on a contact closure. Is LabView an appropriate tool to do this? How much does it cost to get started with the product?

    Labview isn't cheap, but it would certainly allow you to build a program (set of vi's - virtual instruments) that would do what you describe. Where would the timecode information come from? Your vi, or program, would: Start up, initialize the serial port, loop until a trigger happened, read the timecode (from where?), output that timecode out the serial port in a loop until you pressed the stop button. There is a free evaluation of Labview software available from NI - the base product itself runs about $995.
    - Dave

  • I noticed that any other code in my while loop only gets called at the 1st time through the loop and when a event is executed.

    HI there!
    I have a while loop, in which i am reading from/writing  to a compact rio. Furthermore, i added a event structure, its the 1st time i'm using it so i'm a bit lost at times.
    I have the event structure set up for all my button i want to trigger an event. However, i have some other code which i would also like to be executed, evebn though no event has been executed.
    I noticed that the other stuff in the loop only gets executed the 1st time through the loop and when an event is triggered.
    My question therefore is, how do i get the other stuff to execute as well?
    Please advise.
    Thanks.
    Regards,

    Put the other code in the timeout event case.  Wire some positive value to the timeout hourglass input.  That code will execute everytime a timeout occurs.  For instance, if you wire 100 into the timeout, the code in that case will execute every 100 mSec.
    - tbob
    Inventor of the WORM Global

  • I bought an Ipod touch online, how much would it be to get the screan fixed?

    I fell off my back and the top corner of my ipod touch was cracked. How much would it coast to get this fixed? Would they even though I bought it online used?

    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price                       
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the screen yourself if you are up to it
    iPod Touch Repair – iFixit

  • How much would it be to get my pic messaging back?

    Okay, so here's "the scoop." I was added under my dad and stepmom's plan on Oct. 4th 2009. We have the 700 min. talk and text* plan and was wondering about our pix messaging plan. As I understand it, they USED to be included in that plan for one FLAT price. Well in March, my dad decided to put my phone under suspension because I didn't really use it. In May I got it back and had pix messaging for a while, but then when I got a pix message it showed a banner saying "national access not available." So I called my dad and he said that he had taken pix messaging off our plan, he told me it was because it was expensive. I would really like to have it back now (because I am a teenager) and would be willing to pay for it but I have questions and they need answers before I go ahead and propose this idea to my dad.
    1. Did verizon change pix messaging rates and plans?
    2.  About how much would it be to get it back, and would it apply to all three (my dad, my stepmom, and I) of us?
    3. Can it be added back to our plan? (I know with some things once you remove it, you can't get it back, you either have to upgrade, and then go back to where you were, or cancel your plan altogether.)
    Thank you in advance

    pbkrebels13 wrote:
    Okay, so here's "the scoop." I was added under my dad and stepmom's plan on Oct. 4th 2009. We have the 700 min. talk and text* plan and was wondering about our pix messaging plan. As I understand it, they USED to be included in that plan for one FLAT price. Well in March, my dad decided to put my phone under suspension because I didn't really use it. In May I got it back and had pix messaging for a while, but then when I got a pix message it showed a banner saying "national access not available." So I called my dad and he said that he had taken pix messaging off our plan, he told me it was because it was expensive. I would really like to have it back now (because I am a teenager) and would be willing to pay for it but I have questions and they need answers before I go ahead and propose this idea to my dad.
    1. Did verizon change pix messaging rates and plans?
    2.  About how much would it be to get it back, and would it apply to all three (my dad, my stepmom, and I) of us?
    3. Can it be added back to our plan? (I know with some things once you remove it, you can't get it back, you either have to upgrade, and then go back to where you were, or cancel your plan altogether.)
    Thank you in advance
    Talk and Text 700 minutes is $99.99 a month for 2 lines, and $9.99 for each additional line of service.  That includes unlimited texting, pictures too, for all lines.  Blocking National access, as Mary said, and it does sound as if that's the case, does not SAVE any money, if you still have the Talk & Text plan, it just prevents picture and sound messages from being sent and received.
    On the other hand, if there is a block on picture messaging, and they stepped down to the Talk only plan, they are saving $30 a month bu paying for texts - unless they added a texting plan for only your line.
    You need to find out what plan is on the account, and what, if any, blocks are in place.  A national access block will prevent you from accessing the internet and stop data charge surprises, but it also block picture messaging.  You can add a texting package to only your line if they are on the TALK only plan:
    $5/mo for 250 texts (sent and received)
    $10/mo for 500 texts PLUS unlimited texts M2M
    $20/mo for 5000 texts PLUS unlimited M2M
    This is per line, and each line on a family plan can have its own bundle.
    If they are still on the Talk & Text, you already have unlimited text, picture, and video messaging included.

  • Apple loops not getting saved with current projects tempo

    I can't seem to make an apple loop that would get saved with the current projects tempo....i recorded a single bar midi drum loop with 130 as project tempo but when i save it as an apple loop it gets saved with a tempo of 92bpm. strange thing is when i drag the same loop back on a instrument track it plays at the current tempo i.e., at 130bpm but if i drag it to an audio track it plays at 92bpm... really stuck here....any help would be greatly appreciated..thanx..

    ok now i have got half of the problem solved....i had left the "follow tempo" region parameter ticked....so now when i unticked it the loop follows the project tempo....but i dont understand y does the loops get saved with a tempo of 92 whereas the project tempo is 130bpm....moreover when i audition these loops they don't really LOOP while playin back....

  • Apple loops not getting saved with tempo info

    I can't seem to make an apple loop that would get saved with the current projects tempo....i recorded a single bar midi drum loop with 130 as project tempo but when i save it as an apple loop it gets saved with a tempo of 92bpm. strange thing is when i drag the same loop back on a instrument track it plays at the current tempo i.e., at 130bpm but if i drag it to an audio track it plays at 92bpm... really stuck here....any help would be greatly appreciated..thanx..

    ok now i have got half of the problem solved....i had left the "follow tempo" region parameter ticked....so now when i unticked it the loop follows the project tempo....but i dont understand y does the loops get saved with a tempo of 92 whereas the project tempo is 130bpm....moreover when i audition these loops they don't really LOOP while playin back....

Maybe you are looking for