T.code AS91 going for shortdump.

I have an Issue that Transaction Code AS91 is going for shortdump. It suggests that there is an error in the program SAPLAIST in line No. 12 of the Include Program "LAISTF3A"  i.e.,
-Termination Occured
call function 'VIEW_SELECT' -
>>> *Termination Occured*      
exporting
            i_check = u_check
            i_view0 = u_view0
            f_view  = ra02s-sicht
       importing
            e_txt20 = t082e-txt20
            f_view  = ra02s-sicht
       exceptions
            no_view_selected = 01.
The Syntax error occured in "line  34" of the Include "LANLGU15" of the Program "SAPLANLG"

there are several notes in service.sap.com/notes on that topic, something to do with views and missing authorizations, you had better check there ... one example is: 908098

Similar Messages

  • Is it pssbl Psting 2 rates to 2 Co codes w/out going for 2 contract model

    Hi Gurus,
    I have a requirement, my client want to post two rates in a billing schema under two differnt co codes without going for two contract model, I see a problem in Account determination, I dont see any other solution within Billing Module, any suggestions  this Please.
    Thanks
    Yash.

    Yash:
    Using billing master data, it is only possible to post to a single company code.
    regards,
    bill.

  • Apple store worked great, now it keeps telling me that I need to verify payment info and my security code is invalid for my card... The card is current? What's going on?

    Apple store worked great, now it keeps telling me that I need to verify payment info and my security code is invalid for my card... The card is current? What's going on?

    Did you enter the last three digits on the back of the card for Visa or Master or the 4 digit # on the front of Amex?

  • Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am mack from Karachi Pakistan

    Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am maqsood  from Karachi Pakistan

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

  • Tax Jurisdiction Code not defined for procedure TAXSE

    Hello,
    We are facing any issue with the error "Tax Jurisdiction Code not defined for procedure TAXSE"
    We are in mid of production bill run and this is getting very critical. Any pointers would be highly appreciated.
    The company code country is SE (Sweden)
    We have 2 BPs with address in California, US.
    The Billing is successful for both the BPs.
    While invoicing, one BP is successful.
    The other is going in error "Tax Jurisdiction Code not defined for procedure TAXSE".
    Error Details
    Jurisdiction code not defined for procedure TAXSE
    Message no. FF748
    Diagnosis
    You have entered a jurisdiction code in a country whose calculation procedure
    does not allow the entry of jurisdiction codes.
    System Response
    Procedure
    Check and, if necessary, correct the entry.
    Procedure for System Administration
    If it is not an input error, check and possibly change the system
    settings.
    To do this, choose Maintain entries (F5).
    Change your calculation procedure so that tax calculation is carried out
    using the jurisdiction code.
    The BP and the CA setup is exact for both the cases.
    Thanks

    Hi
    Go to the following SPRO config-
    SAP Customizing Implementation Guide-->Financial Accounting-->Contract Accounts Receivable and Payable--->Basic Functions--->Contract Accounts--->Field Modifications--->Configure Field Attributes per Activity
    Select Change and double-click on field grouping Jurisdiction code.
    You will get the following screen.
    You have to tick the option Changes plannable and then you will be able to remove jurisdiction code from CAA2
    Hope it helps..
    Thanks,
    Amlan

  • Query execute() API goes for inifinite wait (Hang)

    Hi
    I am using BDB XML 2.4 in Fedora core-4. when I execute xquery update operation followed by FLWOR get query, the execute() API goes for infinite wait. We have tried setting NOWAIT flags to see if it waits for lock, but the program is in INFINITE wait (hang) state.
    Below is the sample code and query I have used.
    #include <dbxml/DbXml.hpp>
    using namespace DbXml;
    int
    main(int argc, char **argv)
         std::string containerName = "myContainer.dbxml";
         std::string docFilename = "./NECB1.xml"; // the filename
         std::string queryString1 = "declare namespace SWI='SWI'; <getBulkResult> { let $i :=collection()//SWI:wmanIfBsOfdmaDownlinkChannelTable return ($i)} </getBulkResult>";
    std::string queryString = "replace node collection()//SWI:wmanIfBsOfdmaDownlinkChannelTable/SWI:wmanIfBsOfdmaDownlinkChannelEntry[@ifIndex='2']/SWI:wmanIfBsOfdmaDownlinkCenterFreq with <SWI:wmanIfBsOfdmaDownlinkCenterFreq>3</SWI:wmanIfBsOfdmaDownlinkCenterFreq>";
         try {
              u_int32_t env_flags=DB_CREATE|DB_INIT_LOCK|DB_INIT_LOG|DB_INIT_MPOOL|DB_AUTO_COMMIT|DB_RECOVER|DB_INIT_TXN;
              DbEnv *clEnv = new DbEnv(0);
    clEnv->open("/tmp",env_flags,0);
              XmlManager mgr;
              if (mgr.existsContainer(containerName))
                   mgr.removeContainer(containerName);
              // Now it is safe to create the container
              XmlContainer cont = mgr.createContainer(containerName);
              u_int32_t cf =1000; //time out value in micro seconds
              clEnv->set_timeout(cf,DB_SET_LOCK_TIMEOUT);
              // All Container modification operations need XmlUpdateContext
              XmlUpdateContext uc = mgr.createUpdateContext();
              // Create the file input stream
    XmlInputStream *myStream = mgr.createLocalFileInputStream(docFilename);
    // Put the document in the container
    cont.putDocument(docFilename, myStream, uc, 0); //TODO try without last parm(0)
              std::cout << "File loaded" << std::endl;
              // Querying requires an XmlQueryContext
              XmlQueryContext qc = mgr.createQueryContext();
              qc.setDefaultCollection(containerName);
              qc.setNamespace("SWI","SWI");
              std::cout << "update query " << std::endl;     
              XmlQueryExpression expr = mgr.prepare(queryString, qc);
              XmlResults res = expr.execute(qc);     //modify
              std::cout << "get query " << std::endl;     
              XmlQueryExpression expr1 = mgr.prepare(queryString1, qc);
    XmlResults res1 = expr1.execute(qc);     //getbulk
              std::cout << "The query modify, '" << expr.getQuery() << "' returned " <<
              res.size() << " result(s)" << std::endl;
              XmlValue value;
              std::cout << "Result 1: " << std::endl;
              while (res.next(value)) {
                   std::cout << "\t" << value.asString() << std::endl;
              std::cout << "The query 2 bulk , '" << expr1.getQuery() << "' returned " <<
    res1.size() << " result(s)" << std::endl;
              XmlValue value1;
    std::cout << "Result 2: " << std::endl;
    while (res1.next(value1)) {
    std::cout << "\t" << value1.asString() << std::endl;
         } catch (XmlException &xe) {
              std::cout << "XmlException: " << xe.what() << std::endl;
         return 0;
    Sample output:
    ===========
    [root@localhost santhosh]# ./query
    File loaded
    update query
    get query
    ^C
    Please let me know what could be the issue. Do I need to set any transaction related flags? I hope it should through exception if any setting/query is wrong.
    Thanks,
    Santhosh

    Hi Santhosh,
    Because you aren't using explicit transactions, your update query is being auto-transacted, and the read-only query is running without a transaction. This is very bad, and is giving you a self-deadlock situation. You should use an explicit transaction for your queries.
    John

  • 'The termination occurred in system E03 with error code 403 and for the rea

    hello gurus,
                     i am very new webdynpro for abap.i strucked in one place at the time of designe a webdynpro component.
    i created one webdynpro component with one view.when i am going to design the view it is showing an error like .
    Service cannot be reached.
    'The termination occurred in system E03 with error code 403 and for the reason Forbidden'
    for this we need to activate some service at sicf transaction level.
    could anybody suggest me which service i need to activate to overcome my problem.
    best regards,
    raja.

    If you are creating webdynpro component for first time then check the below link and activate the service mentioned.
    http://translate.google.co.in/translate?hl=en&sl=de&u=http://help.sap.com/saphelp_nw70/helpdata/de/43/e86de5008b4d9ae10000000a155369/content.htm&ei=C56BTqinCMTqrAfr5sycDg&sa=X&oi=translate&ct=result&resnum=1&ved=0CB8Q7gEwAA&prev=/search%3Fq%3Dhttp://help.sap.com/saphelp_nw70/helpdata/de/43/e86de5008
    First check above one.
    this is for understanding
    http://sdnabape.blogspot.com/2010/11/step-by-step-configuration-for-running.html
    Regards
    Srinivas

  • Oracle JSP Exception code too large for try block

    My jsp is exceeding the memory limit (64KB for Oracle 10g App server i think its the JVM limit),
    so it is throwing exception ,code too large for try block,how to over come this,I cant minimize the use of logic tags because it is business requirement.please help me out.

    I think you need to give a value to the attribute buffer in the <%@ page%> directive to solve the problem.
    There will not be any need of going for pagination then.
    buffer="none | 8kb | sizekb"The buffer size in kilobytes used by the out object to handle output sent from the compiled JSP page to the client Web browser. The default value is 8kb. If you specify a buffer size, the output is buffered with at least the size you specified.
    check the documentation at
    http://java.sun.com/products/jsp/tags/11/syntaxref11.fm7.html
    Uday

  • Scrap Value posting using T-code AS91

    Hello All,
    I am working on LSMW to to create assets for legacy data using the T-code AS91. I need to pass the scrap value for the Depreciation area 40 but I could not find the _field and screen_  to pass the scrap value in the AS91.
    Please help me to find the field and Screen (Tab) in AS91.
    Table     ANLB     
    Field      SCHRW     
    Thanks,
    Srini

    Double click on depreciation area for which you want to put scrap value in AS91. you will find that field at the bottom.
    if you still do not find scrap value field there, then check screen layout for dep. area in AO21.
    is LSMW really required? use std. BAPI for legacy asset upload.. BAPI_FIXEDASSET_OVRTAKE_CREATE.
    Regards,
    Sayujya

  • At F4IF_INT_TABLE_VALUE_REQUEST program goes for dump

    Hi,
    The following piece of code in my program goes for dump.Please help:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_screen-low.
      SELECT FIELD1 FROM TXXX INTO TABLE T_field.
        IF SY-SUBRC = 0.
          CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
            EXPORTING
              RETFIELD               = s_screen
            TABLES
              VALUE_TAB              = T_field.
        ENDIF.

    Hi,
    I think you need to write
    Try with the below code.
    PARAMETERS: p_bukrs(4).
    DATA: BEGIN OF itab OCCURS 0,
           bukrs LIKE t001-bukrs,
          END OF itab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_bukrs.
      SELECT bukrs FROM t001 INTO TABLE itab.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'BUKRS'  ---> Field from internal table Itab
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'P_BUKRS' --> Screen field
          value_org       = 'S'
        TABLES
          value_tab       = itab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 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.
      ENDIF.
    If it is a select option is s_bukrs then
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'BUKRS'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'S_BUKRS-LOW'
          value_org       = 'S'
        TABLES
          value_tab       = itab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 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.
      ENDIF.
    Regards,
    Kumar Bandanadham
    Edited by: Velangini Showry Maria Kumar Bandanadham on Jun 12, 2009 7:00 AM

  • Getting Error While Going For Print Preview in ALV Report

    Hi,
    We doveloped a new report based on client requirment while going for print preview all the fields are shufling.Can you please guide me I am unable to solve this problem.
    Regards
    Suresh

    Do you use a field for coloring a column or cell?
    If the coding is not too large it could be helpfull to post the coding as well.
    Regards,
    John.

  • HT1937 I have successfully restored my iPhone 3 gs( Ios )  by itunes. After activation it is asking for activation. When I am going for activation its saying that no SIM card is inserted, but I have already Ufone SIM card is inserted. I checked it with ot

    I have successfully restored my iPhone 3 gs( Ios )  by itunes. After activation it is asking for activation. When I am going for activation its saying that no SIM card is inserted, but I have already Ufone SIM card is inserted. I checked it with other SIM card like Zong etc but the response was same i.e; no SIM card is inserted. It not catching the signals. I am trying to use  my wifi to activate my iphone but it iss not processing then i used itunes to activate by it's again saying that no sim card is detected.
    My all contacts and all data is in this mobile. Now Iam unable to contact anyone. Please help me. How can I sort it out?
    Thank you
    Regards
    Wazir Ali

    Well, if you did it yourself, then there is a chance that you damaged some other component inside the device that is causing your issue. The iPhone's are not user serviceable, and once you have opened the device you have voided any warranty and post-warranty support from Apple. I would try Google to see if you can find any other way to repair your device, as Apple will no longer look at it.

  • I have 3 mail accounts in apple mail. One of them has had the spinning ball going for several days and I cannot receive mail in this account. I can receive mail in this account on my iPad and by signing into aol on safari. It's obviously a glitch in Apple

    I have 3 mail accounts in apple mail. One of them has had the spinning ball going for several days and I cannot receive mail in this account or delete messages etc. For some  reason, I CAN send mail on Apple mail using this account, although it takes several minutes. I can receive mail in this account on my iPad and by signing into aol on safari and internet explorer on my office PC. It's obviously a glitch in Apple's Mail. I've deleted this account and reopened it in Mail on my Mac Pro with no difference. Any suggestions would be greatly appreciated, this E amil account is major to my business.

    http://support.apple.com/kb/TS3276
    sounds like a corrupt database or index
    the glitch is your home folder and mail folder, esp look at syncservices
    I'd post in the mail or Lion forum where you will find similar issues being discussed.
    http://www.apple.com/support/mail

  • If I have my product code and cd for Adobe Creative Suite 5 can I obtain the serial number?

    If I have my product code and cd for Adobe Creative Suite 5 can I obtain the serial number? I had the serial number on my college email which I can't access now that I've graduated.

    adobe support might be able to help you,
    contact adobe support, https://helpx.adobe.com/contact.html

  • Company code set up for TEM

    Hi,
    How we set up the company code for training event management ? Currently one company code is activated for TEM  , business want all company code need to be activated for TEM. Please suggest .
    Regards Yogesh

    Mr. Naren,
    This is not a reply from an expert. I am practicing in IDES on my own in my house. I try to do all things in configuration on my own with the available study material.
    Whenever I get any error first I try myself whether it takes 2/3 days to get it resolved. Then I go to Google for further search help. Finally I go to SCN.
    Thanks & regards,
    Supriyo

Maybe you are looking for

  • Sync under windows7

    My nano worked perfectly on my old PC with XP. I switched to a new PC under Windows 7 and my ipod is recognized by windows but not by i tunes. I tried a dozen times all the tricks advised on the Apple forums. No success. I spent almost 2 hours at the

  • Tax Line items are  showing seperately as per exp in FB60

    Hi, In FB60, I have booked the two expenses with same tax code. While simulating the entry the tax lines are showing separately as per expenses. For example: Suppose my tax code = AB which is equal to 10% maintained in FTXP. At present entry is comin

  • Bright White Screen.

    My Ipod Nano was working fine. I turned it off, and went to bed. The next morning I got up and turned it on. All that showed was a bright white screen. I reset it a couple of times, I pluged it up to the USB port, and I let it die completely. None of

  • Forms Modules in EBS

    I need to know what what R12 and 11i modules use Oracle Forms. What Forms were have been re-architected in R12 to improve performance. I am not able to find any specific information in metalink thanks Mike

  • TS1702 Pages froze up...can't get it to do anything

    Was working on a document in Pages when it froze up. Have tried restarting iPad..nothing working