Urgent reagrding fields

HI,
I want to know common fields in the BSEG AND RSEG table.
plzz tell me its really urgent.

PO , its item and material number are the common fields b/w MSEG and RSEG tables.
Other than that there is no relation b/w them.
MKPF & MSEG contains the material movement documents. Against the material documents, you have accounting documents and these hit the accounts. you can find the accoutning docs created against the material docs in mkpf and mseg in bkpf and bseg tables.
RBKP and RSEG contains the incoming invoices (accounting docs) created against the POs.
See the following link.
http://sapr3consultant.com/saptables.asp
Hope this helps.

Similar Messages

  • Really urgent: reagrding adding fields select statement in smart forms

    hi,
    i am working on a smart form which was made by someone else and now i have to make changes in it and now i have to add 1 field in that select statement but it is giving error even if i am storing the  variable in it and declaring it in global declarations.
    plzz help me how to overcome dis problem?

    Hi Ric,
    As u have added one more field in the select statement,
    U must modify the internal table as well.
    Now when u pass this internal table to smartform just chk the type reference of this internal table from smartform : Global Settings - Form Interface - Tables tab.
    In most of the cases its a Z-structure.
    Just add the new field in this structure as that of ur internal table in program. ( At same position..)
    For eg:
    In my program I am passing following table to smartform...
    TABLES
        I_ZEKPO                    = IT_FINAL_DATA
        I_ZADRC                    = IT_VENDOR_ADDRESS
    now in smartform form interface i have declared them as:
    I_ZEKPO             LIKE           ZEKPO     
    I_ZADRC             LIKE           ZADRC  
    here ZEKPO and ZADRC are the structures which I have created via SE11...
    So whenever I modify in the program internal table structure I need to modify respective Z-strucure as well...
    Just chk if the same thin has been already implemented by previous guy...and do the changes..
    Edited by: Dhananjay Patil on Mar 11, 2008 12:03 PM

  • Urgent: reagrding output display preoblem

    Hi,
    I had made dis report adn when i execute it does not display the all changes made to a purticular material. As i made the report reagrding the changes made to a purticular material in a purticular period. here is d code:-
    REPORT ZNEW01 no standard page heading LINE-SIZE 310.
    TABLES: CDHDR,CDPOS.
    DATA: BEGIN OF ITAB OCCURS 0,
          OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
          OBJECTID LIKE CDHDR-OBJECTID,
          USERNAME LIKE CDHDR-USERNAME,
          UDATE LIKE CDHDR-UDATE,
          UTIME LIKE CDHDR-UTIME,
          TCODE LIKE CDHDR-TCODE,
          CHANGE_IND LIKE CDHDR-CHANGE_IND,
          END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
          OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
          OBJECTID LIKE CDPOS-OBJECTID,
          FNAME LIKE CDPOS-FNAME,
          CHNGIND LIKE CDPOS-CHNGIND,
          VALUE_OLD LIKE CDPOS-VALUE_OLD,
          VALUE_NEW LIKE CDPOS-VALUE_NEW,
          END OF ITAB1.
    SELECT-OPTIONS: M_DATE FOR CDHDR-UDATE,
                    U_ID FOR CDHDR-CHANGE_IND.
    SELECT BOBJECTCLAS BOBJECTID BUSERNAME BUDATE BUTIME BTCODE B~CHANGE_IND INTO
    TABLE ITAB
    FROM CDHDR AS B WHERE B~OBJECTCLAS = 'MATERIAL' AND UDATE IN M_DATE AND CHANGE_IND IN U_ID.
    Check not itab[] is initial.
    SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    ITAB1 FROM CDPOS
    FOR ALL ENTRIES IN ITAB WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    *SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    *ITAB1 FROM CDPOS
    *WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    ULINE.
    LOOP AT ITAB.
    WRITE:/ ITAB-OBJECTID,22 ITAB-USERNAME,ITAB-UDATE,ITAB-UTIME,ITAB-TCODE.
    LOOP AT ITAB1 WHERE OBJECTCLAS = ITAB-OBJECTCLAS AND OBJECTID = ITAB-OBJECTID.
    WRITE: 60 ITAB1-FNAME,ITAB1-CHNGIND,ITAB1-VALUE_OLD(40),ITAB1-VALUE_NEW(40).
    ENDLOOP.
    ENDLOOP.
    PLZZ HELP ME OUT AS HELP WILL BE DEFINATELY REWRDED.
    Edited by: ric .s on Jan 31, 2008 9:11 AM

    hi,
    i give u example of that ,if there is material 10000014 and it had been changed by 3 differrent users whic is disaplaying correct but when i  click it in MM04 it also displays the correct value dat dese are changed by 3 persons but when i double click that for 1 st user it shows details that these are changes made but when i check my report it is not displaying allthe fields which had been changed.
    plzz help me out as it is really urgent.
    TABLES: CDHDR,CDPOS.
    DATA: BEGIN OF ITAB OCCURS 0,
          OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
          OBJECTID LIKE CDHDR-OBJECTID,
          USERNAME LIKE CDHDR-USERNAME,
          UDATE LIKE CDHDR-UDATE,
          UTIME LIKE CDHDR-UTIME,
          TCODE LIKE CDHDR-TCODE,
          CHANGENR LIKE CDHDR-CHANGENR,
          END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
          OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
          OBJECTID LIKE CDPOS-OBJECTID,
          FNAME LIKE CDPOS-FNAME,
          CHNGIND LIKE CDPOS-CHNGIND,
          VALUE_OLD LIKE CDPOS-VALUE_OLD,
          VALUE_NEW LIKE CDPOS-VALUE_NEW,
          CHANGENR LIKE CDPOS-CHANGENR,
          END OF ITAB1.
    *SELECT-OPTIONS: M_DATE FOR CDHDR-UDATE.
                   U_ID FOR CDHDR-CHANGE_IND.
    SELECT BOBJECTCLAS BOBJECTID BUSERNAME BUDATE BUTIME BTCODE B~CHANGE_IND INTO
    TABLE ITAB
    FROM CDHDR AS B WHERE B~OBJECTCLAS = 'MATERIAL'.
    AND UDATE IN M_DATE.
    AND CHANGE_IND IN U_ID.
    Check not itab[] is initial.
    SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW CHANGENR INTO TABLE
    ITAB1 FROM CDPOS
    FOR ALL ENTRIES IN ITAB WHERE OBJECTID = itab-objectid AND objectclas = ITAB-OBJECTCLAS.
    *SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    *ITAB1 FROM CDPOS
    *WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    ULINE.
    LOOP AT ITAB.
    WRITE:/ ITAB-OBJECTID,22 ITAB-USERNAME,ITAB-UDATE,ITAB-UTIME,ITAB-TCODE.
    LOOP AT ITAB1 WHERE OBJECTCLAS = ITAB-OBJECTCLAS AND OBJECTID = ITAB-OBJECTID AND CHANGENR = ITAB-CHANGENR.
    WRITE: 60 ITAB1-FNAME,ITAB1-CHNGIND,ITAB1-VALUE_OLD(40),ITAB1-VALUE_NEW(40).
    ENDLOOP.
    ENDLOOP.
    DATA: BEGIN OF ITAB OCCURS 0,
          MATNR LIKE MSTA-MATNR,
          LAEDA LIKE MSTA-LAEDA,
          AENAM LIKE MSTA-AENAM,
          STATM LIKE MSTA-STATM,
          WERKS LIKE MSTA-WERKS,
          PSTAT LIKE MARA-PSTAT,
          END OF ITAB.
          SELECT AMATNR ALAEDA AAENAM ASTATM AWERKS BPSTAT INTO TABLE ITAB
          FROM MSTA AS A INNER JOIN MARA AS B ON BMATNR = AMATNR.
          LOOP AT ITAB.
          WRITE: / ITAB-MATNR,ITAB-LAEDA,ITAB-AENAM,ITAB-STATM,ITAB-WERKS.
          ENDLOOP.
    Edited by: ric .s on Jan 31, 2008 10:59 AM

  • Urgent: Add field in generic data source

    Hi,
    Could anyone please help me out in resolving the issue to add field from different table in generic datasource.
    How can I add it in R/3 data source when a function module was created in ABAP to generate fields from PLPO table?
    Whatz the changes has to be done at BW side to map the added field?
    <u>Requirement</u>
    1) Need one more field in the extractor. Field name is PLAS-LOEKZ. Initially client wanted me to add PLPO-LOEKZ which I added, now he needs the same fields from both the table (PLAS and PLPO).
    2)The name of the extractor/structure is ZBW_ROUTINGS_OPERATION
    3)Now, we need to add this field (LOEKZ from PLAS) in the function module as well. FM name is: Z_BW_ROUTE_OPERATION_EXTRACTOR. This will be in a SELECT query. We need to add this field in the SELECT statement.
    Testing will be done in following steps
    1)     Go to Transaction RSA3.
    2)     Enter the data source “Z_BW_OPERATION_ATTR”(not sure about the name though, but it should end with OPERATION_ATTR)
    3)     Enter the following details:
    EXTTY – I
    PLNNR – 50000032
    PLNTY – N
    4)     Now execute (F8) the transaction.
    5)     Click on “Display List”
    6)     In the output, we should be able to see these 2 columns(PLAS-LOEKZ) and (PLPO-LOEKZ)
    Please send your valuable suggestions to resolve the issue ASAP as its damn urgent.

    Hi,
    Here is an overview of the solution -
    Use T.Code SE11> ZBW_ROUTINGS_OPERATION. Add your new field (PLAS-LOEKZ) to this table, check, save, activate. Edit your function module, SE37> Z_BW_ROUTE_OPERATION_EXTRACTOR and add your code to look up the correct value of this field LOEKZ from the table PLAS, check, save, activate. (Note that SAP provides a sample function module you can use as a template and customize for your requirements. This sample function module is RSAX_BIW_GET_DATA_SIMPLE.)
    Your Generic DataSource Z_BW_OPERATION_ATTR  is already created, you don’t have to change any settings here. Just regenerate it in RSO2. Now test the extraction for the DataSource in RSA3.
    Hope this helps
    Sandeep

  • Re: URGENT: - REGARDING FIELD IN TABLES

    HI
    I am using transaction code MB5B and i am getting d data but i want to search d field among d tables where amount in currency field(dmbtr) present in bsim or bseg table ,but i want to have dat field which use to display d calculation of d field (dbmtr),plz hel me out its urgent... he or sh will be rewarded...

    Hi,
    Please verify these internal tables in the program.
    DATA: BEGIN OF MAT_SUM OCCURS 100,                
            DMBTR(09)            type p    decimals 3,
    DATA: BEGIN OF MAT_SUM_BUK OCCURS 100,            
            DMBTR(09)            type p    decimals 3,
    DATA: BEGIN OF MAT_WEG OCCURS 100,                
            DMBTR(09)            type p    decimals 3,
    DATA: BEGIN OF MAT_WEG_BUK OCCURS 100,            
            DMBTR(09)            type p    decimals 3,
    types : begin of stype_bsim_lean,                 
              dmbtr like bsim-dmbtr,                  
    TYPES : BEGIN OF STYPE_MSEG_LEAN,                 
               DMBTR             LIKE      MSEG-DMBTR,
    DATA: BEGIN OF IMSWEG OCCURS 1000,                
            DMBTR LIKE MSEG-DMBTR,                 
    I think these are the tables used to sum up the dmbtr.
    I think dmbtr is taken from bsim and mseg.Dmbtr id taken from bsim because of the adjustments in finance module..
    <b>Reward points if helpful,</b>
    Regards,
    jinesh.

  • Re: URGENT: - REGARDING FIELD

    HI
    I am using transaction code MB5B and i am getting d data but i want to search d field among d tables where amount in currency field(dmbtr) present in bsim or bseg table ,but i want to have dat field which use to display d calculation of d field (dbmtr),plz hel me out its urgent... he or sh will be rewarded...

    Hi,
    Please verify these internal tables in the program.
    DATA: BEGIN OF MAT_SUM OCCURS 100,                
            DMBTR(09)            type p    decimals 3,
    DATA: BEGIN OF MAT_SUM_BUK OCCURS 100,            
            DMBTR(09)            type p    decimals 3,
    DATA: BEGIN OF MAT_WEG OCCURS 100,                
            DMBTR(09)            type p    decimals 3,
    DATA: BEGIN OF MAT_WEG_BUK OCCURS 100,            
            DMBTR(09)            type p    decimals 3,
    types : begin of stype_bsim_lean,                 
              dmbtr like bsim-dmbtr,                  
    TYPES : BEGIN OF STYPE_MSEG_LEAN,                 
               DMBTR             LIKE      MSEG-DMBTR,
    DATA: BEGIN OF IMSWEG OCCURS 1000,                
            DMBTR LIKE MSEG-DMBTR,                 
    I think these are the tables used to sum up the dmbtr.
    I think dmbtr is taken from bsim and mseg.Dmbtr id taken from bsim because of the adjustments in finance module..
    <b>Reward points if helpful,</b>
    Regards,
    jinesh.

  • Really urgent: reagrding alv format for like (internal tables)

    Hi,
    I making a report in which i am using the concept of 2 internal tables and i am usnig the concept of likes in a internal table .
    for instance,
    DATA : BEGIN OF ITAB OCCURS 0,
              ITEMID LIKE CHVW-MATNR,      
              WERKS LIKE CHVW-WERKS,   
              CHARG LIKE CHVW-CHARG,       
              SHKZG LIKE CHVW-SHKZG,       
              MENGE LIKE CHVW-MENGE,     
              MEINS LIKE CHVW-MEINS, 
    END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
               MATNR TYPE BSEG-MATNR,  
               LIFNR TYPE BSEG-LIFNR,       
               AUGDT TYPE BSEG-AUGDT,     
               WRBTR TYPE BSEG-WRBTR,      
             END OF IT_BSEG.
    and i am able to create ALV for 1 itab only as i had declared all fields in a 1 itab ,but now i have to declare 1 more itab and i  dont know how to perform ALV with 2 itabs..
    Plzz help me out as it is really urgent to me.
    Edited by: ric .s on Apr 22, 2008 11:45 AM
    Edited by: ric .s on Apr 23, 2008 7:21 AM
    Edited by: ric .s on Apr 23, 2008 7:55 AM

    Hi Ric,
    Yes, You can .
    Check the sample ALV  program which helps u in displaying output using ALV . Comments have been made everywhere .
    report  zvenkat_alv_2_grid_description.
    types:
          begin of t_mard,
           werks type mard-werks,
           lgort type mard-lgort,
           matnr type mard-matnr,
           insme type mard-insme,
           einme type mard-einme,
           speme type mard-speme,
          end of t_mard.
    data:
          w_mard type t_mard.
    data:
          i_mard type standard table of t_mard.
    " ALV Declarations
    "     ALV internal tables and Structures
    "     To refer ALV tables(slis tables) and structures.SLIS must be
    "     declared under TYPE-POOLS(see below).SLIS is a Type group which is
    "     defined in Dictionary.Internal tables and structures and constants
    "     are defined under type group.(Double click on SLIS).
    * Types Pools
    type-pools:
       slis.
    * Types
    types:
       t_fieldcat         type slis_fieldcat_alv,
       t_events           type slis_alv_event,
       t_layout           type slis_layout_alv.
    * Workareas
    data:
       w_fieldcat         type t_fieldcat,
       w_events           type t_events,
       w_layout           type t_layout.
    * Internal Tables
    data:
       i_fieldcat         type standard table of t_fieldcat,
       i_fieldcat1        type standard table of t_fieldcat,
       i_events           type standard table of t_events.
    *&      START-OF-SELECTION
    start-of-selection.
      perform get_data_from_database .
      "      END-OF-SELECTION
      "     Steps to create simple ALV program
      "      1. Pass an internal table with the set of output information
      "      2. Pass a field catalog as an internal table
      "      3. Pass a structure with general list layout details
    end-of-selection.
      perform build_fieldcatalog.
      perform build_events.
      perform build_layout.
      perform display_data.
      "      Form  build_fieldcatalog
      "     Fieldcatalog Internal table
      "    1. It contains descriptions of the list output fields
      "       (usually a subset of the internal output table fields).
      "    2. A field catalog is required for every ALV list output.
    form build_fieldcatalog .
      clear :
        w_fieldcat,
       i_fieldcat[].
      perform build_fcat using:
            "Field   Int.Table Column headings
            'WERKS' 'I_MARD' 'WERKS',
            'LGORT' 'I_MARD' 'LGORT',
            'MATNR' 'I_MARD' 'MATNR',
            'INSME' 'I_MARD' 'INSME',
            'EINME' 'I_MARD' 'EINME',
            'SPEME' 'I_MARD' 'SPEME'.
    endform.                    " build_fieldcatalog
    *&      Form  display_data
    form display_data .
      data :program like sy-repid value sy-repid.
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_callback_program = program
          is_layout          = w_layout
          it_fieldcat        = i_fieldcat
          it_events          = i_events
        tables
          t_outtab           = i_mard.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " display_data
    *&      Form  get_data_from_database
    *       text
    form get_data_from_database .
      clear :i_mard,
             i_mard[].
      select werks lgort matnr insme einme speme
      from mard
      into corresponding fields of table i_mard
        up to 100 rows.
    endform.                    " get_data_from_database
    *&      Form  top_of_page
    *       text
    form top_of_page.
      data :
      i_header type slis_t_listheader,
      w_header like line of i_header.
      data:l_date1 type datum,
           l_date2 type datum.
      w_header-typ = 'S'.
      w_header-info = sy-title.
      append w_header to i_header.
      clear w_header.
      w_header-typ = 'H'.
      w_header-info = sy-repid.
      append w_header to i_header.
      clear w_header.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = i_header
          i_logo             = 'ENJOYSAP_LOGO'.
    endform.                    "top_of_page
    *&      Form  BUILD_FCAT
    form build_fcat  using  l_field l_tab l_text.
      w_fieldcat-fieldname = l_field.
      w_fieldcat-tabname   = l_tab.
      w_fieldcat-seltext_m = l_text.
      append w_fieldcat to i_fieldcat.
      clear w_fieldcat.
    endform.                    " BUILD_FCAT
    "      Form  build_events
    "     Events
    "    1. When we use ALV,certain events TOP-OF-PAGE ,END-OF-PAGE,
    "       AT LINE-SELECTION,AT USER-COMMANDs are not triggered.
    "    2. To perform those Functions ,we have to build Events table and
    "       pass this table through REUSE_ALV_LIST_DISPALY Function.
    form build_events .
      clear :
             w_events,i_events[].
      w_events-name = 'TOP_OF_PAGE'.
      w_events-form = 'TOP_OF_PAGE'.
      append w_events to i_events.
      clear w_events.
    endform.                    " build_events
    "&      Form  build_layout
    "     Layouts
    "  Use :We change the display of our list using layouts.
    "  ===
    "  Features
    "  ========
    "    The layouts that you can use vary according to the type of list:
    "   1-->In all lists, you can do the following:
    "       (a).Choose one of the std layouts supplied with the std system.
    "       (b).Change the current layout of the list .
    "   2-->In lists that use only the standard layouts in the std system
    "       you cannot save your changes to the current layout.When you
    "       choose the layouts, only the standard layouts will be proposed.
    "   3-->In some lists, you can also save the layouts that you have
    "       defined as our own layouts.
    "      User-defined layouts are generally saved for all users. They can
    "       then be used by all users. All users will be able to choose from
    "       the user-defined layouts as well as the standard layouts.
    "   4-->In some lists, you can also save user-specific layouts that you
    "       have defined . When you choose the current layout,only these
    "       layouts are available to you.
    "   5-->You can delete or transport layouts, or define them as initial
    "       layouts
    "   6-->STRUCTURE :SLIS_LAYOUT_ALV.
    form build_layout .
      clear:
            w_layout.
      w_layout-colwidth_optimize = 'X'.
    endform.                    " build_layout
    Regards,
    Venkat.O

  • Urgent!  fields of a table to be separated with space n comma

    Hi,
    I have a table in which the entries have to be separated by a comma n space.
    I have put the entries within an internal table.
    I used the concatenate to do this but its getting overwritten.
    Eg.I have atable with the field as name.
    The entries for this field r say aaa bbb ccc ddd.
    I have put these into an internal table itab.
    The required output is aaa, bbb, ccc, ddd
    For this I coded as
    loop at itab.
    concatenate itab-name ' ,'  into answer separated by space.
    endloop.
    answer is a string which gets overwritten with one entry.Finally answer is having only ddd.
    Please help me ASAP with the exact procedure and syntax.
    Thankyou

    Hi,
    try like this,
    data : wa(6) type c.
    DATA : BEGIN OF ITAB OCCURS 0,
           NAME(20) TYPE C,
           END OF ITAB.
    itab-name = 'aaa'.
    append itab.
      itab-name = 'bbb'.
    append itab.
    itab-name = 'ccc'.
    append itab.
    itab-name = 'ddd'.
    append itab.
    loop at itab.
    concatenate itab-name ' ,' into wa separated by space.
    write :  wa.
    endloop.

  • URGENT: Hiding Fields

    Hi,
    I want to hide few fields in standard t.code CO02...
    Firstly, I want to hide Component Overview (F6) button....in the SAPLCOKO1 program name and 120 screen no...
    I was successful, but there is another issue.....
    when i m clicking the Component Overview (F6) button, it display nothing.....information not shown by clicking this button....
    But i want to Inactive this button.....even noone can click on this button...
    wat can i do....
    Prince
    Edited by: Prince Kumar on Dec 25, 2007 9:34 AM

    Hi Prince,
    Have you tried the option of Transaction Variants (transaction SHD0)?
    /Aditya

  • Please help me its urgent -  restrict field update against a condition

    Dear Friends,
    I'm new to the oracle forms .. i want to restrict a filed update against a condition in my form.
    I am using multi record block. I want to disable few fields in a row e.g. there are 10 records in the record block i want to disable three items of 2nd record on the basis of some condition. How can i do it??

    HI,
    you can use the form-built in procedure SET_ITEM_INSTANCE_PROPERTY and the appropriate property....(UPDATE_ALLOWED = PROPERTY_FALSE).
    For example:
      begin
        if <your_condition>
          then
              set_item_instance_property('<your_item1>',<record_number/CURRENT_RECORD>,UPDATE_ALLOWED ,PROPERTY_FALSE);
             set_item_instance_property('<your_item2>',<record_number/CURRENT_RECORD>,UPDATE_ALLOWED ,PROPERTY_FALSE);
         else
             set_item_instance_property('<your_item1>',<record_number/CURRENT_RECORD>,UPDATE_ALLOWED ,PROPERTY_TRUE);
             set_item_instance_property('<your_item2>',<record_number/CURRENT_RECORD>,UPDATE_ALLOWED ,PROPERTY_TRUE);
        end if;
      end;
      For more info , take a look at the on-line help....
    Greetings,
    Sim

  • Urgent: reagrding MRP status

    HI,
    I want to know  if there is a material and we want to check whether its MRP is carried out and if it is then how much qty?

    pls follow:
    spro-mm-purchasing--purchase requisition-define document type---here u see the field selection assigned with the document type.
    no w again follow spro-mm-purchasing--purchase requisition-define screen layout at document level-select the field selection u have seen assigned with the document type-choose details-here in the next screen u select thefield selection group and choose (F2)-in the next screen u can select the field table as per ur requirement.
    regards,
    indranil

  • Urgent: number field

    Hi ...
    I have a form in forms6i with a no database block that have a serious of number field.
    When I populate this field with a procedure that use a cursor I see all the number inserted but no the zero value ....
    Then I give the format mask 9990 at the number field ... but the zero value is not visualized ...
    It's very import for me to find a solution very quick...
    Thank you
    Maria

    Hi
    Please note that NULL is not equal to 0. If your procedure returns null then replace it with 0 by nvl(value, 0) .
    HTH
    Arvind Balaraman

  • Urgent: Cancellation field

    Hi,
        can any one let me know what is the purpose of cancellation field in extract structure?
    Thank You,
    Varun.

    Hi,
    the field is only shown when your system is set up as a retail system (your system should allow to use transactions mm41 to mm43 then instead of mm01 to mm03...).
    See a reply of our helpdesk (sorry, it's in German...):
    ...ich muss Ihnen mitteilen, dass das Feld "PMATA" nur für die SAP-Systeme
    mit der Ausprägung Retail vorbehalten ist.
    Sie nutzen für den Materialstamm die TA's MM01 - MM03, das Feld PMATA
    wird in den Transaktionen MM41 - MM43 (Artikelstamm) verwendet.
    Sie können das Feld nicht ohne einen größeren Aufwand verwenden.
    Cheers, Jörg

  • Really urgent: reagrding FBL2N tcode

    Hi,
    I making a report in which i have to display the cost of the materials is being paid to vendor or not?
    plzz tel me which tables n flow for it. as help will be definately rewarded.
    Edited by: ric .s on Apr 28, 2008 8:22 AM

    Hi,
    BSAK : For all 'Cleared' Vendor Items, i.e. items for whom payment has been made
    BSIK: All 'OPEN' vendor items, for whom payment is to be made.
    Regards,
    Raju chitale

  • Urgent - Show field/tab in PR05

    Hi experts,
    How to entry advance payment amount using PR05?
    I see in other people SAP standard that there are several tabs in PR05 such as receipts, advance, trip segments, comment, etc.
    But, in my sap, there are only 3 tab which are receipts, trip segments and comments.
    How can I display or hide the tabs? I need to display the advance tab.
    Thanks & regards,
    nessia

    Hello Nessia,
    For creating advances you can use transaction PR03 . This transaction is especially for cash advances. This transaction is to
    easily capture just advances and easily pay out without any approval or settlement process.
    Best Regards,
    Deepak

Maybe you are looking for

  • My iPhone 5c wont let me put a passcode lock.

    I looked  under my general setting and their isnt a button to click to add a passcode by the auto lock and restriction. It also wont connect to apple itunes when i plug my phone into my computer. It wont show up under device.

  • Cancelling Query Results in Continually Busy Connection -- SQL Dev 2.1 EA2

    Hello All -- I am running SQL Developer 2.1 EA2 on the Windows 7 Release Candidate (64-bit). I have had issues when canceling long-running queries. Usually what happens is I run something, and realize after a couple of minutes that it's going to take

  • How to delete unwanted road direction in ovi maps ...

    if i already saved my previous road direction in drive mode , but i cannot delete it , no delete function found, it is annoying...how u guys to remove it ? for landmark ,i know i can delete inside location icon..but this road direction no...really No

  • Help Using Spry tabbed panel as a menu.

    Thanks in advance to all who take the time to read and any assistance you can offer. I'm picking up where someone else started a website. They used Spry tabbed panels as a menu system (CS4). Each Panel is a top-level "menu" and when it opens, sub-men

  • Codec not installed

    When I try to send FCP project to compressor or if I try to upload directory to YouTube I get an error message Codec not installed.  This is probably related to the fact that I used MacKeeper recently.  Does anyone know how I reinstall the required C