SAP R/3 Schedule Program :: 2 calls in 1Sec.

Hi
We are running one schedule program ( 1 min. interval ) which is calling the RFC to pass the message to Web Service Business System using SAP XI as middleware. This is a Synchronous scenario in which WebService is providing the response back to SAP R/3.
As per the schedule logs in SAP R/3 the program is running in 1min. interval ( TCode : SM37 ) but as per SAP XI logs sometime we can see the RFC is getting called 2 times through schedule program in 1sec. & sometime within 1sec. 2 calls are happening  & same is in WebService logs. But this is intermittent, means this is happening at any time, we tried to investigate on the basis of payload ( RFC Data ) coming from RFC like based on size or some specific data and on the basis of some specific time but nothing is similar.
Can you pls. tell me what can be the reasons that program is initiated by itself or any other with which can identify what is the cause of this.
Regards
- Lalit -

Hi Agasthuri
Now that is also the mystery because that is the scheduled job & not dependant on any other job which can actually invoke it.
I mean for the whole process this program is the Prime Initiator. And then also somehow it is getting called by itself 2 times in 1sec.
Only similarity we found between all such calls is the time difference between 2 calls it is either 1sec or within a second.
I mean once the first process completes, second process starts.
In SXMB_MONI, <i>EndTime</i> of first process & <i>StartTime</i> of second process is always same.
- Lalit -

Similar Messages

  • SAP R/3 ( SM 37 ) Schedule Program :: 2 calls in 1Sec.

    Hi
    We are running one schedule program ( 1 min. interval ) which is calling the RFC to pass the message to Web Service Business System using SAP XI as middleware. This is a Synchronous scenario in which WebService is providing the response back to SAP R/3.
    As per the schedule logs in SAP R/3 the program is running in 1min. interval ( TCode : SM37 ) but as per SAP XI logs sometime we can see the RFC is getting called 2 times through schedule program in 1sec. & sometime within 1sec. 2 calls are happening  & same is in WebService logs. But this is intermittent, means this is happening at any time, we tried to investigate on the basis of payload ( RFC Data ) coming from RFC like based on size or some specific data and on the basis of some specific time but nothing is similar.
    Can you pls. tell me what can be the reasons that program is initiated by itself or any other with which can identify what is the cause of this.
    Regards
    - Lalit -

    Hi Agasthuri
    Now that is also the mystery because that is the scheduled job & not dependant on any other job which can actually invoke it.
    I mean for the whole process this program is the Prime Initiator. And then also somehow it is getting called by itself 2 times in 1sec.
    Only similarity we found between all such calls is the time difference between 2 calls it is either 1sec or within a second.
    I mean once the first process completes, second process starts.
    In SXMB_MONI, <i>EndTime</i> of first process & <i>StartTime</i> of second process is always same.
    - Lalit -

  • One Print program can call moe than one layOut

    HI all.
    In SAP-Scripts ,,One Print program can call moe than one layOut ?
    Thanks in advance
    Sri...

    Yes you can call more than one SAPScript and Smartforms from your one print program.
    For SAPScript, you need to use the OPEN_FORM or the START_FORM for each new FORM.
    For SMARTFOrms, you need to call those Smartform's FM in a sequence.
    Regards,
    Naimesh Patel

  • ABAP program to call bapi of catsdb in sap

    ABAP program to call bapi of catsdb in sap
    coding please,
    Thank you,
    points will be rewarded,
    Regards,
    Jagrut BharatKumar Shukla

    if the transactions are custom one, then you can do some work around.
    But i dont know how you will do it for standard ones.
    Aa far as i know this requiorement has a least possibility.

  • How to check from Where a Program is Called in SAP ABAP?

    In SAP subroutine message_append in program LATPCFM2 has been called for purchase order as well as delivery (create, change, display).
    I want some custom code to be added in this subroutine by which I would know from where it is being called for "delivery creation".
    Or any way to know the called place.

    Hi Raju,
         I want to add one more thing to your explanation, While enhancing the standard Program, it will be used in several Places for Different purpose. Instead of Checking from Where it is Called, Check with for what conditions the Custom Code Should get executed and the Required Values are present in the attribute. It will work better if we add Some IF conditions Before Our Custom Code otherwie it may lead to Dump.
    EX: If SY-Tocde = 'VA01' or SY-Tocde = 'VA02' or SY-Tocde = 'VA03'.
              Custome Code.
          endif.

  • Reset or Clear SAP user context by external RFC caller program

    Hello,
    I have a SAP system with performance problems due to a SAP user context starts using a lot of memory.
    This user context comes from an External RFC caller program written in Delphi and which uses the SAP RFC SDK provided by SAPGUI 6.40: SAP Automation library, SAPFuntionsOCX, I mean, using methods in the object "SAPFunctions" in SAPFunctionsOCX in file "wdtfuncU.ocx", in SAPGUI directory.
    Everytime we have performance problems, this RFC SAP user context is using near 1400 Mb of extended memory, although there is a lot of free physical RAM memory available, there are free dialog processes and CPU load is low (no more than 30%).
    This performance problem is solved by closing the external program (written in Delphi) which connects to SAP via RFC.
    This external program works for the warehouse management and connects to SAP several times per minute. Due to connection performance and the high frequency with which this external program must connect to SAP, the connection to SAP is not closed after each call to RFC SAP function modules.
    The extended memory used by this SAP RFC user is growing along time. I detected, using ST03 transaction, that these user sessions have always the same transaction code hash, I mean, although the external programs call the same SAP RFC funcion modules several times (¡¡¡ always clearing the variables at the beginning and at the end of de ABAP code, with ABAP commands like REFRESH and FREE ¡¡¡¡) the technical transaction code is the same and I suppose the user context (in extended memory) is not deleted.
    I think it is better than the external program close the context memory (similar to "/n" okcode in SAPGUI).
    But we don't want to close the connection, because the external program connects to SAP with a high frequency, and the logon process is expensive.
    Is there any way to send something similar to "/n" (end of transaction) from the external program? Is there any command in the SAP RFC SDK library (SAPFuntionsOCX or something similar?
    I cannot find any method to do that in the object "SAPFunctions" in SAPFunctionsOCX in file "wdtfuncU.ocx", in SAPGUI directory.
    Old information for Object Classes "SAPFunctions" in SAPFunctionsOCX in file "wdtfuncU.ocx", in SAPGUI directory, is described in the following URL:
    http://help.sap.com/saphelp_45b/helpdata/en/39/7e00d1ac6011d189c60000e829fbbd/frameset.htm
    But I cannot find anything related to something similar to a "/n" in SAPGUI.
    As I have the SAPGUI installed on my desktop, I can see all SAP RFC classes and methods from Excel, by opening the Visual Basic editor.
    I am only asking a way to send to SAP a command to free the user context used for an open RFC session in order to avoid the memory used to be continuously growing, without having to close the RFC session.
    The external program only calls a certain SAP function module periodically and we want to free the user context between calls without logging off. This is the same, very similar, as if we called that function from SAPGUI and we used "/n" in SAPGUI between calls.
    Anyone can help me?
    Thanks and best regards.

    Hello,
    I don't know if this will solve your problem, but you may be using MF 'RFC_CONNECTION_CLOSE' between each call of you RFC function.
    Regards
    Brice
    Edited by: blsapsdn on Apr 15, 2011 5:27 PM

  • Scheduling program in background

    Hi All
       I have scheduled a program with selection screen in background.
       I have scheduled it to run every minute . when I go to sm37 and check it shows the job my job name and against it it say 'Released' .
      Why doesn't my program start in background.
    Kindly help me resolve this issue.

    Hi
    This is how to do it through code
    data: lv_job_name like tbtco-jobname,
    lv_job_nr like tbtco-jobcount,
    lv_job_released type c,
    lv_job_start_sofort type c,
    lv_print_parameters type pri_params.
    lv_job_name = 'Z_test'. " your background program name
    call function 'JOB_OPEN'
    exporting
    jobname = lv_job_name
    importing
    jobcount = lv_job_nr
    exceptions
    cant_create_job = 1
    invalid_job_data = 2
    jobname_missing = 3
    others = 4.
    if syst-subrc = 0.
    *submit job with all the selection screen params...
    submit (lv_job_name)
    with applfile = applfile
    with p_lines = p_lines
    with rfc_dest = rfcdest
    with p_selmtd = lv_selmtd
    with px_shsim = px_shsim
    with px_sherr = px_sherr
    user syst-uname
    via job lv_job_name number lv_job_nr and return.
    if sy-subrc = 0.
    call function 'JOB_CLOSE'
    exporting
    jobcount = lv_job_nr
    jobname = lv_job_name
    strtimmed = 'X'
    importing
    job_was_released = lv_job_released
    exceptions
    cant_start_immediate = 1
    invalid_startdate = 2
    jobname_missing = 3
    job_close_failed = 4
    job_nosteps = 5
    job_notex = 6
    lock_failed = 7
    others = 8.
    if syst-subrc <> 0.
    message i162(00) with
    'An error occured while closing the background job.'.
    stop.
    endif.
    endif.
    endif.
    skip 1.
    write: / 'Background process', lv_job_name ,
    'called successfully' no-gap.
    write: / 'You can check the job in transaction SM37'.
    Use Sm36 and SM37 Transaction
    http://help.sap.com/saphelp_nw04s/helpdata/en/73/69ef5755bb11d189680000e829fbbd/frameset.htm
    <b>Reward if usefull</b>

  • How to edit a program dynamically called from another program

    Hi all,
    Can anyone help me in coding for a program which call's another
    report dynamically from selection screen(for instance z_dynam_called)
    and retreive the whole content of the dynamically called program(z_dynam_called)
    into an internal table and replace the contents of the internal table  with some new code and put it back in z_dynam_called and save it.
    Thanks in advance.
    Needful will be rewarded with points

    Hi,
    Follow this:
    1) U can pass data from one program to another in a single login using SAP memory......
    2) u can create a DBtable update dat table using ur first pgm and fetch from second program.....
    3) U can pass the report output using EXPORT TO MEMORY addition and get it back using IMPORT FROM MEMORY..........
    Eg:
    Export the selected rows to the next program
    EXPORT final TO MEMORY ID 'ABC'.
    CALL TRANSACTION 'XXX'.
    XXX is the tcode for the other program where u want to import the values.
    In the second program
    INITIALIZATION.
    IMPORT the internal table from the first program
    IMPORT final FROM MEMORY ID 'ABC'.
    Thanks and Regards,
    Reward If Helpful

  • How can i add email notifications to a scheduler program

    Hi,
    We have a scheduler chain that calls 2 scheduler programs.
    The chains are controlled by a scheduler job that has job_type as CHAIN.
    My challenge is how to add email notfications on the failure or success of the programs.
    I know about this procedure DBMS_SCHEDULER.ADD_JOB_EMAIL_NOTIFICATION, but this is only applicable to jobs and not programs(i believe).
    Is there an alternative way to trigger off emails for scheduler programs please?
    Thank you

    Hi gloria79,
    Mail uses Contacts to store email addresses and group addresses.  You would need to create the desired group on your MacBook.
    This article discussed how it works.
    Mail (Mavericks): Address messages
    http://support.apple.com/kb/PH14922
    Thank you for using Apple Support Communities.
    Nubz

  • Schedule Programming (Jobs)

    Hi
    What is Schedule Programming (Jobs?)
    How to set the Schedule Programming (Jobs) please give me the detailed program
    Thanks
    Mahesh

    Hi Kumar,
    Do you mean the Scheduling of the Batch Jobs in SAP System? If so, then you can have a look at the following link:
    http://help.sap.com/saphelp_45b/helpdata/en/c4/3a7ef8505211d189550000e829fbbd/content.htm
       1. Job scheduling: Before the background processing system can do anything, background jobs have to be scheduled. This can occur in transaction SM36 (job scheduling), in the ABAP editor (transactions SA38 and SE38, the "start program in the background" execution option), or through the programming interface or external interface of the background processing system. Many R/3 applications use the internal programming interface to schedule long-running reports for background processing.
       2. Job storage management: Jobs are stored in the R/3 database. Principal tables in the background processing system include the following:
              o TBTCO: The job header table (job management data)
              o TBTCP: The job step table (individual processing steps in jobs)
              o TBTCS: The control table for the time-driven job scheduler
              o BTCEVTJOB: Jobs scheduled to wait for an event
    Job logs are held in the R/3 "TemSe" (Temporary-Sequential Objects) database. The TemSe is set always to hold job logs as files in your host systems.
    Accessing job logs for display and managing job log storage is transparent for you. You can display or delete job logs by way of the job overview (transaction SM37) or the graphical background monitor. Old job logs are removed automatically together with the jobs to which they belong by the ABAP program RSBTCDEL, which should always be scheduled to run periodically (see Required Basis Background Jobs).
    Let me know if you need something else.
    Hope this will help.
    Thanks,
    Samantak.

  • Creating a screen in report program and calling that screen in program.

    Hi,
    I have a report program and I want to give output in different screen.
    can any one tell me how to create a screen in executable program and calling that screen in program in END-OF-SELECTION for displaying results.
    Thanks a lot.
    Kiran

    Hi,
      Open your program in SE80. Right click on your program. Click CREATE->Screen menu. This will allow you to create screen for the program. 
    In the End-of-selection event call the screen using the  commands CALL SCREEN or LEAVE TO SCREEN or SET SCREEN.
    CALL SCREEN
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba4e635c111d1829f0000e829fbfe/content.htm
    LEAVE SCREEN/SET SCREEN
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbab3635c111d1829f0000e829fbfe/content.htm
    Regards,
    Vara

  • How to do the job scheduling in BDC Call transaction

    Hi Experts,
    I've a Query like how to do the job scheduling in BDC Call transaction
      If anybody knows the answer please send me the reply.
      Thanks.
       Regards,
        Rekha

    Hi ,
    any progarm can be scheduled, wether it may be BDC or report thru SM36 Tcode.
    But do rememeber that if ur BDC is using GUI_UPLOAD function module, then it wont work , coz the function Gui_upload or GUI_DOWNLOAd wont work in back ground.
    If u r going to use OPEN_DATASET , READ dataset ....then it can be scheduled. i.e BDC can work if ur program retrievesz the data from Application server.
    Rvert back if any issues,
    Reward with poinst if helpful.
    Regards,
    Naveen

  • SD - SA Forecast Schedules  and JIT calls

    Hi Experts,
    We have a situation here - customer sends Forecast Schedules (for planning) and JIT calls through inbound 830 and 862 respectively. When 830 hits SAP system the schedules on forecast tab are replaced with new schedules in the existing SA from the schedules in 830. The customer then sends 862 - JIT Calls on a need basis.
    The situtation here is Customer can only confirm a certain quantity in one JIT call for a given JIT horizon date. So customer ends up sending multiple JIT calls for the same material (most of the times they are in the same transmission). All these JIT calls need to be added as schedules in SAP irrespective of the similar existing schedules within a given JIT horizon.
    The issue is SAP can only copy old schedules which are outside of the given JIT horizon when a new JIT schedule is added. Is there a way to handle this situation and add all the JIT schedules which are sent in different JIT calls regardless of JIT horizon.
    Any help in this regards is highly appreciated. Points guaranteed for helpful answers.
    Regards,
    Gajendra
    Edited by: Gajendra Bhatt on Apr 2, 2008 5:28 PM

    Implemented an enhancement in the ODETTE logic using the new enhancement technique. This enhancement looks for a special rule assignment for the customer in OVA9. If the rule is assigned then it copies the existing delivery schedule lines to the new delivery schedule regardless of the new delivery schedule date.

  • Any program for calling bapi from ABAP step by step

    any program for calling bapi from ABAP step by step
    points will be rewarded,
    thank you,
    Jagrut BharatKumar Shukla

    Hi Jagrut,
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
    ex BAPI:
    API_SALESORDER_CREATEFROMDAT1
    BAPI_SALESORDER_CREATEFROMDAT2
    You can get good help form the following links,
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    list of all bapis
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    for BAPI's
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    Also refer to the following links..
    www.sappoint.com/abap/bapiintro.pdf
    www.sap-img.com/bapi.htm
    www.sap-img.com/abap/bapi-conventions.htm
    www.planetsap.com/Bapi_main_page.htm
    www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://sap-img.com/bapi.htm
    <b>EG::</b>
    <b>Here is the step by step procedure for creating BAPIs.</b>
    There are 5 different steps in BAPI.
    - Create BAPI Structure
    - Create BAPI Function Module or API Method.
    - Create BAPI object
    - Release BAPI Function Module.
    - Release BAPI object.
    Step1. Creating BAPI Structure:
    - Go to <SE11>.
    - Select Data Type & Enter a name.
    - Click on Create.
    - Note: Always BAPI should be in a development class with request number (Not Local Object).
    - Select Structure & hit ENTER.
    - Enter the fields from your database. Make sure that the first field is the Primary Key Field.
    - Then SAVE & ACTIVATE.
    Step 2. Creating BAPI module:
    - Enter TR.CODE <SE37>.
    - Before entering any thing, from the present screen that you are in, select the menu
    Goto -> Function Groups -> Create Group.
    Enter a name (Note: This name Must start with ZBAPI)
    Let this screen be as it is and open another window and there, enter TR.CODE <SE80).
    Click on the Third ICON that says Inactive Objects.
    Select the group that you just created and click on Activate.
    Notice that the group you created will disappear from the list of inactive objects.
    - Go back to ><SE37> screen and enter a name and hit <ENTER>. Then enter the group name that you just created and activated.
    NOTE: When you release a function module the respective group will be attached to that particular application. It cannot be used for any other application. NEVER include an already existing group that is attached to another module.
    Now click on the first Tab that says [ATTRIBUTES] and select the radio button that says remote-enabled module since we will be accessing this from any external system.
    Then click on the second tab that says [IMPORT].
    Enter a PARAMETER NAME, TYPE and the structure you created in the first step. Also select the check box ‘Pa’. All remotely enabled functional modules MUST be Pa enabled, where Pa means ‘Passed by Value’ and if you don’t select ‘Pa’, then that means it will be passed by reference..
    Then click on tab that says [EXPORT].
    Enter the following as is in the first three fields
    RETURN TYPE BAPIRETURN (These 3 field values are always same)
    Here also select ‘Pa’ meaning Pass by value.
    Note: BAPIRETURN contains structure with message fields.
    Then SAVE and ACTIVATE.
    Step 3. Creating BAPI object:
    - Enter Tr.Code <SWO1> (Note. It is letter ‘O’ and not Zero).
    - Enter a name and then click on create. Enter details.
    NOTE: Make sure that that Object Type and Program name are SAME.
    - Enter Application ‘M’, if you are using standard table Mara. If you are using your own database then select ‘Z’ at the bottom.
    - Then hit <ENTER>.
    - Now we have to add ‘Methods’. High light METHODS and then select the following from the menu:
    Goto Utilities -> API Methods -> Add Methods.
    - Enter function Module name and hit <ENTER>.
    - Select the second FORWARD ARROW button (>)to go to next step.
    - Check if every thing looks ok and again click on FORWARD ARROW button (>).
    - Then select ‘YES’ and click on <SAVE>.
    - Now on a different screen goto TR.CODE <SE37>. Enter Function Module name and select from the top menu Function Module -> Release -> Release.
    - Goback to TR.CODE <SWO1>.
    Here select the menu combination shown below in the same order.
    - Edit -> Change Release Status -> Object Type Component -> To Implemented.
    - Edit -> Change Release Status -> Object Type Component -> To Released.
    - Edit -> Change Release Status -> Object Type -> To Implemented.
    - Edit -> Change Release Status -> Object Type -> To Released.
    - Then click on <SAVE>.
    - Then click on Generate Button (4th button from left hand side looks like spinning wheel).
    - Then Click on the button that says ‘PROGRAM’ to see the source code.
    To check if this is present in work flow goto TR.CODE <BAPI>.
    Here it shows business object repository.
    - First click on the middle button and then select “ALL” and hit ENTER.
    - Goto tab [ALPHABETICAL] and look for the object that you created. This shows that the BAPI object has been created successfully
    <b>Reward pts if found usefull :)</b>
    regards
    Sathish

  • BSP Error:bc/bsp/sap/crm_bsp_frame/mainDH.do was not called due to an error

    Dear All,
    i am working on CRM 5.0 Netweaver-2004S-SR2, facing below errror.
    Error when processing your request
    What has happened?
    The URL http://hllsap44.in.u1609.unilever.com:1080/sap/bc/bsp/sap/crm_bsp_frame/mainDH.do was not called due to an error.
    Note
    &#61607;     The following error text was processed in the system CD2 : The current application triggered a termination with a short dump.
    &#61607;     The error occurred on the application server hllsap44_CD2_00 and in the work process 0 .
    &#61607;     The termination type was: RABAX_STATE
    &#61607;     The ABAP call stack was:
    Method: BUILD_MODEL of program CL_CRM_BSP_ACCS_MODEL=========CP
    Method: CONSTRUCTOR of program CL_CRM_BSP_ACCS_MODEL=========CP
    Method: GET_MODEL_INSTANCE of program CL_CRM_BSP_ACCS_MODEL=========CP
    Method: SET_APPLICATION of program CL_CRM_BSP_IL=================CP
    Method: DO_INIT of program CL_CRM_BSP_FRAME_MAIN=========CP
    Method: DO_INIT of program CL_BSP_CTRL_ADAPTER===========CP
    Method: GET_PAGE_CONTEXT_CURRENT of program CL_BSP_CONTEXT================CP
    Method: ON_REQUEST_ENTER of program CL_BSP_RUNTIME================CP
    Method: ON_REQUEST of program CL_BSP_RUNTIME================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_HTTP_EXT_BSP===============CP
    Soon reply will be appreciated.
    thanks,'
    Thakkar.

    thanks For prompt attention towards my problem..
    DUMP: Runtime Errors         MESSAGE_TYPE_X
    Details:
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        Short text of error message:
        Model for application set CRMD_CASE has been maintained inconsistently
        Long text of error message:
         Diagnosis
             After including the referenced application in the application set,
             at least one structure name is no longer unique.
         System Response
             An inconsistent model leads to termination.
         Procedure
             Contact your system administrator.
         Procedure for System Administration
              IMG -> Customer Relationship Management -> Layout of User
             Interface (People-Centric UI) -> Application Element-> Application
             Set.
        Technical information about the message:
        Message class....... "CRM_BSP_BLUEPRINT_DB"
        Number.............. 010
        Variable 1.......... "CRMD_CASE"
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    thanks,
    Rakesh.

Maybe you are looking for

  • Final cut will not shut down stays in the dock and I have to reboot

    Final Cut will not shut down ..... stays in the dock and I have to physically reboot

  • MX version 6.0... is that MX 2004?

    I'm searching for the update to Fireworks MX version 6.0. They have updaters available for MX 2004 (version7.0, version 7.0.1, version 7.0.2) and also Fireworks 4.0.2. I can not find any documentation stating that version 6.0 is applicable in either

  • Printing ASCII value of BB (HEX)

    When I am trying to paste the character » (right double angle quotes) in Unix from my Notepad, it's converting to /273. The corresponding Hex value is BB and the Decimal value is 187. My actual requirement is to have this character as the file delimi

  • Is it possible to set songs at different volumes?

    Some songs are way louder than others in a mix. How do you fix it?

  • Debugging the outbound queue

    Hi, I have an outbound queue failed with the error 'SYSFAIL' and the error text ,"for object, number range interval doesnot exist" in CRM system. Please help me as i would like to debug the queue. As i am new to CRM middleware, i would like to know t