What are the common errors we get in supporting project

can any body reply what are the common errors we get in supporting project
for abapers tickets will get or not.
what type of tickets generally get regarding reports.

<b>SAP Tickets</b> are nothing but problems or issues raised by the end
customer in a company where end users are running SAP project.
Once the SAP project is implemented, support phase begins. Support
team is responsible for solving the tickets/issues in day-to-day
business.
For any support project, customer will set up Help Desk. If any
problem occurs customer will call Help Desk and register the
issue/Ticket.
Different companies use different software products to manage SAP
Tickets. Remember this software is not provided by SAP. It is third
party software. There are many software products in the market like
Manage Now et c. You can call these software products as tools.
All tools will provide the common attributes which are listed below-
1) Every user will be provided with user name and password to enter
into the tool
2) We can see the tickets assigned for a particular user name.
3) You can list all open tickets by giving the Date Range
4) You can list all closed tickets by giving the Date Range
5) You can list out all the open tickets assigned for an User
6) You can list out all the closed tickets assigned for an User
7) You can see the description of the Ticket, by entering the Ticket
Number. You can see who had raised the Ticket, what is the problem.
What is the severity of the Ticket?
There are lot many other attributes like you can transfer the Ticket
to another user etc.
<b>What is the severity of the problem Ticket?</b>
When a Ticket is raised, it will be given severity. There are
following severities. It may vary from company to company.
Severity 1
Severity 2
Severity 3
Severity 4
The severity will be decided based on the business critical impacts.
If there is large impact on the business it
will be given 1 severity, if it is having least impact then it will be given 4.
Severity 1 problem tickets should be solved in 8 hours.
Severity 2 problem ticket should be solved in 16 hours.
Severity 3 problem ticket should be solved in 15 working days.
Severity 4 problem ticket should be solved in 30 working days.
Again the no of days may vary from one company to another.
All these things will be decided when giving the contract to the IT
company. The agreement is called as "SLA".
SLA stands for Service Level Agreement.
What happens if a particular ticket is not solved by the IT company
according to the SLA/Contract?
The Customer imposes fine on IT company as per the contract/SLA.
<b>Errors in Extraction</b>
1) RFC connection lost.
2) Invalid characters while loading.
3) ALEREMOTE user is locked.
4) Lower case letters not allowed.
5) While loading the data i am getting messeage that 'Record
the field mentioned in the errror message is not mapped to any
infoboject in the transfer rule.
6) object locked.
7) "Non-updated Idocs found in Source System".
8) While loading master data, one of the datapackage has a red light
error message:
Master data/text of characteristic ZCUSTSAL already deleted
1)extraction job aborted in r3
2) request couldnt be activated because theres another request in the
psa with a smaller sid
3) repeat of last delta not possible
4) datasource not replicated
5) datasource/transfer structure not active
<b>Issues faced during the implementation :</b>
1. Slippage of milestones
2. Incorrect or wrong design
3. Reporting format problems
4. Data not matching or reconciling problems
5. Issues discovered during testing leading to redesign
6. Performance issues
7. Requirements misinterpretation
9)check the data same in source system and target system ( i mean
suppose u are extarcting from r/3 after loading check ur data r/3 and
bw same or not.
10)that is abap code, i didnt understand ur question properly.
11)
12) generic extarction, if ur businees contect satisfy ur requirement
u go for generic, suppose u need data from different tables go generic
with view with 1:1 relation 1:M relation for function module.
13)v3 update back groud job is in lo
14)its superior info object, u can find this in master data tab .
15)
16)tuning we will go for improve query performance (compression,
aggregates, partation, index, rollup, precalculated web tneplates.)
17) rsa7(check with some one)
18)bw statics for find data base time and olap time and frontend
time(based on u can improve query performance create like aggra comp ,
indices etc..)
19) direct chain only one chain , meta chain if u have more than one chains
load errors u can solve manually, other than load errors u can wait
right click and repeat.
20)
21) u cn cteate other cube and traansfer, but data space waste.(bec
structures will be deffi)
22) u mean data source enhancement.or not(let me know)
23)rsap0001( for customer exit variables) 001 for transaction data 001
attributes, 003 text 004 hierchies.
24)web application design , its like same bex, but report will execute
in browser.
25)
26) arrangement of process are called process type and we can use
varient and start process for back ground jobs.
<b>Don't forget to asign points</b>
regards
ravish

Similar Messages

  • What are the common errors we wil get in BDC?

    what are the common errors we wil get in BDC?

    hi sunil
    BDC errors are similar to what you get in online transaction. Suppose you enter an invalid material number in online ME21N ( create Po ) system will throw an error and you have to correct it by chnaging a valid material number . Same error you can get in BDC as well. It is very difficult to generalize types of error as errors will depend on the transacation you are doing.
    However some of the common BDC errors are ( Data for Screen Not Found, Field Not available in Screen ). These again are transaction specific and you have to analyze it by calling the transacion in display ALL mode.
    The errors you get depends upon the transaction you are
    running.
    This is how you handle:
    Let's consider you are recording for the transction CJ40
    (Messages table declaration )
    DATA :BEGIN of t_msg occurs 0.
    include structure BDCMSGCOLL.
    DATA END of t_msg.
    Handling it :
    CALL TRANSACTION 'CJ40' using T_BDCDATA MODE 'N' UPDATE 'S' MESSAGES INTO t_msg.
    commit work.
    If you want to display the errors in the screen you can use a function module named 'RPY_MESSAGE_COMPOSE'
    This gives you the corresponding message for the message number that you input.
    Below is the sample code
    Loop at t_msg. " Messages internal table
    w_msgid = t_msg-msgid.
    w_msgno = t_msg-msgnr.
    w_msgv1 = t_msg-msgv1.
    w_msgv2 = t_msg-msgv2.
    w_msgv3 = t_msg-msgv3.
    w_msgv4 = t_msg-msgv4.
    CALL FUNCTION 'RPY_MESSAGE_COMPOSE'
    EXPORTING
    LANGUAGE = SY-LANGU
    MESSAGE_ID = w_msgid
    MESSAGE_NUMBER = w_msgno
    MESSAGE_VAR1 = w_msgv1
    MESSAGE_VAR2 = w_msgv2
    MESSAGE_VAR3 = w_msgv3
    MESSAGE_VAR4 = w_msgv4
    IMPORTING
    MESSAGE_TEXT = t_text-text.
    TABLES
    LONGTEXT =
    EXCEPTIONS
    MESSAGE_NOT_FOUND = 1
    OTHERS = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    MESSAGE_TEXT contains the message.
    Please reward points if this explanation useful.
    Regards,
    navjot
    reward points

  • What are the common error while EBS installation in Unix /windows

    what are the common error while EBS R12 installation with os unix and windows.
    oracle have any any check after installation all installation are correct according to no of directory, files and file size ?
    regards

    Hi user;
    what are the common error while EBS R12 installation with os unix and windows.AFAIK there is no document which show common error.There are some common error for installation like:
    RW-5004- RW-50010 etc.
    For error we have to check instalaltion log files for can get more details about it
    oracle have any any check after installation all installation are correct according to no of directory, files and file size ?Oracle has 2 checking mechanisim during installation.
    1. Before start installation, rapidwiz makes Validate system Configuration check which is checking port avaliability,file system check etc.
    2. End of the installation,rapidwiz makes Validate system Configuration again to check jsp,dbc file, db avaliablity etc..
    For more details Please check:
    For r12.1.1:
    http://download.oracle.com/docs/cd/B53825_01/current/html/docset.html
    For r12:
    http://download.oracle.com/docs/cd/B40089_10/current/html/docset.html
    Hope it helps
    Regard
    Helios

  • What are the common errors in reporting and extraction.

    hi friends,
    what are the common errors in reporting and extraction for implementation and support projects.
    thanking u
    suneel.

    Hi Suneel,
    Errors in reporting are like incorrect query creation, errors in creating RKF, CKF and variables, misunderstanding the data, or errors with other tools like broadcasting. Errors in extraction relate to source system connectivity, field-infoobject mapping, incorrect code etc. Also, please search the forums and you will find many real time examples.
    Hope this helps...

  • What are the sap basis daily activities  in support project

    Hi Friends, recently i am involved in Support project, could you please tell me what are the daily activities to follow in support project
    thanks&regards
    suresh

    Hi Suresh,
    Few of daily activities in which you as a Basis Consultant should involve are as below:
    - Day to day system administrative issues raised by users e.g. User ID locked or new SAP ID creations etc.
    - Daily watch on background batch jobs. If any job failed due to some reason, work on it to avoid such failure in future with the help of function consultant
    - Watch on system performance
    - Authorizations & Roles definitions & assignements depending upon requirement.
    - System Backup depending upon business requirement
    - Printer setup in SAP
    - Watch on Print spool to avoid failures in SAP doccuments printing
    - Watch on interfaces (IDoc/EDI etc), if any, with external system
    Also talk to your earlier or senior Basis consultant to know more.
    Hope it will help you.
    Regards,
    Anup

  • What are the common errors that occur while extraction is carried out?

    Hi all,
    What are all the errors that occurs while extraction for fico, sd and mm?
    Can anyone list me the errors along with the solution.
    regds
    hari

    Hi hari shankar 
    It depends
    Like the data level errors ,Short DUmps
    USER EXIT ERRORS
    some time source system code errors.
    Hope itz clear a little atleast...!
    Thanks & Regards
    R M K
    ***Assigning pointz is the only way of saying thanx in SDN ***
    **Winners dont do different things,they do things differently**
    > Hi all,
    >
    > What are all the errors that occurs while extraction
    > for fico, sd and mm?
    >
    > Can anyone list me the errors along with the
    > solution.
    >
    > regds
    > hari

  • What are the possible errors that can happen in data loads(rsmo monitor)?

    hi all,
    what could be the error that could result in red color in the RSMO  monitor of data load transaction?
    1. request everything ok
    (what are the possible error type which make here red)
    2. extraction everything ok
    (what are the possible error type which make here red)
    3. transfer (idocs and trfc) error occured?
    (what are the possible error type which make here red)
    4. processing
        - data package
    5. process chain
    (what are the possible error type which make here red)
    6 other messages.
    (what are the possible error type which make here red)
    thanks
    pooja

    Hi,
    I can tell you the most common reasons of these failures.
    1. request everything ok
    Here it will be telling you if the request was properly send to source system and got triggered there.
    2. extraction everything ok
    In this step the actual extraction of data happens, issue slike sysfail or CPIC error may cause this to fail.
    3. transfer (idocs and trfc) error occured?
    When extraction is complete and data is being send to BW. But if dur to some reason it fails, error may come here.
    4. processing
    Processing in BW fails for each data packet is displayed here.
    This can also happen when you have sysfail in source.
    5. process chain
    This can show the logs of the chain here and also status of subsequent process.
    6 other messages.
    Any other error message.
    Refer
    What is the information we can get the through details tab in RSMO
    working with RSMO errors
    http://help.sap.com/saphelp_nw70/helpdata/en/12/43074208ae2a38e10000000a1550b0/frameset.htm
    Also
    Data Load Errors
    /people/siegfried.szameitat/blog/2005/07/28/data-load-errors--basic-checks
    Data Load issues
    Errors in loading
    data loading errors
    load Errors
    Process Chain Errors
    /people/mona.kapur/blog/2008/01/14/process-chain-errors
    Common Process chain errors
    process chain issues or errors
    Hope this helps.
    Thanks,
    JituK

  • What does the "conversion error" I get when converting a pdf file to Microsoft word?

    What is the "conversion error" I get when converfting a pdf file to aMicrosoft word?

    Adobe reader with export to PDF
    Sent from my iPhone 5
    Marty Kennedy

  • What are the common APIs we use in oracle interface

    What are the common APIs we use in oracle interface,and any APIs are there for validation Of data During Tranfer to interface table.
    How to find Api s in oracle applications in Individual modules

    For 11i, all public APIS are listed at http://irep.oracle.com
    For R12, use the "Integration Repository" responsibility in your R12 instance to list the APIs available in that instance
    HTH
    Srini

  • What are the general errors will come in data uploading

    Hi Friends,
    What are the general errors will come in data uploading
    Thanks in Advance

    Paul
    It all depends on how we configure the system. Errors may be different for different scenerios like
    User ALEROMOTE Loacked for master data's
    Data Sourcs has to be replicated
    Activation Failures
    Error occures in data Selection Etc.
    Do you have any specific error so that we can work on that.
    Thanks
    Sat

  • What are the reports we can get from OPM Quality

    Dear All,
    What are the reports we can get it from OPM Quality module.
    I am unable to get any reports abouts Tests, Samples specifications.
    Can someone please suggest me.
    Regards,
    Jon

    Pl post details of EBS version.
    If 12.1.3, see Chapter 7 of the OPM Quality User Guide - http://download.oracle.com/docs/cd/B53825_08/current/acrobat/121gmdqmug.pdf
    The same guide for other versions can be found at http://www.oracle.com/technetwork/documentation/applications-167706.html
    HTH
    Srini

  • What are the commonly used customer exits ?

    what are the commonly used customer exits  in realtime with regard to the modules MM, SD, PP?

    SD - MV45AFZZ

  • What are the accessories do i get when i buy Mac book pro with retina display 13 inches?

    i got mac book pro with retina display 13'' 20 days ago. i got charger and extension cable for charger only. what are the accessories do i get when i buy Mac book pro with retina display 13 inches?

    MacBook Pro with 13-inch Retina display
    60W MagSafe 2 Power Adapter, AC wall plug, and power cord

  • How can I use the NI PXI-6508 with Lab View 7? what are the first steps to get started??How can I use the channels with lab view 7????

    I have a 8 slot PXI system with 2 NI PXI 6508 and 1 DMM 4070 in it. I want to get started with programming the digital I/O cards (6508)! How can I use this cards with LabView 7?what is the best way to get started, or where can I get examples showing how to use the several channels?
    Thanks!
    Philipp

    Philipp,
    The best way to get started is to decide if you want to use traditional NI-DAQ or NI-DAQmx. Recently we released NI-DAQ 7.1 which provides NI-DAQmx support for the PXI-6508. In my opinion, NI-DAQmx is more efficient and much easier to use.
    To get started with examples, simply launch LabVIEW and go to Help>>Find Examples. Then expand Hardware Input and Output>>DAQmx and select the appropriate digital group for your application. This should help get you started.
    Please repost if you need addition assistance. Good luck with your application!

  • What are the common fields in table KONV = J_1IEXCHDR,EKKO,EKPO,MSEG

    Helo everyone,
    I need wht are the common fields between table of KONV and J_1IEXCHDR,EKKO,EKPO,MSEG. Pls give me details
    thanks in advance
    suresh

    check out LIFNR,KUNNR ETC

Maybe you are looking for