Error while creating contact through API in Install Base

Hello
I am trying to create contacts when creating a install base through API...
I tried below code as per metalink note# 215456.1 and giving the below error. I checked setup andI have 'Ship To' exists in Instnace Party Account Relationsship setup in the aplication and also I have a party Id 1232890 exist in hz_parties table with party type as 'Person' and I passed contact_ip_id as instance_party_id from CSI_I_PARTIES table for the instance to be update...
Also, can anybody help me how to purge the error messages before calling the API, suppose if i have 2 records and all two records will error then my second record error getting contatenated with my first error and message count also getting increased(see error message below as message count coming as 2 even though there is only one error)
SET SERVEROUTPUT ON SIZE 1000000
DECLARE
p_instance_rec CSI_DATASTRUCTURES_PUB.INSTANCE_REC;
p_ext_attrib_values_tbl
CSI_DATASTRUCTURES_PUB.EXTEND_ATTRIB_VALUES_TBL;
p_party_tbl CSI_DATASTRUCTURES_PUB.PARTY_TBL;
p_account_tbl CSI_DATASTRUCTURES_PUB.PARTY_ACCOUNT_TBL;
p_pricing_attrib_tbl CSI_DATASTRUCTURES_PUB.PRICING_ATTRIBS_TBL;
p_org_assignments_tbl CSI_DATASTRUCTURES_PUB.ORGANIZATION_UNITS_TBL;
p_asset_assignment_tbl CSI_DATASTRUCTURES_PUB.INSTANCE_ASSET_TBL;
p_txn_rec CSI_DATASTRUCTURES_PUB.TRANSACTION_REC;
x_instance_id_lst CSI_DATASTRUCTURES_PUB.ID_TBL;
x_return_status VARCHAR2(2000);
x_msg_count NUMBER;
x_msg_data VARCHAR2(2000);
x_msg_index_out NUMBER;
t_output VARCHAR2(2000);
t_msg_dummy NUMBER;
BEGIN
p_party_tbl(1).instance_party_id := null;
p_party_tbl(1).instance_id := 1216497;
p_party_tbl(1).party_source_table := 'HZ_PARTIES';
p_party_tbl(1).party_id := 1232890;
p_party_tbl(1).relationship_type_code := 'Ship To';
p_party_tbl(1).contact_flag := 'Y';
p_party_tbl(1).contact_ip_id := 1699185;
x_msg_count := 0;
p_party_tbl(1).OBJECT_VERSION_NUMBER := 1;
-- Now call the stored program
csi_item_instance_pub.update_item_instance(
1.0,
'F',
'F',
1,
p_instance_rec,
p_ext_attrib_values_tbl,
p_party_tbl,
p_account_tbl,
p_pricing_attrib_tbl,
p_org_assignments_tbl,
p_asset_assignment_tbl,
p_txn_rec,
x_instance_id_lst,
x_return_status,
x_msg_count,
x_msg_data);
-- Output the results
if x_msg_count > 0
then
for j in 1 .. x_msg_count loop
fnd_msg_pub.get
( j
, FND_API.G_FALSE
, x_msg_data
, t_msg_dummy
t_output := ( 'Msg'
|| To_Char
( j
|| ': '
|| x_msg_data
dbms_output.put_line
( SubStr
( t_output
, 1
, 255
end loop;
end if;
dbms_output.put_line('x_return_status = '||x_return_status);
dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
dbms_output.put_line('x_msg_data = '||x_msg_data);
-- COMMIT;
END;
ERROR
SQL> @p
Msg1: The Party Relationship Type (Ship To) entered is either invalid or it does
not exist in the Installed Base Lookups
Msg2: The Party Relationship Type (Ship To) entered is either invalid or it does
not exist in the Installed Base Lookups
x_return_status = E
x_msg_count = 2
x_msg_data = The Party Relationship Type (Ship To) entered is either invalid or
it does not exist in the Installed Base Lookups
PL/SQL procedure successfully completed.

Hi
We are in 11.5.10.2 and I already checked notes which you sent before and setups are fine as the relationship type' Ship to' having 'contacts' enabled in the setup.
I am also seeing a differernt issue as once I update existing item instnace with the status 'Return for Credit' through API, system is not allowing me to update the extended attributes through front end application manually and I am seeing a note at the end of the screen as 'Note: This item instance cannot be updated. ' and this is only happening when I update the item instance status to 'Returned for Credit' not when I create new item instances with status as 'Created'. Is this intended functionality to restrict update on extended attributes if I change the status of item instnace to 'Return for Credit' ?
Thanks

Similar Messages

  • Getting Error while creating Project through API:PA_PROJECT_PUB.CREATE_PROJ

    Hi Gurus,
    I'm getting an error while creating a New project.
    My code looks like this:
    APPS.PA_PROJECT_PUB.CREATE_PROJECT
    (p_api_version_number => l_object_version_number --IN Parameter
    ,p_commit => l_commit --IN Parameter
    ,p_init_msg_list => l_init_msg_list --IN Parameter
    ,p_msg_count => l_msg_count --OUT Parameter
    ,p_msg_data => l_msg_data --OUT Parameter
    ,p_return_status => l_return_status --OUT Parameter
    ,p_workflow_started => l_workflow_started --OUT Parameter
    ,p_pm_product_code => g_pm_product_code --IN Parameter
    ,p_op_validate_flag => l_op_validate_flag --IN Parameter
    ,p_project_in => g_project_in --IN Parameter
    ,p_project_out => g_project_out --OUT Parameter
    ,p_tasks_in => g_task_in --IN Parameter
    ,p_tasks_out => g_task_out --OUT Parameter
    The out put params are: p_msg_count => 1
    p_return_status => E
    p_workflow_started => N
    g_project_out.pa_project_id => 170000000000000000000
    g_project_out.pa_project_number => ^
    g_task_out_rec.pa_task_id => 170000000000000000000
    End process record p_proj_insert => 1
    Resetting the task count variable
    when I checked the API code I found this:
    PA_INTERFACE_UTILS_PUB.G_PROJECt_ID := null; --bug 2471668 ( not in the project context )
    PA_PM_FUNCTION_SECURITY_PUB.check_function_security
    (p_api_version_number => p_api_version_number,
    p_responsibility_id => l_resp_id,
    p_function_name => 'PA_PM_CREATE_PROJECT',
    p_msg_count => l_msg_count,
    p_msg_data => l_msg_data,
    p_return_status => l_return_status,
    p_function_allowed => l_function_allowed
    . I think I am getting the error because of this.
    Now, question.
    Do I need to run the Create Project from a specific Responsibility?
    because when I ran the underlined query, I fpound the final status as 'N'.
    I'm a HR guy and PA is a new world for me. Any help will be appreciated.
    Thanks!!
    Viky

    You need to find any responsibility and userid that lets you create a project using the screen.
    And then in your code, you need to set your context to that resp/userid.
    Hope this helps
    Sandeep Gandhi

  • Error while creating project through import.wdl

    Hi
    We are having issues creating project using the import.wdl.
    We are able to create content administration and merchandising projects though.
    We are getting the following error while creating a programatic import project through import.wdl
    [12/8/13 23:26:27:259 CST] 00000021 SystemErr     R atg.workflow.WorkflowException: The inner project was not created. Check that your project workflow has been initialized by the workflow engine.
    [12/8/13 23:26:27:260 CST] 00000021 SystemErr     R  at atg.epub.project.ProcessHomeMethods.initializeProcess(ProcessHomeMethods.java:450)
    [12/8/13 23:26:27:260 CST] 00000021 SystemErr     R  at atg.epub.project._ProcessHome_Impl.initializeProcess(_ProcessHome_Impl.java:53)
    [12/8/13 23:26:27:260 CST] 00000021 SystemErr     R  at atg.epub.project._ProcessHome_ReposImpl.initializeProcess(_ProcessHome_ReposImpl.java:3)
    [12/8/13 23:26:27:260 CST] 00000021 SystemErr     R  at atg.epub.servlet.CreateProcessFormHandler.handleCreateProcess(CreateProcessFormHandler.java:380)
    We have checked all the workflow manager settings. The workflowProcessManager.xml is properly pointing to the system name and drp port.
    We had delete entries from
    epub_wf_server_id
    epub_coll_workflow
    epub_workflow_info
    dss_server_id
    dsi_server_id
    upon enabling the logdebugs of WorkFlowProcesManager, we are seeing the following debugs.
    [12/8/13 23:31:08:101 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager received message on port IndividualEvents message: ObjectMessage()
    [12/8/13 23:31:08:101 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager [message]: received an individual event message StartWorkflowMessage[messageId=96000003subjectId=prc272003,subjectType=process,processName=/Commerce/import.wdl,segmentName=main,user=user : admin null] of type atg.workflow.StartWorkflow
    [12/8/13 23:31:08:101 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager [message]: created individual execution context ProcessExecutionContextImpl[individual,subject=process:prc272003,messageType=atg.workflow.StartWorkflow,message=StartWorkflowMessage[messageId=96000003subjectId=prc272003,subjectType=process,processName=/Commerce/import.wdl,segmentName=main,user=user : admin null],sessionId=Tw-Yr5CQqqkADS3q8MadASz,parentSessionId=Tw-Yr5CQqqkADS3q8MadASz,request=atg.servlet.DynamoHttpServletRequest@1009990707,response=atg.servlet.DynamoHttpServletResponse@3c9e3c9e]
    [12/8/13 23:31:08:103 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager [message]: 0 individual instances found for subject process:prc272003
    [12/8/13 23:31:08:103 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager [message]: going through process segments registered for type atg.workflow.StartWorkflow for subject process:prc272003

    If you have a support contract with Orcale you can find out hoe to fix this error by checking out Knowledge Article 1038072.1 How to troubleshoot "atg.workflow.WorkflowException: The inner project was not created. Check that your project workflow has been initialized by the workflow engine."
    The article says you should:
    1.
    delete from epub_wf_server_id
    delete from epub_coll_workflow
    delete from epub_workflow_info
    restart server and retest
    2. If problem exists check that you have configured the Workflow Process Editor Server correctly.
    The problem is that probably the workflow has not been not been initialized correctly by the Workflow Editor Server.

  • Error while creating contact person

    Hi While creating contact person in customer master data
    I am getting the message Partner XXXXXX is not assigned to a partner function?
    What might be the possible reason,
    Thanks in advance
    Regards
    Jai

    Hi jaigss,
    Please check the below threads,
    Getting a "Business partner not found with partner function type requester"://Re: Partner function not found
    Approver Can replaced by Requestor..
    Thanks,
    Swamy H P

  • ERROR WHILE CREATING XD01 THROUGH WORKFLOE IN BACKGROUND

    HI,
    I am facing problem while creating xd01 in background.
    actually i have created method in workflow in mehhod i am using Z function module
    with following  xd01 recoding code with workflow method is foreground it is working fine
    if workflow method (Task set background) is giving error like
    MSGTYP 00.  MSGID 255    Fieldname          kna1-lifnr            in  BDCMSGCOll
    please reply me as soon as possible
    perform bdc_dynpro      using 'SAPMF02D' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'USE_ZAV'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RF02D-BUKRS'
                                   it_customer-bukrs.                    ""'1000'.
    perform bdc_field       using 'RF02D-VKORG'
                                   it_customer-vkorg.                      ""'1000'.
    perform bdc_field       using 'RF02D-VTWEG'
                                   it_customer-VTWEG .                     ""'20'.
    perform bdc_field       using 'RF02D-SPART'
                                   it_customer-spart .                      ""'30'.
    perform bdc_field       using 'RF02D-KTOKD'
                                  it_customer-KTOKD.                       ""'ZD01'.
    perform bdc_field       using 'USE_ZAV'
                                 it_customer-check . ""'X'.
                                    'X'.
    perform bdc_dynpro      using 'SAPMF02D' '0111'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'SZA1_D0100-SMTP_ADDR'.
    perform bdc_field       using 'SZA1_D0100-TITLE_MEDI'
                                   it_customer-ANRED.                    ""'Company'.
    perform bdc_field       using 'ADDR1_DATA-NAME1'
                                  it_customer-name1 .                         ""'NAME 1'.
    perform bdc_field       using 'ADDR1_DATA-NAME2'
                                    it_customer-name2.                                         ""NAME 2'.
    perform bdc_field       using 'ADDR1_DATA-SORT1'
                                   it_customer-SORT1.
                                                                      "" 'TEST DATA'.
    perform bdc_field       using 'ADDR1_DATA-STR_SUPPL1'
                                   it_customer-STR_SUPPL1.           ""'STREET 2'.
    perform bdc_field       using 'ADDR1_DATA-STR_SUPPL2'
                                  it_customer-STR_SUPPL2 .          "" STREET 3'.
    perform bdc_field       using 'ADDR1_DATA-STREET'
                                  it_customer-STREET.                  "'STREET 1'.
    *perform bdc_field       using 'ADDR1_DATA-STR_SUPPL3'
                                  it_customer-STR_SUPPL3.                 ""'STREET 4'.
    perform bdc_field       using 'ADDR1_DATA-POST_CODE1'
                                    it_customer-POST_CODE1.                        ""'400055'.
    perform bdc_field       using 'ADDR1_DATA-CITY1'
                                    it_customer-CITY1.                              ""'mumbai'.
    perform bdc_field       using 'ADDR1_DATA-COUNTRY'
                                   it_customer-country.  ""'IN'.
    perform bdc_field       using 'ADDR1_DATA-REGION'
                                    it_customer-region.                                      ""'13'.
    *perform bdc_field       using 'ADDR1_DATA-TIME_ZONE'
                                  it_customer-TIME_ZONE.                                      ""'INDIA'.
    perform bdc_field       using 'ADDR1_DATA-TRANSPZONE'
                                   it_customer-TRANSPZONE.        ""'201300'.
    perform bdc_field       using 'ADDR1_DATA-LANGU'
                                  it_customer-langu.                   "   'EN'.
    perform bdc_field       using 'SZA1_D0100-TEL_NUMBER'
                                   it_customer-TEL_NUMBER.            "'022-677623420'.
    perform bdc_field       using 'SZA1_D0100-MOB_NUMBER'
                                  it_customer-MOB_NUMBER.                                    ""'9867936636'.
    perform bdc_field       using 'SZA1_D0100-FAX_NUMBER'
                                   it_customer-FAX_NUMBER.                                   ""'022-67768877'.
    perform bdc_field       using 'SZA1_D0100-SMTP_ADDR'
                                   it_customer-SMTP_ADDR.                                         
    perform bdc_dynpro      using 'SAPMF02D' '0120'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNA1-LIFNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=OPFI'.
    perform bdc_dynpro      using 'SAPLJ1I_MASTER' '0200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=CIN_CUSTOMER_FC2'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'J_1IMOCUST-J_1IEXCICU'.
    perform bdc_field       using 'J_1IMOCUST-J_1IEXCD'
                                  it_customer-J_1IEXCD. ""'AAACW6074DXD001'.
    perform bdc_field       using 'J_1IMOCUST-J_1IEXRN'
                                   it_customer-J_1IEXrn.                          "" 'AAACW6074DXD001'.
    perform bdc_field       using 'J_1IMOCUST-J_1IEXRG'
                                  ""'KALYAN'.
                                   it_customer-j_1iexrg.
    perform bdc_field       using 'J_1IMOCUST-J_1IEXDI'
                                   it_customer-j_1iexdi.
                                                             ""'IV'.
    perform bdc_field       using 'J_1IMOCUST-J_1IEXCO'
                                    it_customer-J_1IEXCO.                       "" 'ADDJCK'.
    perform bdc_field       using 'J_1IMOCUST-J_1IEXCICU'
                                   it_customer-J_1IEXCICU.  ""'1'.
    perform bdc_dynpro      using 'SAPLJ1I_MASTER' '0200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=CIN_CUSTOMER_FC3'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'J_1IMOCUST-J_1ISERN'.
    perform bdc_field       using 'J_1IMOCUST-J_1ICSTNO'
                                  it_customer-J_1ICSTNO.   "" 'CSTV123983E4B'.
    perform bdc_field       using 'J_1IMOCUST-J_1ILSTNO'
                                    it_customer-J_1IlSTNO. ""'LST93U4R983FC'.
    perform bdc_field       using 'J_1IMOCUST-J_1ISERN'
                                  it_customer-J_1ISERN.     ""'AADDK388494M'.
    perform bdc_dynpro      using 'SAPLJ1I_MASTER' '0200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BACK'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'J_1IMOCUST-J_1IPANNO'.
    perform bdc_field       using 'J_1IMOCUST-J_1IPANNO'
                                   it_customer-J_1IPANNO.
                                  ""'PAND883322M'.
    perform bdc_dynpro      using 'SAPMF02D' '0120'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNA1-LIFNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'KNA1-LIFNR'
                                   it_customer-lifnr. ""'100000'.
    perform bdc_dynpro      using 'SAPMF02D' '0125'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNA1-KUKLA'.
    perform bdc_field       using 'BDC_OKCODE'
                                    '=ENTR' .          "" '/00'.
    perform bdc_field       using 'KNA1-KUKLA'
                                   it_customer-KUKLA. ""'02'.
    perform bdc_dynpro      using 'SAPMF02D' '0130'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNBK-BANKS(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_dynpro      using 'SAPMF02D' '0340'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02D-KUNNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_dynpro      using 'SAPMF02D' '0370'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02D-KUNNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_field       using 'KNA1-CIVVE'
                                 it_customer-CIVVE.""'X'.
                                     'X'.
    perform bdc_dynpro      using 'SAPMF02D' '0360'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNVK-NAMEV(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    IF ( it_customer-KTOKD <> 'ZD02' ) .
    perform bdc_dynpro      using 'SAPMF02D' '0210'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNB1-FDGRV'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'KNB1-AKONT'
                                 it_customer-akont."" '213002'.
    perform bdc_field       using 'KNB1-ZUAWA'
                                  it_customer-ZUAWA.""'001'.
    perform bdc_field       using 'KNB1-FDGRV'
                                  it_customer-FDGRV. ""'E2'.
    perform bdc_dynpro      using 'SAPMF02D' '0215'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNB1-ZWELS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'KNB1-ZTERM'
                                 it_customer-ZTERM.""'0001'.
    perform bdc_field       using 'KNB1-ZWELS'
                                   it_customer-ZWELS. ""'C'.
    perform bdc_dynpro      using 'SAPMF02D' '0220'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNB5-MAHNA'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPMF02D' '0230'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNB1-VRSNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPMF02D' '0610'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02D-KUNNR'.
    ENDIF.
    perform bdc_dynpro      using 'SAPMF02D' '0310'.
    perform bdc_field       using 'BDC_CURSOR'
                                   'KNVV-VERSG'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    *perform bdc_field       using 'KNVV-AWAHR'
                                 it_customer-awahr.  ""'100'.
    perform bdc_field       using 'KNVV-VKBUR'
                                   it_customer-vkbur.  ""'1000'.
    perform bdc_field       using 'KNVV-WAERS'
                                   it_customer-WAERS.                   ""'INR'.
    perform bdc_field       using 'KNVV-KALKS'
                                  it_customer-KALKS.  "'1'.
    perform bdc_field       using 'KNVV-VERSG'
                                  it_customer-VERSG.
                                                            ""'1'.
    perform bdc_dynpro      using 'SAPMF02D' '0315'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNVV-VSBED'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'KNVV-LPRIO'
                                 it_customer-LPRIO.  "'1'.
    perform bdc_field       using 'KNVV-KZAZU'
                                  it_customer-KZAZU.""'X'.
                                    'X'.
    perform bdc_field       using 'KNVV-VSBED'
                                  it_customer-VSBED.""'20'.
    perform bdc_field       using 'KNVV-ANTLF'
                                 it_customer-ANTLF. ""'9'.
                                   '9'.
    if ( it_customer-ktoKd <> 'ZD02' and it_customer-ktoKd <> 'ZD01' ).
    perform bdc_dynpro      using 'SAPMF02D' '0320'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNVV-INCO2'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTS'.
    perform bdc_field       using 'KNVV-INCO1'
                                 it_customer-INCO1." 'CIF'.
    perform bdc_field       using 'KNVV-INCO2'
                                  it_customer-INCO2. "" 'mumbai'.
    perform bdc_field       using 'KNVV-ZTERM'
                                  it_customer-ZTERM. ""'0001'.
    perform bdc_field       using 'KNVV-KKBER'
                                  it_customer-kkber.""'1000'.
    ENDIF.
    if it_customer-ktokd <> 'ZD04'.
      perform bdc_dynpro      using 'SAPMF02D' '0320'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNVV-INCO2'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTS'.
    perform bdc_field       using 'KNVV-INCO1'
                                 it_customer-INCO1." 'CIF'.
    perform bdc_field       using 'KNVV-INCO2'
                                  it_customer-INCO2. "" 'mumbai'.
    perform bdc_field       using 'KNVV-ZTERM'
                                  it_customer-ZTERM. ""'0001'.
    perform bdc_field       using 'KNVV-KKBER'
                                  it_customer-kkber.""'1000'.
    perform bdc_dynpro      using 'SAPMF02D' '1350'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNVI-TAXKD(03)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
      DATA : FNAM(20) TYPE C,
           IDX(2)      TYPE C.
      MOVE 1 TO IDX.
    loop at gt_tax where kunnr = it_customer-kunnr.
    CONCATENATE 'KNVI-TAXKD(' '0' IDX ')' INTO FNAM.
    perform bdc_field       using FNAM
                           GT_TAX-TAXKD.
    idx = idx + 1.
    ENDLOOP.
    ENDIF.
    perform bdc_dynpro      using 'SAPMF02D' '1350'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02D-KUNNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_dynpro      using 'SAPMF02D' '0324'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'KNVP-PARVW(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    CALL TRANSACTION C_XD01 USING IT_BDCDATA
         OPTIONS FROM x_options
                             mode  C_MODE
                          update  C_UPDATE
                         MESSAGES INTO IT_BDCMSGCOLL.
    regards,
    K.satyanarayana

    Hi
    We are in 11.5.10.2 and I already checked notes which you sent before and setups are fine as the relationship type' Ship to' having 'contacts' enabled in the setup.
    I am also seeing a differernt issue as once I update existing item instnace with the status 'Return for Credit' through API, system is not allowing me to update the extended attributes through front end application manually and I am seeing a note at the end of the screen as 'Note: This item instance cannot be updated. ' and this is only happening when I update the item instance status to 'Returned for Credit' not when I create new item instances with status as 'Created'. Is this intended functionality to restrict update on extended attributes if I change the status of item instnace to 'Return for Credit' ?
    Thanks

  • Error while creating hierarchy through " Create Hierarchy field" option

    Hi All,
    while trying to create hierarchy through Create Hierarchy field option i am facing the following error
    I am giving the following inputs
    Hierarchy field name : XYZ
    Parent field                : Level1
    Child Field                  : Level2
    Node name field        : Level3
    Cannot find the parent ID value "abc" in Field ID Level2 of Table " Hierarchy"
    FYI
    The source hierarchy is in Columns format with Level1(Parent)---->Lever2(Child of Level1) and Level3(Child of level2)
    Kindly guide me where i am going wrong
    Thanks in Advance
    Regards
    Sharma

    Hi Sharma,
    Your input file should have 3 columns for hierarchy one which will store level 1 information,2nd will have corresponding level 2 information and 3rd will have corresponding level 3 info.
    Now in Import Manager go to Partition,select 1st ,2nd and 3rd column.Donot combine the fields. Now map the partition fields with the target hierarchy field.Perform the value mapping and import.
    Or
    YOu can have one column in the excel file.with values L1>L2>L3(split by some delimiter).
    In import manager go to source hierechy pany select the Column and from context menu select option split into hierechy as per the delimiter.
    Now map the parttion field and target field ,do value mapping and import.
    Regards,
    Neethu Joy

  • Error while creating delivery through VL01N

    Hi
    The material master availability check group for plant 1001 is 02 (field MARC-MTVFP) and delivery plant as 1002 (different plant) .So while creating sales order automatically it picks plant 1002 and populate VBAP-WERKS field.  There is no stock or production order or PO. So availability check is showing 0 qty.  Now while creating outbound delivery via VL01N it is throwing error  "Order cannot be delivered (see long text) Message no. VL461".
    Now when I create a new sales order line item and change the plant to 1001 manually and try to create delivery, it is not giving any error and allowing me to proceed. In this plant too there is no stock or prodcution order or PO (exactly same as in plant 1002, during avalibility check qty is 0). So when a system suggested plant is changed in VA02 why VL01N transaction is not checking for availability and giving any error?
    Pls suggest
    Thanks

    Hi
    Kindly check the belwo points
    1. check the  item category  for the line item.
    2.  When you change the plant kindly cloick on availabilty and deliver the order
    3. Check the availablity check  field mainatined in  both the plants in the material master sales org/plant data
    4. Check the schedule line data for both the plants in the sales order
    Regards
    Damu

  • Error while creating asset through AS91

    Hi All,
    When i am trying to create asset through AS91 for a new company i am getting error AY 252 " Current fiscal year 2007 has to be after transfer daet 31.12.2007. In this company the Asset accounting has been recently customised but when i am trying for the upload of asset master data i am getting the above given error.
    Please tell what should be done to remove this error.
    Thanks & regards,
    Prachi

    Check the transfer date for asst data transfer...make sure the current fiscal yr is after the transfer date
    Asset accounting>Asset data transfer>Parameters for data transfer>date specifications>Specify transfer date/last closed fiscal yr.

  • FELX-SSV EXCEPTION Error while creating SIT through concurrent program

    I am trying to create an SIT through concurrent program using API with all hard coded values for all API parameters, I am getting FLEX-SSV Exception error but the same code is working fine in TOAD.
    Procedure :-
    CREATEORREPLACEPROCEDURE XX_ABSENCE_TEST
    P_ERR_BUF OUTVARCHAR2,
    P_RETCODE OUTNUMBER
    IS
    L_ANALYSIS_CRITERIA_ID        NUMBER;
    L_OUT_PERSON_ANALYSIS_ID      NUMBER;
    L_PEA_OBJECT_VERSION_NUMBER   NUMBER;
    L_ERR_MESG varchar2(3000);
    BEGIN
    INSERTINTOXX_DEBUGVALUES('Starting',0,0);
    HR_SIT_API.CREATE_SIT
    (P_VALIDATE                       =>FALSE,
    P_PERSON_ID                      =>59021,
    P_BUSINESS_GROUP_ID              =>3036,
    P_ID_FLEX_NUM                    =>50320,
    P_EFFECTIVE_DATE                 =>'02-APR-15',
    P_DATE_FROM                      =>'02-APR-15',
    P_SEGMENT1                       =>'Annual Leave',
    P_SEGMENT3                       =>'02-APR-15',
    P_SEGMENT5                       =>'05-APR-15',
    P_SEGMENT10                      =>59021,--I.PERSON_ID,
    P_SEGMENT15                      =>'02-APR-15',
    P_ANALYSIS_CRITERIA_ID           => L_ANALYSIS_CRITERIA_ID,
    P_PERSON_ANALYSIS_ID             => L_OUT_PERSON_ANALYSIS_ID,
    P_PEA_OBJECT_VERSION_NUMBER      => L_PEA_OBJECT_VERSION_NUMBER
    INSERTINTOXX_DEBUGVALUES('Created',NULL,NULL);
    COMMIT;
    EXCEPTION
    WHENOTHERSTHEN
    L_ERR_MESG :=
                                 L_ERR_MESG || SUBSTR(SQLERRM,1,250)
                                 || CHR(10);
    INSERTINTOXX_DEBUGVALUES('Exception',L_ERR_MESG,NULL);
    commit;
    END;
    Regards,
    Pradeep

    It looks like more of an issue with connecting to essbase, usually "java.lang.UnsatisfiedLinkError: no HspEssbaseEnv in java.library.path" means planning has not been installed or deployed correctly, what OS is it running on?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error while creating Project using API - PA_PROJECT_PUB.CREATE_PROJECT

    I am working on Projects conversion and currently trying to create a project using the API.
    I have recetified all the errors it was giving and struck at 1 error. please find the error message below.
    "You have submitted invalid parameters to this process, preventing its successful completion. Please contact your system administrator."
    It gives me this error and I was not able to know the cause for this error. Please let me know how to bypass this error and go ahead with projects conversion???
    Attached below is my package:
    Thanks,
    Kesava
    =====================================================================================================================
    CREATE OR REPLACE PACKAGE xxbwp.xxbwp_pa_proj_conv_pkg AUTHID CURRENT_USER
    IS
         PROCEDURE xxbwp_pa_proj_conv_proc(errbuf           OUT      VARCHAR2
                             ,retcode           OUT      VARCHAR2);
    END xxbwp_pa_proj_conv_pkg;
    CREATE OR REPLACE PACKAGE BODY xxbwp.xxbwp_pa_proj_conv_pkg
    IS
         PROCEDURE xxbwp_pa_proj_conv_proc(errbuf           OUT      VARCHAR2
                             ,retcode           OUT      VARCHAR2)
         IS
    v_data VARCHAR2(2000);
    v_index_out NUMBER;
         v_msg_count               NUMBER;
         v_msg_data               VARCHAR2(2000);
         v_return_status               VARCHAR2(1);
         v_api_version_number          NUMBER          :=     1.0;
         v_commit               VARCHAR2(1)     :=     apps.fnd_api.g_false;
         v_init_msg_list               VARCHAR2(1)     :=      apps.fnd_api.g_false;
         v_workflow_started          VARCHAR2(1)      :=      'Y';
         v_pm_product_code          VARCHAR2(30)      :=      NULL;
         v_op_validate_flag          VARCHAR2(1)      :=      'Y';
         v_project_in               apps.pa_project_pub.project_in_rec_type;
         v_project_out               apps.pa_project_pub.project_out_rec_type;
         v_customers_in               apps.pa_project_pub.customer_tbl_type;
         v_key_members               apps.pa_project_pub.project_role_tbl_type;
         v_class_categories          apps.pa_project_pub.class_category_tbl_type;
         v_tasks_in               apps.pa_project_pub.task_in_tbl_type;
         v_tasks_in_rec apps.pa_project_pub.task_in_rec_type;
    v_tasks_out               apps.pa_project_pub.task_out_tbl_type;
         v_org_roles               apps.pa_project_pub.project_role_tbl_type;
         v_structure_in               apps.pa_project_pub.structure_in_rec_type;
         v_ext_attr_tbl_in          apps.pa_project_pub.pa_ext_attr_table_type;
         v_deliverables_in          apps.pa_project_pub.deliverable_in_tbl_type;
         v_deliverable_actions_in     apps.pa_project_pub.action_in_tbl_type;
    -- Variables declaration related to project_in_rec_type
    l_pm_project_reference VARCHAR2(25);
    l_pa_project_id NUMBER;
    l_pa_project_number VARCHAR2(25);
    l_segment1 VARCHAR2(25);
    l_project_name VARCHAR2(30);
    l_description VARCHAR2(250);
    l_long_name VARCHAR2(240);
    l_department_mapping VARCHAR2(50);
    l_department_mapping_c VARCHAR2(50);
    l_department_mapping_e VARCHAR2(50);
    l_created_from_project_id NUMBER;
    l_carrying_out_organization_id NUMBER;
    l_proj_start_date DATE;
    l_completion_date DATE;
    l_temp_project_type VARCHAR2(30);
    l_company_id VARCHAR2(10);
    l_company_id_c VARCHAR2(10);
    l_company_id_e VARCHAR2(10);
    l_proj_type VARCHAR2(30);
    l_cnt NUMBER := 0;
    l_task_cnt NUMBER := 0;
    l_responsibility_id NUMBER;
    l_application_id NUMBER;
    l_user_id NUMBER;
    l_global_info_msg_count NUMBER;
    l_global_info_msg_data VARCHAR2(2000);
    l_global_info_return_status VARCHAR2(1);
    CURSOR C1 IS
    SELECT *
    FROM xxbwp.xxbwp_pa_proj_conv_tbl
    WHERE proj_type = 'STORAGE';
    begin
    FOR C1_REC in C1
    LOOP
    SELECT APPS.pa_projects_s.nextval
    INTO l_pa_project_id
    FROM DUAL;
    BEGIN
    SELECT description
                   INTO     l_proj_type
                   FROM apps.fnd_lookup_values
                   WHERE lookup_type = 'BWP_PROJECT_TYPES_LKP'
                   AND     lookup_code = C1_REC.proj_type
                   AND     1 = 1;
    END;
    BEGIN
    SELECT project_id, project_type, carrying_out_organization_id
    INTO l_created_from_project_id, l_temp_project_type, l_carrying_out_organization_id
    FROM apps.pa_projects_all
    WHERE project_type = l_proj_type
    AND template_flag = 'Y';
    END;
    BEGIN
    SELECT rt.responsibility_id, rt.application_id
    INTO l_responsibility_id, l_application_id
    FROM apps.fnd_responsibility_tl rt
    WHERE rt.responsibility_name = 'BWP PA Projects Superuser';
    EXCEPTION WHEN OTHERS THEN
    RETURN;
    END;
    BEGIN
    SELECT u.user_id
    INTO l_user_id
    FROM APPS.fnd_user u
    WHERE u.user_name = 'CHUNDURK';
    EXCEPTION WHEN OTHERS THEN
    RETURN;
    END;
    -- Set the environment
    APPS.pa_interface_utils_pub.set_global_info
    (p_api_version_number => 1.0
    ,p_responsibility_id => l_responsibility_id
    ,p_user_id => l_user_id
    ,p_resp_appl_id => l_application_id
    ,p_msg_count => l_global_info_msg_count
    ,p_msg_data => l_global_info_msg_data
    ,p_return_status => l_global_info_return_status);
    --Assign values to project_in_rec_type
    v_project_in.pm_project_reference := C1_REC.PROJ_NUM;
    v_project_in.pa_project_id := l_pa_project_id;
    v_project_in.pa_project_number := C1_REC.PROJ_NUM;
    v_project_in.project_name := C1_REC.PROJ_NAME;
    v_project_in.description := NULL;
    v_project_in.long_name := C1_REC.PROJ_LONG_NAME;
    v_project_in.created_from_project_id := l_created_from_project_id;
    v_project_in.carrying_out_organization_id := l_carrying_out_organization_id;
    v_project_in.start_date := C1_REC.trans_start_date;
    v_project_in.completion_date := C1_REC.trans_end_date;
    v_project_in.scheduled_start_date := C1_REC.trans_start_date;
    v_project_in.scheduled_finish_date := C1_REC.trans_end_date;
    v_project_in.project_status_code := 'APPROVED';
    FOR x IN (SELECT person_id, project_role_type, start_date_active, end_date_active
    FROM apps.pa_project_players
    WHERE project_id = 262)
    LOOP
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,'PERSON ID '||x.person_id);
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,'PROJECT ROLE TYPE '||x.project_role_type);
    l_cnt := l_cnt + 1;
    v_key_members(l_cnt).person_id := x.person_id;
    v_key_members(l_cnt).project_role_type := x.project_role_type;
    v_key_members(l_cnt).start_date := x.start_date_active;
    v_key_members(l_cnt).end_date := x.end_date_active;
    END LOOP;
    -- Retrieving and assigning tasks from template to a project
    FOR x IN (SELECT task_id, parent_task_id, task_name, long_task_name, task_number, description,
    billable_flag, cint_eligible_flag, chargeable_flag
    FROM apps.pa_tasks t
    WHERE t.project_id = l_created_from_project_id
    START WITH parent_task_id IS NULL CONNECT BY PRIOR task_id = parent_task_id)
    LOOP
    l_task_cnt := l_task_cnt + 1;
    v_tasks_in_rec.pm_task_reference := x.task_id;
    v_tasks_in_rec.task_name := x.task_name;
    v_tasks_in_rec.long_task_name := x.long_task_name;
    v_tasks_in_rec.pa_task_number := x.task_number;
    v_tasks_in_rec.task_description := x.description;
    v_tasks_in_rec.task_start_date := C1_REC.trans_start_date;
    v_tasks_in_rec.task_completion_date := C1_REC.trans_end_date;
    v_tasks_in_rec.scheduled_start_date := C1_REC.trans_start_date;
    v_tasks_in_rec.scheduled_finish_date := C1_REC.trans_end_date;
    v_tasks_in_rec.pm_parent_task_reference := x.parent_task_id;
    v_tasks_in_rec.billable_flag := x.billable_flag;
    v_tasks_in_rec.cint_eligible_flag := x.cint_eligible_flag;
    v_tasks_in_rec.chargeable_flag := x.chargeable_flag;
    v_tasks_in_rec.tasks_dff := 'Y';
    v_tasks_in_rec.attribute1 := l_pa_project_id;
    v_tasks_in(l_task_cnt) := v_tasks_in_rec;
    END LOOP;
    v_class_categories(0).class_category := 'Reimbursable';
    v_class_categories(0).class_code := 'No';
    APPS.FND_MSG_PUB.initialize;
    apps.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_op_validate_flag => v_op_validate_flag
    ,p_project_in => v_project_in
    ,p_project_out => v_project_out
    ,p_customers_in => v_customers_in
    ,p_key_members => v_key_members
    ,p_class_categories => v_class_categories
    ,p_tasks_in => v_tasks_in
    ,p_tasks_out => v_tasks_out
    ,p_org_roles => v_org_roles
    ,p_structure_in => v_structure_in
    ,p_ext_attr_tbl_in => v_ext_attr_tbl_in
    ,p_deliverables_in => v_deliverables_in
    ,p_deliverable_actions_in => v_deliverable_actions_in
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_return_status||' '||v_msg_count);
    IF v_msg_count > 0 THEN
    FOR i in 1 .. v_msg_count
    LOOP
    apps.pa_interface_utils_pub.get_messages
    (p_encoded => 'F'
    ,p_msg_count => v_msg_count
    ,p_msg_index => i
    ,p_msg_data => v_msg_data
    ,p_data => v_data
    ,p_msg_index_out => v_index_out);
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
    END LOOP;
    END IF;
    END LOOP;
    end xxbwp_pa_proj_conv_proc;
    end xxbwp_pa_proj_conv_pkg;
    show errors;
    Edited by: user644005 on Sep 11, 2009 11:02 AM

    Hi Kesava,
    I notice that in the package you used the application user_name=CHUNDUK calls the API pa_project_pub.create_project.
    I wonder if you used chunduk as database user to execute the package Or you used APPS to execute the package?
    The APi document states that it is a requirement to create a db username as the same name with the application username.
    I have been running the problem to execute API 's delete project and try to figure what could be my problem.
    TIA

  • Error while creating database instance during PI instalation

    Hi Team,
    I am in the installation phase of SAP PI with MAXDB as back end.In the
    phase "create database instance" i am facing the following issue
    "An error occurred while processing option SAP EHP1 for SAP NetWeaver
    PI/Mobile/Banking 7.1 > MaxDB > SAP Systems > Process Integration >
    Standard System > Standard System( Last error reported by the step:
    Error during execution of command identifier 'ACTIVATE'"
    Can you help me in resolving this issue at the earliest.Also i have attached
    the sapinst_dev log filke in this incident along with the
    error screenshot
    Thanks,
    Satheesh E

    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-08 16:31:08.874 [syxxcnode.cpp:425]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/__instana_tmp.1.xml, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/__instana_tmp.xml to C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/__instana_tmp.1.xml
    INFO       2014-09-08 16:31:08.905 [synxcpath.cpp:799]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW711\ADA\INSTALL\STD\AS\__instana_tmp.xml.
    TRACE      2014-09-08 16:31:10.796 [cstatisticmanager.cpp:2241]
               CStatisticManager::writeInstallationSlanaFile_Intern
    TRACE      2014-09-08 16:31:10.811 [syxxcfile.cpp:85]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/instslana.1.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const 
               lib=syslib module=syslib
    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-08 16:31:10.811 [syxxcnode.cpp:425]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/instslana.1.xml, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/instslana.xml to C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/instslana.1.xml
    INFO       2014-09-08 16:31:10.811 [synxcfile.cpp:149]
               CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
               lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\NW711\ADA\INSTALL\STD\AS\instslana.xml.
    INFO       2014-09-08 16:31:10.811 [synxcpath.cpp:799]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW711\ADA\INSTALL\STD\AS\instslana.xml.
    TRACE      2014-09-08 16:31:10.889
    SAPInst calls the LogInquirer. The output of the LogInquirer can be found in file sapinst_loginquirer.log.
    TRACE      2014-09-08 16:31:15.669 [iaxxgenimp.cpp:638]
                CGuiEngineImp::showMessageBox()
    <html> <head> </head> <body> <p> An error occurred while processing option <i>SAP EHP1 for SAP NetWeaver PI/Mobile/Banking 7.1 > MaxDB > SAP Systems > Process Integration > Standard System > Standard System( Last error reported by the step: Error during execution of command identifier 'ACTIVATE' : <DBMException -24988 ERR_SQL SQL error
    -2014,Identifier too long>)</i>. You can now: </p> <ul> <li> Choose <i>Retry</i><br>to repeat the current step. </li> <li> Choose <i>Log Files</i><br>to get more information about the error. </li> <li> Stop the option and continue later. </li> </ul> <p> Log files are written to C:\Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS. </p> </body></html>
    TRACE      2014-09-08 16:31:15.669 [iaxxgenimp.cpp:1031]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    INFO       2014-09-08 16:31:19.434 [sixxcstepexecute.cpp:1002]
    An error occurred and the user decided to retry the current step: &quot;|NW_Doublestack_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|onehost|0|NW_CreateDBandLoad|ind|ind|ind|ind|createdbandload|0|NW_CreateDB|ind|ind|ind|ind|createdb|0|NW_ADA_DB|ind|ind|ind|ind|nw_ada_db|0|SdbPreInstanceDialogs|ind|ind|ind|ind|preinstance_dialogs|0|SdbInstanceDialogs|ind|ind|ind|ind|instance_dialogs|0|SDB_INSTANCE_CREATE|ind|ind|ind|ind|instance_create|0|sdb_instance_activate&quot;.
    INFO       2014-09-08 16:31:19.450 [synxccuren.cpp:887]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS)
               lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS.
    TRACE      2014-09-08 16:31:19.465 [syxxcfile.cpp:85]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/stepLogMessages.2.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const 
               lib=syslib module=syslib
    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-08 16:31:19.465 [syxxcnode.cpp:425]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/stepLogMessages.2.xml, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/stepLogMessages.xml to C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS/stepLogMessages.2.xml
    TRACE      2014-09-08 16:31:19.497
    Instantiating new NWUsageTypeBasic
    TRACE      2014-09-08 16:31:19.497
    NWUsageTypeBasic() done
    TRACE      2014-09-08 16:31:19.497
      Call block: SDB_INSTANCE_CREATE_ind_ind_ind_ind
        function: SDB_INSTANCE_CREATE_ind_ind_ind_ind_PreStepPhase_sdb_instance_activate_Preprocess
    is validator: false
    TRACE      2014-09-08 16:31:19.543 [sixxcstepexecute.cpp:839]
    Execution of preprocess block of |NW_Doublestack_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|onehost|0|NW_CreateDBandLoad|ind|ind|ind|ind|createdbandload|0|NW_CreateDB|ind|ind|ind|ind|createdb|0|NW_ADA_DB|ind|ind|ind|ind|nw_ada_db|0|SdbPreInstanceDialogs|ind|ind|ind|ind|preinstance_dialogs|0|SdbInstanceDialogs|ind|ind|ind|ind|instance_dialogs|0|SDB_INSTANCE_CREATE|ind|ind|ind|ind|instance_create|0|sdb_instance_activate returns TRUE
    TRACE      2014-09-08 16:31:19.575
    Instantiating new NWUsageTypeBasic
    TRACE      2014-09-08 16:31:19.575
    NWUsageTypeBasic() done
    TRACE      2014-09-08 16:31:19.575
      Call block: SDB_INSTANCE_CREATE_ind_ind_ind_ind
        function: SDB_INSTANCE_CREATE_ind_ind_ind_ind_PreStepPhase_sdb_instance_activate
    is validator: false
    TRACE      2014-09-08 16:31:19.621
    WorkDir: C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS
    TRACE      2014-09-08 16:31:19.621
    SdbOperations.callSdbCmdJar() Use java home : C:/Users/EGSAPI~1/AppData/Local/Temp/sapinst_exe.4716.1410173586/jre
    TRACE      2014-09-08 16:31:19.637
    SDB invoking java call:
    C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe -classpath "C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS\sdb_sl_lib.jar;C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS\sdb_sl_lib_api.jar;C:/Program Files/sapinst_instdir/NW711/ADA/INSTALL/STD/AS\sdb_core.jar" com.sap.sdb.core.main.cmd.SdbCmdMain
    TRACE      2014-09-08 16:31:19.637 [synxcchapp.cpp:275]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    Going to call CreateProcess/CreateProcessAsUser for 'C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe' now.
    TRACE      2014-09-08 16:31:19.637 [synxcchapp.cpp:575]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    Trying to start C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe CSySysLibCallsWrapper::syscallwrapper()->__CreateProcess__(NULL, <command line for executable C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe, NULL, NULL, TRUE, 0x420, NULL, NULL, &StartupInfo, &ProcessInfo)
    TRACE      2014-09-08 16:31:19.637 [synxcchapp.cpp:653]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    A child process has been started. Pid = 4956. Executable name: C:\Users\EGSAPI~1\AppData\Local\Temp\sapinst_exe.4716.1410173586\jre\bin\java.exe
    TRACE      2014-09-08 16:31:19.637

  • CScript.exe error while creating DB through OMPM 2010

    Hello,
    I am trying to create a new database through OMPM 2010. While executing the CreateDB.bat file following error message is coming up:
    Runtime Error!
    Program: C:\Windows\system32\cscript.exe
    R6034
    I've tried various solutions available on internet but none of em are working. Please let me know how can I resolve this issue.
    Thanks,
    Shikhar

    To fix the Runtime Error! R6034, try this:
    Full-Scan harddisk through antivirus software tool to remove your system virus
    Try to run it in Windows safe mode.
    Remove the following registry entry:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellExecuteHooks\{AEB6717E-7E19-11d0-97EE-00C04FD91972},
    http://social.technet.microsoft.com/Forums/windows/en-US/ec4058d5-f1c5-49d5-826f-f67f95e0ab29/run-time-error-r6034?forum=w7itprogeneral
    Thanks.
    Tony Chen
    TechNet Community Support

  • Error while creating WBS through BAPI

    I am using BAPI_PROJECT_MAINTAIN to create WBS L2 & L3.
    There is only 1 WBS at both levels.
    For some cases it is running fine, but I am getting the following error in some cases:
    "WBS element 3UTWB_BSRHT_001 can no longer be shifted"
    What could be the reason?

    As you told you are creating WBS vai BAPI. This may not be  exact relevant Normally you cannot  change  hierarchy of WBS Elements after you have done some sort of execution / planning on it. If you are getting error than please share details of error message with no.
    With Regards
    Nitin P.

  • Sam error while creating users through sim

    Hi
    We have protected sun identity manager with sun access manager.We have a custom workflow for user creation ijn SIM but user creation fails with following error
    java.lang.NoClassDefFoundError: com/iplanet/am/sdk/AMGroup
    this seems like sam error, can someone please tell me how can i resolve this.
    regards
    karthik

    Hi
    We have protected sun identity manager with sun access manager.We have a custom workflow for user creation ijn SIM but user creation fails with following error
    java.lang.NoClassDefFoundError: com/iplanet/am/sdk/AMGroup
    this seems like sam error, can someone please tell me how can i resolve this.
    regards
    karthik

  • *Error while creating Trave Requset through ESS*

    Hi,
    We are getting following error while creating request through ESS:
    Entry not found in table T706V. Argument: 40P IN 0010120090608
    The estimated travel amounts could not be determined
    Errors have been discovered when checking the Expense Report. Please correct them in order to proceed.
    Whereas we have already maintained entries in the same table.
    Please reply urgently...
    Thanks
    Neha

    Hello,
    The solution is documented in Travel Wiki:
    https://wiki.sdn.sap.com/wiki/display/ERPHCM/Entrynotfoundintable+T706V
    Regards,
    Raynard
    Edited by: Raynard Coscolluela on May 8, 2009 10:53 AM

Maybe you are looking for

  • Cannot delete information from profile.

    I want to delete the information and profile picture I have on a skype profile. I cannot do either. When I try to delete my personal information and save it, skype asks me to enter my password again and then gives me an error. I've read that I cannot

  • Cant downlown pictures from iphone to my computer

    cant download pictures from my iphone to my computer

  • App store terms 4s, app store terms 4s

    I'm going crazy.  I cannot get past the "Accept New Terms" on the Apps store and pressing "send email" does abolsultely nothing, so I cannot download any new apps etc.  What is going on with Apple?  Who tested this stuff? Any help would really be app

  • Logs for UCxn/Exchange sync

    Is there a log somewhere that I can verify that Unity Connection is handing voicemails off to Exchange?  I don't have access to the Exchange server and don't want to get their MS support guys involved yet.  I just want to see if Unity Connection thin

  • New user with problems in Flickr

    I'm a brand new automator user. I am going through the tutorial first few examples for using Automator on www.automator.us in order to get a general idea of what I can do with this program. I was able to get through the "Re-name Finder Items" just fi