Short dumps of  CL_PERS_OBJECT_DATA using Set_data method

Hi Experts,
I am getting shortdumps on the class CL_PERS_OBJECT_DATA when calling set_data method.
The error message is OBJECTS_OBJREF_NOT_ASSIGNED . There is one export parameter which of data type of "any" and mandantory.
The details of the code as follows:
data: rf_pers_object type ref to cl_pers_object_data.
types:
ty_spers_obj type spers_obj.
data: lta_personalization type table of ty_spers_obj.
  call method rf_pers_object->set_data
    exporting
      p_pers_data     = lta_personalization
      p_write_through = space
    exceptions
      data_type_error = 1
      internal_error  = 2
      others          = 3.
  if sy-subrc <> 0.
    raise pers_object_error.
  endif.
Could you please what exactly this means where i am missing the point.
Any adivse early is much appreciated.
Best Regards
Good_Guy

This object must be instantiated first in order you can call its instance methods.
As it has private instantiation you are able to do so only be means of create_object static method, giving the key on the input. Then you use the returned instance for further processing. This goes like
DATA: rf_pers_object TYPE REF TO cl_pers_object_data.
TYPES:
ty_spers_obj TYPE spers_obj.
DATA: pers_key TYPE spers_key.
DATA: lta_personalization TYPE TABLE OF ty_spers_obj.
"first extract the key, I took first found
SELECT SINGLE pers_key FROM spers_regt
      INTO pers_key
      WHERE lang = 'EN'.
CHECK sy-subrc = 0.
"then create the object
CALL METHOD cl_pers_object_data=>create_object
  EXPORTING
    p_pers_key = pers_key 
  RECEIVING
    r_object   = rf_pers_object.  "and receive the object instance
"now call the instance method
CALL METHOD rf_pers_object->set_data
  EXPORTING
    p_pers_data     = lta_personalization
    p_write_through = space
  EXCEPTIONS
    data_type_error = 1
    internal_error  = 2
    OTHERS          = 3.
Of course the pers_key must be provided by you. I assume you know one you want to use.
Regards
Marcin
Also refer standard program R_USER_DEFAULTS .
Edited by: Marcin Pciak on Jun 25, 2010 9:35 AM

Similar Messages

  • Short dump with Where-used list

    Hi All,
    I'm making some research on specific InfoObjects, and in some cases I want to know where are they being used, but when I try to use the icon for "Where-used list using Data Warehouse" I end up with an error, a short dump.
    Message class is: RSQBW
    Trigger Location of Runtime Error:
    Program: CL_RSQ_ISET_SERVICE===========CP
    Include: CL_RSQ_ISET_SERVICE===========CM016
    Row: 136
    Module Type: (METHOD)
    Module Name: EXTEND_FIELD_BUFFER
    Does any one can help me to understand why is this going on and how to solve this?
    Thank you!!
    Miriam

    Hi Miriam
    In the short dump you should also see the name of the infoset in question.
    You probably have to adjust the infoset in transaction RSISET and they try to run the where used list again.
    Best Regards,
    Vincent

  • Short dump error when using count(*)

    Hi Experts
    I am getting a short dump error when selecting the records >= current date - 30 see the coding and comment please correct the coding I want to know the ztable records it is important for command interface.
    I have 1402345 records available after deleting the records but as the memory is not enough it is giving short dump error
    select count(*) from ZINT_TABLE
    select count(*) from ZINT_MSGS
       select * from zint_data
                 nto table izint_d2 . "PACKAGE SIZE 20000
       where STATUS = 'OK' AND CREATED_ON >= w_date1.          " VALUE
    endselect.**
    report z_eslp_command_records.
    data: cnt type i.
    data: cnt2 type i.
    data: cnt3 type i.
    data: cnt4 type i.
    DATA:
         w_date1 like sy-datum .
    DATA:
         w_date2 like sy-datum.
    data: izint_msgs type table of zint_msgs.
    data: izint_data type table of zint_data.
    data: izint_m2 type table of zint_msgs.
    data: izint_d2 type table of zint_data.
    INITIALIZATION.
    w_date1 = sy-datum -  30.
    w_date2 = sy-datum -  30.
    select * from zint_data
                 into table izint_data PACKAGE SIZE 3000
                 where STATUS = 'OK' AND CREATED_ON <= w_date1.   " ZERO
    endselect.
    select * from zint_msgs
                 into table izint_msgs  PACKAGE SIZE 3000
                  where  CREATED_ON <= w_date2.              " ZERO
    endselect.
      select * from zint_data
                 into table izint_d2 PACKAGE SIZE 20000
       where STATUS = 'OK' AND CREATED_ON >= w_date1.          " VALUE
    endselect.
    select * from zint_msgs
                 into table izint_m2 PACKAGE SIZE 20000
      where CREATED_ON >= w_date2.                            " VALUE
      endselect.
    select * from zint_data
                into table izint_data2
    where STATUS = 'OK' AND CREATED_ON >= CONVERT(CHAR(8), GETDATE() - 30, 112)).
    ENDSELECT.
      select * from zint_msgs
                into table izint_msgs2
    where CREATED_ON >= CONVERT(CHAR(8), GETDATE() - 30, 112)).
    ENDSELECT.
    sort izint_data by created_on ascending.
    sort izint_msgs by created_on ascending.
    sort izint_d2 by created_on ascending.
    sort izint_m2 by created_on ascending.
    describe table izint_data lines cnt.
    describe table izint_msgs lines cnt2.
    describe table izint_d2 lines cnt3.
    describe table izint_m2 lines cnt4.
    write:/ ' Note: THE RECORDS COUNTED SHOULD SHOW ZERO ELSE THE SCRIPT FAILED TO RUN' color 3.
    skip.
    write:/ '1. Records counted in ZINT_DATA   <=current date - 30                   :' color 2,                        cnt color 4.
    write:/ '2. Records available in ZINT_DATA >=current date - 30                   'color 4,                   cnt3 color 4 .
    skip.
    write:/ '2. Records counted in ZINT_MSGS   <=current date - 30                   :' color 2                 ,                      cnt2 color 4.
    write:/ '4. Records available in ZINT_MSGS >=current date - 30                   'color 4  ,            cnt4 color 4 .
    TOP-OF-PAGE.
    WRITE:/55(60) ' WAGNERS INVESTMENT LIMITED  '.
    WRITE:/50(40) ' Command Interface Data' CENTERED .
      WRITE:/50(40) '----
    ' CENTERED .
      FORMAT INTENSIFIED ON.
      SKIP.
      "FORMAT COLOR COL_HEADING.
      ULINE.
      FORMAT COLOR 1.
    END-OF-PAGE.

    Answer

  • Short Dump TSV_TNEW_PAGE_ALLOC_FAILED while using shared memory objects

    Hi Gurus,
    We are using shared memory objects to stor some data which we will be reading later. I have implemented the interfce IF_SHM_BUILD_INSTANCE in root class and using its method BUILD for automatic area structuring.
    Today our developments moved from dev system to quality system, and while writing the data into the shared memory using the methods ATTACH_FOR_WRITE and DETACH_COMMIT in one report. We started getting the run time error TSV_TNEW_PAGE_ALLOC_FAILED.This is raised when the method DETACH_COMMIT is called to commit the changes in the shared memory.
    Everyhting works fine before DETACH_COMMIT. I know that it is happening since the program ran out of extended memory, but I am not sure why it is happening at DETACH_COMMIT call. If excessive memory is being used in the program, this run time error should have been raised while calling the ATTACH_FOR_WRITE method or while filling the root class attributes. I am not sure why it is happening at DETACH_COMMIT method.
    Many Thanks in advance.
    Thanks,
    Raveesh

    Hi raveesh,
    as Naimesh suggested: Probably system parameter for shared memory area is too small. Compare the system parameters in devel and QA, check what other shared memory areas are used.
    Regarding your question, why it does not fail at ATTACH_FOR_WRITE but then on DETACH_COMMIT:
    Probably ATTACH_FOR_WRITE will set an exclusive write lock on the shared memory data, then write to some kind of 'rollback' memory and DETACH_COMMIT will really put the data into shared memory area and release the lock. The 'rollback' memory is in the LUW's work memory which is much bigger as the usual shared memory size.
    This is my assumption - don't know who can verify or reject it.
    Regards,
    Clemens

  • Short dump SAVE_NOT_ALLOWED while using CL_GUI_ALV_GRID in editable ALV

    I created an editable ALV field and when i changed the value in that field and click tab  or enter, then i am getting a shortdump. This is not happening regularly.
    can anyone let me know the reason for this.
    Sharath.

    Hi
    Set the handlers for the events DATA_CHANGED and DATA_CHANGED_FINISHED for your grid and handles changes in these methods accordingly.
    *...local class definition
                        for event data_changed of cl_gui_alv_grid
                        importing er_data_changed,
                        handle_data_changed_finished
                        for event data_changed_finished of cl_gui_alv_grid
    *...display the grid
        call method grid1->set_table_for_first_display
          exporting
            i_bypassing_buffer   = abap_true
            i_structure_name      = viewname
            is_print                      = gs_print
            is_layout                   = gs_layout
            it_toolbar_excluding = i_exclude
            i_save                      = 'A'
          changing
            it_outtab                   = <i_itab>
            it_fieldcatalog           = gt_fieldcat.
        if sy-subrc ne 0.
          exit.
        endif.
        set handler handle_double_click
                    handle_button_click
                    handle_user_command
                    handle_data_changed
                    handle_data_changed_finished
                    handle_onf4
                    handle_toolbar
                    for grid1.
    regards
    Isaac Prince

  • Short Dump when activating the Workflow

    Hi,
    I have a problem, when i try to activate the workflow I get a short dump with the error "SYSTEM_NO_ROLL". As I understand the error is because there is no enough memory to the transaction, this is not the case i have checked that, so the error must be from my workflow definition or from the SAP it self.
    Here goes the description:
    The location of the error is in the method "FIND_ELEMENTS" of class "CL_SWF_CNT_CONTAINER". By this I understand that the error was with my container elements in the workflow but I have reviewed all my elements and I cant find any fault element or error. I can check the definition but if i try to activate it i get the short dump.
    In the Calls Stack, there is +/- 69297 calls to the above method, because that method is recursive the transaction just consume all the memory and then i get short dump.
    I use many multi line elements, for parallel processing with block step mostly, maybe its my container elements but i can find no wrong bindings or faulty elements.
    Any help would be greatly appreciated.
    Regards,
    Diogo Silva.

    Hi,
    Ok didn't know, thanks for the help, i will post in the other section.
    PS: Could you tell me how to reach that component, I tried but without success.
    Regards,
    Diogo Silva.
    Edited by: DiogoSilva on Jun 15, 2011 7:01 PM

  • HR_INFOTYPE_OPERATION short dump

    Hi everyone,
    I get a short dump  When I use the HR infotype Opertaion on Infotype 105 then I call the update buffer in sapfp50.
    Here is the sample code
                call function 'HR_INFOTYPE_OPERATION'
                  exporting
                    infty                  = '0105'
                    number                 = pernr
                    record                 = h0105
                    operation              = 'INS'
                    dialog_mode            = ld_dialog_mode
                    nocommit               = space
                  importing
                    return                 = return
    perform update_buffer(sapfp50m).
    commit work.
    call function 'HR_PSBUFFER_INITIALIZE'.
    The operation is successful, but when I try to update the buffer it crashes:
    A new value is to be assigned to the field "<PSHDR>", although this field is     
    entirely or partly protected against changes.         
    1813   IF T777D-NAMST <> SPACE.                                  "QNOK008925                             
    1814     MOVE CPREL TO PSHDR.                                             
    1815     MOVE CPREL-SUBTY TO PSHDR-SUBTY.                                 
    >>>>>    MOVE PSHDR TO <PSHDR>.                                           
    1817   ENDIF.                                                             
    Does anyone has any idea about this problem?  As I see the problem is that the T777D structure has a data in it and as a result it tries to move PSHDR into the <PSHDR> field symbol. But why does this table has data in it?  Can someone give me a guide to find the solution for this problem?
    Thanks.
    N.G

    Another thing which can be important:
    I update secveral infotypes, then at the end I update the PS buffer:
    PERFORM update_0105 USING  '0010' wa_stat-email.
    PERFORM update_0105 USING  '0020' wa_stat-tel.
    PERFORM update_0105 USING  'CELL' wa_stat-mobil.
    PERFORM update_0105 USING  '9010' wa_stat-lst.
        perform update_buffer(sapfp50m).
        commit work.
        call function 'HR_PSBUFFER_INITIALIZE'.

  • Short dump while using BAPI_PO_CREATE1

    Hi all,
    I am facing this short dump while executing my program that uses BAPI_PO_CREATE1.
    The error is 'Exception condition "failure" raised'.
    The trigger location of runtime error is
    Program : CL_HANDLE_MANAGER_MM====================CP
    Include:   CL_HANDLE_MANAGER_MM=====================CM005
    Module name:   GET
    Source code:
    Method GET.
    If my_manager is initial.
        Call method get_manager.
    endif.
    call method my_manager-> search EXporting im_id  = im_id
                                                            Importing ex_handle = ex_handle
                                                            Exceptions failure = 01.
    If sy-subrc <>0.
      raise failure.
    endif.
    I am a beginner in ABAP. Plz help.

    Hi ,
    I faced the similar situation once , in my case when i passed the Delivery indicator value in the Item Table as well as Itemx Table , i was facing this error .
    what  i suggest you is to pass it at the Item table only , not at the itemx Table.
    it worked  for me .
    try this and reply for the same.

  • CL_RSPLS_CR_CONTROLLER method inner join short dump

    Hi guys,
    i have characteristic relationship usage but i created a new concept for characteristic combinations creation. We have one table with all characteristics are maintained We want to use one single table to maintain all relations. The class created with the create method implemented is working and we do have the right entries in table c_th_chas. This table then goes into standard coding and is transformed. Afterwards  method complete_combis is executed and within this method there is the method INNER_JOIN_steps. There method INNER_JOIN is executed. And this is thge method which dumps because method INNER_JOIN has a part beggining with the comment intersection of characteristics is empty, so build the cart.product.. From 13 characetristics in the table 6 are filled and 7 are empty . Maybe 8 times i am able to to run the loop but then the values of the tables is increasing immensly and a short time is thrown with no more internal table space... --> no more memory.
    The problem seems to be the empty characetristics and the building of the cart. product. The command
      INSERTc_s_chas INTO TABLE e_th_chas.
    is to much for over 10 Mio records and a short dump is thrown.
    Is there any workaround for this problem? Can someone give me a hint.
    Thanks and regards,
    Murat

    Hi Gregor,
    thank you for your very helpful answer. With ticking this flag no automatic combinations were created and the wished characetristic relations were displayed. But after ticking this flag other workbooks crashed of invalid combinations which worked fine before witout the characteristic relationship class activation. The issue is as following:
    i have a lot of characteristics in the realtime planning cube. My intention was to make one big table with most of the characteristics in it to build characteristic relations. At the moment we do have some tables and maintaining them gets komplex. One table i for all is the target.We have workbooks where we dont want use characteristic relations so we have a characetristic embedded in constant selections (structure) in the query and other characteristics with Access Type for Result Values in Master Data and Filter Value Selection Durinbg Query Execution with Values in Master data Table. For these workbooks i dont want characteristic relationships but we also have the opposite queries with characetreistics with ACCESS Type for Result Values with CHARACTERISTIC RELATIONSHIP and Filter value Selection During Query execution with CHARACTERISTIC RELATIONSHIP. In these workbooks i want to use characetristic relationships and the table in the others not. Now  the wueries where i want to use CRRs are correct but at the other workbooks also the table and CRR class is executed but i dont want them to get restricted by CRRS and also there is no characetristic using ACCESS Type for Result Values with CHARACTERISTIC RELATIONSHIP and also Filter value Selection During Query execution with CHARACTERISTIC Relationdships.
    But despite why is CRR class executed. How can i solve it?
    I would appreciate if you or someone  could suggest me something here.
    Thanks and kind regards,
    Murat

  • BPC 7.5 NW on BW 7.3 - Short Dump when using BADI

    Hello all,
    When migrating from MS bpc to Netweaver we've had to move some logic from script to BADI.
    (Runlogic not supported)
    However we now get shortdumps in when calling the BADI'
    It works in BW 7.0 but now that we are on BW7.3 the error appears and shordumps occur.
    During the upgrade SAP have updated the Class CL_UJR_WRITE_BACK to include a method  "GET_DELTA"
    That's where we have the problem. No OSS notes for it yet.
    The problem shortsumps as follows:
    Short Dump Log.
    Category               ABAP Programming Error
    ABAP Program           CL_UJR_WRITE_BACK=============CP
    Application Component  CPM-BPC
    "ASSIGN_TYPE_CONFLICT" " "
    "CL_UJR_WRITE_BACK=============CP" bzw.
    "CL_UJR_WRITE_BACK=============CM00U"
    "GET_DELTA"
    Error occurs at line statement
    ASSIGN COMPONENT uj00_cs_fieldname-keyfigure OF STRUCTURE <ls_data> TO <l_value>.
    Any help out there?
    Please.........
    Thanks
    Paul

    Hi Paul,
    First of all, there is a How To Guide for RUNLOGIC implementation. It uses BAdI approach as well, but doesn't call WRITE_BACK that can change from version to version.
    Second, you should be able to see that method GET_DELTA is being called under
    IF D_CALC_DELTA eq abap_true and df_bw_delta eq abap_false.
    D_CALC_DELTA is set to TRUE only in Method WRITE_BACK_INT; I hope you aren't using that one.
    DF_BW_DELTA is taken from DM Package parameters. Can you check what you have there or put just a break-point in PACKAGE_LOGIC_1 to see what value those 2 variables have?
    Hope this helps,
    Gersh

  • Short Dump while acessing external tables using DB Connect

    Hello SDN'rs,
    I am getting Short dump (below) when i am trying to look into the table contents using DB Connect.
    Please let me know how to resolve this problem. Is there any OSS Note on this??
    External Database is Oracle; i can look into other tables.
    ShrtText
    Syntax error in program "GP_CREATE_STRUCTURE_DBCON_026 "
    |What happened?                                                                                |
    |    Error in ABAP application program.                                                            |
    |                                                                                |
    |    The current ABAP program "CL_RS_STRUC===================CP" had to be                         |
    |     terminated because one of the                                                                |
    |    statements could not be executed.                                                             |
    |                                                                                |
    |    This is probably due to an error in the ABAP program.                                         |
    |                                                                                |
    |    In program "GP_CREATE_STRUCTURE_DBCON_026 ", the following syntax error                       |
    |     occurred                                                                                |
    |    in the Include "GP_CREATE_STRUCTURE_DBCON_026 " in line 5:                                    |
    |    "Type "D" can only have the length specification "8" or no length speci"                      |
    |    "fication at all."                                                                            |
    |    " "                                                                                |
    |    " "                                                                                |
    |                                                                                |
    |    Author and last person to change the Include are:                                             |
    |    Author "XYZ "                                                                            |
    |    Last changed by "XYZ
    |Error analysis                                                                                |
    |    In program "GP_CREATE_STRUCTURE_DBCON_026 ", the following syntax error                       |
    |     occurred:                                                                                |
    |    "Type "D" can only have the length specification "8" or no length speci"                      |
    |    "fication at all."                                                                            |
    |    " "                                                                                |
    |    " "                                                                                |
    Trigger Location of Runtime Error                                                                 |
    |    Program                                 CL_RS_STRUC===================CP                      |
    |    Include                                 CL_RS_STRUC===================CM002                   |
    |    Row                                     108                                                   |
    |    Module type                             (METHOD)                                              |
    |    Module Name                             CREATE    
    Thanks,
    Faizee B

    When i tried today for the same table i am getting the shortdump description(below), I have noticed that the number have changed from 026 to 055, any thoughts why it happen and how it can be resolved?
    In program "GP_CREATE_STRUCTURE_DBCON_055 ", the following syntax error                      
    occurred in the Include "GP_CREATE_STRUCTURE_DBCON_055 " in line 5:                                   
        "Type "D" can only have the length specification "8" or no length specification at all."                                                                               
    Thanks,
    Faizee B

  • Short Dump while using BAPI_PS_PRECOMMIT to set Project Definition Status

    Hi All,
    I am getting a short dump while using BAPI_PS_PRECOMMIT for setting the Project Definition status..
    The requirement is to create a Project Definition and then set its status to REL from CRTD. For this purpose i am using the BAPI's in the following sequence :
    1. BAPI_PS_INITIALIZATION
    2. BAPI_PROJECT_MAINTAIN
    3. BAPI_BUS2001_SET_STATUS
    4. BAPI_PS_PRECOMMIT
    5. BAPI_TRANSACTION_COMMIT
    The Proj Def creation is happening successfully in step2. Interestingly, when I debug the program and stop at PRECOMMIT BAPI the program does not give a dump. I have also tried to give COMMIT WORK / WAIT FOR n SECONDS after BAPI_BUS2001_SET_STATUS, to give BAPI sometime for DB update but nothing seems to be a permanent solution.
    Please give your views on a solution for this problem..
    Thanks & Regards,
    Somil

    Can you please check how to post code in SDN ...
    I cannot read your code properly

  • Short dump while using FM "BAPI_GOODSMVT_CREATE" in background

    Hi Sir,
    I am using the FM "BAPI_GOODSMVT_CREATE" to create the Goods movement. While running the program through a job in background, article docu is generated successfully,,but at the same time it gives short dump in ST22.
    Short text
        Exception condition "CNTL_ERROR" raised.
    A RAISE statement in the program "CL_GUI_CUSTOM_CONTAINER=======CP" raised the
    exception
    condition "CNTL_ERROR".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Please tell me what can be the possible reason for the same and how to avoid the same?
    Warm regards
    Krishan

    There's at least one note addressing this. You should be able to find it quite easily.
    Rob

  • Short dump while loading data in to Bw using Process Chain.

    got the problem in the Production System.......... I won't get any confirmation from my customer to debug the program in the Poduction.
    In BW I have to load the data every day using the process chain. in the monitor I can't find any problem every thing is working fine. status is green.. and loads the data into ODS successfully. But the job runs more than 6 Hrs and automatically an E-mail is sent to us that the processing takes long time.But it loads the data successfully into ODS.
    Since 10 days everyday we got a mail with the same problem. My customer asked me tTo analyse the problem.
    I check the short dump there I found that due to some problem the program get intrupted.
    <b>the short dump</b>
    ""Lokale Schnittstelle:
    *" IMPORTING
    *" VALUE(I_INFOCUBE) TYPE RSINFOCUBE
    *" EXCEPTIONS
    *" ILLEGAL_INPUT
    *" REQUEST_NOT_CLOSED
    *" INHERITED_ERROR
    DATA: l_s_cube TYPE rsd_s_cube,
    l_t_dummy TYPE rsdri_t_rfcdata,
    l_s_rsapoadm TYPE rsapoadm,
    l_nothing_found TYPE rs_bool.
    get type of cube
    CALL FUNCTION 'RSD_CUBE_GET_ONLY_DB'
    EXPORTING
    i_infocube = i_infocube
    i_objvers = rs_c_objvers-active
    i_with_atr_nav = rs_c_false
    i_with_message = rs_c_false
    IMPORTING
    e_s_cube = l_s_cube
    EXCEPTIONS
    infocube_not_found = 1
    illegal_input = 2
    OTHERS = 3.
    CASE sy-subrc.
    WHEN 0.
    WHEN 1.
    RAISE illegal_input
    WHEN OTHERS.
    RAISE inherited_error.
    ENDCASE.
    In the short dump I observed that the porgram get intrupted at RAISE illegal_input when sy-subrc = 1.
    I have to analyse this. problem........ whay is so happened...............
    Any one of you face the same problem............... if so please let me give your valuble suggestions regarding this.
    Cheers
    sailekha

    Looks like it  reaches the water mark level thats why you are getting message.

  • Short Dump While Changing reservation line using BAPI_ALM_ORDER_MAINTAIN

    Hello!
    I have a problem changing the reservation line using BAPI_ALM_ORDER_MAINTAIN. I am very sure that I am passing all correct parameters in BAPI. It gives short dump with type  MESSAGE_TYPE_X and main program "SAPLCOBC" or "LCOBCU02" and "READ_RESB_IND". at line
    Satz gefunden?
      IF sy-subrc <> 0.
        MESSAGE x901.                                               "n779835
      ENDIF.
    This dump comes only when I run my Transfers workbench for the first time, when I run it for the second time, it executes correctly and reservation line gets changed successfully.
    Does anyone have face such problem or have any ideas about how this can be solved??
    Please let me know if you need more information......

    Hi Km,
    Here is your answer:
    SAP Note 1269069 - BAPI_ALM_ORDER_MAINTAIN: Runtime error MESSAGE_TYPE_X
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1269069
    Also henceforth Pls try to navigate through service market place if you find Issues with Standard SAP Program as somebody else might have faced the same and there must be solution readily available.
    Let me know if it helps.
    Regards
    Shital
    Edited by: shital phadake on Mar 23, 2009 6:59 PM

Maybe you are looking for

  • Scheduling Agreement Release Strategy Issue

    Hi, We have a typical problem in Scheduling Agreement Release Strategy. Once the SA is released for the first time it should restart the release strategy again if there is a change in Quantity or Value or Purchasing group. The release strategy is get

  • User Mapping in JCO Destination

    Hi All, My current configuration is as follows: EP6 SP17 -> User mapped through Portal to R3 system. JCO Destinations -> I use a one technical user for all the WAS users ('user/password' option) I want that the JCO will use the same mapping as the Po

  • Unload swf in Flash Pro

    I publish a swf from a Catalyst Project and then load it in Flash Pro using the prebuild code snippet: myButton.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF); var fl_Loader:Loader; function fl_ClickToLoadUnloadSWF(event:MouseEvent):void

  • How to disable AES CBC encryption on ASA 5545

    Hi , In our environment  having ASA 5545 ( IOS Ver 9.1) Firewall and In there AES 256 CBC cipher encryption is enabled for SSH user access. we need to disable CBC cipher encryption and enable the CTR Cipher encryption for SSH users. Kindly help me fo

  • HT1529 apple sysmbol only on start up and remains for hours  macbook pro

    i need assistance in understanding how to correct this issue of the apple sysmbol only displays on start up with a spinning circle.  Will not move from this screen