Wish you a Happy and New Year

Hi Friends,
WISH YOU ALL A HAPPY AND PROSPEROUS NEW YEAR.
Regards,
G. Rajakumar.

Hi Friends,
WISH YOU ALL A HAPPY AND PROSPEROUS NEW YEAR.
cheers,
Shan

Similar Messages

  • Hi Friends ! Wishing you a happy and prosperous new year  with my problem !

    I need your help to understand Debugging ! I really dont know Please provide me with best links according to you !
    thanks

    hi,
    Please find the below points regding debugging:
    Debugger
    This section of the ABAP Workbench documentation provides information on how to use the Debugger as a test tool for finding errors in the source code of an ABAP program.
    Functional Overview
    Use
    The ABAP Debugger is an integrated test tool within the ABAP Workbench. You use it to check the program logic and to find errors in the source code of an ABAP program. In the Debugger, you can step through the source code of a program. The running program is interrupted after each step, allowing you to check its processing logic and the results of individual statements.
    As of Release 6.10, you can also run Business Server Pages (BSP) in the debugging mode. You can also display and set breakpoints here. Business Server Pages can be displayed in the Object Navigator when you select an appropriate application under BSP Application.
    Features
    The Debugger provides an efficient means of identifying errors in ABAP programs. It contains the following functions:
    Ways of starting the Debugger
    Choosing different views
    Choosing different execution options in the Debugger
    Displaying source code in the Debugger
    • Setting and deleting breakpoints
    • Setting and deleting watchpoints
    • Stopping a program at a particular statement or event
    Displaying and changing field contents at runtime
    Displaying ABAP Objects and references
    Displaying and positioning strings
    Setting and deleting database locks
    Opening the ABAP Editor, or Object Navigator
    System settings and runtime warnings
    Starting the Debugger
    There are two possible strategies for starting the Debugger in the ABAP Workbench:
    By setting breakpoints then running the program
    By running the program in debugging mode.
    Setting Breakpoints
    A breakpoint is a signal in a specific line of the program source code. This signal indicates to the ABAP runtime processor to stop the program at the relevant line and start the ABAP Debugger. A distinction is made between static and dynamic breakpoints. For further information about the different types of breakpoints and how to use them, refer to Breakpoints.
    Direct Processing
    You can start the Debugger without previously having set breakpoints. This is the best procedure to use when you want to test a program right from the beginning. It is also a useful procedure if you are not overly familiar with the program and therefore are not sure where best to set breakpoints. You can start the Debugger as follows:
    From the Object Navigator
    Select a report or transaction and choose Program ® Test ® Debugging.
    From the ABAP Editor
    Choose Program ® Execute ® Debugging (or the Debugging pushbutton).
    From any screen
    Choose System ® Utilities ® Debug ABAP.
    From any screen
    Enter /h in the command field.
    Display Modes in the Debugger
    When you are debugging a program, there are various display modes that you can use. All of the display modes have the same structure. The top part of the screen displays an extract of the program source code. The bottom part displays the information specifically available in that display mode. There are also pushbuttons on the screen allowing you to switch to the most frequently-used display modes.
    Display Modes Available Using Pushbuttons
    Fields
    The scrollable field display contains the contents of up to eight fields. The contents of the three most important system fields are always displayed. This is the default display mode in the Debugger. See also Processing Fields
    Table
    Displays the contents of an internal table. This mode allows you to display and edit the entries in an internal table. See also Processing Internal Tables
    Breakpoints
    A scrollable display containing up to 30 breakpoints. Next to each breakpoint is a counter. You can also delete breakpoints in this display. See also Managing Dynamic Breakpoints
    Watchpoints
    You can set a watchpoint for a field so that the program is interrupted whenever the value of that field changes. This display mode contains a list of watchpoints, the fields and programs to which they are assigned, the current values of the fields, and the conditions upon which the watchpoint is activated. See also Setting Watchpoints
    Calls
    This mode displays the current sequence of events, and the sequence of calls up to the current breakpoint. The last active call is displayed at the top of the list; previous calls are listed in reverse chronological order. When an event (for example, START-OF-SELECTION) concludes, it is deleted from the display.
    Overview
    This mode displays the structure of the program. It lists its events, subroutines, and modules, and shows which sections belong to which events. It also displays the section currently being processed.
    Settings
    This mode displays the current Debugger settings. You can change the settings by selecting or deselecting various options. For further information, refer to Settings and Warnings
    Other Display Modes
    You can access other display modes by choosing Goto ® Display data object.
    Single field
    Displays the contents and technical attributes of a field.
    Structured
    field
    Displays the components of a structure, along with their contents and attributes. If you double-click a component, the system displays detailed information for it.
    Strings
    Display the content and current length of the string. You can also display part of the content by means of offset and length.
    Internal table
    Displays the type, line numbers and contents of an internal table.
    Object
    Displays the structure of an ABAP Object.
    For further information on these displays, refer to Displaying Attributes and Displaying ABAP Objects
    Checking System Programs for Errors
    To check a program or program component that is part of the ABAP Workbench (for example, the Screen Painter), you must use the system Debugger. To start the system Debugger, choose System ® Utilities ® Debug System from any screen. To stop the system Debugger, choose Debugger ® Debugging off.
    Displaying Program Attributes
    You can display the attributes Fixed Point Arithmetic, System Program, and Unicode Checks of the program that has just been executed by choosing Goto ® Further Information ® Program Attributes.
    Restarting the Debugger
    If you choose Debugging ® Restart, debugging mode is stopped and the system takes you to the initial screen of the last transaction you called. If, for example, you started an ABAP program in debugging mode from transaction SE38 (ABAP Editor), choosing Debugging ® Restart will take you back to the screen titled ABAP Editor: Initial Screen. If you want to restart the program in debugging mode, choose Debugging.
    Breakpoints
    Apart from direct execution of an ABAP program in the Debugger, it is also possible to start the Debugger call by the exact setting of a breakpoint. This is achieved by setting one or more of these breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The program runs normally until the breakpoint is reached.
    There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field change. For further information, refer to Watchpoints.
    Breakpoint Variants
    The Debugger contains different breakpoint variants:
    Static
    The BREAK-POINT statement in an ABAP program. Static breakpoints are not normally user-specific. However, you can make them user-specific.
    Directly-set
    dynamic breakpoints
    Can be set in the ABAP Editor or the Debugger. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.
    Breakpoints
    at statement
    The Debugger stops the program directly before the specified statement is executed.
    Breakpoints
    at subroutine
    The Debugger stops the program directly before the specified subroutine is called.
    Breakpoint at function module
    The Debugger stops the program directly before the specified function module is called.
    Breakpoint at method
    The Debugger stops the program directly before the specified method is called.
    Breakpoints at system exceptions
    The Debugger stops the program directly after a system exception, that is, after a runtime error has been intercepted.
    Static Breakpoints
    Static breakpoints are not normally user-specific. Once a user has inserted the statement BREAK-POINT or BREAK name in an ABAP program, the system always interrupts the program at that point for that user or only for the user name. This procedure is only useful in the development phase of an application, when the program execution is always to be interrupted at the same place. For further information, refer to Static Breakpoints.
    In HTTP sessions, a static breakpoint is skipped if you did not set additional dynamic HTTP breakpoints in the editor of a BSP page. Instead, a corresponding system log entry is written, which can be checked using transaction SM21.
    Dynamic Breakpoints
    Dynamic breakpoints are user-specific. Therefore, you should use them if you only want the program to be interrupted when you run it yourself, not when it is being executed by other users. All dynamic breakpoints are deleted when you log off from the R/3 System.
    Dynamic breakpoints are more flexible than static breakpoints, because you can deactivate or delete them at runtime. They have the following advantages:
    You do not have to change the program code
    You can set them even when the program is locked by another programmer
    You can define a counter that only activates the breakpoint after it has been reached
    Special dynamic breakpoints are useful when you want to interrupt a program directly before a particular ABAP statement, a subroutine, or an event, but do not know exactly where to find it in the source code. Event here is used to refer to the occurrence of a particular statement, for example, or calling up a method. Special dynamic breakpoints are user-specific. You can only set them in the Debugger. For further information, refer to Dynamic Breakpoints.
    In HTTP sessions, the system stops both at static and dynamic breakpoints if a dynamic breakpoint was set in the editor of a BSP page before program execution.
    Lifetime and Transfer of Breakpoints
    A static breakpoint remains intact as long as the BREAK-POINT or BREAK-POINT name statement is not removed from the source code. Without saving, dynamic breakpoints only remain intact in the relevant internal session. However, they are effective during the entire user session, if they are saved by choosing Breakpoints ® Save in the ABAP Debugger. For more details on the subject of sessions and user sessions, refer to Modularization Techniques in the ABAP keyword documentation.
    If you call an HTTP session during a user session, only the HTTP breakpoints are loaded when the HTTP session is started. You activate HTTP debugging in the ABAP Editor by choosing Utilities ® Settings ® HTTP Debugging. Depending on the setting, the system then displays either the HTTP or standard breakpoints in the Editor.
    If you call an update session during a user session, breakpoints that were defined beforehand in the calling processing unit are copied to the new update session, where they can be displayed under Breakpoints. If, in the ABAP Debugger, you check Update Debugging under Settings and then, for example, call the update module func using CALL FUNCTION func IN UPDATE TASK, a new window is opened in which you can debug this function module in the update session. All the breakpoints that were set in the calling processing unit can also be processed here.
    Breakpoints at Statements
    You can use this special kind of dynamic breakpoint to interrupt a program directly before an ABAP statement is processed.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint at an ABAP statement:
    1.Choose Breakpoint ® Breakpoint at ® Statement...
    The following dialog box appears:
    2.Enter the ABAP statement.
    The system sets a breakpoint at all points in the program at which the ABAP statement occurs.
    3.Choose ENTER.
    The breakpoint applies to all lines containing the specified statement.
    Result
    The system confirms the breakpoint and adds it to the list in the display. When you finish your debugging session, the breakpoint is automatically deleted unless you have explicitly saved it.
    Breakpoints at Subroutines
    You can use this special kind of dynamic breakpoint to interrupt a program directly before a subroutine is called.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint for a subroutine:
    Choose Breakpoint ® Breakpoint at ® Event/Subroutine.
    The following dialog box then appears:
    Enter the name of the subroutine before which you want to interrupt the program. By default, the Program field contains the name of the program that is currently active. The system sets a breakpoint wherever the specified subroutine occurs in the program code.
    Choose ENTER.
    Result
    The system confirms the breakpoint. The breakpoint is added to the breakpoints displayed.
    Breakpoints at Function Module
    You can use this kind of dynamic breakpoint to interrupt a program directly before a function module is called.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint for a function module:
    Choose Breakpoint ® Breakpoint at ® Function module...
    The following dialog box appears:
    Enter the name of the function module before which you want to interrupt the program. The system sets a breakpoint wherever the specified event, module pool, or subroutine occurs in the program code.
    Choose ENTER.
    Result
    If you entered a valid function module name, the system confirms that the breakpoint has been set. If the function module exists in the system, the new breakpoint is added to the display list.
    Breakpoints at Methods
    You can use this special kind of dynamic breakpoint to interrupt a program directly before a method is called.
    Prerequisites
    You must be already running the program in the debugger.
    Procedure
    To set a breakpoint for methods:
    1. Choose Breakpoint ® Breakpoint at ® Method...
    The following dialog box then appears:
    2. Enter the name of the method and class before which you want to interrupt the program. A breakpoint is then set each time the specified processing block appears in the source code.
    3. Choose ENTER.
    Result
    The system confirms the breakpoint. The breakpoint is added to the list in the display.
    Breakpoints at System Exceptions
    You can use this special form of dynamic breakpoint to interrupt a program immediately after a runtime error has occurred.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint at a system exception:
    Choose Breakpoint ® Breakpoint at ® System exception.
    Result
    The system confirms the breakpoint. The breakpoint is added to the breakpoints displayed.
    When a system exception is triggered, a warning triangle appears in the line containing the statement that caused it. If you double-click the warning triangle, the internal name of the runtime error appears.
    Static Breakpoints
    You should only use static breakpoints during the development phase of an application. You must remove them from your program before you transport it.
    Setting Breakpoints
    To set a static breakpoint, use the ABAP statement BREAK-POINT . Place the breakpoint in the line at which you want to interrupt the program.
    program RSDEBUG_01.
    if SY-SUBRC 0.
    break-point.
    endif.
    When you run the program, the runtime processor interrupts it when the breakpoints occur. You can number your breakpoints to make them easier to identify ( BREAK-POINT 1, BREAK-POINT 2 …).
    Static breakpoints are not normally user-specific. The program is, therefore, always interrupted as soon as the runtime processor reaches the line containing the breakpoint. The program is interrupted regardless of the user who executes it.
    However, you can set user-specific static breakpoints using the BREAK statement followed by your user name. For example, if you use the statement BREAK SMITH , the program is only interrupted when user Smith runs it. Although user-specific breakpoints appear in the program code, they are not active when other users run the program. You should, however, be careful if an application is being used by several users with the same name.
    Deleting Breakpoints
    Since static breakpoints apply to all users, you must remove them from the program once you have finished testing it. In the ABAP Editor, you can find breakpoints quickly by choosing Utilities ® Global search. You can also use the Extended Program Check to find them.
    If you do not remove static breakpoints from your program, they will be transported to your production system. This could cause serious problems in the production system.
    Dynamic Breakpoints
    You can set up to 30 dynamic breakpoints without changing the program code. Dynamic breakpoints can be set either in the ABAP Editor or directly in the Debugger.
    Setting Dynamic Breakpoints in the ABAP Editor
    You can set dynamic breakpoints in the ABAP Editor regardless of whether you are in display or change mode. You can also set breakpoints directly from within the Debugger at runtime. To set a dynamic breakpoint in the ABAP Editor:
    Position the cursor on the line of the source code at which you want to set the breakpoint.
    Choose Utilities ® Breakpoints ® Set or the Stop icon. The system confirms that the breakpoint has been set.
    To display a list of all dynamic breakpoints in a program, choose Utilities ® Breakpoints ® Display. You can use this list to navigate to a particular breakpoint or to delete one or more breakpoints from the program.
    Setting Dynamic Breakpoints in Debugging Mode
    To set a dynamic breakpoint in the Debugger:
    Position the cursor on the line in which you want to set the breakpoint.
    Select the line by double-clicking it or choosing Breakpoint ® Set/delete.
    The system sets the breakpoint, and displays a small stop sign to the left of the relevant line. If the line already contained a breakpoint, it is deleted.
    When you finish your debugging session, the breakpoint is automatically deleted unless you have explicitly saved it.
    Saving Breakpoints
    If you want to leave the Debugger temporarily, you can save your dynamic breakpoints so that they are still active when you return to the Debugger within the same terminal session.
    To save the breakpoints that you have set in the Debugger:
    Choose Breakpoint ® Save.
    The system saves all of the breakpoints that you have set in the current program. These breakpoints will remain active until you either explicitly delete them or log off from the system.
    You can also delete breakpoints that you have saved:
    By deleting individual breakpoints from the display and then saving again. In this case, only your selected breakpoints will be deleted.
    By choosing Breakpoint ® Delete all. In this case, the system deletes all dynamic breakpoints.
    Managing Dynamic Breakpoints
    The ABAP Debugger provides a convenient user interface for managing breakpoints. To open the breakpoint display, choose Breakpoints, or, from the menu, Goto ® Control debugging ® Breakpoints.
    Example
    Functions
    This display mode contains the following functions for breakpoints:
    Breakpoint Display
    The scrollable breakpoint display contains up to 30 dynamic breakpoints. For breakpoints that you set directly, the program name and line number at which the breakpoint occurs are displayed. For special breakpoint forms, the list displays the statements, events, subroutines, and module calls at which the relevant breakpoints are set.
    Counter
    In the breakpoint display, you can specify a counter. When you use a counter, the breakpoint is not activated until it has been reached a specified number of times. For example, if you enter 5 for the counter, the breakpoint is not activated until it is reached for the fifth time. After the breakpoint has been activated, it remains so, and the counter no longer appears in the breakpoint display.
    Deleting Breakpoints
    Position the cursor on the breakpoint that you want to delete, and either double-click the line or choose Breakpoint ® Set/delete. To delete all breakpoints, choose Breakpoint ® Delete all.
    Activating and Deactivating Breakpoints
    Position the cursor on the breakpoint that you want to activate or deactivate and choose Breakpoint ® Activate/deactivate.
    Watchpoints
    Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.
    Use
    You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.
    Features
    You can set up to five watchpoints in a program.
    See also Setting Watchpoints.
    You can also specify the conditions on which a watchpoint is to become active.
    You can specify logical conditions between up to five conditional watchpoints.
    See Specifying a Logical Expression.
    You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in the specified program.
    You can change and delete watchpoints.
    See Changing Watchpoints.
    You can use watchpoints to display changes to the references of strings, data and object references, and internal tables.
    See Memory Monitoring with Watchpoints
    Setting Watchpoints
    If you want to interrupt a program when the contents of a field or structure change, use a watchpoint. You can set up to five watchpoints, including watchpoints for strings.
    A watchpoint can be either local or global. Local watchpoints are only valid in the specified program. Global watchpoints are valid in the specified program, and also in all the other programs it calls.
    Procedure
    To set a watchpoint, start the Debugger and proceed as follows:
    Choose Breakpoint ® Create watchpoint or the corresponding pushbutton. The Create Watchpoint dialog box appears:
    Decide whether you want to set a local or global watchpoint.
    Enter the program and the name of the field for which you want to set the watchpoint. In the Program field, the name of the program currently running is always defaulted.
    If you want your watchpoint to be activated each time the contents of the field change, the definition is now complete, and you can return to the Debugger by pressing ENTER .
    To create a conditional watchpoint, that is only activated when a particular situation arises, choose one of the following relational operators.
    Operator
    Meaning
    <
    Less than
    <=
    Less than or equal
    =
    Equal
    <>
    Not equal
    =
    Greater than or equal
    Greater than
    You can use the Comparison field option to specify whether the comparison is to be carried out with a value that you specify or with the contents of another field. Depending on your choice from step 6, enter a value or a field for the comparison.
    Result
    The system confirms the watchpoint and adds it to the list in the display. When you finish your debugging session, the watchpoint is automatically deleted unless you have explicitly saved it.
    Specifying Logical Links
    If you have more than one conditional watchpoint, you can specify a logical link between them:
    OR
    Only one of the specified conditions must be met
    AND
    All of the conditions must be met.
    Changing Watchpoints
    Choose Goto ® Control debugging ® Watchpoints or the Watchpoints pushbutton to display the watchpoint list. The following dialog box appears:
    Choose the pencil icon in the line containing the watchpoint you want to change.
    Change the watchpoint attributes in the Create/Change Watchpoint.
    Choose ENTER .
    Deleting Watchpoints
    You cannot delete watchpoints by choosing Breakpoint ® Delete or Breakpoint ® Deactivate/activate. Instead, proceed as follows:
    Choose Goto ® Control debugging ® Watchpoints or the Watchpoints pushbutton to display the watchpoint list.
    Choose the trashcan icon in the line containing the watchpoint you want to delete.
    Memory Monitoring with Watchpoints
    You can use watchpoints to display changes to the references of strings, data and object references, and internal tables. By placing an ampersand (&) in front of the object name, you can display the reference in question in hexadecimal format. With internal tables, you can also display the table header by placing an asterisk (*) at the beginning of the name.
    &objectname
    Displays the references of strings, internal tables as well as data and object references
    *itab
    Displays the table header of the internal table itab
    Example
    If a watchpoint is set for the object in question at runtime, the program is stopped as soon as the reference is changed. A short dump can be intercepted in this way to stop the program being terminated when the memory is overwritten.
    Analyzing Source Code
    The Debugger contains an extensive range of functions that help you to analyze the source code of a program. You can step through the source code of a program in four different ways. For further information, refer to Stepping Through the Source Code
    For information about functions within the source code display, see Displaying the Source Code
    There are also different display modes that provide various information and display the contents of individual fields, tables, and so on:
    To create a logical link between watchpoints:
    Choose Goto ® Control debugging ® Watchpoints or the Watchpoints pushbutton to open the watchpoint display.
    Set the Logical operator between watchpoints option.
    The default value is always OR .
    Reward if usefull
    Sivaparvathi

  • 「Campaign」Happy Chinese New Year !Come and Get free Dota2 Heroclix !

    Happy Chinese New Year! 
    For thanking all MSI fans biggest support in 2014. We have a special campaign to all of you!
    Uploaded your MSI ALL-in-One PC/Nightblade photo and the proof of purchase our product. Leave the message of the main feature that you choose to buy MSI product. You will have a chance to get the free Dota2 Heroclix.
    Please follow Terms & Conditions below:
    1. Please register to be one of our forum member 
    2. Post your AIO or Nightblade photos with proof of purchase,
    3. Also comment which feature do you like our product the most
    4. Winners will be selected at random when you have done all of the above instructions. This event will end at the end on 31/March/2015.
    e.g.
    I like Nightblade with OC button , it's easy to overclocking !!
    Dota2 Heroclix preview
    What are you waiting for !? 

    Dear all 
    thank you for your reply , it's good to received your questions about our campaign.
    There are no limited purchase proof date , if you could provide us purchase proof and leave the message about what feature you like, and we will send you a DOTA 2 Heroclix !
    SO , What are you waiting for XDDD?

  • 'You can post in new year only after closing the previous year

    Hello Experts,
    I am also getting same error while executing depreciation run AFAB ''You can post in new year only after closing the previous year''.
    I found one OSS Note 18800 and it is saying solution as below ...
    At the first depreciation posting in the new fiscal year after a shortened fiscal year, the fiscal year variants must, in all cases, still be entered in asset customizing and in FI customizing for the affected company code. If necessary, all periods for the following fiscal year must be maintained with the variant of the shortened fiscal year.
    Up to 2.2D the following correction must also be installed:
    Please carry out the syntax check only in main program SAPLAFAR.
    But in my case there is no shortended fiscal year.
    Can I apply this OSS note correction instructions ?
    Please suggest me.

    Hi
    I don't think so. Moreover that is applicable till 2.2D.
    Moreover depreciation is to be run for all periods you have not run earlier. Please check upto which period dep run has happened. Thereafter close the fiscal years in order thro AJAB.
    S Jayaram

  • IBook Shipping between Christmas and New Years?

    Anyone from Apple know whether books are being processed and shipped between Christmas and New Years?
    I am wondering if anyone has an accurate answer as to why shipping time takes longer then normal if an iBook order was put in on December 23rd (3:00am Pacific).  I made the order exspecting the shipment to arrive by atleast the 30th with express shipping.  If i had ordered on December 22nd, the site said it would arrive by December 29th, and assumed that if ordered a day later it would arrive a day later.  The message I received when purchased said it would only be delivered Jan 4-6 which is much more than anticipated.  Of course it's the holidays, but this doesn't make sense to me even with omiting the 26th as a holiday.  That, and it is the end of the holidays so I would think most books have already been made and shipped?  I am leaving overseas on the 31st and wanted to have these books to give to relatives!   I ordered them and am just hoping they come in on time.
    Anyone from Apple know whether books are being processed and shipped between Christmas and New Years?
    By the way, since the 23rd, it said the books were Preparing for Shippment.
    Thanks!
    Chris

    Apple does certainly know
    Unfortuantly you you are posting in a strictly user to user forum so no one here has any idea at all
    Anly Apple can answer - Sorry
    LN

  • Happy Darn New Year

    Sheesh, this being nice thingie is killing me. 6 days to go...
    If you're editing tonight, wear white and don't drink!
    (Easy for me to say, sitting in my cozy house as the snow falls on the beach.)
    Here's wishing all my pals here every blessing and uncorrupted preferences for the new year.
    Can hardly wait to become once again your
    Uncle Grump

    Dear Uncle Grump:
    Reading your proclamation on the cessation from yourself, I thought some right taunting was deserved so I wrote up a post that I'd wanted to post under an alias in hopes of drawing our dear Uncle Grump back to the board.
    Rather than go to the trouble of registering as someone else, I'll just offer up the post here in hopes it gives back some of the chuckles that you've given me over the years.
    Happy New Year, Jim!
    zeb
    "hello, i was just hired to create hd masters for a universe wide broadcast. i was given hihd ef EVS (what is this?) and i need to know where to plug into my computer. also, what is thing calleda a dalsa? it's got a big glass round thing on the front? i was also given a bunch of cables that i don't recognize. so i can't capture in fcp, why? it's terrible that apple that they don't help me out! also, when i plug the computer into the wall, it doesn't do anything. i spent thousadns of dollars on this and it doesn't do anything! i'm going back to windows because it least in pinnacle studio i could not have to render.
    finanlly, this camera says it captures at 38.17 fps, why won't it capture, i need help ASAP AS I'M ON A DEADLINE AND MY CLIENTS AREN'T HAPPY"

  • Happy a new year

    Happy a new year

    Wishing You True Success and Enduring Happiness in the New Year
    From :-
    Vikas Kashyap
    India.

  • Happy Christmas and New Year to all forum users

    Thanks to the big guns Tom, Ian et al for their continual help and guidance and to all those whose post problems because it helps me realise I am not a dufus and we all experience the same problems!
    Happy film making to us all.

    Couldn't agree more. My conversion to FCE has been helped so much by these forums and I'm now at the point that I'm doing this video thing for a job these days, still a lot to learn though. Thanks again to the regulars here for all your help and encouragement.
    Pete

  • Hello......all of you Wish You A Happy Diwali..........

    Please clarify the following questions and assign points for good answer....
    1.What is the diff. between Automatic Payment Program(APP) and Automatic Clearing Program(ACP)?
    2.What is the purpose of Varient in APP and how you can create varient in F110?
    3.Which GL A/cs can maintain Open Item Management(OIM) and which gl a/cs cannot be maintain OIM. While create GL A/cs user forgot to select OIM under the co.code data and after posting some business transactions, again client wants to change it to OIM. can we do this, if yes How?
    Adv thanks
    Krishna

    Krishna:
    APP: A program for automatic payments to vendors, can be used for receiving payments from customers,
    Automatic Clearing Program: Clears all the open line items once the payment run is made.
    It is configured in Financial Accounting -> General Ledger Accounting -> Business Transactions -> Open Item Clearing -> Prepare Automatic Clearing
    Variant in F110: A variant in F110 takes care of the printout medium. After the payment run, payment media are created. You need to have a variant created for the program that you use for example program RFFOUS_C is used for check. Variant will control how the check looks like.
    Assign points if info helps
    Vj

  • Happy New Year 2011

    Wish you all Happy and Prosperous New year.
    Cheers
    Gautham.

    >
    saslove sap wrote:
    > Btw people will catch you all the way in 2012 if nothing happens
    > sasl
    That is why i earlier mentioned it is for you.

  • Happy Christmas!! Happy new year!! and Happy Happy holidays

    Hi Folks ,
    Wishing a Happy Happy marry christmas and Advance happy new year whom most of the people are into vacation !!Hope in india already so many left their work and in travel...
    Wish you in next  year 2009   Good Health , Good appetiteIf you are single , wish you find your lover , and get married soon;If you are married, wish you love each other more, and have a smart little baby;If you are a man, wish you more handsome and strongerIf you are a girl, wish you more beautiful more consideratelyWish you happy! Enjoy your life!
    Although so many things will happen in our life Some times good some times bad ....But where ever we are what ever we do we should be live happily and make happily .....we dont interact each others but our thoughts may collide ,,,,,we dont call each other but our thinking may match.......Same way although we done celebrate together dont forget to send your Christmas sweets & Gifts...:-)
    I hope the new year will remove all the dust that has been spread all round the globe ....and Really like to you share your CHRISTMAS celebrations !!! Dont forget to post here once coming back ..:-)
    Regards
    Sas

    Merry is the glad word, marry is when you match and wed people (or ideas).
    Craig has suggested on his "off line" station gathering pictures of winter and celebrations.
    In fact he's running a [video contest |http://www.kyte.tv/ch/72385-friday-morning-report/292138-florida-winter]so folks can share their winters.
    One of our community members shared a knowledge nugget with me in Twitter: "that my own holiday, Channukah, has some traditions like Diwali (burning an oil lamp)" for example.
    This year was the first time in my life that we did that (rather than just light candles which we did as well).
    I like this [picture|http://www.flickr.com/photos/marilynpratt/3131272327/] that has our neighbors Christmas lights blended with our own Channukah oil lamp.
    It reminds me of the best things community can be: sharing, lightness, illumination.
    Marrying (blending) to make merry (happy) is what our diverse community is all about.
    Happy Holidays and a good season.
    Thanks to everyone who generously wish these things regardless of where in the world they are and what they celebrate.
    We salute you.

  • Happy New Year 2012

    Hi All,
    Wish you Happy & Prosperous New year 2012.
    Thanks for all your Help & support with OTN. Keep Rocking :)
    Thanks.

    I was just going to post the same thread and you beat me on it :) . Wish you and the entire Oracle community, to Justin and the entire OTN team, a very happy and prosperous 2012! May this year brings for all us lots of joy, success, happiness and good health and of course, we all may learn more and more from the Guru's of our community like Jonathan Lewis, Charles Hooper, Tom Kyte, Hans Forbrich , Hemant Chitale (and a long list of such esteemed people follows) and become more and more aware about this awesome product-Oracle database.
    Happy new year to all once again!
    With best wishes and regards
    Aman....

  • Happy New Year

    TO Everyone !!
    It is now the time here.
    12:00 AM Monday; January 1, 2007
    Happy Holidays

    Happy New Year Sandra !!
    Hope that drive does not give you trouble.
    (note to self Buy a new External drive)
    LOL! I've already made a note to myself to buy a second external drive, just to avoid the apparent inevitability of both a main drive and a backup drive dying/being murdered at the same time. Luckily, I did manage to save my email files and my Quicken files before the problems occurred. In addition, I can get my Address Book entries and iCal data from my Palm, and I can also transfer my iTunes stuff from my iPod to the new MacBook. But all of my 20+ years of quilting designs, many of our photos and all of my husband's work files are still in question.
    Once again, Happy New Year!

  • HAPPY UGADI ( Telugu New Year ) Subhakankshalu

    Dear All,
    Wish you all a happy & prosperous new Year
    Andariki na
    " Sri Sarvadhara Nama Samatsara Subhakanshalu"
    Reg
    Suresh
    Edited by: Suresh Upadhyayula on Apr 7, 2008 8:04 AM

    Hi Friends,
    I WISH YOU A HAPPY & PROSPEROUS HAPPY NEW YEAR UGAADI.
    " Sri Sarvadhara Nama Samatsara Subhakanshalu"
    HAVE A NICE DAY & LOVE YOU ALL,
    KUMAR.B

  • New Year 2010

    Dear Mr. New Year 2010!
    All I want is to lose 40 pounds.
    I don't want to be Mr. Big This and That.
    All I want is to lose 40 pounds.
    What I say doesn't mean what you think I want.
    I don't want to be Mr. Big This and That.
    All I want is to lose 40 pounds.
    So please no one wants to be misunderstood.
    I don't want to be Mr. Big This and That.
    All I want is to lose 40 pounds.
    So please let me remind you
    I don't want to rule the world.
    All I want is to lose 40 pounds.
    Happy New Year!

    HAPPY WAPPY NEW YEAR TO ALL OF SCN !!!!!!!!!!!!!!!!!!!!
    HAVE A SUCCESSFUL 2010 !!!!
    Regards,
    Dinesh

Maybe you are looking for

  • Error Message When Using a Class Files to Control Navigation

    This is my first attempt at using a class file in a flash project. My intent is to keep all of my navigation elements in class file called "Navigation".  However, I keep getting an error message when I publish. I am using a button to go back to the m

  • Can't print after iTunes and Quicktime upgrade

    I installed the upgrades to iTunes 7.1 and Quicktime 7.1.5. Now none of my applications can print to any of my printers. The behavior is that the print window appears normal, and I can "Save to pdf". When I click "Print" the appllication pops up an e

  • Mass change in service master

    Hi, Can anybody tell me how can I make mass changes in service master record ? Regards, Chetan.

  • Hi im struggling to pring a pdf form

    hi im struggling to print a pdf form on line it says r PDF viewer may not be able to display this type of document how can i get the correct programe for free to print it out

  • How to define custom event and how to trigger the defined event

    hi,guys hurry issue....................hope get help. I am using oracle weblogic 10gr3 portal.and we choiced java portlet.as of now,we got some question about custom Event.hope you can give some idea.... thank you so much. question detail: 1.for java