Hii guyzz i want to know about read table

guyzz,
           i have to delete a value from the table eg: despatch date but after i delete the the date i want the date in the remaining field (the fields i doesnt delete the date ) to add into hte space in deleted(now it contins 00000) and it all should be done in read table area
i wont need the program only logic will do guyzz
thanks in advance... and points will given to those who help me with this...

Apple - Apple Watch

Similar Messages

  • I want to know about OLAP tables

    i was looking further for olap tables in sap bw......and is it necessary to remember all the tables

    this link is for the imp tables in SAP BI.  http://wiki.sdn.sap.com/wiki/display/BI/ImportantTablesinSAPBI%28NW2004%29

  • I want to know about imessages and how it works !! how to register a number with imessages?? I saved a number in contacts but when I try to send a message it say "! not delivered" in red mark.How can I fix this problem??

    I want to know about imessages and how it works !! how to register a number with imessages?? I saved a number in contacts but when I try to send a message it says "! not delivered" in red mark.How can I fix this problem??

    Perhaps something in this support article will help:
    http://support.apple.com/kb/TS2755
    Regards.

  • HT1349 I want to know about the service of my computer with a serial number CO2GG9LCDJWT

    I want to know about the service of my computer with a serial number CO2GG9LCDJWT.   As I recall, I bought the service for three years...

    Are you perhaps trying to reach Apple Support?
    We are all users here, just like you.
    Contact Apple Support here:
    http://www.apple.com/support/contact/

  • I want to know about two year contract

    hai i am sudharsan i am want to know about the two year contract of iphone 5s @99$ at uk but i bought that but i have to go to india for a month .just expalin about that for me

    Ask the carrier. The contract is with the cellular carrier, not Apple.

  • I want  to know about smartforms

    hi experts tell me
    i want to know about smartforms
    anybody have material pls send me
    thanks in advance

    SAP Smartforms can be used for creating and maintaining forms for mass printing in SAP Systems. The output medium for Smartforms support printer, fax, e-mail, or the Internet (by using the generated XML output).
    According to SAP, you need neither have any programming knowledge nor use a Script language to adapt standard forms. However, basic ABAP programming skills are required only in special cases (for example, to call a function module you created or for complex and extensive conditions).
    1. Create a new smartforms
          Transaction code SMARTFORMS
          Create new smartforms call ZSMART
    2. Define looping process for internal table
    Pages and windows
          First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
          Here, you can specify your title and page numbering
          &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
          Main windows -> TABLE -> DATA
          In the Loop section, tick Internal table and fill in
          ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
    Global settings :
    Form interface
    Variable name    Type assignment   Reference type
    ITAB1               TYPE                  Table Structure
    Global definitions
    Variable name    Type assignment   Reference type
    ITAB2               TYPE                  Table Structure
    4. To display the data in the form
    Make used of the Table Painter and declare the Line Type in Tabstrips Table
    e.g.  HD_GEN for printing header details,
            IT_GEN  for printing data details.
    You have to specify the Line Type in your Text elements in the Tabstrips Output options.
    Tick the New Line and specify the Line Type for outputting the data.
    Declare your output fields in Text elements
    Tabstrips - Output Options
    For different fonts use this Style : IDWTCERTSTYLE
    For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by :  SAP Hints and Tips on Configuration and ABAP/4 Programming
                        http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
            INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
       MOVE-CORRESPONDING MKPF TO INT_MKPF.
       APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
      exporting
        formname                 = 'ZSMARTFORM'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
      IMPORTING
        FM_NAME                  = FM_NAME
      EXCEPTIONS
        NO_FORM                  = 1
        NO_FUNCTION_MODULE       = 2
        OTHERS                   = 3.
    if sy-subrc <> 0.
       WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        GS_MKPF                    = INT_MKPF
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5.
    if sy-subrc <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    also refer
    http://www.erpgenie.com/abap/smartforms_detail.htm
    http://www.sap-basis-abap.com/abphy.htm
    <b>http://sap.ionelburlacu.ro/sap0/sapsf001.htm
    http://www.ionutz.ro/sap/sapabap01.htm[very imp links]</b>
    http://www.sap-basis-abap.com/sapsf001.htm
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • I want to know about change pointers generally we have C,R,N change pointers

    I want to know about change pointers generally we have C,R,N change pointers
    where they are configured

    IHi Virender,
    I don´t think you can create new methods.
    There are 4 methods:
    N – New order created [New]
    C – Order changed [Changed]
    D – Order deleted or partially deleted [Delete]
    R – Complete order deleted [Removed]
    Please read the following document about Change Pointer:
    Processing Change Pointers - Integration via APO Core Interface (CIF) - SAP Library
    Read SAP note about CIF and Change Pointer administration.
    563806
    - FAQ: APO CIF
    Kind Regards,
    Mariano

  • I want to know about reporting agent.

    i want to know about reporting agent.

    Hi,
    The Reporting Agent is a tool used to schedule reporting functions in the background.
    The following functions are available:
    ·        Evaluating exceptions
    ·        Printing queries
    ·        Pre-calculating Web templates
    ·        Pre-calculating characteristic variables of type pre-calculated value sets
    ·        Pre-calculation of queries for Crystal reports
    ·        Managing bookmarks
    http://help.sap.com/saphelp_nw70/helpdata/en/28/734d3caa70ea6fe10000000a114084/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/44/0435514d956039e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/615f64816311d38b170000e8284689/frameset.htm
    Regards,
    ®

  • I want to know about iphone5

    i want to know about iphone5

    Try a reset. Press and hold both the home and power buttons 10-15 seconds until the Apple logo appears. Release both buttons. Wait 15-29 seconds until your iPhone starts on it's own.

  • I want to know about wen the iphone 5 launch in india and also what will the price

    i want to know about wen the iphone 5 launch in india and also what will the price

    Anyone here knows or has access to the same info that you do or can access.
    If Apple has a website and online store in India, check Apple's website in India for an announcement.

  • Want to know about java importer

    hi,
    i m working on oracle forms 10g. i want to know about java importer utitlity and using it.
    plz provide me ant documentation about it , if i have it with example would be easy to understand
    thanks

    I think u r lookinghttp://www.catb.org/~esr/faqs/smart-questions.html#writewell
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal - in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse "its" with "it's", "loose" with "lose", or "discrete" with "discreet". Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes.

  • Want to know about RFML

    RFML is used to convert byte streams to some other format...i want to know about rfml can any one help me out???

    Highly recommended is "iPad User Guide for IOS 7" available for free in the iBooks store. IOS 6 is also avaiable.

  • Want to know about EP...

    Hi all,
    i m doing abap programming, i want to know about EP and SAp netweaver can u tell me Books name for the begginer so i can refere that or can any one give me PDF or link regarding both EP and Netweaver.
    Thanks & Regards,
    yunus

    Hi Yunus,
    A simple Demo for the EP Lanscape Architechure,Portal Content Architechture& configurations,Basic Content object like iviews, pages, worksets, roles, Diffr between EP5.0 and EP6.0 is explained here u just have to use ur ear plugs and hear the session.  And also a simple Quiz to check ur understandings at last                                   
    1)  https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9801b8f9-0701-0010-3f98-bceb17f62a4f                                   
    2)  https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/5f99129d-0701-0010-ab85-bc43ac86ba7c                                   
    http://help.sap.com/saphelp_nw04s/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm                                   
    For portal concepts and overview you can start with the link below:                                   
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm                                   
    For EP development, you can start by accessing the online help for EP developers. This is a part of the portal documentation.                                   
    http://help.sap.com/saphelp_nw04/helpdata/en/19/4554426dd13555e10000000a1550b0/content.htm                                   
    SAP developer's guide                                   
    https://www.sdn.sap.com/irj/sdn/developersguide                                   
    https://www.sdn.sap.com/irj/sdn/devguide2004s                                   
    Cheers,                                   
    Javed.

  • Want to know about my Notebook's Max Upgrade.

    I want to know about my Laptop's Maximum Upgrade Capacity.
    and can i upgrade my HDD from 1TB to 3TB ?
    if i can then please give a WB Hardrives Suggestion.
    and can i Add 2x8GB Ram of 1600 speed ?
    Thanks

    It can take up to 16gb (2 x 8 gb) of DDR3L-1600 SO-DIMM memory. Here is the Service Manual:
    Manual
    See pages 47-51. Your hard drive and memory are easily accessible. 
    The laptop will accept the largest 2.5 inch wide 9.5 mm thick SATA laptop hard drive you can buy in the market which I believe is 2 terabytes right now. 
    http://www.newegg.com/Product/Product.aspx?Item=9SIA6U12B97951
    2 TB laptop drives are just not a good value in my opinion. They are slow, and very expensive. 
    You can also install an mSATA mSSD drive. 
    If this is "the Answer" please click "Accept as Solution" to help others find it. 

  • Want to know about oracle

    want to know about oracle

    First thing you learn from Oracle, Oracle is a huge Ocean of concepts, its a Universe within a Universe, and within each Universe another subUniverse ...
    Information Paradox in which knowledge and meaning clash, from Sthephen Hawkins ... Seems much more easier to understand.
    Let's state it this way, what do you want to be when you're grown up?? DBA, Developer, Application Specialist, Applications DBA, JDeveloper, Warehose Builder, Spatial Data Processor, Security Officer, Web Master, Data Miner, .... ???
    I suggest you to narrow the scope of your question, and aim at a very specific goal, otherwise, you'll end up swallowed by the black hole of Oracle knowledge.

Maybe you are looking for