Error in webdynpro code

Hi Guys,
I am executing one webdynpro application and in this I am getting following error in its onaction_find method:
method ONACTIONACTION_FIND .
Error:Statement "LO_ND_NODE_ALV->BIND_TABLE(LT_VBAK)" is not defined.          
Here is the code:
method ONACTIONACTION_FIND .
  wd_this->fire_first_ob_plg(
    DATA lo_nd_node_vbak TYPE REF TO if_wd_context_node.
    DATA lo_el_node_vbak TYPE REF TO if_wd_context_element.
    DATA ls_node_vbak TYPE wd_this->element_node_vbak.
  navigate from <CONTEXT> to <NODE_VBAK> via lead selection
    lo_nd_node_vbak = wd_context->get_child_node( name = wd_this->wdctx_node_vbak ).
  get element via lead selection
    lo_el_node_vbak = lo_nd_node_vbak->get_element(  ).
  get all declared attributes
    lo_el_node_vbak->get_static_attributes(
      IMPORTING
        static_attributes = ls_node_vbak ).
DATA:ls_where(72) TYPE c,
     lt_where LIKE TABLE OF ls_where,
     lt_vbak TYPE STANDARD TABLE OF vbak.
*create where condition
    IF NOT ls_node_vbak-vbeln EQ ''.
    CONCATENATE 'VBELN = ''' ls_node_vbak-vbeln '''' INTO ls_where.
    APPEND ls_where to lt_where.
    endif.
    if not ls_node_vbak-erdat eq '00000000'.
if ls_node_vbak-erdat ne ''.
  CONCATENATE 'AND' ls_where INTO ls_where SEPARATED BY space.
  ENDIF.
  APPEND ls_where to lt_where.
    ENDIF.
    SELECT VBELN ERDAT ERZET ERNAM ANGDT BNDDT AUDAT VBTYP
        FROM vbak INTO TABLE lt_vbak WHERE (lt_where).
DATA lo_nd_node_alv TYPE REF TO if_wd_context_node.
DATA  ls_node_alv TYPE wd_this->element_node_vbak.
*navigate from <CONTEXT> to <NODE_VBAK> via lead selection
    lo_nd_node_alv = wd_context->get_child_node( name = wd_this->wdctx_node_vbak ).
*get all declared attributes
    lo_nd_node_alv->bind_table(lt_vbak).
endmethod.

Hi Aditya,
Check the view where you have declared the  Method ONACTIONACTION_FIND contain or not the Internal table LT_VBAK. means have you declared the Internal table in the CONTEXT ?
Kanagaraja L

Similar Messages

  • Reg: Error in webdynpro

    Hi All,
    I am getting the following error in webdypro.Can you explain me the reason for this error. I am attaching the code which is giving the error.
    wdThis.wdFirePlugTo_Individual();
    wdThis.wdGetIndividual_Interface().initialise();
    Can you help me out?
    This is the error
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Given name does neither identify the interface controller nor the configuration controller.
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.eventSourceIsInterfaceController(ComponentUsage.java:726)
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.subscribeToEvent(ComponentUsage.java:232)
        at com.sap.tc.webdynpro.progmodel.controller.Component.subscribeToEvent(Component.java:692)
        at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.subscribeSelfToEvent(DelegatingComponent.java:149)
        at com.change.app.wdp.InternalChangeAppComp.wdDoInit(InternalChangeAppComp.java:362)
    Thanks in Advance.

    Hi Bharath,
                    What does <b>Individual_Interface</b> refer to?  If the reference missing it shows error in the code itself and build fails. If you are sure the usage is not missing then repair and rebuild the project. If still error persists, give more details like what are the components you are using, exactly where this error is occurring and what are you doing?
    regards,
    Siva

  • Error in generated code :Component Interface

    Hi All,
    I have my webdynpro component active works fine in Dev Server.
    When we move it to qualtiy we got a strange error " Error in Generated Code, Type Z*IWCI is unknown.
    Its related to the Component interface which gets generated automatically while any WDA is created but in our system it isnt getting generated?
    Looking for your valuable comments on ths
    Regards
    Bhanu

    Hi Bhanu,
    Goto se09 check for that request ICF service is generated or not? I think you first created in $TMP and assigned package.
    If ICF service is not available, just copy it to new comp, it will create new ICF service. I dont know this is the solution,
    just a guess.
    Cheers,
    Kris.

  • Problem in Starting a GP Process from Webdynpro Code

    Hi Experts
    I have a problem in starting a GP Process from webdynpro code. I have imported the following used DCs in my Webdynpro DC
    caf/eu/gp/api/wd
    caf/eu/gp/api (external)
    com.sap.security.api.sda
    Once I deploy I get the following error. No Syntax, Build errors in the application.
    java.lang.NoClassDefFoundError: com/sap/caf/eu/gp/process/rt/api/IGPRuntimeManager
    I have used the following code to start the GP Process - getUserDetails Context is of type IUser
              //Starting GP Process
    try {
    IGPRuntimeManager rtm = GPProcessFactory.getRuntimeManager();
    IGPProcessRoleInstanceList roles = rtm.createProcessRoleInstanceList();
    IGPUserContext userContext = GPContextFactory.getContextManager().createUserContext(
         wdContext.currentContextElement().getUserDetails());
    IGPProcess process = GPProcessFactory.getDesigntimeManager().getActiveTemplate(
                        "00A897714C5A11DE8E33005056A260C3", userContext);
    IGPStructure params = GPStructureFactory.getStructure(process.getInputParameters());
    IGPProcessInstance prInstance = rtm.startProcess(process,
                        "New User Registration Process",
                        "New User Registration Process",
                        wdContext.currentContextElement().getUserDetails(),
                        roles,
                        params,
                        wdContext.currentContextElement().getUserDetails());
    } catch (Exception e) {
         e.printStackTrace();
    Please do the needful EXPERTS.
    FYI... SP17
    Thank you
    Best Regards
    Ramamoorthy D

    Hi Ram,
    You have to add Library reference to your DC.
    in the context menu of your DC select
    properties->webdynproReferences->LibraryReference
    add sap.com/cafeugp~api as refernce.
    I hope this will solve your problem.
    Regards,
    Rajesh

  • Trapping error in webdynpro when calling a function

    Hi all,
    I am using Adobe interactive forms and within the onsubmitevent I have webdynpro code which calls a standard function 'FMFR_CREATE_FROM_DATA' to do commitments. See code snippet below. The problem is when there is an error from the function the function simply hangs and does not come out of it.. I have tested this function as standalone via SE37 and works perfectly and also from a normal ABAP program the error can be trapped. Is it possible to trap this within webdynpro?
              CALL FUNCTION 'FMFR_CREATE_FROM_DATA'
                EXPORTING
                  I_FLG_CHECKONLY           = ' '
                  I_FLG_COMMIT              = 'X'
                    TABLES
                      T_POSDATA                 = wa_fid_tab
                    CHANGING
                      C_F_HEADDATA              = wa_fih
                EXCEPTIONS
                  DOCTYPE_NOT_ALLOWED       = 1
                  ERROR_OCCURED             = 2
                  OTHERS                    = 3
                    IF SY-SUBRC <> 0.
                       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                       WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                       RAISE EXCEPTION TYPE ZCX_NO_CC_BUDGET.
                    ELSE.
                        " Update RFP table with consolidated amount
                        " per CC/PC and commitment no. 
                        UPDATE ZAD_RFP_T
                        SET CURRENCY_AMOUNT = RFP_TOTAL1
                                     AMOUNT = RFP_TOTAL1
                            COMMITMENT_NO = wa_fih-belnr
                        WHERE DOCUMENT_ID = RFP_ID
                        AND LINE_ID = line_one .
                    ENDIF.

    Thanks guys but i already tried this ie. uncommenting the exception but it never returns to the next line ie to theIF SY-SUBRC line in the code snippet below. The program simply hangs!!!
              CALL FUNCTION 'FMFR_CREATE_FROM_DATA'
                EXPORTING
                  I_FLG_CHECKONLY           = ' '
                  I_FLG_COMMIT              = 'X'
                    TABLES
                      T_POSDATA                 = wa_fid_tab
                    CHANGING
                      C_F_HEADDATA              = wa_fih
                 EXCEPTIONS
                   DOCTYPE_NOT_ALLOWED       = 1
                   ERROR_OCCURED             = 2
                   OTHERS                    = 3.
                    IF SY-SUBRC <> 0.
                       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                       WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                       RAISE EXCEPTION TYPE ZCX_NO_CC_BUDGET.
                    ELSE.
                        " Update RFP table with consolidated amount
                        " per CC/PC and commitment no.  -
                        UPDATE ZAD_RFP_T
                        SET CURRENCY_AMOUNT = RFP_TOTAL1
                                     AMOUNT = RFP_TOTAL1
                            COMMITMENT_NO = wa_fih-belnr
                        WHERE DOCUMENT_ID = RFP_ID
                        AND LINE_ID = line_one .
                    ENDIF.

  • Error executing Webdynpro mail program

    Hi,
    I am using webdynpro code for implementing mail service.
    I have imported jaxrpc.jar as external jar file.
    I got this jar from axis.zip.
    While implementing the code, I get following exception.
    java.lang.Error: Unresolved compilation problems:
         Class must implement the inherited abstract method Service.getWSDLDocumentLocation()
         Class must implement the inherited abstract method Service.getPorts()
         Class must implement the inherited abstract method IEmailServiceservice.getLogicalPortNames()
         Class must implement the inherited abstract method Service.getPort(Class)
         Class must implement the inherited abstract method Service.getTypeMappingRegistry()
         Class must implement the inherited abstract method Service.getCalls(QName)
         Class must implement the inherited abstract method Service.getPort(QName, Class)
         Class must implement the inherited abstract method Service.createCall(QName, QName)
         Class must implement the inherited abstract method Service.createCall(QName, String)
         Class must implement the inherited abstract method Service.createCall()
         Class must implement the inherited abstract method Service.getServiceName()
         Class must implement the inherited abstract method Service.getHandlerRegistry()
         Class must implement the inherited abstract method Service.createCall(QName)
         com.sap.engine cannot be resolved or is not a valid superclass
         The method loadProtocolsFromPropertyFile(InputStream) is undefined for the type IEmailServiceserviceImpl
         The method init(InputStream) is undefined for the type IEmailServiceserviceImpl
         The method getPort(QName, Class) is undefined for the type Object
         The method getPort(QName, Class) is undefined for the type Object
         The method getLogicalPort(Class) is undefined for the type Object
    Whats wrong?
    thanks,
    Ashutosh

    Hello Anil,
    I am not even able to compile my project.
    I get compilation errors as
    Class must implement the inherited abstract method SendEmailService.getLogicalPortNames()
                   Class must implement the inherited abstract method Service.createCall()     
                   Class must implement the inherited abstract method Service.createCall(QName, QName)
                   Class must implement the inherited abstract method Service.createCall(QName, String)
                   Class must implement the inherited abstract method Service.createCall(QName)
                   Class must implement the inherited abstract method Service.getCalls(QName)
                   Class must implement the inherited abstract method Service.getHandlerRegistry()
                   Class must implement the inherited abstract method Service.getPort(Class)
                   Class must implement the inherited abstract method Service.getPort(QName, Class)
                   Class must implement the inherited abstract method Service.getPorts()
                   Class must implement the inherited abstract method Service.getServiceName()
                   Class must implement the inherited abstract method Service.getTypeMappingRegistry()     
                   Class must implement the inherited abstract method Service.getWSDLDocumentLocation()     
                   com.sap.engine cannot be resolved or is not a valid superclass
                   The method getLogicalPort(Class) is undefined for the type Object     
                   The method getPort(QName, Class) in the type Service is not applicable for the arguments (QName, null)     
                   The method getPort(QName, Class) is undefined for the type Object     
                   The method getPort(QName, Class) is undefined for the type Object     
                   The method init(InputStream) is undefined for the type SendEmailServiceImpl     
                   The method loadProtocolsFromPropertyFile(InputStream) is undefined for the type SendEmailServiceImpl     
    Do you have any latest jaxrpc.jar download url?
    thanks,
    Ashutosh

  • Error in Tax code while creating a PO in T.code ME21n

    Hi,
    I am trying to create purchase Order, I am getting an error when while entering this
    Tax Code : v1
    Jurisdict. Code: RS14902
    The error is "Tax code v1 in procedure TAXBRJ is Invalid"
    How to rectify this error. Or
    What can be other way of entering the tax code and jurisdict code

    Hi,
    Go to the Table T007A, where you find the tax codes.
    Input & out put taxes are the tax types.
    In FTXP T.code give the tax code and  click on the
    Input tax codes are used for purchase cycle and out put taxes are for sales cycle. I Hope you have given the sales related tax code. Thats why system is giving the error message.
       In T007 Table give the proper input and get the details.
    Regards,

  • Error while generating code in brf+ function

    Hi all,
    i am getting error while generating code in function in bRF+
    am using weight fields ..if i dont use quantity fields am able to generate code .
    please help.
    Thanks.

    Can you provide more details? What exactly is the error?
    I think we have provided a note for the issue. With the details it should be possible to identify the note number.

  • I have a an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes. All of the other movies on the card download with out a problem.

    I have an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes.
    All of the other movies on the card download with out a problem. The movie in question is not 'corrupt' as you can watch it in iMovie direct from the SD card but as soon as you try to import it, it  just says 'error'. iIve tried moving the file to an external drive ( and other variations on this theme) then importing but have had no luck.
    Can anyone please help me.

    The mystery remains....
    Thanks for the pointers. The file type is .mts (a proprietry sony one).
    I have now found some video converter software (Wondershare and iSkysoft) at a cost. Either will convert this file for me into .mp4. This I can then import into iMovie without any problems. I've checked this on the trial versions and it worked well but without paying am left with a giant watermark in the video
    The mystery (which I still havent solved) is why did 20 other .mts files import fine and then this one not?
    If you could point me in the direction of some free .mts converter software that would be the cherry on the cake.
    Thanks

  • Adobe Print Form Error - Invalid Response Code: (401) Unauthorized

    Hi, I've just configured ADS on Netweaver 2004s. I've run through the config guide and everything works ok including the form generation test report FP_TEST_00 which outputs PDF without issue. I have two problems:
    -When I run a "test connection" on the RFC destination 'ADS' using the ADSUSER for the login details, I get a 403 not authorized error. Changing this user to J2EE_ADMIN resolves the issue and I get a 302 redirect. I've tried adding other permissions to the ADSUSER without any luck.
    -Running a report on the Portal under e.g. Executive Reporting and attempting to just right-click and hit "Print Version" results in a 401 error for request "http://hostXX:portXX/AdobeDocumentServices/Config?style=document" exactly as per this thread: Re: Adobe Form Creation Error - Invalid Response Code: (401) Unauthorized. However, I've double-checked all user details in Visual Administrator (ADS_AGENT) and on the ABAP stack side in su01 and sm59. I also tried changing the users to dialog with no effect. If I go directly to that URL and log in with ADSUSER I get a 403 not authorised error (using J2EE_ADMIN is again successful). I've noticed that in the http access log the HTTP protocol used is 1.1 when using the web browser and 1.0 when using the sm59 connection test. I've heard of problems with using HTTP/1.1, but when I change the options on IE8 to use HTTP/1.0, it changes for all other requests except the request for "http://hostXX:portXX/AdobeDocumentServices/Config?style=document", which is still submitted as HTTP/1.1. Conversely, in sm59 if I specify that it should use HTTP/1.1 under Special Options, I can see from the access log that it is in fact still using HTTP/1.0. Could this be related to the 401 error code that I'm seeing?
    Any help would be appreciated. Thanks,
    John

    I think I've ruled out the HTTP protocol version as being an issue here. However I may have found more useful information on the actual issue.
    In the security log under usr\sap\<SID>\DVEBMGS00\j2ee\cluster\server0\log\system I see a different message for the unsuccessful report PDF generation attempt to that of a direct query to the same URL with the same web browser, as below. The unsuccessful attempt appears to forget the ADSUSER credentials and resort to the default J2EE_GUEST which has no authorisations and therefore fails. The direct query doesn't lose the ADSUSER credentials and I think this is because it prompts for the user/password when needed. Does anyone know why this happens for a direct query to this URL but not for the PDF generation attempt?
    Resulting logs from unsuccessful PDF generation attempt:
    #1.5 #005056AF1EB300750000002D0000142000048B4D2208F055#1279063306899#/System/Security/WS/SecurityProtocol#sap.com/irj#com.sap.security.core.client.ws.AuthenticationContext.setDestination#AICL0001#622##<host>_<sid>_3576650#AICL0001#4c1a62608ed511dfbe2a005056af1eb3#SAPEngine_Application_Thread[impl:3]_5##0#0#Info#1#com.sap.security.core.client.ws.AuthenticationContext#Java###An destination was set with the following properties:
    {0}.#1#{PROXY_ENABLED=false, CLIENT_AUTHENTICATION_KEYSTORE_VIEW=, SAP_SID=, SLD_URL=, USERNAME=ADSUSER, SLD_WS_NAME=, URL=http://<host>:50000/AdobeDocumentServices/Config?style=document, PROXY_URL=, SSL_SERVER_AUTHENTICATION=IGNORE, SLD_WS_SYSTEM_NAME=, PASSWORD=XXX, SLD_WS_PORT=, SAP_CLIENT=, DEFAULT_URL=http://localhost:50000/AdobeDocumentServices/Config?style=document, Authentication=BASIC, CLIENT_AUTHENTICATION_KEYSTORE_CERTIFICATE=, URL_CHOICE=Custom, SAP_LANGUAGE=}#
    #1.5 #005056AF1EB30072000000250000142000048B4D220A12ED#1279063306977#/System/Security/Authentication##com.sap.engine.services.security.authentication.logincontext#J2EE_GUEST#0##<host>_<sid>_3576650#Guest#4c1a62608ed511dfbe2a005056af1eb3#SAPEngine_Application_Thread[impl:3]_24##0#0#Info#1#com.sap.engine.services.security.authentication.logincontext#Plain###LOGIN.FAILED
    User: N/A
    Authentication Stack: com.adobe/AdobeDocumentServices*AdobeDocumentServices_Config
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   SUFFICIENT  ok          exception             true       Authentication did not succeed.#
    Successful direct access of URL http://<host>:50000/AdobeDocumentServices/Config?style=document (click on rpData test and manually log in as ADSUSER):
    #1.5 #005056AF1EB30070000000250000142000048B4D3E260016#1279063778670#/System/Security/Authentication##com.sap.engine.services.security.authentication.logincontext#ADSUSER#675##<host>_<sid>_3576650#Guest#812f72008ed611dfa62d005056af1eb3#SAPEngine_Application_Thread[impl:3]_14##0#0#Info#1#com.sap.engine.services.security.authentication.logincontext#Plain###LOGIN.OK
    User: ADSUSER
    Authentication Stack: com.adobe/AdobeDocumentServices*AdobeDocumentServices_Config
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   SUFFICIENT  ok          true       true                 
    Central Checks                                                                                true                  #
    #1.5 #005056AF1EB30070000000260000142000048B4D3E2666A6#1279063778702#/System/Security/Audit/J2EE##com.sap.engine.services.security.roles.audit#ADSUSER#675##<host>_<sid>_3576650#ADSUSER#812f72008ed611dfa62d005056af1eb3#SAPEngine_Application_Thread[impl:3]_14##0#0#Info#1#com.sap.engine.services.security.roles.audit#Java###{0}: Authorization check for caller assignment to J2EE security role [{1} : {2}].#3#ACCESS.OK#SAP-J2EE-Engine#all#

  • Is there a error with this code

    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class ClickMe extends Applet implements MouseListener {
    private Spot spot = null;
    private static final int RADIUS = 7;
    public void init() {
    addMouseListener(this);
    public void paint(Graphics g) {
    //draw a black border and a white background
    g.setColor(Color.white);
    g.fillRect(0, 0, getSize().width - 1, getSize().height - 1);
    g.setColor(Color.black);
    g.drawRect(0, 0, getSize().width - 1, getSize().height - 1);
    //draw the spot
    g.setColor(Color.red);
    if (spot != null) {
    g.fillOval(spot.x - RADIUS, spot.y - RADIUS, RADIUS * 2, RADIUS * 2);
    public void mousePressed(MouseEvent event) {
    if (spot == null) {
    spot = new Spot(RADIUS);
    spot.x = event.getX();
    spot.y = event.getY();
    repaint();
    public void mouseClicked(MouseEvent event) {}
    public void mouseReleased(MouseEvent event) {}
    public void mouseEntered(MouseEvent event) {}
    public void mouseExited(MouseEvent event) {}
    When I compile the the code I get a "cannot resolve symbol"
    private Spot spot = null;
    spot = new Spot(RADIUS);
    I don't know if these are errors in the code

    'cannot resolve symbol' errors usually mean a problem with the declarations and initialisations at the start of your class. This is specifically to do with your line private Spot spot = null;
    i haven`t much time to look at your code, but i would suggest getting rid of the null initialisation here, and do you ever actually change this value? after a quick look it seems that you only query it to see if the variable spot is null. if you never affect this value, then it will always be null and only one if statement will ever be executed.
    but as i said i haven`t any time, so could be off here
    boutye - boss is coming bak argh!

  • Error while running code template mapping between two oracle tables

    Hello All
    Iam getting the following error while running code template mapping between two oracle tables. Using OWB 11gR2 and oracle 11gR2 DB.
    java.sql.SQLException: ORA-20001: The active workspace is not valid as a target for this mapping
    c: at "OWBSYS.WB_RT_MAPAUDIT_UTIL", line 1065
    ORA-06512: at "OWBSYS.WB_RT_MAPAUDIT_UTIL", line 1087
    ORA-06512: at "SOURCE.FILENET_EX_UNIT_3", line 555
    ORA-06512: at line 4                                        
    Job 51 error: java.sql.SQLException: ORA-20001: The active workspace is not valid as a target for this mapping
    ORA-06512: at "OWBSYS.WB_RT_MAPAUDIT_UTIL", line 1065
    ORA-06512: at "OWBSYS.WB_RT_MAPAUDIT_UTIL", line 1087
    ORA-06512: at "SOURCE.FILENET_EX_UNIT_3", line 555
    ORA-06512: at line 4
    Quick help is highly appreciated.

    Dera Dallan
    its only a target user for the workspace where you are deploying the mapping from.
    I have two repositories for two different projects. each repositary has its own workspace.
    ex:-
    Project 1
    Work space bpms_rep_owner
    Repositary owner bpms_rep_owner
    Repositary user bpms_rep_user
    Project 2
    Work space dem_rep_owner
    Repositary owner dem_rep_owner
    Repositary user dem_rep_user
    Reg
    S.Gyazuddin

  • Error FF753 Tax code 01 not appear in any G/L account item with FM Active

    Hi
    We have fund management configured for one of the company code, while creating billing document through VF01/VF02 we are  getting the Error FF753 Tax code 01 not appear in any G/L account item.
    This error however does not appear when posting directly from FI with the same tax code.
    I have tried to change the message control in which case i am getting a dump pointing to PSM-FM.
    Please advise.
    Regards
    Sandeep

    Hi:
              If you could please refer to the contents of  OSS Note 112609 - How are tax codes transferred to conditions ?
    "Symptom
    If a billing document is transferred to accounting the system displays error messages. Transferring tax codes from tax conditions into the pricing conditions and discounts does not function as expected.
    Other terms
    FF805, FF747, FF753, MWSKZ, MWSK1, tax code
    Reason and Prerequisites
    The tax condition in the SD pricing procedure contains incorrect reference steps, there are several tax conditions in the pricing procedure of which the tax codes overwrite each other or a program error exists.
    Solution
    In the accounting document for a billing document, the different G/L account line items are provided with a tax code. The tax code of the G/L accounts is transferred from the tax condition(s) of the billing document. How are the tax codes of the tax conditions transferred into the other conditions of a billing document ?
    Basically:
    The conditions of a billing document are read from top to bottom. As soon as an active tax (inactive = ' ') is read, the system transfers the tax code of this tax into the non-tax conditions as follows:
        1. The reference steps (From-step, To-step) are read (the reference steps are defined in the pricing procedure).
        2. The tax code is transferred into all conditions, for which
        the step number of the condition lies in the pricing procedure between "From-step" and "To-step",
        the condition is not inactive (exactly: the inactive flag is not equal to A (Condition exclusion), M (Inactive due to manual entry), or X (Incorrect)),
        the condition is not statistical (if it is no invoice list condition),
        the condition is no tax condition.
    After the transfer of the tax code the system searches for the next active tax. If further taxes are found, their tax code is again transferred according to the above procedure. If the reference steps of different taxes overlap, tax codes that have already been transferred are overwritten. To all non-tax conditions which in the pricing procedure stand after the last tax condition the tax code of the last active tax condition is transferred if they are not statistical.
    Special features:
        1. If the "From-step" of a tax condition refers to a subtotal of the pricing procedure, the tax code of the tax is not only transferred into the conditions with step number between From-step and To-step but into all non-tax conditions for which
        the step number of the condition in the pricing procedure is lower than the "To-step" of the tax condition.
        the condition is not statistical (if it is no invoice list condition).
        the condition is not a tax condition.
        2. If the "To-step" of the tax condition is smaller than the "From-step", then the system sets "To-step = From-step".
    Notes:
        1. As of Release 4.0 the tax code is no longer transferred in pricing but only when the billing document is released to accounting.
        2. If you use several taxes and tax codes and Customizing is incorrect for the release of billing documents to accounting, among others the system may display error message FF747.
        3. If there are several taxes in the pricing procedure refer to Notes 72173 and 82091 for Releases 3.0D - 3.1G. For Release 3.1H, only note 82091 is relevant.
        4. For conditions which are transferred into accounting (thus not statistical, not inactive conditions) and do not contain a tax code, the system searches for a default tax code which in Accounting Customizing can be set depending on the company code (tax code for non-taxable transactions). This applies to releases up to and including Release 4.5B. For Release 4.6, refer to Note 385127."
    Regards

  • Error in T-Code: F.5E

    Dear all,
    I am getting the following errors while executing T-Code: F.5E
    01. No postings can be created for company code 4000
    02. Errors occur when determining adjustment accounts
    03. Correct the error
    04. Run report SAPF180K
    and i didn't get any error in T-Code: F.5D
    Please help me in this.
    Regards
    JS

    Dear,
    Try to use transaction F.5G -> Redetermine Adjustment Accounts for Balance Sheet Selection.
    This report will display what is wrong with your account determination.
    If you have any problems with account determination go to transaction FBKP > Automatic Posting > Financial statement readjustment.
    I hope It helps you.
    Att.
    Cássio Moreira

  • While Printing Stock Transfer PO giving error message " Tax code in procedu

    Dear SAP MM Cons,
    I want see the print preview of stock transfer purchase order but i getting following error.
    Tax code in procedure TAXINN is invalid
    Where we need not require to give any tax code in the stock transfer PO. Can any body help me to see the printpreview of STO.
    Reagrds
    Abhishek Tiwari

    Kedarji
    Thank you.Urgent please.
    Regards
    venkat
    Edited by: garapati on Feb 15, 2008 12:06 PM

Maybe you are looking for

  • Reports created with CR prior version 9

    Dear all, i am just a "user" of an application in which the reports had being created with CR prior version 9. These reports need to be modified. But if i do with CR XI i will get the information "does not support reports prior version XI. and the re

  • Sync with Vista using Chapura

    My company has recently switched our system to VISTA, making my Zire 72 obsolete. They claim if I can gind Chapura software for hotsyncing FOR Free they may be able to connect me. Any suggestions? Thanks, jlem Post relates to: Zire 72

  • Pre trip approval workflow

    Hi Experts , I am working on Pre trip approval workflow. Functionality : Employee signs in the portal and send the request for trip plan . Manager has 3 options 1. approve 2. reject 3. send back for correction . Issue : approve and reject is working

  • Recording Audio and Video

    Is it possible to record video and audio simultaneously/independently with my iSight camera and built-in microphone? If so, how? -Jimmy

  • CS5 unable to start Subscription

    I have entered my valid serial number and it has check out. When asked to enter my adobe ID, I do so, during authentication it stops and says unable to start subscription, close and reload product. I have done so and the same "unble to start subscrip