What is HAWB in a procedure ?

Hi All,
What is HAWB in a procedure ?
Thnx

Further to SB's comments...
You don't provide a context for your question, but I will guess that you are referring to HAWB as used in the context of freight/shipping/cargo etc. In this case HAWB is "House Air WayBill". Another common acronym in this context is MAWB (Master Air WayBill).
You can use your search engine of choice on terms like "Air Waybill" to get more information such as wiki articles and examples from shippers/freight carriers.
For example:
http://wiki.answers.com/Q/What_is_the_difference_between_House_air_way_bill_and_Master_air_way_bill
NOTE: I have no association with any applications or industries where this is used, and the above is just my personal opinion based on your question, so I could be wrong.
Regards,
Mark
EDIT1: Oops, I see I posted at about the same time as Pierre but I had not refreshed the page. Oh, well.
Edited by: Mark Williams on Sep 16, 2010 2:08 PM

Similar Messages

  • Pls tell what is err in this procedure

    pls tell what is err in this procedure
    create or replace procedure before_insert
    is
    counter NUMBER;
    sql_string VARCHAR2 (4000);
    BEGIN
    FOR Outercounter IN 1 .. 2 LOOP
    FOR Innercounter IN 1 .. 10 LOOP
    sql_string :=
    'INSERT INTO emp_50' || OuterCounter
    || '(id, col_a ,col_b,col_c ,col_d ,col_e, col_f ,col_g ,col_h ,col_i ,col_j ,col_k,col_l,col_m,col_n,col_o,col_p,
    col_q,col_r,col_s,col_t,col_u,col_v,col_w,col_x,col_y,col_z,col_aa,col_bb,col_cc,col_dd,col_ee,col_ff,col_gg,
    col_hh,col_ii,col_jj,col_kk,col_ll,col_mm,col_nn,col_oo,col_pp,col_qq,col_rr,col_ss,col_tt,col_uu,col_vv,col_ww,
    col_xx) VALUES (''id.nextval'',''col_a'',
    sysdate,
    ''col_c '',''col_ddd'' ,''col_eee'',''col_ffff'' ,''col_g'' ,sysdate ,''col_iiii'' ,''col_j'' ,sysdate,''col_l'',''col_m'',''col_n'',''col_o'',
    ''col_p'',sysdate,''col_r'',''col_s'',''col_t'',''col_u'',''col_vvv'',''col_w'',sysdate,''col_y'',''col_z'',
    ''col_a'',''COL_BB'',''col_cc'',''col_dd'',sysdate,''col_ff'',''col_gg'',''col_h'',''col_ii'',''col_jj'',
    ''col_kkkkk'',sysdate,''col_mm'',''col_nnmmm'',''col_o'',''col_pp'',''col_qqqqq'',''col_rrqqq'',sysdate,''col_tt'',''
    col_uuuuuu'',''col_v'',''col_ww'',''col_xx'')';
    EXECUTE IMMEDIATE sql_string;
    END LOOP;
    END LOOP;
    END;
    ERROR at line 1:
    ORA-01722: invalid number
    ORA-06512: at "EMPLOYEE.BEFORE_INSERT", line 21
    ORA-06512: at line 1

    why you are using double quotes with a seq number, when inserting??
    ''id.nextval''

  • What's wrong with executing procedure in package???

    I am new to SQL Developer. I had developed a PL/SQL package<br>
    (called COMMON_SQL) and compiled<br>
    in my database. I could see my package in USER_OBJECTS<br><p>
    COMMON_SQL          13966          PACKAGE     03-APR-07     03-APR-07     2007-04-03:22:46:27     VALID     N     N     N<br>
    COMMON_SQL          13967          PACKAGE BODY     03-APR-07     03-APR-07     2007-04-03:22:48:21     VALID     N     N     N<br><p>
    I did not find any compilation error on the package in USER_ERRORS,<br>
    i.e. the package was compiled and deployed successfully in my database.<br><p>
    But when ran the procedure CHECK_AND_DROP_OBJ in the package
    as follows:<br>
    declare flag integer := 1;<br>
    execute COMMON_SQL.CHECK_AND_DROP_OBJ('EXCEPTIONS','TABLE',flag);<br>
    /<br><p>
    It gave me the following error message:<br>
    Error report:<br>
    ORA-06550: line 2, column 65:<br>
    PLS-00103: Encountered the symbol "end-of-file" when <br>expecting one of the following:<br>
    begin function package pragma procedure subtype type use<br>
    <an identifier> <a double-quoted delimited-identifier> form<br>
    current cursor<br>
    06550. 00000 - "line %s, column %s:\n%s"<br>
    *Cause:    Usually a PL/SQL compilation error.<br>
    *Action:<br><p>
    where line 2, column 65 pointed to the last semicolon on the second line.<br><p>
    So why did it produce such an error?<br>
    Can anyone tell me what the problem was?<br>
    Do I need to configure or initialize SQL Developer?<br><p>
    Thanks for your help in advance,<br><p>
    AK<br><p>
    P.S. Here is the body of my package COMMON_SQL:<br>
    create or replace package body COMMON_SQL<br>
    as<br>
    <code> -- This procedure check for the existence of any database object by type.<br>
    -- It drops the object if it exists.<br>
    -- obj is the name of the dtabase object<br>
    -- type is the type of the object: table, index, sequence, synonym<br>
    -- flag has different types of values. <br>
    -- For in, flag = 1 for print debug message.<br>
    -- For out, flag = 0 for object not found.<br>
    -- flag = 1 for object found and dropped.<br>
    -- flag = -1 for error.<br>
    procedure CHECK_AND_DROP_OBJ (obj in varchar2, type in varchar2, flag in out integer)<br>
    is<br>
    obj_type USER_CATALOG.TABLE_TYPE%type;<br>
    str varchar2(100);<br>
    cursor obj_cur is<br>
    select TABLE_TYPE from USER_CATALOG where TABLE_NAME = obj;<br>
    begin<br>
    open obj_cur;<br>
    fetch obj_cur into obj_type;<br>
    if obj_cur%NOTFOUND<br>
    then<br>
    str := 'obj ' || obj || ' is not found';<br>
    if flag = 1<br>
    then<br>
    DBMS_OUTPUT.PUT_LINE(str);<br>
    end if;<br>
    flag := 0; -- return 0<br>
    elsif obj_type = type<br>
    then<br>
    str := 'drop ' || obj_type || ' ' || obj;<br>
    execute immediate(str);<br>
    if flag = 1<br>
    then<br>
    DBMS_OUTPUT.PUT_LINE(str);<br>
    end if;<br>
    flag := 1; -- return 1<br>
    else<br>
    str := 'obj ' || obj || ' has type mismatch';<br>
    if flag = 1<br>
    then<br>
    DBMS_OUTPUT.PUT_LINE(str);<br>
    end if;<br>
    flag := -1; -- return -1<br>
    end if;<br>
    close obj_cur;<br>
    --exception<br>
    null;  ??<br>
    END; --CHECK_AND_DROP_OBJ <br>
    END;<br>
    </code>
    Message was edited by:
    user567947
    Message was edited by:
    user567947
    Message was edited by:
    user567947
    Message was edited by:
    user567947
    Message was edited by:
    user567947

    smitjb,<br><p>
    I modified the package slightly and redeployed the package successfully.<br>
    Then I ran the stored procedure as you suggested:<br>
    declare debugf integer:=1;<br>
    rc integer:=0;<br>
    begin<br> SYSTEM.COMMON_SQL.CREATE_AND_DROP_OBJ('MPGCV_USER_SEQ','SEQUENCE',debugf,rc);<br>
    end;<br>
    /<br><p>
    But I still got, sort of, similar error:<br>
    Error starting at line 1 in command:<br>
    declare debugf integer:=1;<br>
    rc integer:=0;<br>
    begin<br>
    SYSTEM.COMMON_SQL.CREATE_AND_DROP_OBJ('MPGCV_USER_SEQ','SEQUENCE',debugf,rc);<br>
    end;<br>
    Error report:<br>
    ORA-06550: line 4, column 23:<br>
    PLS-00302: component 'CREATE_AND_DROP_OBJ' must be declared<br>
    ORA-06550: line 4, column 5:<br>
    PL/SQL: Statement ignored<br>
    06550. 00000 - "line %s, column %s:\n%s"<br>
    *Cause:    Usually a PL/SQL compilation error.<br>
    *Action:<br><p>
    I checked USER_ERRORS (found no error), and USER_OBJECTS and found both the package spec and body<br>
    So why did it not recognize the package and its stored procedure?<br>
    I was using SYSTEM account and should have the correct schema and privilege.<br>
    Any idea?<br><p>
    Thanks,<br><p>
    AK<br><p>
    P.S. Here is the body of my package:<br>
    <code>
    -- This package body contains all the functions/procedures<br>
    -- needed by any PL/SQL scripts<br>
    create or replace package body SYSTEM.COMMON_SQL<br>
    as<br>
    -- This procedure check for the existence of any database object by type.<br>
    -- It drops the object if it exists.<br>
    -- obj is the name of the dtabase object<br>
    -- otype is the type of the object: table, index, sequence, synonym<br>
    -- debugf indicates to print debugging message or not. <br>
    -- rc is the return code, <br>
    -- rc = 0 for object not found.<br>
    -- rc = 1 for object found and dropped.<br>
    -- rc = -1 for error.<br>
    procedure CHECK_AND_DROP_OBJ (obj in varchar2, otype in varchar2, debugf in integer, rc out integer)<br>
    is<br>
    obj_type USER_CATALOG.TABLE_TYPE%type;<br>
    str varchar2(100);<br>
    cursor obj_cur is<br>
    select TABLE_TYPE from USER_CATALOG where TABLE_NAME = obj;<br>
    begin<br>
    open obj_cur;<br>
    fetch obj_cur into obj_type;<br>
    if obj_type = otype<br>
    then<br>
    str := 'drop ' || obj_type || ' ' || obj;<br>
    execute immediate(str);<br>
    if debugf = 1<br>
    then<br>
    DBMS_OUTPUT.PUT_LINE(str);<br>
    end if;<br>
    rc := 1; -- return 1<br>
    else<br>
    str := 'obj ' || obj || ' has type mismatch';<br>
    if debugf = 1<br>
    then<br>
    DBMS_OUTPUT.PUT_LINE(str);<br>
    end if;<br>
    rc := -1; -- return -1<br>
    end if;<br>
    close obj_cur;<br>
    exception<br>
    when NO_DATA_FOUND<br>
    then<br>
    str := 'obj ' || obj || ' is not found';<br>
    if debugf = 1<br>
    then<br>
    DBMS_OUTPUT.PUT_LINE(str);<br>
    end if;<br>
    rc := 0; -- return 0<br>
    when OTHERS<br>
    then<br>
    str := 'error encountered SQLCODE:' || to_char(SQLCODE) || <br>
    ' SQLERRM:' || SQLERRM;<br>
    if debugf = 1<br>
    then<br>
    DBMS_OUTPUT.PUT_LINE(str);<br>
    end if;<br>
    rc := -1; -- return -1<br>
    END; --CHECK_AND_DROP_OBJ <br>
    END;<br>
    /<br>
    </code>

  • What's wrong with my procedure?

    I have written a stored procedure that takes a column name (or a partial column name) as a parameter, and lists of all the tables in the database that have a column name like that.
    It's not working. It doesn't return a list of tables and columns like it should. It returns nothing. Here's the procedure:
    =======================================
    set serveroutput on
    CREATE OR REPLACE PROCEDURE col_find(p_col_text VARCHAR2) IS
    BEGIN
         DECLARE     CURSOR cur1 IS
              select table_name, column_name
              from all_tab_columns
              where lower(column_name) = lower('%p_col_text%')
         BEGIN
              for rec1 in cur1
              loop
                   dbms_output.put_line(rec1.table_name || '.' || rec1.column_name);
              end loop;
         EXCEPTION when others then
              dbms_output.put_line('error');
         END;
    END;
    show errors;
    quit;
    =======================================
    I have found that having this type of helper procedure around is a great time-saver. I have more experience in Sybase than in Oracle, and this procedure is very simple to write in Sybase. Does anybody see what my problem is?

    Thanks for the help! But it's still coming back with nothing. Here's the updated procedure:
    set serveroutput on
    CREATE OR REPLACE PROCEDURE col_find(p_col_text VARCHAR2) IS
    BEGIN
         DECLARE     CURSOR cur1 IS
              select table_name, column_name
              from all_tab_columns
              where lower(column_name) like lower('%' || p_col_text || '%')
         BEGIN
              for rec1 in cur1
              loop
                   dbms_output.put_line(rec1.table_name || '.' || rec1.column_name);
              end loop;
         EXCEPTION when others then
              dbms_output.put_line('error');
         END;
    END;
    show errors;
    quit;

  • WHAT IS ACCRUAL IN PRICING PROCEDURE ?

    Dear All ,
                       In a P.O i m having a freight as FRB1 ( Freight (Value) ) as 1000 INR , so afted this i have gone to it's pricing procedure here in front of FRB1 here in accruals --> FR1 ( freight clearing )  is given can u pl expalin what is the importance of accruals how it affects our business.
    sap11

    Hi,
    Following write up is going to help you.
    Accrual Types
    Definition
    The accrual type controls the calculation and posting of accruals according to different business views. It defines how the accruals are calculated and posted.
    The accrual type sorts the accruals, for example, by:
    • Costs
    • Revenues
    • Receivables
    Use
    You use the accrual type to control which types of posting are performed for an accrual item. You can assign all postings defined to an accrual type, or only individual postings:
    • Opening posting
    The entire amount to be accrued is posted as a balance posting. Account determination is normally set so that the entire amount to be accrued is posted to an accruals account.
    • Periodic posting
    The total amount to be accrued is split over the individual periods according to the accrual method concerned. When you perform an accrual run in a period, the accrual amount for that period is posted. Account determination is normally set so that the periodic postings are from the accruals account to a profit and loss account.
    • Closing posting
    A closing posting only occurs when you deactivate an accrual object prematurely. The amount that has not been accrued by the time of the premature deactivation is posted as the deactivation amount.
    Structure
    The following accrual types exist:
    • Simple accrual type
    With this accrual type, you define the view under which the accruals are made, and which postings are performed.
    • Derived accrual type
    This accrual type is derived from other accrual types, for example, as the total or difference from other accrual types. You define a derived accrual type in Customizing for Financial Accounting under Financial Accounting Global Settings ® Accrual Engine ® Basic Settings ® Accrual Types ® Derived Accrual Types
    G.Ganesh Kumar

  • What ID does password recovery procedure work on?

    We recently completed the steps to recover password on a 2960G switch as per instructions found at http://www.cisco.com/en/US/products/hw/switches/ps628/products_password_recovery09186a0080094184.shtml  Four password were changed as per documentation (secret, enable, vty, and console)
    However as we now try again to get access to the device using the CNA client, none of the new passwords work!  We would like to confirm what ID this procedure reset – do we use Cisco, blank, or an existing user ID that we can see still exist?  And we are assuming that we should use the newly updated console password to access the ‘console’… but maybe this is wrong too?
    We still can’t seem to get in with anything…  (and the process seemed to work all the way through)
    Suggestions?

    Hello
    Can you perform the steps again, The most important part is when the switch has come ups for the first time and you gain access.
    From here the switch is set to default - so if you wish to start from scratch all you need to do is wrtie to memory.
    WR
    if you wish to use the old configuration but change the password then, the very first thing you need to do is:
    rename flash:config.old flash:config.text - this is reverting the change you did in rommom access
    Then reset your passwords (see below) and save your changes and reload.
    WR
    Password changes
    username admin privilege 15 secret password
    username anyone password password1
    enable secret letmein
    service password-encryption
    line con 0
    exec-timeout 0 0
    logging synchronous
    login local
    line vty 0 15
    login local
    logging synchronous
    transport input telnet
    res
    Paul
    Please don't forget to rate any posts that have been helpful.
    Thanks.

  • What r spool requests and procedure of configuring printer in SAP

    Hello Experts,
    i hv one question? wt r spools and wt are spool requests ? what are they used for? also i need a step wise step procedure for configuring printer in SAP . My email id is [email protected] . Requested to revert at earliest as this is very urgent.
    points guaranteed.
    regards,
    Somya

    hi
    whenevr u print ur output , spoll no. will be generated.
    Go to TCode Sp01/SP02 and give the spool No. which u generated and there u can find ur spool with outputlist,
    The basic transaction to set an printer within an SAP system is SPAD.
    I would recommend you to access the online SAP help at the following URL where you will find detailed information on how to set printers :
    http://help.sap.com/saphelp_46c/helpdata/en/d9/4aa45b51ea11d189570000e829fbbd/frameset.htm
    regards
    ajai

  • What are PSTUB and PSTUBT procedures in SYS()

    I am migrating my system from 8.1.7.4 to 10.2.0.4. I see PSTUB and PSTUBT procedures in SYS schema. What are these procedures and should I migrate them also to 10g ?

    Those procedures I believe exist in every database and I think were used for the PSTUB Utility in relation to Oracle Forms 3.0. I cannot confirm what they are used for in the latest releases, but you better migrate everything in SYS schema.
    By the way what upgrade method are you using? If you are migrating from 8.1.7.4 to 10.2.0.4, why do you need to bother about precedures to migrate from SYS schema? Does this mean you are doing selective migration of SYS objects ??? Plese don't.

  • What is wrong with this procedure?

    Hello:
    I am trying to create the following procedure but it does not compile. Can somebody tell me what I am doing wrong?
    CREATE OR REPLACE PROCEDURE InnoBox_SA.spCheckUser
              ciUserID IN VARCHAR(20),
              coUserID OUT VARCHAR(20),
              cLastName OUT VARCHAR(20),
              cFirstName OUT VARCHAR(20),
              cAdminInd OUT CHAR(1)
    AS
         BEGIN
              SELECT
                   user_ID_C INTO coUserID,
                   Last_Name_C INTO cLastName,
                   First_Name_C INTO cFirstName,
                   Admin_Ind_C INTO cAdminInd
              FROM
                   InnoBox_SA.S_USER
              WHERE
                   User_ID_C = ciUserID;
              IF coUserID IS NULL THEN
                   BEGIN
                        INSERT INTO InnoBox_SA.S_USER
                             (User_ID_C,
                             Created_By_C,
                             Updated_By_C)
                        VALUES
                             (ciUserID,
                             'FirstTime',
                             'FirstTime');
                   END;
         END;
    Thanks.
    Venki

    Kamal:
    I made it even simpler:
    CREATE OR REPLACE PROCEDURE InnoBox_SA.spCheckUser
              ciUserID VARCHAR(20)
    AS
         cUserID VARCHAR(20);
         BEGIN
              SELECT
                   user_ID_C INTO cUserID
              FROM
                   InnoBox_SA.S_USER
              WHERE
                   User_ID_C = ciUserID;
              IF cUserID IS NULL THEN
                   INSERT INTO InnoBox_SA.S_USER
                        (User_ID_C,
                        Created_By_C,
                        Updated_By_C)
                   VALUES
                        (ciUserID,
                        'FirstTime',
                        'FirstTime');
              END IF;
         END;
    All it takes is a User ID. If it does not exist, then it creates one.
    I used SQL-plus to create the procedure. Pl-SQL just informs me that the procedure was created with compiled errors.
    If I used EM to recompile, it says
    "Line # = 3 Column # = 19 Error Text = PLS-00103: Encountered the symbol "(" when expecting one of the following:
    := . ) , @ % default character
    The symbol ":=" was substituted for "(" to continue."
    Line 3 is refering to
    that's on Line 2 in my procedure.
    Thanks for your help.
    Venki

  • What is the calibratio​n procedure for the battery on the Compaq Presario A945 US

    My computer says Plugged in, not charging... someone said to do the "re calibration procedure". Can someone tell me what it is and how to do it?

    Hi:
    Below is a support document that is germane to all notebook PC's. It was written for Vista but should be the same for Windows 7.
    http://h20000.www2.hp.com/bizsupport/TechSupport/D​ocument.jsp?lang=en&cc=us&objectID=c00817650&prodT​...
    Paul

  • How check what kind od SQL statement procedure do

    I would like to check what kind of sql statement type (DML, DDL , Retrive) procedure do on objects.
    is it possible?

    You could try to parse the SQL in DBA_SOURCE for the procedure in question, but that probably doesn't help much...
    Note as well that procedures cannot do DDL unless they resort to dynamic SQL, in which case Oracle itself doesn't know what objects you're working with and what you're doing with them until runtime.
    Justin

  • What is the best workflow procedure for importing DV SP 16x9 footage into FCP7 and then exporting the best quality 16x9 to standard DVD so that it looks great (or at least good) on a 50" Samsung LCD TV ?????? Please help! anybody?? Thanks!

    We are using a Sony HDV-Z7U camera for acquisition. We recently recorded an event using the camera's non HD capabilities. We set the camera to record "DV SP" 16x9 settings on both Mini-DV tape and CF card.
    To import the DV SP footage into FCP7 we chose the "DV NTSC anamorphic" setting in the log and transfer settings window. After a successful transfer from the CF card (the CF card held approximately 83 minutes) we checked the size of the file and found it to be 16 Gigs! Why so big? An 83 miniDV tape shot in SD should easily fit on a standard 4.7 gig MPEG2 DVD.
    We need to burn DVDs of this show - we sent it to compressor and got horrible quality.
    What is the best setting to use in FCP7's log and transfer settings window to import DV SP 16x9 standard def. footage and what is the best method for exporting for outputting this footage to DVD that preserves the original quality of the DV SP footage?? Anyone? Many thanks

    > Why so big? An 83 miniDV tape shot in SD should easily fit on a standard 4.7 gig MPEG2 DVD.
    No it doesn't. DV is 13GB per hour.
    In any case, a Video DVD uses the MPEG 2 codec, not DV.
    >What is the best setting to use in FCP7's log and transfer settings window to import DV SP 16x9 standard def.
    DV NTSC anamorphic.
    >what is the best method for exporting for outputting this footage to DVD...
    Use the Compressor DVD preset "Best Quality 90 mins".
    >...that preserves the original quality of the DV SP footage?
    Not going to happen, you are compressing by a factor of 1:4. Shooting as HDV would have given you better quality material to start with. DV is at the bottom end of the scale.

  • What is the split document procedure in ECC - 6.0 version

    Hi All,
    Can any tell quickly what is the split document procudure in ECC - 6.00
    and how many line item we can post in one document.
    Regards
    Nama

    there is this TCODE OBCY....
    where you have to give out specifications..
    now let me tell you wat it does is
    it compresses all the line items into their respective one g/l line item and psot the documents
    example
    you hav  doc
    dr    asset
    dr   asset
    dr    asset
    cr   vendor
    cr    vendor
    cr    vendor
    this can be changed to
    dr    asset
    cr     vendor
    and so on
    regards
    sayeed

  • What is the difference between procedure and function?

    Hi,
    i want to know the difference between procedure and function.
    Also, i want to know types(if they exists) of procedures and functions .
    Regards

    Also, please try and use the SEARCH functionality offered by the forum, it's always possible someone has asked the question before you.
    Functions vs Stored Procedures
    Is one such instance.

  • What kind of transaction in procedure?

    Hello,
    I have a procedure to reset sequences in tables:
    CREATE OR REPLACE PROCEDURE reset_sequence AS
    BEGIN
         LOCK TABLE table_name_1, table_name_2 IN EXCLUSIVE MODE NOWAIT;
         EXECUTE IMMEDIATE 'DROP SEQUENCE SEQ_1';
         EXECUTE IMMEDIATE 'CREATE SEQUENCE SEQ_1 START WITH 1 MAXVALUE 999999999999999999999999999 MINVALUE 1 NOCYCLE NOCACHE NOORDER';
         UPDATE table_name_1 SET id = SEQ_1.NEXTVAL;
         EXECUTE IMMEDIATE 'DROP SEQUENCE SEQ_2';
         EXECUTE IMMEDIATE 'CREATE SEQUENCE SEQ_2 START WITH 1 MAXVALUE 999999999999999999999999999 MINVALUE 1 NOCYCLE NOCACHE NOORDER';
         UPDATE table_name_2 SET id = SEQ_2.NEXTVAL;
         COMMIT;
    END reset_sequence;
    My question is: how can I do this procedure in one transaction? Set to serializable for session? This procedure have high prority, but when it's executed, other process can insert to these tables and I want to prevent it.
    Thanks.

    That's easy, just fix the column:
    SQL> create table t(c number(8));
    Table created.
    SQL> desc t
    Name                                      Null?    Type
    C                                                  NUMBER(8)
    SQL> alter table t modify (c number);
    Table altered.
    SQL> desc t
    Name                                      Null?    Type
    C                                                  NUMBER

Maybe you are looking for

  • HU and Transfer Orders

    Hi All, I have a scenario where system is creating as many Transfer Orders as many HU's that i create. I have HU managed Storage Location. I am creating an inbound delivery for the standard purchase order and in the inbound delivery i need to create

  • Help with starting my subscription on cs5?  Says they're unable to start my subscription?

    My serial code is valid but it says (quote) "We are unable to start your subscription for Adobe Photoshop CS5.1 Extended Subscription Edition".  Please help!  I'm eager to try this photoshop considering many people have recomended it over CS6!!

  • Upgrade license from Eval to Permanent

    We had 2 3945e routers as hubs for DMVPN which ordered with the appropriate hseck9 license but inadvertantely placed on the network without the hseck9 license being installed.  2 weeks ago, after adding several DMVPN tunnels we noticed the performanc

  • RE: Drive doesn't boot after 10.5.8 upgrade

    After upgrading to 10.5.8, it was a struggle to shut down my machine, especially after typing in Firefox caused it to lock up. When I decided it would be best to restart the machine and start fresh, the screen stayed gray, without the apple on bootup

  • 关于 flashback transaction query

    我的数据库版本如下: SQL> select * from v$version; BANNER Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production PL/SQL Release 11.2.0.3.0 - Production CORE 11.2.0.3.0 Production TNS for Linux: Version 11.2.0.3.0 - Production NLSRTL Versi