GET Command

Dear SDN,
In order to create a custom Report, I need to understand a Standard program, which at a certain point has a "GET objec" command.
The structure objec, in this case, is related to the OBJEC table, which is related to the PCH database that was defined as the Logical Database in the program Attributes. (So far so good!)
My problem is that when the command "GET objec" is executed, it returns specific values in that structure, but I can't find where these data is coming from.
When in my Z program I execute the same command, it returns a completely different set of data.
Please, does anyone know what is the logic behind that command, or how I can find the source of the data that is loaded into this strucutre when the "GET" command is executed?
(The SAP Report in case is RHSBES00)
Thank you.

Fabio,
Please search the forums using 'Logical database' and read some documentation to understand the GET command.
Basically it fills the structure from the database using select and goes in a select-endselect loop until the selection screen data is satisfied.
BR,
Diwakar

Similar Messages

  • Exchange 2013 CU5 , Exchange Power Shell very very very slow reasponse when using get command.

    Exchange 2013 CU5 , Exchange Power Shell very very very slow reasponse when using get command.
    First my organize has Exchange on 2 site like
    site A (internet facing) : 2CAS 2 MB all are Services pack1
    site B (DR Site , no user active on this site) : 2CAS 2MB all are Services pack 1
    so today I upgrade Exchange 2013 from SP1 to CU5 start on "site B" and I found this issue and the details is....
    When I open EMS on any CU5 for query something (like get-mailboxdatabasecopystatus) the response return very slow and some query will not return at all (like get-owavirtualdirectory).
    But If I using EMS on SP1. Everything is ok then I try to use EMS on SP1 connect to CU5 and try to query something. the result is
    some query command cannot return for any result that are server on siteB (just some query command)
    Problem
    EMS on CU5 return very slow result.
    EMS on SP1 still ok.
    Does anyone face this problem before for CU5??? Please help me figure this out. Thank you
    reply from Social.technet

    Hi,
    Have you used the above cmdlets to check your Exchange server health?
    "all other command that I ran on EMS didn't logged on event viewer.", my environment is the same with you. I use Exchange 2013, only errors will be displayed in MSExchange Management. Actually, it is not related to slow EMS response.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • ORACLE 9i-illegal get command

    HELP HELP
    New to Oracle 9i, learning to use database and sql*plus. It took 2 weeks to download (issues) and 1 week to create and password correctly sql to make some practice tables. The tables are created in notepad and when I try to open them --
    1. have to change to all types of files ( figured it out *.sql), and then I get a:
    2. illegal get command
    How do I use a get command? Can a cutnpaste picture be sent? Thanks a lot Sandee

    Command errors-- this what I get; lol
    SP2-0423: Illegal GET command
    SQL>
    SP2-0103: Nothing in SQL buffer to run.
    Here is the table I made---( it was mentioned by the teacher that some some spaces and capitalizations were cosmetic in nature.Well, really, how are we students supposed to know which are needed?
    SQL>
    CREATE TABLE EMPLOYEE
    (employee_SSN Number(9)NOTNULL,
    first_name Varchar2(10)NOTNULL,
    last_name Varchar2(15)NOTNULL,
    address_1 Varchar2(25)NOTNULL,
    address_2 Varchar2(25)NOTNULL,
    city varchar2(25)NOTNULL,
    state char(2)NOTNULL,
    zip Varchar(10)NOTNULL,
    telephone_no number(10)NOTNULL,
    email_addr varchar2(50)NOTNULL,
    birth_date dateNOTNULL,
    hire_date dateNOTNULL,
    department_ID Number(3)NOTNULL,
    salary number(8,2)NOTNULL,
    title_id number(3)NOTNULL)
    -0423: Illegal GET command
    >
    -0423: Illegal GET command
    >
    -0103: Nothing in SQL buffer to run.
    CREATE TABLE EMPLOYEE
    (employee_SSN Number(9)NOTNULL,
    first_name Varchar2(10)NOTNULL,-0734: unknown command beginning "first_name..." - rest of line ign
    >
    last_name Varchar2(15)NOTNULL,-0734: unknown command beginning "last_name ..." - rest of line ign
    >
    address_1 Varchar2(25)NOTNULL,-0734: unknown command beginning "address_1 ..." - rest of line ign
    >
    address_2 Varchar2(25)NOTNULL,-0734: unknown command beginning "address_2 ..." - rest of line ign
    -0044: For a list of known commands enter HELP
    to leave enter EXIT.
    >
    city varchar2(25)NOTNULL,-0734: unknown command beginning "city varch..." - rest of line ign
    >
    state char(2)NOTNULL,-0734: unknown command beginning "state char..." - rest of line ign
    >
    zip Varchar(10)NOTNULL,-0734: unknown command beginning "zip Varcha..." - rest of line ign
    >
    telephone_no number(10)NOTNULL,-0734: unknown command beginning "telephone_..." - rest of line ign
    -0044: For a list of known commands enter HELP
    to leave enter EXIT.
    >
    email_addr varchar2(50)NOTNULL,-0734: unknown command beginning "email_addr..." - rest of line ign
    >
    birth_date dateNOTNULL,-0734: unknown command beginning "birth_date..." - rest of line ign
    >
    hire_date dateNOTNULL,-0734: unknown command beginning "hire_date ..." - rest of line ign
    >
    department_ID Number(3)NOTNULL,-0734: unknown command beginning "department..." - rest of line ign
    -0044: For a list of known commands enter HELP
    to leave enter EXIT.
    >
    salary number(8,2)NOTNULL,-0734: unknown command beginning "salary num..." - rest of line ign
    >
    title_id number(3)NOTNULL)-0734: unknown command beginning "title_id n..." - rest of line ign
    >
    Here I do not have empty spaces.
    (I added them in the first only to see if that would help.)
    create table department
    (department_id number(3)NOTNULL,
    department_name varchar2(30)NOTNULL,
    supervisor_ssn number(9)NOTNULL)
    SQL> create table department
    2
    SQL> (department_id number(3)NOTNULL,
    2 department_name varchar2(30)NOTNULL,
    3 supervisor_ssn number(9)NOTNULL)
    4 ;
    (department_id number(3)NOTNULL,
    ERROR at line 1:
    ORA-00928: missing SELECT keyword
    These were copied as best I could from my teacher's examples. Sigh....
    Alrighty then, trying next suggestion...
    SQL> create table department
    2
    SQL> (department_ID number(3) NOT
    2 NULL,
    3 department_name Varchar2(30) NOT
    4 NULL,
    5 supervisor_ssn number(9) NOT
    6 NULL)
    7 ;
    8
    9
    10
    11
    12
    13 run
    14 /run
    15 /
    (department_ID number(3) NOT
    ERROR at line 1:
    ORA-00928: missing SELECT keyword
    trying again with new copy and paste function as it won't open a file...
    I'm using this table as it is the shortest...
    SQL>
    SQL>
    SQL> create table department
    2
    SQL> (department_ID number(3) NOT
    2 NULL,
    3 department_name Varchar2(30) NOT
    4 NULL,
    5 supervisor_ssn number(9) NOT
    6 NULL)
    7 ;
    (department_ID number(3) NOT
    ERROR at line 1:
    ORA-00928: missing SELECT keyword
    SQL> /
    (department_ID number(3) NOT
    ERROR at line 1:
    ORA-00928: missing SELECT keyword
    SQL>
    SQL>
    Line 1 create table department
    In a three word copy exercise, how did I go wrong? Sandee
    dementia is beginging to be clearer now....lol

  • Unable to get command line from client!

    Does anyone know what this means? My G5 shuts itself down and I don't know what is causing it.
    Mac OS X Version 10.4.11 (Build 8S165)
    2009-02-12 11:01:19 -0800
    2009-02-12 11:01:21.760 SystemUIServer[199] lang is:en
    Feb 12 11:01:33 mDNSResponder: NAT Port Mapping (LLQ event port.): timeout
    Feb 12 11:01:37 cups-lpd[221]: Unable to get command line from client!
    Feb 12 11:10:48 Zelle-Olson cups-lpd[233]: Unable to get command line from client!
    Feb 12 11:17:37 cups-lpd[235]: Unable to get command line from client!

    Hello golferky,
    CUPS stands for Common Unix Printing System and is just one of the many background processes that is running on your system and is of no harm. What you are seeing in your message console is your Mac attempting to talk to a printer you have may have had or still have it connected to.
    Here is more information if you want to look into it.
    http://www.cups.org/
    B-rock

  • Problems with the "Get" command

    I downloaded my site to Dreamweaver. I used the "Get" command
    and imported it to Dreamweaver. That was fine except that it erased
    all my files on my server. Now my site is just a bunch of
    blank pages.
    I hope I can fix the problem by uploading my files back on to
    my server using the
    Put command.
    Is there any way to prevent this happening again?
    Thanks,

    > That was fine except that it erased
    all my files on my
    > server.
    Cannot possibly do this. The GET function only copies - it
    doesn't delete.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Tynos" <[email protected]> wrote in message
    news:ehfprp$fsl$[email protected]..
    >I downloaded my site to Dreamweaver. I used the "Get"
    command and imported
    >it
    > to Dreamweaver. That was fine except that it erased
    all my files
    > on my
    > server. Now my site is just a bunch of blank pages.
    >
    > I hope I can fix the problem by uploading my files back
    on to my server
    > using
    > the
    Put command.
    >
    > Is there any way to prevent this happening again?
    >
    > Thanks,
    >

  • SP2-0423 Illegal get command

    When I try to run a file using SQL Plus I get SP2-0423 Illegal get command. Can someone help me with this. I have tried uninstalling and reinstalling and it is not fixing the error.
    Thanks in advance for any help.

    Okay here is the code provided by the instructer. this is the Ch5Northwoods.sql...I opened in notepad. I need to run the following code
    -- script to create NORTHWOODS database
    -- revised 8/17/2002 JM
    -- modified 3/17/2004 LM
    DROP TABLE enrollment CASCADE CONSTRAINTS;
    DROP TABLE course_section CASCADE CONSTRAINTS;
    DROP TABLE term CASCADE CONSTRAINTS;
    DROP TABLE course CASCADE CONSTRAINTS;
    DROP TABLE student CASCADE CONSTRAINTS;
    DROP TABLE faculty CASCADE CONSTRAINTS;
    DROP TABLE location CASCADE CONSTRAINTS;
    CREATE TABLE LOCATION
    (loc_id NUMBER(6),
    bldg_code VARCHAR2(10),
    room VARCHAR2(6),
    capacity NUMBER(5),
    CONSTRAINT location_loc_id_pk PRIMARY KEY (loc_id));
    CREATE TABLE faculty
    (f_id NUMBER(6),
    f_last VARCHAR2(30),
    f_first VARCHAR2(30),
    f_mi CHAR(1),
    loc_id NUMBER(5),
    f_phone VARCHAR2(10),
    f_rank VARCHAR2(9),
    f_super NUMBER(6),
    f_pin NUMBER(4),
    f_image BLOB,
    CONSTRAINT faculty_f_id_pk PRIMARY KEY(f_id),
    CONSTRAINT faculty_loc_id_fk FOREIGN KEY (loc_id) REFERENCES location(loc_id));
    CREATE TABLE student
    (s_id VARCHAR2(6),
    s_last VARCHAR2(30),
    s_first VARCHAR2(30),
    s_mi CHAR(1),
    s_address VARCHAR2(25),
    s_city VARCHAR2(20),
    s_state CHAR(2),
    s_zip VARCHAR2(10),
    s_phone VARCHAR2(10),
    s_class CHAR(2),
    s_dob DATE,
    s_pin NUMBER(4),
    f_id NUMBER(6),
    --time_enrolled INTERVAL YEAR TO MONTH,
    time_enrolled VARCHAR2(30),
    CONSTRAINT student_s_id_pk PRIMARY KEY (s_id),
    CONSTRAINT student_f_id_fk FOREIGN KEY (f_id) REFERENCES faculty(f_id));
    CREATE TABLE TERM
    (term_id NUMBER(6),
    term_desc VARCHAR2(20),
    status VARCHAR2(20),
    start_date DATE,
    CONSTRAINT term_term_id_pk PRIMARY KEY (term_id),
    CONSTRAINT term_status_cc CHECK ((status = 'OPEN') OR (status = 'CLOSED')));
    CREATE TABLE COURSE
    (course_no VARCHAR2(7),
    course_name VARCHAR2(25),
    credits NUMBER(2),
    CONSTRAINT course_course_id_pk PRIMARY KEY(course_no));
    CREATE TABLE COURSE_SECTION
    (c_sec_id NUMBER(6),
    course_no VARCHAR2(7) CONSTRAINT course_section_courseid_nn NOT NULL,
    term_id NUMBER(6) CONSTRAINT course_section_termid_nn NOT NULL,
    sec_num NUMBER(2) CONSTRAINT course_section_secnum_nn NOT NULL,
    f_id NUMBER(6),
    c_sec_day VARCHAR2(10),
    c_sec_time DATE,
    --c_sec_duration INTERVAL DAY TO SECOND,
    c_sec_duration VARCHAR2(13),
    loc_id NUMBER(6),
    max_enrl NUMBER(4) CONSTRAINT course_section_maxenrl_nn NOT NULL,
    CONSTRAINT course_section_csec_id_pk PRIMARY KEY (c_sec_id),
    CONSTRAINT course_section_cid_fk FOREIGN KEY (course_no) REFERENCES course(course_no),      
    CONSTRAINT course_section_loc_id_fk FOREIGN KEY (loc_id) REFERENCES location(loc_id),
    CONSTRAINT course_section_termid_fk FOREIGN KEY (term_id) REFERENCES term(term_id),
    CONSTRAINT course_section_fid_fk FOREIGN KEY (f_id) REFERENCES faculty(f_id));
    CREATE TABLE ENROLLMENT
    (s_id VARCHAR2(6),
    c_sec_id NUMBER(6),
    grade CHAR(1),
    CONSTRAINT enrollment_pk PRIMARY KEY (s_id, c_sec_id),
    CONSTRAINT enrollment_sid_fk FOREIGN KEY (s_id) REFERENCES student(s_id),
    CONSTRAINT enrollment_csecid_fk FOREIGN KEY (c_sec_id) REFERENCES course_section (c_sec_id));
    ---- inserting into LOCATION table
    INSERT INTO location VALUES
    (1, 'CR', '101', 150);
    INSERT INTO location VALUES
    (2, 'CR', '202', 40);
    INSERT INTO location VALUES
    (3, 'CR', '103', 35);
    INSERT INTO location VALUES
    (4, 'CR', '105', 35);
    INSERT INTO location VALUES
    (5, 'BUS', '105', 42);
    INSERT INTO location VALUES
    (6, 'BUS', '404', 35);
    INSERT INTO location VALUES
    (7, 'BUS', '421', 35);
    INSERT INTO location VALUES
    (8, 'BUS', '211', 55);
    INSERT INTO location VALUES
    (9, 'BUS', '424', 1);
    INSERT INTO location VALUES
    (10, 'BUS', '402', 1);
    INSERT INTO location VALUES
    (11, 'BUS', '433', 1);
    INSERT INTO location VALUES
    (12, 'LIB', '217', 2);
    INSERT INTO location VALUES
    (13, 'LIB', '222', 1);
    --- inserting records into FACULTY
    INSERT INTO faculty VALUES
    (1, 'Marx', 'Teresa', 'J', 9, '4075921695', 'Associate', 4, 6338, EMPTY_BLOB());
    INSERT INTO faculty VALUES
    (2, 'Zhulin', 'Mark', 'M', 10, '4073875682', 'Full', NULL, 1121, EMPTY_BLOB());
    INSERT INTO faculty VALUES
    (3, 'Langley', 'Colin', 'A', 12, '4075928719', 'Assistant', 4, 9871, EMPTY_BLOB());
    INSERT INTO faculty VALUES
    (4, 'Brown', 'Jonnel', 'D', 11, '4078101155', 'Full', NULL, 8297, EMPTY_BLOB());
    INSERT INTO faculty VALUES
    (5, 'Sealy', 'James', 'L', 13, '4079817153', 'Associate', 1, 6089, EMPTY_BLOB());
    --- inserting records into STUDENT
    INSERT INTO student VALUES
    ('JO100', 'Jones', 'Tammy', 'R', '1817 Eagleridge Circle', 'Tallahassee',
    'FL', '32811', '7155559876', 'SR', TO_DATE('07/14/1985', 'MM/DD/YYYY'), 8891, 1, '3-2');
    INSERT INTO student VALUES
    ('PE100', 'Perez', 'Jorge', 'C', '951 Rainbow Dr', 'Clermont',
    'FL', '34711', '7155552345', 'SR', TO_DATE('08/19/1985', 'MM/DD/YYYY'), 1230, 1, '4-2');
    INSERT INTO student VALUES
    ('MA100', 'Marsh', 'John', 'A', '1275 West Main St', 'Carrabelle',
    'FL', '32320', '7155553907', 'JR', TO_DATE('10/10/1982', 'MM/DD/YYYY'), 1613, 1, '3-0');
    INSERT INTO student VALUES
    ('SM100', 'Smith', 'Mike', NULL, '428 Markson Ave', 'Eastpoint',
    'FL', '32328', '7155556902', 'SO', TO_DATE('09/24/1986', 'MM/DD/YYYY'), 1841, 2, '2-2');
    INSERT INTO student VALUES
    ('JO101', 'Johnson', 'Lisa', 'M', '764 Johnson Place', 'Leesburg',
    'FL', '34751', '7155558899', 'SO', TO_DATE('11/20/1986', 'MM/DD/YYYY'), 4420, 4, '1-11');
    INSERT INTO student VALUES
    ('NG100', 'Nguyen', 'Ni', 'M', '688 4th Street', 'Orlando',
    'FL', '31458', '7155554944', 'FR', TO_DATE('12/4/1986', 'MM/DD/YYYY'), 9188, 3, '0-4');
    --- inserting records into TERM
    INSERT INTO term (term_id, term_desc, status) VALUES
    (1, 'Fall 2005', 'CLOSED');
    INSERT INTO term (term_id, term_desc, status) VALUES
    (2, 'Spring 2006', 'CLOSED');
    INSERT INTO term (term_id, term_desc, status) VALUES
    (3, 'Summer 2006', 'CLOSED');
    INSERT INTO term (term_id, term_desc, status) VALUES
    (4, 'Fall 2006', 'CLOSED');
    INSERT INTO term (term_id, term_desc, status) VALUES
    (5, 'Spring 2007', 'CLOSED');
    INSERT INTO term (term_id, term_desc, status) VALUES
    (6, 'Summer 2007', 'OPEN');
    --- inserting records into COURSE
    INSERT INTO course VALUES
    ('MIS 101', 'Intro. to Info. Systems', 3);
    INSERT INTO course VALUES
    ('MIS 301', 'Systems Analysis', 3);
    INSERT INTO course VALUES
    ('MIS 441', 'Database Management', 3);
    INSERT INTO course VALUES
    ('CS 155', 'Programming in C++', 3);
    INSERT INTO course VALUES
    ('MIS 451', 'Web-Based Systems', 3);
    --- inserting records into COURSE_SECTION
    INSERT INTO course_section VALUES
    (1, 'MIS 101', 4, 1, 2, 'MWF', TO_DATE('10:00 AM', 'HH:MI AM'), '0 00:00:50.00', 1, 140);
    INSERT INTO course_section VALUES
    (2, 'MIS 101', 4, 2, 3, 'TR', TO_DATE('09:30 AM', 'HH:MI AM'), '0 00:01:15.00', 7, 35);
    INSERT INTO course_section VALUES
    (3, 'MIS 101', 4, 3, 3, 'MWF', TO_DATE('08:00 AM', 'HH:MI AM'), '0 00:00:50.00', 2, 35);
    INSERT INTO course_section VALUES
    (4, 'MIS 301', 4, 1, 4, 'TR', TO_DATE('11:00 AM', 'HH:MI AM'), '0 00:01:15.00', 6, 35);
    INSERT INTO course_section VALUES
    (5, 'MIS 301', 5, 2, 4, 'TR', TO_DATE('02:00 PM', 'HH:MI PM'), '0 00:01:15.00', 6, 35);
    INSERT INTO course_section VALUES
    (6, 'MIS 441', 5, 1, 1, 'MWF', TO_DATE('09:00 AM', 'HH:MI AM'), '0 00:00:50.00', 5, 30);
    INSERT INTO course_section VALUES
    (7, 'MIS 441', 5, 2, 1, 'MWF', TO_DATE('10:00 AM', 'HH:MI AM'), '0 00:00:50.00', 5, 30);
    INSERT INTO course_section VALUES
    (8, 'CS 155', 5, 1, 5, 'TR', TO_DATE('08:00 AM', 'HH:MI AM'), '0 00:01:15.00', 3, 35);
    INSERT INTO course_section VALUES
    (9, 'MIS 451', 5, 1, 2, 'MWF', TO_DATE('02:00 PM', 'HH:MI PM'),'0 00:00:50.00', 5, 35);
    INSERT INTO course_section VALUES
    (10, 'MIS 451', 5, 2, 2, 'MWF', TO_DATE('03:00 PM', 'HH:MI PM'), '0 00:00:50.00', 5, 35);
    INSERT INTO course_section VALUES
    (11, 'MIS 101', 6, 1, 1, 'MTWRF', TO_DATE('08:00 AM', 'HH:MI AM'), '0 00:01:30.00', 1, 50);
    INSERT INTO course_section VALUES
    (12, 'MIS 301', 6, 1, 2, 'MTWRF', TO_DATE('08:00 AM', 'HH:MI AM'), '0 00:01:30.00', 6, 35);
    INSERT INTO course_section VALUES
    (13, 'MIS 441', 6, 1, 3, 'MTWRF', TO_DATE('09:00 AM', 'HH:MI AM'), '0 00:01:30.00', 5, 35);
    --- inserting records into ENROLLMENT
    INSERT INTO enrollment VALUES
    ('JO100', 1, 'A');
    INSERT INTO enrollment VALUES
    ('JO100', 4, 'A');
    INSERT INTO enrollment VALUES
    ('JO100', 6, 'B');
    INSERT INTO enrollment VALUES
    ('JO100', 9, 'B');
    INSERT INTO enrollment VALUES
    ('PE100', 1, 'C');
    INSERT INTO enrollment VALUES
    ('PE100', 5, 'B');
    INSERT INTO enrollment VALUES
    ('PE100', 6, 'A');
    INSERT INTO enrollment VALUES
    ('PE100', 9, 'B');
    INSERT INTO enrollment VALUES
    ('MA100', 1, 'C');
    INSERT INTO enrollment VALUES
    ('MA100', 12, NULL);
    INSERT INTO enrollment VALUES
    ('MA100', 13, NULL);
    INSERT INTO enrollment VALUES
    ('SM100', 11, NULL);
    INSERT INTO enrollment VALUES
    ('SM100', 12, NULL);
    INSERT INTO enrollment VALUES
    ('JO101', 1, 'B');
    INSERT INTO enrollment VALUES
    ('JO101', 5, 'C');
    INSERT INTO enrollment VALUES
    ('JO101', 9, 'C');
    INSERT INTO enrollment VALUES
    ('JO101', 11, NULL);
    INSERT INTO enrollment VALUES
    ('JO101', 13, NULL);
    INSERT INTO enrollment VALUES
    ('NG100', 11, NULL);
    INSERT INTO enrollment VALUES
    ('NG100', 12, NULL);
    COMMIT;

  • Disabling get command in SFTP shell

    we are currently running openssh-5.2 on Solaris 5.10 server.
    Is there a way to restrict the commands in SFTP shell. ex "need to disable get command alone "
    is there any option to reconfigure SSH & get achive this
    Regards
    S.Vijay

    in FTP we have an option of cmds_allowed to decided what all commands needs to be allowed or denyed . same way is there option in SSH . What you've described is an application that allows you to enable/disable FTP commands using vsftpd. An application firewall would allow you to do the same for any ftp application and not just one that has it built in.
    The same would apply to ssh. If it's a application then it's application specific. If it's a firewall then the firewall blocks it and not the application.
    alan

  • Tf get command issue

    I am new to tf command and facing issues using it.  I am getting the following error when i executing  
    tf get /recursive /all /noprompt   
    from a unix server 
    Error Message : 
    An argument error occurred: Unable to determine the workspace. You may be able to correct this by running 'tf workspaces -collection:TeamProjectCollectionUrl'
    I have already created a workspace and mapped a folder with the workspace. I am able to see the workspace, workfolder details when i executed  tf workspaces command
    Also the mapping by executing 
    tf workfold -workspace:<my workspace name>
    please let me know what should i do to run the get command correctly. 
    -SrRem

    None of them are.....Only the following are:
    @             COPY         PAUSE                    SHUTDOWN
    @@            DEFINE       PRINT                    SPOOL
    /             DEL          PROMPT                   SQLPLUS
    ACCEPT        DESCRIBE     QUIT                     START
    APPEND        DISCONNECT   RECOVER                  STARTUP
    ARCHIVE LOG   EDIT         REMARK                   STORE
    ATTRIBUTE     EXECUTE      REPFOOTER                TIMING
    BREAK         EXIT         REPHEADER                TTITLE
    BTITLE        GET          RESERVED WORDS (SQL)     UNDEFINE
    CHANGE        HELP         RESERVED WORDS (PL/SQL)  VARIABLE
    CLEAR         HOST         RUN                      WHENEVER OSERROR
    COLUMN        INPUT        SAVE                     WHENEVER SQLERROR
    COMPUTE       LIST         SET
    CONNECT       PASSWORD     SHOW

  • Get command greyed out

    I'm editing a site that was created for me. I can not upload any changes on any pages because the get command is greyed out (as are all the other commands on that window). If I save to server the page appears witih errors. I think it has to do with my path on the local drive, but I'm not sure (I'm a neophyte). Please help me. I'm going nuts trying to fix this.

    Try working through the steps in pt.1 & 6, of the tutorials here, to ensure you have everything set up correctly -
    http://www.adobe.com/devnet/dreamweaver/articles/first_cs4_website_pt1.html
    http://www.adobe.com/devnet/dreamweaver/articles/first_cs4_website_pt6.html
    PZ

  • Exporting Exchange User Details (get command)

    Hi,
    Which 'get' command I can use to export all Exchange AD user details like; Name,DisplayName,OrganizationalUnit,RecipientType,Title,Department,Office,Company,City,Manager
    which should be exported to a CSV file (to use it with another HR application)
    worth to mention: I need the report in CSV format itself for some reason.
    [I have tried
    get-mailbox
    and
    get-mailboxstatistics
      but doesn’t give all required fields.
    Then I tried
    get-user  but it gives only one column with some unique ID ]
    I have used the following get-user cmnd;
    Get-User -resultsize unlimited |FT Name,DisplayName,OrganizationalUnit,RecipientType,WindowsEmailAddress,Title,Department,Office,Company,city
    | Export-csv D:\userdetails.csv
    Please suggest

    Hi,
    Which 'get' command I can use to export all Exchange AD user details like; Name,DisplayName,OrganizationalUnit,RecipientType,Title,Department,Office,Company,City,Manager
    which should be exported to a CSV file (to use it with another HR application)
    worth to mention: I need the report in CSV format itself for some reason.
    [I have tried
    get-mailbox
    and
    get-mailboxstatistics
      but doesn’t give all required fields.
    Then I tried
    get-user  but it gives only one column with some unique ID ]
    I have used the following get-user cmnd;
    Get-User -resultsize unlimited |FT Name,DisplayName,OrganizationalUnit,RecipientType,WindowsEmailAddress,Title,Department,Office,Company,city
    | Export-csv D:\userdetails.csv
    Please suggest
    Don't use FT before Export-CSV.  That screws up the output and you probably aren't getting the information.  Try Get-User -ResultSize Unlimited | select name, displayname, OrganizationUnit, Re........ | Export-CSV -path <path for csv>.csv -NoType
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread

  • Need help about get-command

    hi friends
    i know via Get-command *adapter*, we can list all commands which contain the word "adapter"
    but how to get the list of all commands which contain the word "net" or the word "adapter" or contain both?
    thanks

    Hi John,
    yes, that's possible. I posted my example primarily to show off Select -Unique
    Get-Command | Where { ($_.Name -like "*Adapter*") -or ($_.Name -like "*net*") }
    Another aspect to consider with this kind of structure:
    Your Get-Cmdlet retrieves all entries and you filter only afterwards. With
    Get-Command that's not an issue, but with Wmi, SQL or other queries that either do remote calls or process massive amounts of data, this may result in very inefficient commands.
    Cheers,
    Fred
    There's no place like 127.0.0.1
    Special thanks, really helped.
    best regards ;-)

  • Generating gpib "GET" command

    How can I generate a GPIB "GET" command to trigger multiple instruments? My current controller cannot do it. Are not all controllers created equal?

    I would assume that all controllers could do this. You need to do low-level commands. To perform a trigger, you need to send the command byte UNL (unlisten, 0x3f) followed by the listen address of each instrument (0x20+Primary Address). If you have seconday addresses (where the secondary address is between 0 and 30), you need to send (0x20 + Primary address, then 0x60 + Secondary Address). After sending all listen addresses, you need to send the command GET (Group Execute Trigger, 0x8).
    If you have an NI controller and are using NI-488.2. You need to do this with a board-level handle and the ibcmd method. To send a hex value, use the \x3f, \x8, etc., notation.
    Hope this helps.

  • Power Shell Get Command not recognized

    Dear expertise, 
    I was assigned to filter spam mailing at work . i am trying to find out the current junk mail configuration. We have
    2 exchange servers, one is CAS server and one is mailbox server. While i type in the Get commands IE Get-IPAllowListConfig,Get-AgentLog
    etc . It pops me The term 'Get..." is not recognized as the name of a cmdlet, function...
    I also tried Get-ManagementRoleAssignment but it still result the same. Can someone advice me what am i missing ? 
    Thanks so much
    Regards,
    william

    1. Did you open Exchange Management Shell (not the traditional windows powershell)?
    2. If you don't have proper Exchange permission then you won't be able to find the respective cmdlets. When you open Exchange Management Shell, it will load only respective cmdlets that you have permission on so if you can't find then you might not have
    proper permission.

  • Gpib GET command using the GPIB ActiveX Control

    Is there a way to trigger multiple instruments via the gpib 'GET' command using the GPIB activeX control for Visual Basic?

    Hello,
    I'm a bit confused as to what GET command you are trying to use. Where is this command located? Also, what are you trying to accomplish through use of this function?
    GPIB can control multiple instruments through the activeX control for Visual Basic. More information about specific commands can be found in the help files. On your Desktop, click [Start]>>[All Programs]>>[National Instruments]>>[NI 488.2]>>[NI 488.2 Help]. Now, under the "Contents" tab, click [Contents]>>[Multiple Device NI-488.2 Calls]. A list of multiple device function calls can now be referenced for help in performing your desired action within Visual Basic.
    I hope this helps. Please let me know if I can further assist you.
    Best Regards,
    Joe Des Rosier
    National Instrument
    s

  • Redirecting get command inside ftp client?

    Is it possible to redirect get command inside ftp client?
    I was only able to do "get filename /dev/null" to redirect it to /dev/null.. However.. what if I want to redirect it to a compression or decompression utility?
    Example of ftp script I used:
    #!/bin/bash
    HOST='server-ip'
    USER='username'
    PASSWD='password'
    FILE=$1
    ftp -i -n $HOST <<END_SCRIPT
    user ${USER} ${PASSWD}
    binary
    get $FILE
    quit
    END_SCRIPT
    exit 0
    The file I am trying to get is a compressed file, I would like to pipe it into decompression utility like gunzip.
    Last edited by kdar (2012-09-03 19:33:52)

    Solved it. I found that I could access ftp server with wget as well, and redirect it's output to another utility:
    time wget --user=username --password=password -qO - ftp://serverName/file.gz | gunzip -cf > /dev/null
    Last edited by kdar (2012-09-03 21:32:47)

Maybe you are looking for

  • Scanned slide resolution

    I would like to create a calendar or book using images that I will scan from slides or pictures. At what resolution should I scan these so that I don't get the low resolution warning. I have experimented with various settings, but iPhoto 6 doesn't se

  • Sony HDR - XR520Ve

    Hi, I'm looking into getting a new camera at work. We currently have a JVC Everio, which produces files of .TOD which are virtually unusable. We have £1000 budget, so can't get anything pro (although we only do web videos so doesn't matter too much).

  • Number issue in Controller File

    Hello, I am creating a Detail Page and finding issue with the Number conversion Please find the code for VO.java package xbol1.oracle.apps.xbol.unapprvacsearch.server; import oracle.apps.fnd.framework.OAException; import oracle.apps.fnd.framework.ser

  • Smart forms and global data

    are parameters defined in global data in smart forms unavailable in form routines to be used I am working on lbbil_invoice std smart form for invoices and trying to use gs_it_gen type lbbil_it_gen that is been defined in global data. Will I have to d

  • AFS Condition Types and Pricing Schema

    Dear All I am working in AFS 6.00 in that i am not able to find AFS Condition Type and Pricing schema like     J3AP, J3AX, J3AD and J3A00. But in SAP AFS Library they have mentioned  all the condition type and Procedure will Come default. AFS Conditi