OSS NOTE Number required

Hi Gurus,
could you plese provide me the Related OSS NOTE number for the folowing exception .
TSV_TNEW_PAGE_ALLOC_FAILED
No storage space available for extending the internal table.
You attempted to extend an internal table, but the required space was not available .

Hi u can see the copd here
REPORT  /rb17/ym_forc_model_ext_new             .
*& T Y P E S                                                           *
  TYPES:  BEGIN OF typ_itab_rec.
          INCLUDE STRUCTURE /rb17/ym_mod_new.
  TYPES:  END OF typ_itab_rec.
table types
  TYPES:  typ_itab_table TYPE STANDARD TABLE OF typ_itab_rec
          WITH KEY matnr werks .
*& D A T A                                                             *
Internal table to store records from database
  DATA : g_t_itab   TYPE typ_itab_table WITH HEADER LINE .
Internal table to fill datbase
  DATA : g_t_jtab   TYPE typ_itab_table WITH HEADER LINE .
Work area
  DATA : g_r_itab   TYPE typ_itab_rec.
  DATA : counter    TYPE i .
  DATA cnt type i value 0.
SELECTION SCREEN
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
PARAMETERS : p_vers TYPE vrsio.
SELECTION-SCREEN END OF BLOCK b1.
*&   Event START-OF-SELECTION
PERFORM get_data.
PERFORM populate_data.
PERFORM assign_version.
PERFORM update_table.
*&      Form  get_data
      text
-->  p1        text
<--  p2        text
FORM get_data .
  REFRESH : g_t_itab[].
  SELECT * FROM /rb17/ym_model INTO CORRESPONDING FIELDS OF
           TABLE g_t_itab.
ENDFORM.                    " get_data
*&      Form  populate_data
      text
-->  p1        text
<--  p2        text
FORM populate_data .
  DATA : l_f_bstrf TYPE bstrf,
         l_f_prctr TYPE prctr,
         l_f_maabc TYPE maabc,
         l_f_mfrnr TYPE mfrnr,
         l_f_kondm TYPE kondm,
         l_f_ktgrm TYPE ktgrm,
         l_f_bezek TYPE bezap,
         l_f_lifnr TYPE lifnr.
  CLEAR : l_f_bstrf , l_f_prctr , l_f_maabc, l_f_mfrnr,
          l_f_kondm , l_f_ktgrm , l_f_bezek, l_f_lifnr.
  CLEAR g_r_itab.
  LOOP AT g_t_itab.
    SELECT SINGLE bstrf prctr maabc INTO
       (l_f_bstrf , l_f_prctr , l_f_maabc) FROM marc
       WHERE matnr = g_t_itab-matnr AND
             werks = g_t_itab-werks.
    SELECT SINGLE mfrnr INTO l_f_mfrnr FROM mara
       WHERE matnr = g_t_itab-matnr.
    SELECT SINGLE kondm ktgrm INTO (l_f_kondm , l_f_ktgrm) FROM mvke
       WHERE matnr = g_t_itab-matnr.
    SELECT SINGLE bezek INTO l_f_bezek FROM t25b1
       WHERE wwz02 = g_t_itab-prmgr.
    SELECT SINGLE lifnr INTO l_f_lifnr FROM eord
       WHERE matnr = g_t_itab-matnr AND
             werks = g_t_itab-werks AND
             flifn = 'X'.
    IF sy-subrc NE 0.
      SELECT SINGLE lifnr INTO l_f_lifnr FROM eord
         WHERE matnr = g_t_itab-matnr AND
              werks = g_t_itab-werks .
    ENDIF.
*get backorder value
    PERFORM get_backorders USING g_t_itab-matnr
                           CHANGING g_t_itab-backord.
    g_r_itab-bstrf = l_f_bstrf.
    g_r_itab-prctr = l_f_prctr.
    g_r_itab-maabc = l_f_maabc.
    g_r_itab-mfrnr = l_f_mfrnr.
    g_r_itab-kondm = l_f_kondm.
    g_r_itab-ktgrm = l_f_ktgrm.
    g_r_itab-bezek = l_f_bezek.
    g_r_itab-lifnr = l_f_lifnr.
*set version = 1 for new rows.
    g_r_itab-version = 1.
    MODIFY g_t_itab FROM g_r_itab TRANSPORTING bstrf mfrnr prctr kondm
                                               ktgrm lifnr bezek maabc
                                               backord version.
  ENDLOOP.
  SORT g_t_itab BY spmon vrsio bukrs matnr version.
ENDFORM.                    " populate_data
*&      Form  get_backorders
      text
     -->P_G_T_ITAB_MATNR  text
     <--P_G_T_ITAB_BACKORD  text
FORM get_backorders  USING    p_g_t_itab_matnr TYPE matnr
                     CHANGING p_g_t_itab_backord TYPE netwr_ap.
  TYPES: BEGIN OF typ_outord.
          INCLUDE STRUCTURE /rb17/yv_outord.
  TYPES: END OF typ_outord.
  DATA: t_outord TYPE TABLE OF typ_outord WITH HEADER LINE.
  REFRESH: t_outord.
first load outstanding orders for out materials from
nightly extract of data (run from /rb17/yv_outstanding_orders)
  SELECT * FROM /rb17/yv_outord INTO TABLE t_outord
      WHERE matnr = p_g_t_itab_matnr.
accumulate all past due orders
  LOOP AT t_outord .
    IF t_outord-edatu < t_outord-wadat   "backorder
    OR t_outord-edatu < sy-datum.
      IF t_outord-bmeng > 0.
        ADD  t_outord-bmeng TO p_g_t_itab_backord.    "+ confirmed
      ELSE.
        ADD  t_outord-kwmeng TO p_g_t_itab_backord.    "+ ordered
      ENDIF.
      SUBTRACT t_outord-lfimg FROM p_g_t_itab_backord.    "- delivered
    ENDIF.
  ENDLOOP.
ENDFORM.                    " get_backorders
*&      Form  update_table
      text
-->  p1        text
<--  p2        text
FORM update_table .
  DELETE FROM /rb17/ym_mod_new.
  MODIFY /rb17/ym_mod_new  FROM TABLE g_t_jtab .
  COMMIT WORK.
ENDFORM.                    " update_table
*&      Form  assign_version
      text
-->  p1        text
<--  p2        text
FORM assign_version .
delete records with version = no of versions given by user.
  LOOP AT g_t_itab .
    IF g_t_itab-version EQ p_vers.
      DELETE g_t_itab.
      CONTINUE.
    ENDIF.
  ENDLOOP.
Changing versions and populating final internal table
  LOOP AT g_t_itab .
    counter = p_vers - 1 .
    DO counter TIMES .
      MOVE-CORRESPONDING g_t_itab TO g_r_itab.
      g_r_itab-version = counter + 1 .
      APPEND g_r_itab TO g_t_jtab .
      counter = counter - 1.
      CLEAR g_r_itab.
    ENDDO .
  ENDLOOP.
  SORT g_t_itab BY spmon vrsio bukrs matnr version.
ENDFORM.                    " assign_version

Similar Messages

  • OSS Note No required.

    Hi all,,
    The version of the SAP system is 4.6 C.
    I got a standard SAP program in V.02 transaction showing ABAP runtime error TIME_OUT.
    The function module is  "RV_MISSING_DOCUMENT_DATA".
    The program is  "SAPLV05M " or "LV05MU01 "
    The Dump is "TIME_OUT".
    But the version is 4.6 C
    Am able to find OSS Notes for less than 4.6C. But not for 4.6C.
    PLs anyone can find the appropriate OSS Note for this, which will solve the error.
    will be rewarded.
    Thanks in adv.

    Hi,
    Check the note 156355.
    Reward points if useful.
    Thanks & Regards,
    Vasudeva Rao.

  • Oss notes reset not working

    hi ,
    i am working on the oss notes . i implemented the notes in the tcode SNOTE  and it requires a badi . i created that ,mean while some problem occured, so need to reset it again . i did it in the SNOTE tcode. but what is problem is while resetting the note the interface remains same .  i deleted the badi . and its implementation for that . but the interface is still existing . i am trying to recreate the same badi . even though it is deleted its interface still existing. that is giving a problem.
    please look at the problem . and let me know your valuable suggessions .
    thanks in advance ,
    pandu .

    Hi,
    Can you please provide me the OSS Note Number as i need to check whether it has some prerequisties or dependency which is allows you no to reset the notes.
    Regards,
    Harsh

  • Reg: OSS notes implementaion.

    Hi,
    This is my problem while applying OSS notes number 645422 .
    Before implementing an OSS notes number 645422 structural changes are required for note number 645401 and 645404.
    For OOS note number 645401:
    The structural change requires, inserting a new field in the following structure after the specified field.
    Details of new field to be inserted:
    Field Name –‘ORDER_END_DATE’;
    Data Element Name – ‘/SAPAPO/ENDTI’
    Details of structure , where insertion is to be performed:
    Structure: ‘/SAPAPO/CIF_DELTA3_COMP_ORDER’
    Field : ‘STATUSCNF’ (new field need to be inserted after this field)
    But, field 'STATUSCNF' doesn’t exist in above mentioned structure.
    Please tell me how to approach further, i thought of posting this issue to SAP but i don't how to post.

    Don't post twice
    OSS (transaction OSS in SAP) or the SAP Marketplace - create a customer message.

  • OSS note Impact analysis

    Hi Experts,
    I am SAP ABAP developer the functional consults asked me to check the oss note no . In that oss note number how i check risk and impact analysis . Please suggest me .

    Venkat,
    You should get all the info in the OSS note itself
    Thanks
    Bala Duvvuri

  • How to access OSS notes

    how to access OSS notes. i'm working in a reputed company, i would like to see OSS how can i access that.

    Hi
    OSS note provided by SAP for standard program issues. Based on problem which is facing sap will provide OSS note number. After getting the OSS note number follow the below procedure.
    Implementation of OSS Note procedure
    Go to development system, then enter t_code(snote) then Goto option (Menu bar),then select sap note down load option then type the sap note and then execute.
    after that goto (menu bar) select note browse and type the sap note then select execute button and double click on the line then check implementation status whether sap note is implemented or not.
    if implemented,come back snote home page, expand in process then select your sap note and then execute.
    it will show one screen for confirmation of sap note select 'yes' button then click on continue icon after that it will ask cts for your sapnote then click on continue again click on continue icon.
    after that it will show one information message that 'sap note implemented completely'.
    Reward points!!
    Thanks & Regards,
    Vasudeva Rao

  • How to find the right OSS Note for my SAP version

    Hi All,
    There have been issues with the Vendor/Material Master records whenever we run a LSMW by recording process. It is such that all those fields that we have not updated come up with a value as *DELETED* for which i think we should implement a OSS Note to our system.
    I am unable to find the right OSS Note Number for this to our SAP system :
    SAP_APPL                          Support Pack: SAPKH50009    Components:Logistics & Accounting.
    Request you all to provide me with the correct OSS Note Number so that we can get this issue corrected as this has become very critical.

    Hi,
    As Jurgen wrote - it could be some programming problem.
    But, generally, if you find a SAP Note, that, in your opinion, can solve your SAP problem and it is not intended for your SAP version - simply write to SAP OSS.
    If this note really solves your problem, they will extend the validity of this note for your SAP version.
    Otherwise, if it is SAP problem, OSS will try to provide solution for it.
    I usually act like this - it works.
    Hope it helps, not this time, maybe in the future.
    Regards,
    Wojciech

  • Do U know, Which OSS NOTE # is explaining about this requirement/change

    Hi Experts,
    I did Text/Field Enhancement via
    <i><b>CMOD>MENU>GO TO>TEXT ENHANCEMENTS>KEY WORDS>CHANGE> specifying the DATA ELEMENT,</b></i> say, am looking to change the description/label for KATR6 (in KNA1 table) from ATTRIBUTE 6 to my_own_description.
    and its working well
    So, Do U know, Which OSS NOTE # is explaining about this requirement/change?
    thanq.
    Message was edited by:
            Srikhar

    thanq,
    I checked all the NOTES, they r mostly IMG implementation relavent.
    Mine is,
    CMOD>MENU>GO TO>TEXT ENHANCEMENTS>KEY WORDS>CHANGE> specifying the DATA ELEMENT, say, am looking to change the description for KATR6 (in  KNA1 table) from ATTRIBUTE 6 to my_own_description.
    So, any clue that, Which OSS NOTE explains this issue?
    thanq.

  • What changes are required for OSS note 456507

    Hi All,
    PLease advise me what changes are required for OSS note 456507 (Assign the function groups QOWK or ORFC in the authorization object S_RFC to tRFC/qRFC users).
    I’m thinking of just going with the following additions to Role
    AAAB – Cross Application Auth Objects
    S_RFC
    Activity – 16
    Name of RFC - *
    Type of RFC - *
    But wanted to check what the implications of doing such a thing were, are there any negative points that you can think of opening up the access as above, as opposed to what was suggested in the OSS note?
    Your advice would be greatly appreciated.
    Thanks in Advance.
    Regards,
    Sandhya.

    Hello Sandhya,
    S_RFC is needed in case of making any RFC calls.
    Normally it is needed  for users that are mentioned in RFC destinations.
    As such mostly these users are system/communication users or super users.
    Without giving access to function groups through S_RFC successful RFC call can´not be done.
    Now the value of field name of RFC can be * but only for those users which are really global super users. In case you need this authorization for any selective functionality as in you case only for function groups QOWK or ORFC then you should try to  restrict the access. Negatiity is only that in case of * the authorization access increases but for system or super users you dont need to worry too much really because with system/communication users no one can login and the super users will have sap_all generally. Also their passwords will be a well kept secret so that a miususe can not be made.
    By global super users I mean users which are used for various types of activites.
    Please award points accordingly.
    Regards.
    Ruchit.

  • OSS note Required:Font setup into the IGS

    Can someone please help me find the OSS note explaining how to setup the font into the IGS.

    Hi,
    Check the OSS Note:1011372 whcih might help you...
    Thanks,
    Nagarjuna

  • How to create a Attribute "Type standard table OF" to a OSS NOTE

    Dear experts,
    I need to add new attributes in a standard class as per one OSS note. I took access key to add new attributes. I have a question.
    class name: CL_J_1BEFD
    Attribute: MT_GROUP_C350
    Level: Instance
    Visibility: Private
    Type STANDARD TABLE OF mty_result
    How do i add the instance attribute because i do not want to give the typing and associated type, instead i have to declare data: MT_GROUP_C350 type standard table of mty_result in class builder private section code.
    if you look at the pushbutton between Associated type and Description, for all instance attributes there's a green color lining below the arrow. I want my attribute also to be exactly same.
    Though i have access key, in private section the display<->Change button is disabled.
    Please suggest me how do i add code in private section of a standard class. i have required access key to change the class.
    Thanks,
    Alysson

    Hi Friend...
    Thanks, but the question is...
    When I went to transaction se24 or se80, I chose the class CL_J_1BEFD and second I swap to "CHANGE MODE".. after that the pushbutton is blocked... I can create the Attribute  mt_group_c800 in the Class (using TYPE or LIKE option), but i can't change the code in the private session even using the assistant to modify it.
    When I acess the Button "Detail View" the option "Direct Type Entry" is just unavaliable too, no matter what i do!
    I coudn't find a way to create the Attibute like the note Describes (SAPNOTE NUMBER 1575772 - in the attachment of the note)
    The changes are contained in the attachment
    Follows the instructions retrieved from the file:
    Add the following Attributes on the Class CL_J_1BEFD Private section
    data:
    mt_group_c800 TYPE STANDARD TABLE OF mty_result .
    data:
    mt_group_c850 TYPE STANDARD TABLE OF mty_result .
    data:
    mt_group_c860 TYPE STANDARD TABLE OF mty_result .
    data:
    mt_group_c890 TYPE STANDARD TABLE OF mty_result .
    How can i make a way to creat this attributes using  "TYPE STANDARD TABLE OF " Option?

  • OSS notes for MB1B in checking Amount and Quantity depending on the mat. #

    Dear All:
    Where can i download OSS notes in MB1B for  checking the amount and quantity depending on the material number?
    Thanks,
    CHOCO

    Hi ,
    We are not getting what you mean to say.
    But as far my understanding of your query I am giving the reply.
    OSS notes can be download at the tcode SNOTE.
    Pls go to the tcode SNOTE-> GOTO ->DOWNLOAD SAP NOTE.
    here you need to give the sap note number.
    To get this number you first need to search in service.sap.com and find the relevant note that is useful for ur scenario.
    And after finding that note and we need to give this number in SNOTE tcode and we need to download.
    Pls tell me your requirement clearly so that i will try to find a oss note for you.
    Pls get back to us for further assistance . Happy to help you.
    Regards,
    Viveks

  • Business area with SAP support in SAP OSS notes #

    Dear all,
    I would like to search OSS documentation which mention that SAP does not support business area anymore? anyone knows the exact OSS number for thatstatement ?
    Because as far as I remember, SAP does not recommend business area. SAP advised customer to use PCA or new GL instead.
    Thank you for your kind help.
    Kind regards,

    Check OSS Note 321190. Here is one section:
    To meet the changing requirements, we will focus the further
    functional developments in Financial Accounting on the profit
    center entity. With General Ledger Accounting (new) in Release SAP
    ERP 2004, you can create financial statements for profit centers.
    See Note 756146 for more detailed information.
    o The business area will be retained in the present form. The data
    and functions will continue to be available. In the context of the
    use of classic General Ledger Accounting, business area accounting
    (Customizing OB65 for business area financial statements, SAPF181
    and SAPF180) will continue to be supported to the known extent;
    only a further development in the context of classic General Ledger
    Accounting is not planned.
    BG

  • From where do we see OSS notes and message errors...

    hi,
    From where do we see OSS notes and message errors details if the error number is provided??
    Thanks & Regards

    *OSS* are online sap support notes. These notes are available online for solving critical problems in sap system.We may use the already existing notes or may add our own quaries.
    In order to apply any OSS note, you have to be authorized by your company and be assigned an OSS ID and password.
    For any SAP standard program modification, you are required to login to OSS and request for a repair program Access key.
    Access the SAP Support Portal:
    *http://service.sap.com/*
    - Keys and Requests
    -- Request license key
    --- Follow the Steps 1 to 5 of the License keys for SAP Business Suite
    Follow this step to obtain the Program Access key:
    Menu Path: System -> Services -> SAP Service (Transaction code OSS1)
    Login in with your OSS ID and Password
    Click the Registration button
    Click Register Object
    Double click R/3 Value Contract
    Fill in the Object Registration for Installation:
    For e.g.
    PGMID/Object/Name: R3TR FUGR MIGO
    SAP release: 46C
    Finished, click the Register button
    Select the Key number and use the Copy and Paste short key to copy the Access key
    You are now able to modify the SAP standard program.
    Finished the modification, do remember to transport it to the production system after all the necessary testing.
    http://www.sap-img.com/basis/what-are-sap-notes.htm
    http://www.sap-img.com/basis/oss-notes.htm
    http://www.sap-img.com/basis/manually-applying-the-oss-note.htm
    Regards,
    Ashok

  • OSS Note on Invoice split based on Milestone

    Hi All,
    We need to split invoice based on milestones. Two different milestones should not combine in to one invoice. Is there any OSS note SAP gave on this issue? Please let us know.
    Thanks in advance for your help.
    Regards,
    Anil

    Hi,
    For this requirement you have to create a data transfer routine. You can use below logic.
    Milestone data are stored in FPLT table, thr is seprate billing plan number generated for all the line items, you can find billing plan number(FPLNR) into VBKD table with respective item number(POSNR).
    For perticular line item in FPLT table system generates unique number that is FPLT-FPLTR, based on that you can split invoice.
    This will work.
    Kaushal.

Maybe you are looking for