What are privilage for user is required to create project api

Hi
I have to create project using project template I have given info manual to create project manually.
But key member should not be null....error occurs
I have given person I'd and person role type as project manager.
Please help me in this regard.

this is the code i have used ...
declare
v_responsibility_id NUMBER; --- PA Supervisor responsibility id
v_user_id NUMBER;
--deriving global parameters-
-- Variables needed for API standard parameters
v_api_version_number NUMBER := 1.0;
v_commit VARCHAR2(1) := 'F';
v_return_status VARCHAR2(1);
v_init_msg_list VARCHAR2(1) := 'F';
v_msg_count NUMBER;
v_msg_index_out NUMBER;
v_msg_data VARCHAR2(2000);
v_data VARCHAR2(2000);
v_workflow_started VARCHAR2(1) := 'Y';
v_pm_product_code VARCHAR2(10);
---variables for catching errors---
v_error_flag number:=0;
-- Predefined Composite data types
v_project_in PA_PROJECT_PUB.PROJECT_IN_REC_TYPE;
v_project_out PA_PROJECT_PUB.PROJECT_OUT_REC_TYPE;
v_key_members PA_PROJECT_PUB.PROJECT_ROLE_TBL_TYPE;
v_key_member_rec pa_project_pub.project_role_rec_type;
v_class_categories PA_PROJECT_PUB.CLASS_CATEGORY_TBL_TYPE;
v_tasks_in_rec PA_PROJECT_PUB.TASK_IN_REC_TYPE;
v_tasks_in PA_PROJECT_PUB.TASK_IN_TBL_TYPE;
v_tasks_out_rec PA_PROJECT_PUB.TASK_OUT_REC_TYPE;
v_tasks_out PA_PROJECT_PUB.TASK_OUT_TBL_TYPE;
v_CREATED_FROM_PROJECT_ID varchar2(20);
v_CARRYING_OUT_ORGANIZATION_ID varchar2(20);
v_person_id NUMBER;
v_project_role_type VARCHAR2(20);
API_ERROR EXCEPTION;
v_a NUMBER;
--cursor for project in data
/*CURSOR cur_project_in_data IS SELECT * FROM XXPA_PROJECT_IN_STG;
--cursor for task data
CURSOR cur_task_in_data IS SELECT * FROM XXPA_TASK_IN_STG;*/
------------------------Cursors used for validations----------------------------------
--cursor for product code used for validation
cursor cprc is select distinct PROJECT_RELATIONSHIP_CODE from PA_PROJECT_CUSTOMERS;
--cursor for distribution rule-
cursor cdr is select DISTRIBUTION_RULE from PA_DISTRIBUTION_RULES;
--cursor for project status code
cursor cpsc is SELECT PROJECT_STATUS_CODE, PROJECT_STATUS_NAME FROM PA_PROJECT_STATUSES WHERE STATUS_TYPE = 'PROJECT';
--cursor for template/created from project id
cursor ccpid is select project_id from pa_projects where template_flag='Y'; */
BEGIN
begin
mo_global.set_policy_context('S',85);
mo_global.init('PA');
end;
fnd_global.apps_initialize ( 50321,56533,275);
select user_id, responsibility_id into v_user_id, v_responsibility_id
from PA_USER_RESP_V
where user_name like 'SVENKAT'
and responsibility_name like'GB Projects Implementation Superuser';
-- --Fnd_global.apps_initialize(user_id,resp_id, resp_appl_id);
-- Fnd_global.apps_initialize(v_user_id,v_responsibility_id,275);
-- -------calling global parameters---
pa_interface_utils_pub.set_global_info
p_api_version_number =>v_api_version_number,
p_responsibility_id =>v_responsibility_id,
p_user_id =>v_user_id,
p_msg_count =>v_msg_count,
p_msg_data =>v_msg_data,
p_return_status =>v_return_status
dbms_output.put_line ('Set Global status ->' || v_return_status);
----Cursor for PRODUCT RELATED DATA-----------
--FOR REC IN cur_project_in_data LOOP
-----PASSING VALUES TO THE COMPOSITE DATA TYPE(PROJECT_IN_REC_TYPE)-------
----retrieving product code-----
select lookup_code into v_pm_product_code
from pa_lookups
where lookup_type = 'PM_PRODUCT_CODE'
and meaning = 'Oracle Project Manufacturing';
-----retrieving and validating created from project id----
BEGIN
select project_id
into v_CREATED_FROM_PROJECT_ID
from pa_projects_all
where name='GB_NRE_Template';--rec.created_from_project_name;
EXCEPTION
when others then
null;
/*O_Retcode := '1';
O_Errbuf :='Incorrent CREATED_FROM_PROJECT_NAME';*/
--Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
/*UPDATE XXPA.XXPA_PROJECT_IN_STG
SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where created_from_project_name = rec.CREATED_FROM_PROJECT_NAME;*/
END;
-----retrieving --  validating carrying out organization id-----
BEGIN
select distinct(CARRYING_OUT_ORGANIZATION_ID)
into v_CARRYING_OUT_ORGANIZATION_ID
from pa_projects_prm_v
where CARRYING_OUT_ORGANIZATION_NAME='IT Project Organization';--rec.carrying_out_organization_name;
EXCEPTION
when others then
dbms_output.put_line ('error in carrying org');
/*O_Retcode := '1';
O_Errbuf :='Incorrent Carrying Out Organization name';
Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);*/
/*UPDATE XXPA.XXPA_PROJECT_IN_STG
SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where carrying_out_organization_name = rec.carrying_out_organization_name;*/
END ;
v_project_in.pm_project_reference :='GB_NRE_Template'; --rec.segment1;
v_project_in.project_name :='VENKAT_TEST'; --rec.PROJECT_NAME;
v_project_in.created_from_project_id := v_CREATED_FROM_PROJECT_ID;
v_project_in.carrying_out_organization_id := 85;
v_project_in.project_status_code :='UNAPPROVED'; --rec.PROJECT_STATUS_CODE;
v_project_in.description := 'interface';--rec.PROJECT_DESCRIPTION;
v_project_in.start_date := sysdate;--rec.PROJECT_START_DATE;
v_project_in.completion_date := sysdate + 30; --rec.PROJECT_COMPLETION_DATE;
v_project_in.distribution_rule := 'EVENT/EVENT';--rec.DISTRIBUTION_RULE;
--v_project_in.project_relationship_code := ;--rec.PROJECT_RELATIONSHIP_CODE;
-------------------------Validation of incoming project data--------------------------------
v_error_flag := 1;
--project relationship code validation
/*BEGIN
--for prc in cprc
--loop
if (rec.PROJECT_RELATIONSHIP_CODE=prc.PROJECT_RELATIONSHIP_CODE) or (rec.PROJECT_RELATIONSHIP_CODE is null)--can be overridden from template
then
v_error_flag :=0;
else null;
end if;
--end loop;
END; */
/*--project distribution rule validation
BEGIN
for dr in cdr
loop
if (rec.DISTRIBUTION_RULE=dr.DISTRIBUTION_RULE) or (rec.DISTRIBUTION_RULE is null) --null since the value can be taken from template too
then
v_error_flag :=0;
else null;
end if;
end loop;
END; */
--m := 1;
   -- l_person_id := 38506;--v_personid;                      -- need to get from Apps
   -- l_project_role_type := 'Project Manager';
        /* v_key_member_rec.person_id := 83369;--v_personid;
          v_key_member_rec.project_role_type :='PROJECT MANAGER';
          v_key_member_rec.project_role_meaning := 'Project Manager';
          v_key_members(1) := v_key_member_rec;*/
           v_key_members(1).person_id := 83369;
            v_key_members(1).project_role_type :='PROJECT MANAGER';
            dbms_output.put_line('persion id for key member '||v_key_members(1).person_id);
--project status code validation
/*BEGIN
for sc in cpsc
loop
if (rec.PROJECT_STATUS_CODE=sc.PROJECT_STATUS_CODE) or (rec.PROJECT_STATUS_CODE is null)-- null since the value can be taken from template too
then
v_error_flag :=0;
else null;
end if;
end loop;
END;*/
dbms_output.put_line ('Error at PROJECT_STATUS_CODE>' ||v_error_flag);
/*validation logic for project start date
BEGIN
if TRUNC(rec.PROJECT_START_DATE) >= TRUNC(rec.PROJECT_COMPLETION_DATE)
THEN
v_error_flag := 1;
O_Retcode := '1';
O_Errbuf :='Project start date cannnot be greater than completion date';
Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
END IF;
END;
validation logic for project completion date
BEGIN
if (TRUNC(rec.PROJECT_COMPLETION_DATE)<=TRUNC(rec.PROJECT_START_DATE))
then
if ( rec.PROJECT_STATUS_CODE='CLOSED' and rec.PROJECT_COMPLETION_DATE>sysdate)
THEN
v_error_flag := 1;
O_Retcode := '1';
O_Errbuf :='completion date cannot be greater than sysdate for closed projects';
Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
END IF;
v_error_flag := 1;
O_Retcode := '1';
O_Errbuf :='Project closed date cannnot be less than start date';
end if;
END;*/
--------Update staging table for the error records--------
/*BEGIN
if v_error_flag =1
then
O_Retcode := '1';
O_Errbuf :='Incorrent project relationship code';
Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
UPDATE XXPA.XXPA_PROJECT_IN_STG
SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where PROJECT_RELATIONSHIP_CODE = rec.PROJECT_RELATIONSHIP_CODE;
end if;
END;*/
-----------------------End of validation of incoming project data----------------------------------
---------------Project Task DATA-----------------
v_a:=1;
--FOR tsk IN cur_task_in_data LOOP
v_tasks_in_rec.pm_task_reference :='Labor';--tsk.task_reference ;
v_tasks_in_rec.task_name :='Labor';--tsk.task_name;
--v_tasks_in_rec.pm_parent_task_reference :=tsk.parent_task_reference ;
v_tasks_in_rec.task_start_date := sysdate;--tsk.task_start_date ;
v_tasks_in_rec.task_completion_date :=sysdate + 30;--tsk.task_completion_date ;
v_tasks_in(v_a) := v_tasks_in_rec;
--v_a:=v_a+1;
--end loop;
---------------end of task details------------------
--INIT_CREATE_PROJECT
pa_project_pub.init_project;
---------------------CREATE_PROJECT--------------------------
pa_project_pub.create_project(
p_api_version_number=> v_api_version_number,
p_commit => v_commit,
p_init_msg_list => v_init_msg_list,
p_msg_count => v_msg_count,
p_msg_data => v_msg_data,
p_return_status => v_return_status,
p_workflow_started => v_workflow_started,
p_pm_product_code => v_pm_product_code,
p_project_in => v_project_in,
p_project_out => v_project_out,
p_key_members => v_key_members,
p_class_categories => v_class_categories,
p_tasks_in => v_tasks_in,
p_tasks_out => v_tasks_out);
if v_return_status = 'S'
then
/*UPDATE XXPA.XXPA_PROJECT_IN_STG
SET INTERFACE_STATUS ='Success' where segment1 = v_project_out.pa_project_number; ---P->pending & S-> Success*/
dbms_output.put_line('New Project Id: ' || v_project_out.pa_project_id);
dbms_output.put_line('New Project Number: ' || v_project_out.pa_project_number);
else
/*UPDATE XXPA.XXPA_PROJECT_IN_STG
SET INTERFACE_STATUS ='Pending' where segment1 = v_project_out.pa_project_number;*/
raise API_ERROR;
end if;
--END LOOP;
Commit;
------Handling Exception--------
EXCEPTION
WHEN api_error THEN
dbms_output.put_line('An error occured during project creation');
IF (v_msg_count > 0 ) THEN
FOR i IN 1..v_msg_count LOOP
apps.PA_INTERFACE_UTILS_PUB.get_messages(
p_msg_count => v_msg_count,
p_encoded => 'F',
p_msg_index => i,
p_msg_data => v_msg_data,
p_data => v_data,
p_msg_index_out => v_msg_index_out);
dbms_output.put_line('Error message v_data ->'||v_data);
dbms_output.put_line('Error message v_msg_data ->'||v_msg_data);
dbms_output.put_line('Error message v_msg_index_out ->'||v_msg_index_out);
dbms_output.put_line('Error message p_msg_index ->'||i);
APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
END LOOP;
END IF;
WHEN OTHERS THEN
dbms_output.put_line('An error occured during conversion, SQLCODE ->'|| SQLERRM);
IF (v_msg_count >=1 ) THEN
FOR i IN 1..v_msg_count LOOP
PA_INTERFACE_UTILS_PUB.get_messages(
p_msg_count => v_msg_count,
p_msg_index => i,
p_encoded => 'F',
p_msg_data => v_msg_data,
p_data => v_data,
p_msg_index_out => v_msg_index_out);
dbms_output.put_line('Error message ->'||v_data);
APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
END LOOP;
END IF;
end; --end procedure
error .....
Set Global status ->S
persion id for key member 83369
Error at PROJECT_STATUS_CODE>1
An error occured during project creation
Error message v_data ->Key Member is a mandatory Quick Entry field. Values must be passed for project_role_type and person_ID. (PROJECT=GB_NRE_Template)
Error message v_msg_data ->PA

Similar Messages

  • What are the optimal hardware specification requirements for Adobe Photoshop CS6?

    Greetings to the staff and users of this forum,
    As the title clearly stipulates, the question is "What are the optimal hardware specification requirements for Adobe Photoshop CS6?".
    Unfortunately, I am not satisfied with the specs specified on the website, as I believe they are far lesser than the specs needed to run the program at its full potential. This belief comes from my experience with the product Adobe Photoshop CS2 that I currently run on my computer. In effect, Ps CS2 cannot fully run without inducing time lags on my computer (i.e. when using 500 pix diameter smudge tool/ using liquify gallery), even though my specs are already higher than those specified for CS6 (mine are: Intel Core 2 Duo 6300 1.86 GHz, 3 GB RAM). I can assure you that I get those time lags even when almost in safe mode (only system main processes running) and that my computer is clean from any process/virus that could lower its performances.
    I've been through two chat rooms and four telephone operators to always get the same answer: the specs on the website.
    If any user here could provide me with proper higher specs, I would really be grateful.
    Thanks,
    phdwengr

    This document looks at different workflows and gives recommendations. It should give you an idea of what's needed.
    http://blogs.adobe.com/jnack/files/2012/07/CS6_hardware_recommendations.pdf

  • What are the SAP Business one requirements for intercompany intergration

    Hi. what are the SAP Business one requirements for intercompany intergration

    Hi Wendy,
    Intercompany 1.1 is supported on SAP Business One 8.82 and Intercompany 2.0 is supported on SAP Business One 9.0.
    So depending on Solution version your are looking for, refer to Prerequisites section in the respective version's Administrator Guide.
    For further information on Intercompany Integration Solution for SAP Business one, you may refer the following:
    https://websmp210.sap-ag.de/partneredge/b1/intercompany  
    Regards,
    Agneesh Jain
    SAP Intercompany Team

  • What are the minimum hardware Server requirement for SAP BI BO

    I would be thankful if someone can please tell me  What are the minimum hardware Server requirement for SAP BI BO. if a separate Desktop is used for the server or local server purpose.
    In the Desktop
    I have 8 GB RAM
    2.60 Ghz Processor ( CPU)
    System type: 64 bit OS
    regards
    ranendra

    Hi,
    Refer the attached PAM for BO 4.0 and 4.1.Minimum hardware details are listed there.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0134dbb-8f10-3010-5084-cf90dbb35284?QuickLink=index&overridelayout=true&58879706677537
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/507d3365-009b-3010-04b0-e5abc8f00c91?QuickLink=index&…
    I haven't try with your similar specification but  in the below link some one tried with similiar one.
    What are the minimum system requirements to install SAP BO 4.0/4.1
    Amit

  • Service/Database Accounts - NT SERVICE\MSSQLSERVER & NT SERVICE\SQLSERVERAGENT - what are they for?

    Hi Guys,
    I’ve done a fair amount of research for this question but just cannot seem to find the answer to my question in simple, non-DBA, terms.
    Server 2008 R2
    SQL 2008 R2
    There are 2 users in the system database logins (NT SERVICE\MSSQLSERVER, NT SERVICE\SQLSERVERAGENT) … what are they for? It appears that they
    are accounts to run the corresponding Windows services but yet they cannot be selected from the list of available built-in accounts, local accounts or domain accounts.
    Also, I am using a couple of domain user accounts to run the services, do I need to add them to the database? I changed the service accounts from NETWORK
    SERVICE to the domain user accounts using the SQL Configuration Manger which is supposed to take care of managing the user group membership and registry changes but the domain accounts are not in the database …. The services appear to be running fine.
    Thanks

    In basic terms:
    As you say, in the SQL Server Database Engine there are two logins;
    NT SERVICE\MSSQLSERVER and NT SERVICE\SQLSERVERAGENT. The Database Engine runs in Windows as a Windows service named
    MSSQLSERVER. The NT SERVICE\MSSQLSERVER login is used by the service to connect to the Database Engine. Basically, this is how it connects to itself. The SQL Server Agent runs as a Windows service named
    NT SERVICE\SQLSERVERAGENT. The NT SERVICE\SQLSERVERAGENT
    login is how the Windows process that is SQL Server Agent connects to the Database Engine to read the
    msdb database to find out what it should do; and then do it. Both of these logins are members of the
    sysadmin fixed server role, so they can do anything in the Database Engine. And they need to stay that way.
    No, they can't be selected in the list of available built-in accounts, local accounts or domain accounts. This is because they are services, not accounts. They have a security identifier (SID) in Windows,
    but Windows knows they aren't real users. Windows can authenticate them, but they don't have passwords that any human can use. If you run
    lusrmgr.msc and look at the groups, you will see groups like
    SQLServerMSSQLUser$computername$MSSQLSERVER and NT SERVICE\MSSQLSERVER
    is a member of the group.
    As for the account that you used to run the services, this is complicated and has changed from SQL Server 2005 to SQL Server 2008 and now again in SQL Server Code Named 'Denali'. The short answer is that
    the account you specify will be used when a process tries to reach outside of the current Windows environment. But within the computer, there is a mix of authorization granted to the domain user, the service, and the Windows group
    SQLServerMSSQLUser$computername$MSSQLSERVER.
    The good news is that SQL Server Configuration Manager figures out all the stuff you need when you change the accounts. If you are a glutton for punishment, you can get an idea for how complicated this
    is by looking at the Denali documentation where I have tried to provide more specific information. (Note this is not the same as SQL Server 2008.) You can see it at:
    Configure Windows Service Accounts and Permissions
    http://msdn.microsoft.com/en-us/library/ms143504(SQL.110).aspx
    Rick Byham, Microsoft, SQL Server Books Online, Implies no warranty

  • What are alternatives for passing DB credentials to rwrun/rwclient command line instead of USERID parameter?

    What are alternatives for passing DB credentials to rwrun/rwclient command line instead of USERID parameter?
    As per application security, the DB details should be mentioned in command line.
    I am looking for alternatives which I can use?
    Please help.
    Regards
    Gaurav Anand

    If you want a database username/password for every user that runs a report, you need to include un/pw in the command.
    An option that you see quite often is that Reports use a general database user to run any report. In that case you can include the un/pw of this special user in the Key Map File:
    http://docs.oracle.com/cd/E17904_01/bi.1111/b32121/pbr_run013.htm#RSPUB23557
    Of course, in that case you need an application in front of the call to the report to check if the user is allowed to run the report. This is how most web applications work anyway: there is one database user, and application users are maintained in the application itself.
    Or you can use single sign on:
    http://docs.oracle.com/cd/E24269_01/doc.11120/e24479/pbr_sso002.htm#RSPUB23512

  • Error in Application log SCOM mgmt server 25934 Credentials are null for user

    Hi,   We recently started getting errors like the one shown below on one of our SCOM management servers.
    Any thoughts on what might be causing this and why this shows on a scom server.   There is no VMM stuff installed on this SCOM server.
    Thanks in advance.
    System
    Provider
    [ Name]
    Microsoft.SystemCenter.VirtualMachineManager.2012.Report.VMUsageCollection
    EventID
    25934
    [ Qualifiers]
    0
    Level
    2
    Task
    0
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2014-01-28T18:08:24.000000000Z
    EventRecordID
    287618
    Channel
    Application
    Computer
    XXXX
    Security
    EventData
    Credentials are null for user:
    Thanks Lance

    Hi,
    If agent is installed on the VMM server, it will collect the information and send it to SCOM server. The event indicates the SCOM agent tried to access the registry key that was included in the User Profile but failed.
    Please specify a local account or domain account as the SCOM action account for a test.
    Niki Han
    TechNet Community Support

  • Where can I find Firefox 7.0 to install? Is there a link maintained where all the firefox releases are available for users

    Hello Team,
    Is there a link maintained where all the firefox release and its patch are available for users to download & install

    You can get Firefox 7 here
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/7.0.1/
    buit its reccomend to use Firefox 8

  • My company loaded profiles onto my iPad for email and calendars.. There is also a signing certificate and a certificate. What are these for? Additionally are they able to monitor apps and usage, ie Internet usage when it is not on their wifi?

    My company loaded profiles onto my iPad for email and calendars.. There is also a signing certificate and a certificate. What are these for?
    Additionally are they able to monitor apps and usage, ie Internet usage when it is not on their wifi?
    I do not have any VPN enabled?

    Do you happen to have an Android?  If so and depending on what version there is a great data usage analyse tool built-in.  See if you can go to Settings -> Data Usage  from there you can pick a current or previous billing cycle and then use the vertical sliders to select a date range and it will filter the usage data per app to show you exactly what app(s) were using data during that time frame.

  • What are attributes for a row?

    What are attributes for a row?
    Are these the column names associated with the row?

    Attribute is the object-oriented term for an object's data holders. So attributes are analogous to columns in a table.
    Of course, attribute also has a couple of non-OO meanings. So the answer to your question really depends upon context.
    Cheers, APC

  • What are rule for adding names to photos?

    what are rule for adding names to photos in iphoto?

    Since your profile indicates you have a Mac, I am guessing you are asking how to add a face name using iPhoto on your Mac.
    You would open the photo in iPhoto, click "Info" on the bottom, and then the "Faces" tab on the right.
    Once you have added the face name in iPhoto on your Mac, once you sync the photo to your iPhone, the name will appear there as well.

  • HT2731 what are the apple id password requirements?

    what are the apple id password requirements?

    As I recall an Apple ID password is required to have:
    At least 8 characters.
    At least one character must be a letter.
    At least one character must be a capital letter.
    At least one character must be a number.
    No special characters except "_".

  • What are prerequisite for Design Studio Client tool behind firewall?

    Hi Experts,
    Can you tell me what are prerequisites for Design Studio Client tool behind firewall?
    Best Regards,
    Pushkar

    Hi Pushkar,
    In which 'mode' would you like to use the Design Studio Client application. Connected to the BI platform, SAP HANA, etc?
    With kind regards,
    Martijn

  • 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

  • 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

Maybe you are looking for

  • How do I use Google websites and LinkedIn on Firefox 14.0.1?

    I have just downloaded Firefox 14.0.1 on my pc which uses Windows 7, with the default settings. Everytime I try to use Google to signin into my account or goto Gmail, I get the following error message: "Firefox has detected that the server is redirec

  • Upgrading to OS Lion is the worst thing I ever did

    Having used Macs for many years, been through all the upgrades, and never had any significant problems, the update from SL to Lion has been a disaster! My late 2008 Macbook Pro freezes on a regular basis and it's not associated with a particular acti

  • How to print

    I have an old handspring Edge that I have all my info on. I need to print a 3rd party milage, Think DB ,Is there a software that will allow printing in hooked up to the desktop? Post relates to: Visor Edge This question was solved. View Solution.

  • Reading the contactlist without PIM ,RecordStore and APDU

    Hi, I was playing with a commercial midlet and i discovered something strange. The midlet does not import the contact list using PIM ,the recordstore functions or the APDU protocol! How is that possible? I tried for example to use the RecordStore.lis

  • Photoshop icons and menu sizes too small

    How do I make CS5 Photoshop in Windows 8 useable?  I cannot make the menu font and icons (like cropping tool) large enough to read and use.  I had our IT people fix the desktop icons (resolution, etc), but there appears to be no way to make Photoshop