Security Process and procedure

Can anyone explain about SAP security process and  procedure?
Thanks in advance!
Regards,
Naveen

Hi Naveen,
security concept is very vast concept you can follow the sap library and i am giving the link of sap library
please go trough it .In this topics each and every concept you have to see in depth and security implimentation is also like a ASAP methodology. Follow the link.
http://help.sap.com/saphelp_nw70/helpdata/EN/52/6715a2439b11d1896f0000e8322d00/frameset.htm
<removed by moderator>
Regards,
Raju.
Edited by: Julius Bussche on Mar 17, 2008 3:05 PM

Similar Messages

  • Calling stored procedure from page process and PLS-00049 error?

    Good morning guys!
    I'm dealing with several problems this morning! The one that I need to deal with first is the following.
    I created the page process (see below: 1st code) in order to validate if all records where LNG_GEBIET matches have the status 3 or 4. If that is the case I want to call the procedure "set_status_arbeit_zu_gebiet". If amountrs and countstat do not match, then nothing is supposed to be done.
    The problem lies within the stored procedure itself. I receive a PLS-00049 bind variable error for :new.LNG_GEBIET.
    Can you please tell me what I forgot to declare in code 2 below???
    Thank you guys!
    The page process:
    Declare
      amountrs    number;
      countstat   number;
    begin
    SELECT COUNT(*) INTO amountrs FROM TBL_PUNKTDATEN where LNG_GEBIET = :P4_CNT_GEBIET;
    SELECT COUNT(*) INTO countstat FROM TBL_PUNKTDATEN where LNG_GEBIET = :P4_CNT_GEBIET and INT_STATUS = 3 or LNG_GEBIET = :P4_CNT_GEBIET and INT_STATUS = 4;
        IF amountrs = countstat THEN
         set_status_arbeit_zu_gebiet;
        ELSE
         dbms_output.put('nothing');
        END IF ;
    end;Code 2 with the true problem!
    CREATE OR REPLACE PROCEDURE set_status_arbeit_zu_gebiet
    IS
        cursor c2 is select LNG_GEBIET from TBL_ARBEIT_ZU_GEBIET where PNUM = 1114 and LNG_GEBIET=:new.LNG_GEBIET;
        v_c2  c2%ROWTYPE;
    BEGIN
       open c2;
    fetch c2 into v_c2;
    if c2%notfound then
            INSERT INTO TBL_ARBEIT_ZU_GEBIET
            LNG_GEBIET,
              LNG_ARBEITSSCHRITT,
              PNUM,
              INT_BEARBEITER,
              DATE_DATUM,
              GEPL_DATUM
            VALUES
            (:new.LNG_GEBIET,
             52,
             1114,
             895,
             sysdate,
             to_date('01.01.1990', 'DD.MM.YYYY')
            commit;
            close c2;
    END set_status_arbeit_zu_gebiet;One more question: Is it possible to integrate the first validation that calls my stored procedure into code 2?
    Thanks for you time!
    Sebastian

    The error is in following statement:
    INSERT INTO TBL_ARBEIT_ZU_GEBIET ( ... ) VALUES ( :new.LNG_GEBIET, ... );
    As the statement is part of a procedure and not trigger so it is not able to bind this variable with any value.
    As a resolution, pass this value to the procedure from the process and use it in the insert statement.
    The process will have following IF statement:_
    IF amountrs = countstat THEN
    set_status_arbeit_zu_gebiet *(:P4_CNT_GEBIET)*;
    ELSE
    dbms_output.put('nothing');
    END IF ;
    and the procedure will be as follows:_
    CREATE OR REPLACE PROCEDURE set_status_arbeit_zu_gebiet *(p_lng_gebit varchar2)*
    IS
    cursor c2 is select LNG_GEBIET from TBL_ARBEIT_ZU_GEBIET where PNUM = 1114 and LNG_GEBIET= --:new.LNG_GEBIET-- p_lng_gebit ;
    v_c2 c2%ROWTYPE;
    BEGIN
    INSERT INTO TBL_ARBEIT_ZU_GEBIET ( ... )
    VALUES
    ( --:new.LNG_GEBIET--  p_lng_gebit, ... );
    END set_status_arbeit_zu_gebiet;

  • Change of Position in MSS with Process and Forms

    Hi,
    I'm trying to create authorizations for a change of position in Process and Forms, but every time that I choose a new position to the employee I get the error, No authorization, with this details:
    No authorization
    Message no. 5A277
    Diagnosis
    You are not authorized to perform this activity.
    System Response
    The system cancels the activity you have tried to perform.
    Procedure
    If necessary, you can maintain missing authorizations in Customizing. Please remember that both the standard authorizations and the structural authorizations are checked.
    I have managed to change the position and create positions in SAP with t-code PPOME, but in the MSS Portal it doesn't work.
    I use authorization with context ( S_ORIGINCON ) with a FM in the structural profile that returns my objects ( O, S, P ). I also have personnel planning authorization ( PLOG ) for the returned objects.
    Any help to overcome this problem will be greatly appreciated.
    Regards,
    Diogo Silva.

    Hi there,
    We stop using SAP code to manipulate the infotype 0001, and started using our own code throw generic services I guess (Not my part of the project).
    The problem was that in a change of position for a new created position or even for an existing position there was a need for access to the default position OBJID='99999999'. That's why when you give authorization for object OTYPE=' ' and OBJID = ' ' you will not get an error, because it gives authorization for all objects, witch defeats the purpose of security.
    If you debug the functions used by the portal (MSS or ESS) you will see that in some FM on the call stack there is passed a flag that controls wether or not there is a authorization check for that default position.
    Basically ww stop using the SAP code, and started calling this FM (BAPI, etc) ourselves, and them we manipulated that flag so that we could circumvent the error.
    I hope it was clear, sorry if it was not, truth be told it was a long time since I finish that project.
    If you need anymore help just let me know.
    Regards,
    Diogo Silva.

  • Security Methodology and Oracle Solution

    I am wondering if Oracle has or recommends a methodology for establishment of security in the project along with its development. By security methodology I mean a guideline and phase by phase guide to establishment, implementation, monitoring and maintaining of a security assurance system.
    Just to give an example, Unified Process as a methodology gives little detail on security so some researchers have come up with SecureUP (Secure Unified Process) which defines the artifacts relating to security. With the introduction of so many middleware security related tools by oracle, it seems to me that such a methodology is necessary.
    Is there anything concerning it in OUM (Oracle Unified Method)? Does oracle RECOMMEND any methodology to be used with its tools?
    Best Regards,
    Farbod

    Thank you Justin. You are right.
    Just one point: I think that most of the software development methodologies undervalue security, for example, RUP or XP do not define phase by phase security related artifacts and procedures. Is there any security-rich methodology? I understand that oracle provides TOOLS and security relates to SYSTEM but even these tools leave room for ASSEMBLY and they need monitoring, vulnerability analysis and best practices for testing. Will Oracle Unified Method be more enthausiastic about this?
    Kind Regards,
    Farbod

  • HT204152 Forgot security question and lost recue email

    Dear all!
    I creat Apple ID as long time ago, and use my email company.
    Now, i forgot security question, my email company was deleted.
    How can i change security question and rescue email?
    Thanks

    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact Apple ID Support, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • Spawned Processes and Memory

    Hi Guys,
    Does the JVM limit the amount of memory that a process uses when spawning using Runtime.exec()
    Basically we are trying to run the microsoft linker from Java (via Maven) and it keeps erroring with 'out of memory' this seems to happen when the process uses around 275MB of RAM.
    Are processes spawned by Java limited to the amount of memory allocated to the JVM via -Xmx ?
    Any insight on this matter would be appreciated.

    Check the source code of the function
    Java_java_lang_Win32Process_create
    in j2se\src\windows\native\java\lang\Win32Process_md.c (you can get such
    source code downloading the SCSL Source code.
    The relevant information is posted below.
        si.dwFlags = STARTF_USESTDHANDLES;
        processFlag = CREATE_NO_WINDOW;
        ret = CreateProcess(0,                /* executable name */
                            cmd,              /* command line */
                            0,                /* process security attribute */
                            0,                /* thread security attribute */
                            TRUE,             /* inherits system handles */
                            processFlag,      /* selected based on exe type */
                            envcmd,           /* environment block */
                            cwd,              /* change to the new current directory */
                            &si,              /* (in)  startup information */
                            &pi);             /* (out) process information */It simply does not adjust memory size, or do something mysterious. It simply creates the process, and redirects the input , output and error streams.
    You really must get more memory (or adjust the size of your Windows swap file)...
    You can try lowering (not raising) the -Xmx limit of your Java program to make more room for the "link" process.

  • RIM needs to look at the Playbook registration process and followon support

    First, this post is NOT about the pros/cons of the Playbook.
    Second, it is NOT about the quality of support I received, which was very good.
    It's about the Playbook registration and the need for support during or right after that initial registration, as I experienced yesterday.  It's a it of a story, but necessary to understand what I went through.
    I have a PB-32 I setup last December, and did not need help during the registration.  That PB was to goto my wife as I also have an HP Touchpad.  Then the 64gb PB went on sale and it was too good to pass up.  The 64 was going to my wife and I would get the 32 after setup and transfer of her stuff, some of that process is the subject of other posts.
    During the IPL of the 64 where it asked for Country, I ran into communications problems and RIM's page would not load.  Others had the same problem, so I believe the site went down for a short while, as it came back an hour later.  When that cleared, it asked for the usual info, specifically my Email address.  So, since I wanted to put her 64 on her account, and later CHANGE the 32's email to mine, I re-registered her as a new account.
    Couldn't do it.  Duplicate account exists.  So I called general customer support too find out how to change the email registration for the 32 from the wife's to me, so I could register the 64 to her.  The automated help line wanted the serial # before anything else.  But the s/n on the 64 beside the USB/HDMI ports is unreadable small, and it wasn't up to see it on screen.  So, in desperation, I keyed in the 32 s/n.  That worked. 
    Now she could help, but not! 
    News Flash.  YOU CANNOT CHANGE YOUR INITIAL REGISTRATION INFORMATION. Anytime ever, for any reason.
    The only way to re-register the PB is to first do a security wipe and start over.  Yeah, right.  The thing is, the old registration remains in the system, and will not allow you to register another PB as a new registration using the same Email account.
    The second dumbest thing I ever heard.  If you sell your PB after a wipe, you will not be able to register a new PB with your same email account.  If you change ISP and get a new email account, you can't change your PB registration to it either.  I ended up registering the 64 to me, and leaving the 32 registered to the wife, not quite right, but acceptable.
    IPL of the 64 took over 2 hours!!!!
    Next, the 64 kept dropping the WIFI every minute or so for 2 - 3 minutes.  The 32 and Touchpad sitting beside it kept motoring on.  The WIFI signal strength on the 64 was low, about -87 to -93db, the 32 was about 5 to 10db better, so maybe there's a hardware problem.  So I called support again, but this time the 90 day support line.  This time I had the 64's s/n so I entered it in prior to getting a human contact.  First thing asked for.... the serial number.  So why key it in in the first place?  Then my name.  OK, but he could not find my registration info. 
    Well maybe it takes over an hour for RIM to post the data, but no, the INITIAL REGISTRATION DOES NOT TRANSFER TO THE 90 DAY SUPPORT DATABASE.  Ya gotta register for it separately.  Third dumbest thing.
    Sensing a bit of desperation in my voice, he offered to register me over the phone, otherwise I got to do it online.
    So we continued... next question "What city do you live in?"  Toronto, Ontario. 
    "What country is that in?"  Keep in mind RIM is a Canadian company in Kitchener Ontario, about a 2 hour drive from Toronto.  My question to him was "What country are you in?"  The reply.... "Central America."  Yes he had a bit of accent but that's not unusual in this country.  You would think that part of the RIM support staff orientation training would include a bit of Canadian and world geography.
    Finally the registration is done, but not quite.  The system will send me a confirmation email, to which I need to respond before we can continue.  Five minutes later, the email is there, and I respond.  First thing the confirmation page asks for.... My email address.  OK back to the support guy.
    Can't find my registration.  We waited about 10 minutes and finally, he asked, "what is the problem?"  No, my reg did not come up on his screen.  I explain the dropout problem, but at that time it was up and running.  The fix was to delete all my WIFI profiles (just the 1 here) and reset the PB.  Then connect and save the WIFI profile.  That did seem to help, as the 64 stayed connected for over an hour before it dropped out for a minute.  I'm going to get a new and better WIFI router.  I was on the phone for an hour and 10 minutes this time, of which, only 15 minutes was problem definition and solution.
    I'm not going to pontificate what RIM needs to do to, but it needs to do something about a user changing his registration data after the fact and needing only the initial registration data to qualify for the 90 days support.  And it needs to transfer that registration to the support line real fast, as the IPL and immediate setup are potentially the most problematic.
    Oh, and make the serial number large enough to be seen by a 67 yo with glasses.
    Done
    jgb

    Agree it is a pain in the but I know that you can use the same bbid on 2 playbooks.
    Be a Shepard and not an iSheep.

  • I updated to Firefox 4 and ever since it won't open. It says the process is running but no matter how long I wait it won't open the browser and restarting or ending the process and trying again doesn't work either. Is there any way to fix this?

    I thought it might be a compatibility issue with Windows Vista but the same problem happened on a computer with Windows 7. I'm not sure if the Windows 7 problem was resolved, though.

    You probably have other problems but for a start right click on your task bar and click on Start Task Manager. In "Applications" if Firefox is shown, click on "End Task". In "Processes" if Firefox.exe is shown, click on "End Process" and ignore the warning and click"End Process" again. Wait for a few seconds then start Firefox in the usual way. There is a chance that this may solve your problems.
    If not, you probably will need to do a complete uninstall and re-install. If you can't start Firefox you could try starting in Safe Mode - Hold down Shift key as you double click on the Firefox icon>ignore the page that opens>and Continue. If you've been able to open Firefox you could work through this Troubleshooting Procedure -
    https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    If at any stage you are not making progress, report back here for best advice on an Uninstall/Re-install which is quite likely to be necessary.

  • Every time I try to purchase a song from itunes, it says I have to put in security questions and answer them, which it's never done before. Then after I do the questions, it says that an error occurred and my changes couldn't be saved. HELP!

    Every time I try to purchase a song from itunes, it says I have to put in security questions and answer them, which it's never done before. Then after I do the questions, it says that an error occurred and my changes couldn't be saved. It has been doing this for weeks, and I can't purchase anything! HELP!

    Hi mterry1723, one solution that might be worth trying is this:
    - Close iTunes, if it's open
    - Open Safari and got to 'Preferences'
    - Select 'Security' on the top
    - Untick all the security options in the menu
    - Click the 'Show Cookies' button and look for all the 'apple' entries in the left-hand column.
    - Highlight them (select them collectively) and press 'Remove'
    - Now open iTunes and buy the song as usual.
    - You may be asked to do the same security process as before, so do as asked.
    - Hopefully, the security check will now have accepted your answers and start downloading the song as normal.
    Remember to re-tick all the required security options you had just un-ticked in Safari preferences. You don't need to bother about opening the cookies again.
    I hope this has worked for you and my profoundest apologies if it has not. Worth a go, though!
    I did see this thread: https://discussions.apple.com/message/18259935#18259935 which may be of more help, mainly the last entry by 'c2boyd'
    Message was edited by: Bongomal

  • My account is locked, i cant remember my security question, and I accidentally entered my itunes card in here instead of my other account, so can someone from apple help me out and fix my account

    my account is locked, i cant remember my security question, and I accidentally entered my itunes card in here instead of my other account, so can someone from apple help me out and fix my account (and no, i dont have any rescue email address or whatsoever)
    please help me because i dont to waste money for nothing

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • Would like to change my security questions and answers on my Apple ID account??

    I would like to Change my Security questions and Answers on my Apple ID account??
    I have tried and have successfully reset my PW but I have forgot my answers to questions!!
    HELP Please!

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • Error in MSS HCM Processes and Forms Overview

    Hi all,
    Currently we are working on ESS/MSS from NW 7.3 portal.
    When i open HCM Processes and Forms Overview from MSS, it prompt me to change the password again and again.
    And on some user HCM Processes and Forms Overview not shown properly.
    Error while processing your query
    What has happened?
    The URL call http://<host name>:1080/sap/bc/webdynpro/sap/asr_pa_pd_processes_display was terminated because of an error.
    Note
    The following error occurred in system BEQ : Parameter has invalid value: Parameter TSTMP1 has invalid value 0 .
    The error occurred on application server MUMSAP02_BEQ_00 and in work process 8 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: SUBTRACT of program CL_ABAP_TSTMP=================CP
    Method: SUBTRACT_TIMESTAMPS of program CL_HRASR00_PROCESS_UTILITIES==CP
    Method: GET_CURRENT_TIME_DATA of program CL_HRASR00_PROCESS_UTILITIES==CP
    Method: START_TRACKING of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: IF_COMPONENTCONTROLLER~START_TRACKING of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: HANDLEDEFAULT of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: HANDLEDEFAULT of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_IF_VIEW=====CP
    Method: DISPLAY_TOPLEVEL_COMPONENT of program CL_WDR_CLIENT_COMPONENT=======CP
    What can I do?
    If the termination type is RABAX_STATE, you will find more information on the cause of termination in system BEQ in transaction ST22.
    If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server MUMSAP02_BEQ_00 in transaction SM21.
    If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process 8 in transaction ST11 on the application server. MUMSAP02_BEQ_00 . You may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system adminmistrator.
    Error Code: ICF-IE-http -c: 350 -u: ISHAJI -l: E -s: BEQ -i: MUMSAP02_BEQ_00 -w: 8 -d: 20130514 -t: 133514 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION -X: D4AE5218F8121ED2AF8DA00F61FBEAC0_D4AE5218F8121ED2AF8DA00F5D19EAC0_1 -x: 006DBCE20F7BF1E58AC0D4AE5218F812
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Please suggest me the solution.
    Regards,
    Devendra

    Dear Andrea,
    I reset the password of backend user and gave sap_all and sap_new role.
    Last time it prompt the screen in mss as to change the password. (See above screen shot).
    But after reset the password...error showing instead of login screen in mss as below:
    Error while processing your query
    What has happened?
    The URL call http://<host name>:1080/sap/bc/webdynpro/sap/asr_pa_pd_processes_display was terminated because of an error.
    Note
    The following error occurred in system BEQ : Parameter has invalid value: Parameter TSTMP1 has invalid value 0 .  
    The error occurred on application server MUMSAP02_BEQ_00 and in work process 7 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: SUBTRACT of program CL_ABAP_TSTMP=================CP
    Method: SUBTRACT_TIMESTAMPS of program CL_HRASR00_PROCESS_UTILITIES==CP
    Method: GET_CURRENT_TIME_DATA of program CL_HRASR00_PROCESS_UTILITIES==CP
    Method: START_TRACKING of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: IF_COMPONENTCONTROLLER~START_TRACKING of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: HANDLEDEFAULT of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: HANDLEDEFAULT of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/LA89BHH7CSECCUXGQD7Z==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_IF_VIEW=====CP
    Method: DISPLAY_TOPLEVEL_COMPONENT of program CL_WDR_CLIENT_COMPONENT=======CP
       What can I do?
    If the termination type is RABAX_STATE, you will find more information on the cause of termination in system BEQ in transaction ST22.
    If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server MUMSAP02_BEQ_00 in transaction SM21.
    If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process 7 in transaction ST11 on the application server. MUMSAP02_BEQ_00 . You may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system adminmistrator.
    Error Code: ICF-IE-http -c: 350 -u: IKHASU -l: E -s: BEQ -i: MUMSAP02_BEQ_00 -w: 7 -d: 20130514 -t: 175940 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION -X: D4AE5218F8121ED2AF923E065A39EAC0_D4AE5218F8121ED2AF923E394271EAC0_1 -x: F091BCE2D132F1D58AC0D4AE5218F812
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    I checked log in ST22 as below
    What happened?
        The exception 'CX_PARAMETER_INVALID_RANGE' was raised, but it was not caught
         anywhere along
        the call hierarchy.
        Since exceptions represent error situations and this error was not
        adequately responded to, the running ABAP program
         'CL_ABAP_TSTMP=================CP' has to be
        terminated.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_PARAMETER_INVALID_RANGE', was not
         caught in
        procedure "SUBTRACT_TIMESTAMPS" "(METHOD)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        Parameter has invalid value: Parameter TSTMP1 has invalid value 0.
    Regards,
    Devendra

  • HT201363 I don't know security questions and my backup email that i have for the answers to be sent to i no longer use please help

    Pleases help

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
    Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                             Apple ID- All about Apple ID security questions.

  • Create Adobe Form using Design Time for Processes and Forms

    Hi all,
    I am trying to create a form that have 3 fields:
    1. pernr
    2. ename
    3. effective_date
    I done all the necessary setup of BADI ,class, interface and form.
    I need the step to step guide where you create the adobe form using the Design Time for Processes and Forms. Anyone have any idea?
    Edited by: Siong Chao on Jan 3, 2011 4:54 AM
    Edited by: Siong Chao on Jan 3, 2011 5:00 AM

    Hi,
    I couldn't get to your query..
    What do you mean by step by step procedure for a design time & process for forms.
    if you are a beginner and looking for basic examples to implement adobe forms there are lot of them in SDN, please search them.
    let me know if your query was a very specific one.
    Cheers,
    Sai

  • My BlackBerry world wont open on my q10, I've done a. Security swipe and nothing helped there anyone

    Hi and Welcome to the Community!
    With a strong carrier network signal (e.g., not merely WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (step 1 should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRTKB00510 How to register a BlackBerry smartphone with the wireless networkPlease wait for one "registration" message to arrive2) RebootPre-BB10 Devices ONLY. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes.BB10 Devices. Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. IF this fails, you can attempt the battery-pull method above, but it is normally NOT recommended unless nothing else works.See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.Hopefully that will get things going again for you! If not, then you contact your mobile service provider for formal support.
    Good luck!

    My world will not load, I've tried re booting and done a security swipe and still won't open. Any ideas welcome as I have no apps at the moment

Maybe you are looking for

  • 10-key numeric pad

    It would be great if Apple would make the iPad recognize numeric fields (e.g. the credit card field in ecommerce sites) and present a 10-key numeric keypad instead of the horizontal numbers of a 'regular' keyboard. Or at least give us a key on the 'k

  • Spry slide show is choppy..what can I do to fix this.

    Are the spry slide show always so choppy? Do I have too many photos? (5) Here is my site mudroomstudios.com. Please, any advise would be appreciated. Otherwise I'll have to ditch the slides. thanks ~erin

  • ACE failed probe and established connections

    Hello, I have four ACE 4710. Each pair of ACE is in one geographical location. Probes are configured so that it is checking regular regex (HTTP GET). When there is need rserver update we change text in our testpage.html (for ie. from "OK" to "SUSPEND

  • [SOLVED] Balsa error after update

    Hi After doing the big update and fixing the sound problems i discovered that my balsa program didn't work When running from terminal it produces this error. "error while loading shared libraries: libgtkhtml-3.6.so.18: cannot open shared object file:

  • Af:table problem

    Hi, i have one updatable view object and child view object with 1 to 1 relation i wanted to show child VO column with parent table in panelCollection layout without using join on query on the basis of view link or any other solution that will not cha