Bapi table error

Hi,
I imported the "Bapi_Delivery_Getlist_Input" while selecting output tables (any out put table in Bapi) it is showing following exception,but there no problem in selecting input parameters
com.sap.dictionary.runtime.DdException: Incorrect amount type (not decimal): Service for units cannot be set up
    at com.sap.dictionary.runtime.DdBroker.getUnitService(DdBroker.java:215)
    at com.sap.dictionary.runtime.DdBroker.getUnitService(DdBroker.java:233)
    at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getUnitService(DataTypeBroker.java:337)
    at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.initReferenceAttribute(DataAttributeInfo.java:346)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.initStructureType(NodeInfo.java:738)
Any body could you please help me out,
Thanks,
Balaji

Hi All,
I have imported function module "Bapi_Delivery_Getlist" to create an adaptive RFC model in WebDynpro DC. The DC is used for callable object in GP process. This GP process and concerned callable object was tested and working fine on the NetWeaver 7.0 SP 15. The server has recently been updated to SP18. After this upgrade, the callable object has become error prone; when tested gives following error:(No development has happened since long on the DC before and after the upgrade. The JCOs are tested fine too.).
Error Log:
Unable to create web dynpro callable object implementation.
com.sap.tc.webdynpro.progmodel.context.ContextConfigurationException: Incorrect amount type (no decimal): Unit service cannot be set up
at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.initReferenceAttribute(DataAttributeInfo.... [see details]
Detailed error
Unable to create web dynpro callable object implementation.
com.sap.tc.webdynpro.progmodel.context.ContextConfigurationException: Incorrect amount type (no decimal): Unit service cannot be set up
at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.initReferenceAttribute(DataAttributeInfo.java:349)
at com.sap.tc.webdynpro.progmodel.context.NodeInfo.initStructureType(NodeInfo.java:738)
at com.sap.tc.webdynpro.progmodel.context.DataNodeInfo.doInit(DataNodeInfo.java:239)
at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:671)
at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:940)
at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:177)
at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponentInternal(ComponentUsage.java:149)
Please help urgently if you have any clue on this issue. Quite a critical error.

Similar Messages

  • RFC+BAPI+TABLE HELP

    Hi all.
    Im install SAP NetWeaver Sneak preview ABAP edition.
    Me application writen i VB 6 connect ok.
    BAPI,TABLE- object connect ok.
    If retrieving data command BAPI getdetail+show app closed=crash,TABLE search ok,if TABLE show data or TABLE detail data,main app writen error - No search table-table not found ......
    Please help

    Armin,
    First of all than you for your reaction. I couldn't answer earlier because I was too busy to catch up with project deadlines.
    I checked the mapping between the custom controller and the view controller is done. It should be OK since I can display the bapi returned table in a Table widget.
    But I still don't know how to access this returned table from the wdDoInit() method of the view controller.
    My context is as following:
    Bapi_Currency_Getlist_Input
      -- Curreny_List
         -- Currency
    I can get a reference to currentBapi_Currency_Getlist_Input, next I can get a reference to currentCurrency_ListElement. But as from this point, I can't get a List or any other container with the currency values. (The bapi I call is bapi_currency_getlist and I try to create a value help with curency values)

  • Asset acquisition-Table error

    While doing an Asset posting from MM Side, the following error is happening:
    "No accounts have been entered for depreciation area 01 account allocation 31000 (Chart of accounts 1000)". 
    "Table Error"
    I have assigned accounts in AO90 for the acquisition/depreciation accounts.  Still I dont not understand why this error is happening ?  Please give some helpful inputs.

    Hi,
    in the IMG Fixed Asset Accounting you have several check and consistency reports. Run them, maybe you get some hints what could be missing in your configuration.
    Regards,
    Markus

  • How to populate multiple entries to Bapi Table

    Hi all,
      How to populate multiple entries to Bapi Table.....
    Here is the code(in component controller)
      Z_Recr_Apply_Point_Input request = new Z_Recr_Apply_Point_Input(WDModelScopeType.TASK_SCOPE);
           int  size = wdContext.nodeApplicants().size();
                for(int i = 0 ; i < size ; i++)
                    String isselected = wdThis.wdGetContext().nodeApplicants().getElementAt(i).getAttributeAsText("Appl_Number");
                     if(isselected == "true")
                               com.models.veteranpoint.Zrecr_Aplno appid = new
                                    com.models.veteranpoint.Zrecr_Aplno();                                        
                                    appid.setAppl_Number(wdContext.nodeApplicants().
                                        getApplicantsElementAt(i).getAppl_Number());
                               request.addApplicants(appid);
    I want to pass the selected input field to bapi..
    Please tel me where i pass the input field...
    Please correct my code...
    Thanks & regards
    Mathi s

    Hi,
    Steps to insert multiple entries to BAPI table.
    1.Create an instance for BAPI input
    2.Bind the instance to the Node of the BAPI input
    3.Create instance of the Structure(BAPI table) to which input has to be added.
    4.Set the input values to the Structure instance.
    5.Add the instance to the BAPI input.
    6.Execute
    From the given example,I assume Z_Recr_Apply_Point_Input  is the BAPI Input and com.epiuse.us.recruitment.models.veteranpoint.Zrecr_Aplno as Structure
    Step 1:
    Z_Recr_Apply_Point_Input request = new Z_Recr_Apply_Point_Input(WDModelScopeType.TASK_SCOPE);
    Step 2:
    <b>wdContext.nodeZ_Recr_Apply_Point_Input.bind(request);</b>
    Steps 3 & 4:
    int size = wdContext.nodeApplicants().size();
    for(int i = 0 ; i < size ; i++)
    String isselected = wdThis.wdGetContext().nodeApplicants().getElementAt(i).getAttributeAsText("Appl_Number");
    if(isselected == "true")
    com.epiuse.us.recruitment.models.veteranpoint.Zrecr_Aplno appid = new
    com.epiuse.us.recruitment.models.veteranpoint.Zrecr_Aplno();
    appid.setAppl_Number(wdContext.nodeApplicants().
    getApplicantsElementAt(i).getAppl_Number());
    <b>wdContext.currentZ_Recr_Apply_Point_InputElement().modelObject().addRecr_Aplno(appid);</b>
    Step 5:
    <b>wdContext.currentZ_Recr_Apply_Point_InputElement().modelObject().execute();</b>
    Regards,
    Viji Priya

  • Another User Modified Table Error.

    Dear All,
            My Client is using SAP B1 2007 B PL 11, When he is updating the Freight Amount in the Freight Window at that time he is getting the Error of Another User Modified Table Error.
           Plz guide me solving this issues.
      Regards
    Hitesh Parsawala

    Hi Hitesh ,
    This problem occurs when 2 users access the same form simultaneously .
    So just restart the SAP , It will work ..
    Hope it Helps
    Thanks
    -- Ashish Ranjan

  • SRKIM: Synchronize Wf Local Tables Errors: Ora-01400

    PURPOSE
    Synchronize Wf Local Tables 수행 시 발생한 ora-01400 error 를 해결한다.
    Problem Description
    Synchronize Wf Local Tables 수행 시 아래와 같은 error 가 발생하였다.
    ERROR
    FNDWFLSC module: Synchronize WF LOCAL tables
    Current system time is 31-AUG-2005 09:39:54
    **Starts**31-AUG-2005 09:39:54
    **Ends**31-AUG-2005 09:40:33
    ORA-12801: error signaled in parallel query server P000
    ORA-01400: cannot insert NULL into
    ("APPLSYS"."WF_LOCAL_ROLES_STAGE"."DISPLAY_NAME")
    STEPS
    The issue can be reproduced at will with the following steps:
    Submit the concurrent program Synchronize WF LOCAL tables.
    Log file shows error.
    Workaround
    N/A
    Solution Description
    해당 error 는 per_all_people_f table 의 global_name 이 null 이기 때문에 발생하는 error 로 가장 간단하게는 아래와 같이 처리 하면 된다.
    update per_all_people_f
    set global_name = full_name
    where global_name is null;
    commit;
    위의 작업 후 다시 Synchronize WF LOCAL tables process 를 수행 한다.
    해당 issue 에 대한 원인은 note. 397219.1 - Why Are There NULL Values For global_name In 를 참조 하도록 한다.
    Reference Documents
    Note 375508.1 - Synchronize Wf Local Tables Errors: Ora-01400: Cannot

    Hi Hussein,
    Thanks for reply. Please find the below details.
    RELEASE_NAME
    12.1.3
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    Linux **** 2.6.18-128.el5 #1 SMP Wed Jan 21 08:45:05 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    Conc Req Log file
    Application Object Library: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    FNDWFLSC module: Synchronize WF LOCAL tables
    Current system time is 19-JUN-2012 05:49:20
    **Starts**19-JUN-2012 05:49:20
    **Ends**19-JUN-2012 05:49:20
    ORA-14501: object is not partitioned
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    0
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 19-JUN-2012 05:49:20
    ---------------------------------------------------------------------------

  • Passing values to RFC/BAPI Table

    Hi,
    I am having a very strange problem. While passing the values to RFC/BAPI table using add method the values are not passed to backend SAP. Below is the code which I am using just to pass some data in RFC/BAPI table.
    The same code was working few days back. Is there any configuration in JCO or any other problems other than the code?
    Your l help is greatly appreciated.
      public void executeZtest_Function_Input( )
    //    //@@begin executeZtest_Function_Input()
    //     //$$begin Service Controller(943377124)
           IWDMessageManager manager = wdComponentAPI.getMessageManager();
           try{
      Ztest_Function_Input input = new Ztest_Function_Input();
           for (int i=0; i<5;i++){
                Zhr_Ear_Cclist cc =new Zhr_Ear_Cclist();
                cc.setFi_User("[email protected]");
                input.addIcc_List(cc);
           wdContext.nodeZtest_Function_Input().bind(input);
           wdContext.currentZtest_Function_InputElement().modelObject().execute();
                wdContext.nodeOutput().invalidate();
           } catch(WDDynamicRFCExecuteException ce) {
                manager.reportException(ce.getMessage(), false);
         //$$end
        //@@end

    Hi Raksh,
              I also got the same problem. Please check the following ways then you will solve problem.
    1. First check the appropriate BAPI in SAP GUI Software. You have to determine where is the problem?. Is it in Dynpro or BAPI itself?.
    2. Suppose the BAPI structure change you will wont't run. If BAPI strusture change you have to reimport BAPI.
    3. Please check the JCo connectio using test Button. Then redeploy your project.
    4. Rebuild your project then redeploy.
    Check the above ways you may get answer.
    Kind Regards,
    S.Saravanan

  • Mutation table error

    i am trying to updata any row at the time i am getting mutating table error for some triggers
    fired on that table.what is the resonn and how to solve this problem,plz..help

    Here's a good resource
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:290416059674

  • Alternative UI Output formats for BAPI table

    Hi Experts,
    Can I display the output of a BAPI table in any other format apart from a table.
    Regards
    Abdullah

    Abdullah,
    In web dynpro you cannot have tables with scrollbar. A workaround for that may be a use of ScrollContainer UI element with fixed height and display all table rows via setting visibleRowsCount=-1.but problem here is , table headers will be scrolled as well. So it is better not to have them like that.
    I would suggest take use of existing table UI element and dont alter its functionality.
    Regarding incorporating the application using web dynpro I guess that you must be knowing(not sure but think that you need to get rid of COM DCOM).
    hope it helps
    regards,

  • Solve mutating table error

    Hi,
    I want a solution for mutating table error. I am a newbie in oracle.
    I'll explain my scenario.
    There are two tables TEACHER and STUDENT
    both are linked using the field 'tid'. the foreign key relation is given as ON DELETE CASCADE
    so if i delete a row from teacher , the corresponding rows in student get deleted, but i want to back up all the students who comes under that teacher, who is getting deleted.
    I tried in TRIGGER, but getting mutating table error.
    Please help
    Thanks in advance
    Divya

    This extract from an earlier post might be of help:
    You can solve this problem by using following thing
    1)create a view on same table with all fields
    and write trigger on table (insert,update or delete ) while inserting or updating or deleting row from table read from view.
    (Mutating error come when you are reading from one table and want to update,insert or delete row of same table).
    2)create a temporary table(but it is possible in 8i onword only) same as table on which you want to write trigger,while updating,inserting or deleting rows of table read from temporary table and after your work is over temporary table auotomatically drop (see proper command in oracle documentation to create temporary table).
    null

  • Mutating table error

    Hi All,
    I am getting the “ORA-04091 - mutating table error" when my trigger on a table "fnd_flex_values" fires. As I understand it, this error is occuring because, the users are trying to add rows to this table (it is an after insert trigger) and the trigger is trying to get values from the same table.
    Any suggestions on how to get around the mutating table error?
    My trigger code :
    CREATE OR REPLACE TRIGGER "APPS".ST_BU_PARENT_CC
    after insert on APPLSYS.FND_FLEX_VALUES REFERENCING OLD AS OLD NEW AS NEW
    for each row
    Declare
    v_flex_value    varchar2(150) :=null;
    v_desc          varchar2(2) := null;
    v_createdby     number      :=null;
    v_lstupdby      number      :=null;
    v_lstupdlogin   number      :=null;
    begin
      if inserting then
         select a.last_update_login,a.last_updated_by,a.created_by,a.flex_value,
                   rtrim(substr(description,instr(b.description,',')+1,5))
         into v_lstupdlogin,v_lstupdby,v_createdby,v_flex_value,v_desc
         from fnd_flex_values a,
                 fnd_flex_values_tl b
            where a.flex_value_id = b.flex_value_id
            and   a.flex_value_set_id = :new.flex_value_set_id
         and   a.flex_value_set_id = 1009635
            and   (a.flex_value like '1%' or a.flex_value like '7%')
         order by flex_value asc;
         insert into applsys.fnd_flex_value_hierarchies
            values(:new.flex_value_set_id,v_desc||'STO',v_flex_value,v_flex_value,sysdate,v_lstupdby,sysdate,v_createdby,null,null,null);
            insert into applsys.fnd_flex_value_norm_hierarchy
            values(:new.flex_value_set_id,v_desc||'STO','P',v_flex_value,v_flex_value,sysdate,v_lstupdby,sysdate,v_createdby,v_lstupdlogin,null,null);
      end if;
      exception
        when no_data_found then
          raise;
    end;Thanks,
    Chiru

    >>
    Any suggestions on how to get around the mutating
    table error?
    This link by Tom Kyte should help you with the
    "mutating table" error.
    http://asktom.oracle.com/tkyte/Mutate/index.html
    pratzPratz,
    Thanks for the quick reply. I am trying to create a temp table (log_table) but having the "insufficient privilages" issues.
    Thanks,
    Chiru

  • I have a cd changer cdp-cx355 showing table error, think it was knocked out of alignment while being

    I have a cd changer cdp-cx355 showing table error, think it was knocked out of alignment while being moved how do you make sure its aligned

    Welcome to Apple Discussions, rnmed13
    Sorry you are still having problems.
    See if this post by parkersal helps you:
    http://discussions.apple.com/message.jspa?messageID=4246676#4246676
    Jim
      Mac OS X (10.4.9)    G5 DP 1.8  External iSight

  • BAPI - BAPI_ACC_DOCUMENT_POST  Error due to Currency table.

    Hi Guys ,
    I am facing an error while posting documents using BAPI_ACC_DOCUMENT_POST.  The error occurs is in the tables parameters "currencyamount" .I am appending Amt in document currency, Amt in Local currency, Amount in 2nd Currency and Amount in 3rd Currency using Currency type (CURR_TYP)  00,10,30 and 60 respectively for every line item. All these 4 currency fields might have different values.The error in the "return" parameter says "Balance in currencies".
    Can anyone suggest an appropriate way to pass all the above 4  currency fields to the same line item ?
    Thanks,
    Venkat.

    Hi VG,
    while using this bapi...the total amount or net amount should be zero.
    Thru Txn we assign posting key  ..and system autiomatically take the sign on the basiss of Posting key..but in this bapi we dont have posting key field....so we have to give the amount with the sign...and total of all the line items should be zero ...
    Thnx
    RK

  • Bapi BAPI_GOODSMVT_CREATE it_return table Error!.

    Dear Xprts,
    I'm using this bapi to create movs on mm. But the following error appears on table it_return : "Update control of movement type is incorrect (entry 101 X X)." Yes, when i've declared the internal tables of bapi, on items, specifically, i've configured field "Movement type" as '101'. But i'm creating a entrance movemente. I don'nt know if i'm forgetting a field or flag or indicator field, i've sent all the information required. Pls hlp me.

    This is cause by insufficient stocks but not the BAPI FM itself. Use MB51 to check where your stocks being consumed and reverse the material document if possible (provided that period is still open for posting). Alternatively you can do PI to gain the stocks for your 102 movement.
    Always check your stocks balance before carrying out such action like 102.
    Thanks and Rgds,
    Andrew

  • Sales order BAPI giving error - No item category available (Table T184 ...

    I am trying to create a sales order from a portal application using BAPI_SALESORDER_CREATEFROMDAT2. For certain type of materials, an error message is coming like: 
    No item category available (Table T184 ZOR NORM PSA1 ZSME) ZOR
    Error
    in VBAPKOM 000020 VBAPKOM
    Item 000030 does not exist 000030
    Sales
    document was not changed
    I have checked in vov4 and consulted SD consultant. The vov4 settings are set as below and our SD consultant says they are ok and need not be changed, as when we are creating this order in SAP, it is a success.
    ZOR NORM PSA1 ZSME
    ZOR NORM PSA2 ZSME ZSHP
    ZOR NORM PSHP ZTAX
    Now, the standard code where this error is coming is calling a function module "RV_VBAP_PSTYV_DETERMINE" which checks for the higher level item category. The material at item 10 meets the criteria, but material at item 20 fails as PSA1 does not have any such row (above) indicating higher level iteam.
    Interesting thing is when I try to create the order in SAP with these materials, it creates the order. There is also a material substitution rule in place, which also seems to be working fine.
    Debugging the standard code has not yet given any result.

    Since you had indicated the VOV4 settings, I presume, the item category ZSME is maintained under the tab "DfItC".
    On your comments,
    For certain type of materials, an error message is coming like:
    I feel, the root cause of the issue is Item Category Group in material master.  Check for those which creates an issue with the one which is running successfully.
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • Not able to see document when I click Generate Document link in SSHR

    Hi, I have created a 'Generate Document' link on 'Change Hours' page of SSHR. But When I click on that link,I am seeing a blank screen and could not get the document. Please help me in this tio resolve the issue. Thanks, Srinivas

  • Lightroom 4 removing Vibrance and saturation from my ARW files

    I have a Sony Alpha SLT A55V  when I import them to Lightroom 4.2 the color and vibrance changes.  See examples below. The first image is after importing to lightroom, and making no edits, the second is after  importing in PMB Sonys software that cam

  • Using exp imp on 11i apps database

    Hi, Does anyone have experience in using exp and imp utility on 11i apps database? Is there any special method to achieve this. I want to do a full export and do an import. Do we get any performance benefits if we do this? Regards, SA

  • ABAP Program Warning

    Hi Experts, I got below error when checking an ABAP program, which was generated in maintaining datasouce with RSA6. Description: Type Group RSFH In Unicode programs, the "-" character canot appear in names, as it does here in the name "RSFH_C_TFMETH

  • Transfer Equivalency - What is the Modify Button for?

    Can anyone tell me what the Modify button is supposed to do in the Transfer Equivalency functionality (transaction PIQED)?  It seems I can not see that it does anything so I'm assuming I'm doing something wrong.  I'm hoping it will allow me to equate