How to change the  UDT's Status other than Open and Close ?

Hello Friends,
                      I have created an table of document type and I want to set the document Status other than open and close for eg.R- Released .
Thanks in advance.

I think if you're using a UDF to set this Status for Marketing documents
First you need to set what item corresponds to each Status level you're tryinf to deploy
After that you can use SDK to set this new property or Formatted searches to change the Status you re creating, and save the document as a draft during your process and your status.
But if you're trying to change the fiel Status used on every Marketing document (i mena the system one), you should know that it is impossible 'cause this is an only read system field.
Hope it helps
Gabriela

Similar Messages

  • How to change the engine's status

    How to change the engine's status?
    Thanks

    In the process administrator there is a little play of stop button next to each engine.
    This is only in enterprise or standalone version off course.
    It this doesn't answer your question please supply some extra information.
    Kind regards
    Nils.

  • Is there a way to view the iCal 'notes' field other than opening each event individually?

    I use the 'notes' field in iCal but it is not visible in any view other than opening each event individually.  Is there any way to make this field visible in the Day or Week view?

    Thanks, this is definitely better than clicking events one by one.  I just don't understand why Apple doesn't display it in the events in the day or week view the same way they show the Location field.  Interestingly, on the iPad "Day" view, the Notes field is diplayed in the panels on the left side of the screen (although not on the right side).
    Anyway, thanks for your prompt help.

  • When I click on the pinned Firefox icon it only opens and closes one window rather than opening a new window.

    It used to be that every time I clicked on the pinned Firefox logo in the taskbar a new window would open. Now when I click the pinned logo it only opens and closes one window.

    hello, this seems to me like intended behaviour - all other open programs behave the same way, a click on the pinned icon minimizes them, another one brings them back to the foreground.
    you can open a new window by right-clicking on the firefox icon & selecting that option. the keyboard shortcut for it would be ctrl+n, or you can also [[Customize Firefox controls, buttons and toolbars|add a "open new window" button]] onto the firefox user interface.

  • How can change the hair to an image every time and how can save the edit image into albums give me code

    HI, I am small iphone developer,i have one problem in my app,please give the guidence to me.
    THIS IS MY PROBLEM:
              I HAVE SELECTED ONE PICTURE FROM ALBUMS OR TAKE PICTURE FROM CAM SO I WANT TO CHANGE THE HAIR STYLES PART WITH ANOTHER HAIR STYELS AND SAVE THE PICTURE INTO ALBUMS HOW CAN GENRATE THE CODE OR LOGIC TO ME......I AM TRYING IT FROM 3WEEKS SO COULD YOU PLEASE GIVE ME GUIDENCE TO ME.................

    HI, I am small iphone developer,i have one problem in my app,please give the guidence to me.
    THIS IS MY PROBLEM:
              I HAVE SELECTED ONE PICTURE FROM ALBUMS OR TAKE PICTURE FROM CAM SO I WANT TO CHANGE THE HAIR STYLES PART WITH ANOTHER HAIR STYELS AND SAVE THE PICTURE INTO ALBUMS HOW CAN GENRATE THE CODE OR LOGIC TO ME......I AM TRYING IT FROM 3WEEKS SO COULD YOU PLEASE GIVE ME GUIDENCE TO ME.................
    Sir I am did it by using Objcetive-C code in iphone as fallows
    demoprojectViewController.h
    #import <UIKit/UIKit.h>
    @interface demoprojectViewController : UIViewController<UIImagePickerControllerDelegate,UINavigationControllerDelegate >
        UIImageView *imageView,*editingimage,*maskimage;
         UIButton *takePictureButton;
        UIButton *selectFromCameraRollButton;
        UIView *myview;
    @property(nonatomic,retain)IBOutlet UIImageView *imageView;
    @property(nonatomic,retain)IBOutlet UIImageView *maskimage;
    @property(nonatomic,retain)IBOutlet UIImageView *editingimage;
    @property(nonatomic,retain)IBOutlet UIButton *takePictureButton;
    @property(nonatomic,retain)IBOutlet UIButton *selectFromCameraRollButton;
    @property(nonatomic,retain )IBOutlet UIView *myview;
    - (IBAction)getCameraPicture:(id)sender;
    - (IBAction)selectExistingPicture;
    -(IBAction)pickHair:(id)sender;
    -(IBAction)done;
    -(IBAction)back;
    @end
    demoprojectViewController.m
    #import "demoprojectViewController.h"
    @implementation demoprojectViewController
    @synthesize imageView,editingimage,maskimage;
    @synthesize takePictureButton;
    @synthesize selectFromCameraRollButton;
    @synthesize myview;
    CGFloat lastScaleFactor = 1;
    CGFloat netRotation;
    CGPoint netTranslation;
    NSArray *images;
    int imageIndex = 0;
    - (void)didReceiveMemoryWarning
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];
        // Release any cached data, images, etc that aren't in use.
    #pragma mark - View lifecycle
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad
       // maskimage=[[UIImageView alloc]initWithFrame:CGRectMake(50, 50, 150, 150)];
        //maskimage.image=[UIImage imageNamed:@"1.png"];
        if ([UIImagePickerController isSourceTypeAvailable:
              UIImagePickerControllerSourceTypeCamera]) {
            takePictureButton.hidden = NO;
            selectFromCameraRollButton.hidden = NO;
           UITapGestureRecognizer *tapGesture =
            [[UITapGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handleTapGesture:)];
            tapGesture.numberOfTapsRequired = 1;
            [maskimage addGestureRecognizer:tapGesture];
            [tapGesture release];
            UIPinchGestureRecognizer *pinchGesture =
            [[UIPinchGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handlePinchGesture:)];
            [maskimage addGestureRecognizer:pinchGesture];
            [pinchGesture release];
            ///---rotate gesture---
            UIRotationGestureRecognizer *rotateGesture =
            [[UIRotationGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handleRotateGesture:)];
            [maskimage addGestureRecognizer:rotateGesture];
            [rotateGesture release];
            //---pan gesture---
            UIPanGestureRecognizer *panGesture =
            [[UIPanGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handlePanGesture:)];
            [maskimage addGestureRecognizer:panGesture];
            [panGesture release];
            //---swipe gesture---
            images = [[NSArray alloc] initWithObjects:
                      @"1.png",
                      @"2.png",
                      @"3.png", nil];
            //---right swipe (default)---
            UISwipeGestureRecognizer *swipeGesture =
            [[UISwipeGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handleSwipeGesture:)];
            [maskimage addGestureRecognizer:swipeGesture];
            [swipeGesture release];
            //---left swipe---
            UISwipeGestureRecognizer *swipeLeftGesture =
            [[UISwipeGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handleSwipeGesture:)];
            swipeLeftGesture.direction = UISwipeGestureRecognizerDirectionLeft;
            [maskimage addGestureRecognizer:swipeLeftGesture];
            [swipeLeftGesture release];
        [super viewDidLoad];
    -(IBAction) handleTapGesture:(UIGestureRecognizer *) sender {
        if (sender.view.contentMode == UIViewContentModeScaleAspectFit)
            sender.view.contentMode = UIViewContentModeCenter;
        else
            sender.view.contentMode = UIViewContentModeScaleAspectFit;
    -(IBAction) handlePinchGesture:(UIGestureRecognizer *) sender {
        CGFloat factor = [(UIPinchGestureRecognizer *) sender scale];
        if (factor > 1) {
            //---zooming in---
            sender.view.transform = CGAffineTransformMakeScale(
                                                               lastScaleFactor + (factor-1),
                                                               lastScaleFactor + (factor-1));
        } else {
            //---zooming out---
            sender.view.transform = CGAffineTransformMakeScale(
                                                               lastScaleFactor * factor,
                                                               lastScaleFactor * factor);
        if (sender.state == UIGestureRecognizerStateEnded){
            if (factor > 1) {
                lastScaleFactor += (factor-1);
            } else {
                lastScaleFactor *= factor;
    //---handle rotate gesture---
    -(IBAction) handleRotateGesture:(UIGestureRecognizer *) sender {
        CGFloat rotation = [(UIRotationGestureRecognizer *) sender rotation];
        CGAffineTransform transform = CGAffineTransformMakeRotation(
                                                                    rotation + netRotation);
        sender.view.transform = transform;
        if (sender.state == UIGestureRecognizerStateEnded){
            netRotation += rotation;
    //---handle pan gesture---
    -(IBAction) handlePanGesture:(UIGestureRecognizer *) sender {
        CGPoint translation =
        [(UIPanGestureRecognizer *) sender translationInView:maskimage];
        sender.view.transform = CGAffineTransformMakeTranslation(
                                                                 netTranslation.x + translation.x,
                                                                 netTranslation.y + translation.y);
        if (sender.state == UIGestureRecognizerStateEnded){
            netTranslation.x += translation.x;
            netTranslation.y += translation.y;
    -(IBAction) handleSwipeGesture:(UIGestureRecognizer *) sender {
        UISwipeGestureRecognizerDirection direction =
        [(UISwipeGestureRecognizer *) sender direction];
        switch (direction) {
            case UISwipeGestureRecognizerDirectionUp:
                NSLog(@"up");
                break;
            case UISwipeGestureRecognizerDirectionDown:
                NSLog(@"down");
                break;
            case UISwipeGestureRecognizerDirectionLeft:
                imageIndex++;
                break;
            case UISwipeGestureRecognizerDirectionRight:
                imageIndex -- ;
                break;
            default:
                break;
        imageIndex = (imageIndex < 0) ? ([images count] - 1):
        imageIndex % [images count];
        imageView.image = [UIImage imageNamed:
                           [images objectAtIndex:imageIndex]];
    #pragma mark -
    - (IBAction)getCameraPicture:(id)sender {
        UIImagePickerController *picker =
        [[UIImagePickerController alloc] init];
        picker.delegate = self;
        //picker.allowsImageEditing = YES;
        picker.sourceType = (sender == takePictureButton) ?
        UIImagePickerControllerSourceTypeCamera :
        UIImagePickerControllerSourceTypeSavedPhotosAlbum;
        [self presentModalViewController:picker animated:YES];
        [maskimage removeFromSuperview];
        [picker release];
    - (IBAction)selectExistingPicture {
        if ([UIImagePickerController isSourceTypeAvailable:
             UIImagePickerControllerSourceTypePhotoLibrary]) {
            UIImagePickerController *picker =
            [[UIImagePickerController alloc] init];
            picker.delegate = self;
            picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
            [self presentModalViewController:picker animated:YES];
            [maskimage removeFromSuperview];
            [picker release];
        else {
            UIAlertView *alert = [[UIAlertView alloc]
                                  initWithTitle:@"Error accessing photo library"
                                  message:@"Device does not support a photo library"
                                  delegate:nil
                                  cancelButtonTitle:@"Drat!"
                                  otherButtonTitles:nil];
            [alert show];
            [alert release];
    #pragma mark -
    - (void)imagePickerController:(UIImagePickerController *)picker
            didFinishPickingImage:(UIImage *)image
                      editingInfo:(NSDictionary *)editingInfo {
        imageView.image = image;
        [picker dismissModalViewControllerAnimated:YES];
    - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
        [picker dismissModalViewControllerAnimated:YES];
    - (IBAction)btnSave_Clicked:(id)sender;
        UIImageWriteToSavedPhotosAlbum(editingimage.image, nil, nil, nil);
        //UIImageWriteToSavedPhotosAlbum(imageView.image, nil, nil, nil);
        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Success" message:@"Image saved successfully to iPhone photo albums..." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
        [alert show];
        [alert release];
    -(IBAction)pickHair:(id)sender;
           //[maskimage setMultipleTouchEnabled:YES];
       // [maskimage setUserInteractionEnabled:YES];
        //[maskimage setContentMode:UIViewContentModeScaleAspectFit];
        maskimage.image=[UIImage imageNamed:@"1.png"];
        [imageView addSubview:maskimage];
    -(IBAction)done
        NSLog(@"hiafjdkfj");
        UIGraphicsBeginImageContext(imageView.image.size); 
        CGRect rect1 = CGRectMake(netTranslation.x,netTranslation.y,maskimage.image.size.width , maskimage.image.size.height);
        CGRect rect = CGRectMake(0, 0, imageView.image.size.width, imageView.image.size.height);
        [imageView.image drawInRect:rect]; 
        [maskimage.image drawInRect:rect1]; 
        UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext(); 
        UIGraphicsEndImageContext(); 
        [editingimage setImage:resultingImage];
        [myview addSubview:editingimage];
        [self.view addSubview:myview];
    -(IBAction)back
        [myview removeFromSuperview];
        //[editingimage removeFromSuperview];
    -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
        UITouch *touch = [[event allTouches] anyObject];
        CGPoint location = [touch locationInView:touch.view];
        maskimage.center = location;
    -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
        [self touchesBegan:touches withEvent:event];
    - (void)viewDidUnload
        self.imageView = nil;
        self.maskimage=nil;
        self.takePictureButton = nil;
        self.selectFromCameraRollButton = nil;
        [super viewDidUnload];
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO rientation
        // Return YES for supported orientations
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    - (void)dealloc {
        [imageView release];
        [images release];
        [takePictureButton release];
        [selectFromCameraRollButton release];
        [super dealloc];
    @end
    but i can not put the hair to the proper place means on edit image when am saving the image please help meee

  • Does anyone know how to change the name of iphone 4 in itunes and no my itunes does not have alist on the left hand side to change it.

    i have been trying to change the name of my iphone 4 but every post I see says that there should be a left hand column and my itunes player does not have that is there a different way to change the way of it?

    Turn on the side bar by typing Cntrl + S.

  • Does anybody know how to change the title of your podcast on iTunes and the description of it?

    I was working on my feed site and when the podcast popped up on iTunes I realized that I put the wrong info and title on it. Anybody know?

    You change the title and descriptions by entering the changed versions in wherever you originally entered the items in whatever system you are using to create your feed, then re-publish the feed; it will take the iTunes Store a couple of days or so to catch up.
    However, if the method you are using to create your feed is one of those which uses the title of the podcast as part of the URL, and this changes if you change the title, then if you change the URL as a result the iTunes Store will lose contact with it and fail to update in future: so be careful about this.

  • How do change the display settings such as color temperature and backlight brightness on an iMac monitor?

    My wife has an iMac (I don't know any other way to identify it e.g. model number), and she has this 3rd party calibration software that I'm trying to use. I am not used to a Mac, and I cannot find the display settings for the monitor. There are no buttons on the monitor, and when I go to preferences, I can only find the brightness control. I've googled this and cannot find a clear, simple answer. I have used every version of Windows (currently on 8.1 on my PC) and it's easy for me on that platform. I suppose it's just that I don't really know how to navigate Mac OS.

    ItsameMatt03,
    Choose Apple menu > System Preferences, click Displays, then click Color.
    Click Calibrate.Display Calibrator Assistant walks you through calibrating your display, then creates a calibrated color profile.For a more detailed calibration of your display, select the Expert Mode checkbox, which is at the bottom of the introductory text in the assistant.When the display profile is ready, it’s automatically assigned as your display’s color profile.
    Support Articles,
    If your Display doesn't look right: https://help.apple.com/machelp/mac/10.10/index.html?localePath=en.lproj#/mchlp29 06
    Calibrate Your Display: https://help.apple.com/machelp/mac/10.10/index.html?localePath=en.lproj#/mchlp11 09
    I hope that helps,
    Weston

  • I cannot see the option for face time of open and close in iphone 4s

    Plzzz tell me no facetime option for on and off is nott comming in settings help me plzzz

    There is no FaceTime app for the iPhone if that's what you're asking.  FaceTime is accessible through your Contacts as one of the options in how to contact a person -- there is no standalone FaceTime app for iPhone.
    If you mean how to disable FaceTime, you can do that in Restrictions (Settings/General/Restrictions).

  • How to change the IO status to CLOSE after it has been settled through ko8g

    hi ,
    I have the following scenario : An internal order is assigned to a PO and after setllement of such an order i need to CLOSE the order .
    The PO has a GR done (no IR) . Currently Internal Order is in the status : TECO [technically complete] and setlement has ben doneusing Actual Settlemnet Run using KO8G.
    Now i need to change the IO status to  [ CLOSE ] : it is gving an error in KO02 : Balance is not zero .
    How  to change the Internal Order status to CLOSE or rather how to make teh balance in that Order toZero?
    Is it reqd to process some GR's for teh same PO ?
    Thansk
    Trina

    Hi,
    Check the order balance in Ko02
    Menu -->  Extras  -->  Order Balance if balance exist it means that the order has not completely settled.
    Regards,
    Raj

  • How to change the initial page without open safari

    Hi everybody,
    I have problems opening my safari because of the plugin silverlight. I defined a tvair.swisscom.ch page as initial and it makes an error open it. it means that my safari doesn't work at all.
    i want to know if somebody knows how to change the initial page from safari without open safari and solve this problem.
    thx
    cheers
    nun

    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Preferences/com.apple.Safari.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Trash. Relaunch the application and test. Optionally, restore the file from a backup that predates the problem.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • How to change the package name for a msg class

    Can anybody tell me how to change the package name for a message class.
    and how will it effect in the rerport?
    thanks in advance
    kp

    >>and how will it effect in the report?
    You wouldn't see any direct effect on the Report.. But if you transport the report to QA & leave the Message class in Dev, it might result in syntax issues & you will not be able to execute the report. Just ensure that both of them get transported to QA & you will be fine.
    ~Suresh

  • How to change the SBO mailer email address

    Hi,
    Just want to check , how to change the SBO mailer email address? 
    Thanks and Regards,
    Melvin

    Please take a look at this link
    http://www.dei.isep.ipp.pt/~jmendes/SINFI-2005/SAPB1_Documentation/_TB1300%20Material/BO65000_14-10001981/Documentation/Service%20Manager/SBO_ServiceManager_65_EN.pdf
    You no need to send mails through outlook. Once you run the Addon of outlook integration yu have to do the outlook settings and then you cansend it internally hrough B1 but history will get stored in outlooksent box.

  • My iPad will only open Apple apps, the other apps open and then close straight away, how do I fix this?

    My iPad will only open Apple apps, the other apps open and close straight away, how do I fix this?

    To be honest, I don't know but Backup your files and Factory reset it (Clear all of its memory to its original settings, and if that dosent help go to the Apple Store and book a appointment

  • How to change the tablename at runtime?

    Hi
    IN _10gR2_
    I would like to know if there is a way to change the tablename at runtime - other than using dynamic sql.
    These table have similar structure except the tablename iteself.
    For ex. depending on where we get a request we want to look/update different table:
    if request_from x then
    select * from table where ....
    or it could be update or insert statement here
    end if;
    if request from y then
    select * from table_y where ....
    or it could be update or insert statement here
    end if;
    Thanks

    user565033 wrote:
    sorry, this is not an optionWell the best you'll get is something like...
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE           SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-1981        950                    30
          7902 FORD       ANALYST         7566 03-DEC-1981       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-1982       1300                    10
    14 rows selected.
    SQL> select * from emp2;
         EMPNO ENAME      JOB              MGR HIREDATE           SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980          0                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981          0        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981          0        500         30
          7566 JONES      MANAGER         7839 02-APR-1981          0                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981          0       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981          0                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981          0                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987          0                    20
          7839 KING       PRESIDENT            17-NOV-1981          0                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981          0          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987          0                    20
          7900 JAMES      CLERK           7698 03-DEC-1981          0                    30
          7902 FORD       ANALYST         7566 03-DEC-1981          0                    20
          7934 MILLER     CLERK           7782 23-JAN-1982          0                    10
    14 rows selected.
    SQL> with req as (select &required_table as req from dual)
      2  --
      3  select * from emp, req where req = 1 union all
      4  select * from emp2, req where req = 2
      5  /
    Enter value for required_table: 1
    old   1: with req as (select &required_table as req from dual)
    new   1: with req as (select 1 as req from dual)
         EMPNO ENAME      JOB              MGR HIREDATE           SAL       COMM     DEPTNO        REQ
          7369 SMITH      CLERK           7902 17-DEC-1980        800                    20          1
          7499 ALLEN      SALESMAN        7698 20-FEB-1981       1600        300         30          1
          7521 WARD       SALESMAN        7698 22-FEB-1981       1250        500         30          1
          7566 JONES      MANAGER         7839 02-APR-1981       2975                    20          1
          7654 MARTIN     SALESMAN        7698 28-SEP-1981       1250       1400         30          1
          7698 BLAKE      MANAGER         7839 01-MAY-1981       2850                    30          1
          7782 CLARK      MANAGER         7839 09-JUN-1981       2450                    10          1
          7788 SCOTT      ANALYST         7566 19-APR-1987       3000                    20          1
          7839 KING       PRESIDENT            17-NOV-1981       5000                    10          1
          7844 TURNER     SALESMAN        7698 08-SEP-1981       1500          0         30          1
          7876 ADAMS      CLERK           7788 23-MAY-1987       1100                    20          1
          7900 JAMES      CLERK           7698 03-DEC-1981        950                    30          1
          7902 FORD       ANALYST         7566 03-DEC-1981       3000                    20          1
          7934 MILLER     CLERK           7782 23-JAN-1982       1300                    10          1
    14 rows selected.
    SQL> /
    Enter value for required_table: 2
    old   1: with req as (select &required_table as req from dual)
    new   1: with req as (select 2 as req from dual)
         EMPNO ENAME      JOB              MGR HIREDATE           SAL       COMM     DEPTNO        REQ
          7369 SMITH      CLERK           7902 17-DEC-1980          0                    20          2
          7499 ALLEN      SALESMAN        7698 20-FEB-1981          0        300         30          2
          7521 WARD       SALESMAN        7698 22-FEB-1981          0        500         30          2
          7566 JONES      MANAGER         7839 02-APR-1981          0                    20          2
          7654 MARTIN     SALESMAN        7698 28-SEP-1981          0       1400         30          2
          7698 BLAKE      MANAGER         7839 01-MAY-1981          0                    30          2
          7782 CLARK      MANAGER         7839 09-JUN-1981          0                    10          2
          7788 SCOTT      ANALYST         7566 19-APR-1987          0                    20          2
          7839 KING       PRESIDENT            17-NOV-1981          0                    10          2
          7844 TURNER     SALESMAN        7698 08-SEP-1981          0          0         30          2
          7876 ADAMS      CLERK           7788 23-MAY-1987          0                    20          2
          7900 JAMES      CLERK           7698 03-DEC-1981          0                    30          2
          7902 FORD       ANALYST         7566 03-DEC-1981          0                    20          2
          7934 MILLER     CLERK           7782 23-JAN-1982          0                    10          2
    14 rows selected.
    SQL>Otherwise you'll have to perhaps use a few "alter table rename..." ddl's to switch the table names around prior to your query.

Maybe you are looking for

  • My pictures will not open. When I click on them they only display a grey triangle and an exclamation mark inside it.

    I know how I messed it all up. I opened up Finder from the bottom dock and saw all my files including pics. Trying to free up as much space as possible on my pc I selected all and then deleted it. I thought because it is all in iphoto ,deleting it fr

  • New Firewire 800 External Hard Drive and how to use old External USB Drive

    Hi All, I have a new LaCie d2 Quadra Hard Disk hard drive 500 GB - FireWire / FireWire 800 / Hi-Speed USB / eSATA-300 on the way, when it arrives I plan to use it as my Time Machine Backup drive with the FireWire 800 connection. I am currently using

  • XML Data into table

    Hello Sorry, for the next question, but it doens't wort :-(... I want to insert this xmldata into a table: <?xml version="1.0" encoding="ISO-8859-1" standalone="no" ?> <aps:Operations xmlns:aps="Software" aps_version="V4.02-03.00" aps_versionl="40203

  • Authorization error while resending message in rwb

    Dear all, our system is runing on SPS16. When a message run into status 'system error' i select it and do resend. I got this error: 'Authorization failed for the specified roles. For details see log entry 02004C4F4F....' The message run into error be

  • Problem ADF af:document i18n

    Hello, I tried to use SRDemo application as a base for mine, but I've got a problem with encoding. I wrote smth like: <?xml version='1.0' encoding='windows-1251'?> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:af="http://xmln