FM K_LINE_ITEM_ACT_DATA_GET doesn not display result

HI Guys,
FM K_LINE_ITEM_ACT_DATA_GET doesn't display result for one of my user. Instead of having to debug standard function , have anybody experienced this before and can tell if user might miss authorization ?  please advice ...

ee

Similar Messages

  • Why a field with javascript formula is not displaying result on .pdf form

    I have created a .pdf form from an exel file.
    I have assigned java script formula such as
    if (QtyRow1 > 0) { QtyRow1, €UPRow1;}else{€TotalPriceRow1="";}
    Problem is, result is not displayed on form.
    What should I do?
    J'ai créer un formulaire en format .pdf depuis un fichier exel.
    J'ai assigné une formule dans le script de calcul personnalisé:
    if (QtyRow1 > 0) { QtyRow1, €UPRow1;}else{€TotalPriceRow1="";}
    Mon problème est que le résultat ne s'affiche pas sur la forme.
    Que dois-je faire pour remédier à ce problème?
    Merci

    The idea behind the formula might be correct, but you can't just invent
    your own syntax and expect it to work...
    On Thu, Jan 29, 2015 at 9:06 PM, christophef13812813 <

  • Smart forms not displaying result from sub routine

    I am working on a smart form and need to display the description of the fabric code. Under Form Routines, I create a sub routine
    FORM fcc_values USING gv_fabrictext.
    which is supposed to store the description in gv_fabrictext. GV_FABRICTEXT has been declared in global data as char64. Then I call prior to displaying my table as
    perform fcc_values using gv_fabrictext.
    And then insert the field &gv_fabrictext& in cell but this does not display any result
    I know for sure that this sub routine works as I have tested it separately as a test program. Any ideas?

    1. put break point at ssf_function madulename and check field value.
    or
    2 fm_name export parameter ur not mentioned
    or
    3 global variable not defined properly
    go through above. still if u didnt get
    need program where the problem to find.
    Message was edited by:
            Deepa KN

  • WAD Analysis Item not displaying results

    Hi
    I have a very simple web template, containing a dropdown, an analysis item and the last refreshed date of my query.
    The dropdown displays the characteristics properly but the analysis item only shows the query columns headers not the data and a line "overall results", it's displaying only these two lines.
    I used WAD 3.x before and the table item displayed this query results properly.
    Is there some setting that has to be changed to display the data?
    Am I using the right item, the analysis item ?
    Any help is appreciated.
    Thank you,

    Hi Andrea,
    You have mentioned being on NW 7 EhP1 with SP 6 and patch 10. The SAP note clearly states that the correction is only available as part of a higher SP or patch which is either upgrading to "Support Package 07 for SAP NW BI7.0 EhP 1 BI JAVA" OR "Importing BI JAVA Patch SP06 #20 (Support Package 06, Patch level 20) for SAP EHP1 for NetWeaver 7.0 (7.01) BI JAVA into your BI-System".
    --Priya

  • FlexPMD View not displaying results Eclipse 3.6

    Below are the relevant software installations. FlexPMD is configured as defined in the documentation.
    When running FlexPMD, it appears to be churning away, however, there are no results that appear in the FlexPMD View window. Is this an issue only with Eclipse 3.6???
    ** Software versions ***
    FlexPMD 1.0.0.v200912091712
    flex-pmd-all-in-one-bundle-1.2
    Eclipse 3.6
    FlashBuilder 4.0.1
    *** Eclipse Log File Entries ***
    !ENTRY org.eclipse.ui 2 0 2011-02-27 10:49:20.167
    !MESSAGE Warnings while parsing the key bindings from the 'org.eclipse.ui.commands' extension point
    !SUBENTRY 1 org.eclipse.ui 2 0 2011-02-27 10:49:20.167
    !MESSAGE Cannot bind to an undefined command: plug-in='com.adobe.ac.pmd.eclipse', id='com.adobe.ac.pmd.eclipse.flexpmd.runCommand.category'
    !ENTRY org.eclipse.ui 4 4 2011-02-27 10:49:20.707
    !MESSAGE Unable to create menu item "com.adobe.ac.pmd.eclipse.toolbar.runCommand", command "com.adobe.ac.pmd.eclipse.flexpmd.runCommand.category" not defined

    Thanks, I removed the old version and installed the new one using the url
    provided. Initially, the same results. When I looked at the log, I could see
    there was a permissions error when FlexPMD tries to access one of its temp
    directories (see below)
    !ENTRY com.adobe.ac.pmd.eclipse 1 0 2011-02-28 08:42:17.003
    !MESSAGE [java, -Xmx256m, -jar,
    C:/eclipse/configuration/org.eclipse.osgi/bundles/874/1/.cp/flexPmdRuntime//flex-pmd-comma nd-line-1.1.jar,
    -s,
    C:\workspace\BlissClient\src\com\othenos\bliss\business\DocumentDelegate.as,
    -o, C:\Users\Mike\AppData\Local\Temp\flexpmd5980952838914453410dir]
    !ENTRY com.adobe.ac.pmd.eclipse 1 0 2011-02-28 08:42:22.112
    !MESSAGE Feb 28, 2011 8:42:22 AM
    com.adobe.ac.pmd.engines.AbstractFlexPmdEngine
    WARNING: Access is denied at
    java.io.WinNTFileSystem.createFileExclusively(Native Method)
    java.io.File.checkAndCreate(Unknown Source)
    java.io.File.createTempFile(Unknown Source)
    So, I  quite eclipse and ran it as administrator. This time there FlexPMD
    was able to perform the operations and display the results.
    I do not know if this problem is related to something I have done regarding
    installation of eclipse or if it has something to do with the way FlexPMD is
    installed. Normally, I do not have to run eclipse as administrator to get
    plugins to work. I suspect it has to do with the FlexPMD's creation of the
    temp directory. If there is anything else I can do to help you with this
    issue please let me know.
    Thanks for the fix. I am looking forward to using the capabilities of
    FlexPMD.
    -Mike Robinson

  • Query in Servlet not displaying results in html table

    Hi,
    I am aware that putting html in a servlet is not good practice. In my case, it is just for testing purposes.
    Environment: WLS 12c on Windows, DB 11.2.0.3
    I created an html form and a servlet in a Dynamic Web Project. The form parameters are sent to the servlet,
    but the results are not being displayed.
    HTML form:
    <input text name="p_1"
    Servlet:
    import javax.servlet.ServletException;
    import javax.servlet.annotation.WebServlet;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.PrintWriter;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    * Servlet implementation class QueryServlet
    @WebServlet("/QueryServlet")
    public class QueryServlet extends HttpServlet {
        private static final long serialVersionUID = 1L;
         * @see HttpServlet#HttpServlet()
        public QueryServlet() {
            super();
            // TODO Auto-generated constructor stub
         * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
        protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            // TODO Auto-generated method stub
            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            Connection conn = null;
            Statement stmt = null;
            try {
                conn = DriverManager.getConnection("jdbc:oracle:thin:@home-server:1521:val01", "USER", "PW");
                stmt = conn.createStatement();
    String sqlStr = "SELECT....
    ... WHERE p_1 =
    +  "'" + request.getParameter("p_1") + "'"
    out.println("<html><head><title>Query Results</title></head><body>");
                out.println("<p>Your query is: " + sqlStr + "</p>");
                out.println("<p>Your are connected to: " + conn + "</p>");
    --> OUTPUT ONLY UNTIL HERE <--           
                // Get data
                ResultSet rset = stmt.executeQuery(sqlStr);
                int count = 0;
                while(rset.next()){
                    int cid  = rset.getInt("CID");
    // Display data in html table
    out.println("<table>");
                    out.println("<tr>");
                    out.println("<td>" + cid + "</td>");
    rset.close();
                out.println("<p>====== " + count + " records found =======</p>");
                out.println("</body></html>");
                 catch (SQLException ex) {
                    ex.printStackTrace();
                    finally {
                        out.close();
                        try {
                            if (stmt != null) stmt.close();
                            if (conn != null) conn.close();
                        } catch (SQLException ex) {
                            ex.printStackTrace();
    Help greatly appreciated. Thanks!

    Possibly, the js file is not being detected by the javascript runtime.It would be better if you tried something like :
    ("<script src="<%=request.getContextPath()%>/WEB-INF/classes/ua.js"></script>

  • Content Search and 'Items Matching a Tag' Web Part Not Displaying Results Shown in Preview

    Hi
    I've been trying to set up both the Content Search and Items Matching a Tag Web Parts with the same issue.  In both cases I can create a query which displays the expected results in the Search Result Preview pane but no results are returned when browsing
    the page.
    I'm a Site Collection administrator
    tried viewing the page in IE8, Chrome and Firefox
    another user account with Full Control permissions on the site results in the same issue
    I've reindexed the site (which has completed as other alterations on the content are now being returned in the normal search results)
    I've tried removing and re-adding the offending web parts
    The queries in both web parts are pushed back to the most simple possible - ie all documents in the current site collection for the Content Search query and 'Current site collection + Don't restrict by any tag' in the Items Matching a Tag
    I haven't touched the display templates or made any other alterations AT ALL - this is a virgin site collection beyond documents in a library
    Does anyone have any ideas?

    I was able to make this do what I needed it to.

  • Bex Analyzer 70 opens query but does not display results

    Hi Gurus,
    My computer is windows XP 2002with Service Pack2. I have MS Office 2003.
    My SAP GUI is 7.1 with SP 5. ( I am unable to install Windows XP SP3 on my computer).
    70 Analyzer is not working for me. When I log in, the XL sheet comes up but the Bex realted icons are not showing up.
    When I open 3.x Analyzer, it works fine. The XL has BEX  icons andI can open the query and get results.
    Any suggestions are greatly appreciated andI would award points.
    Thanks in advance.

    Rao,
    This is common problem.
    Try to get latest patches in 7.0 and u can take help of any Basis person.
    bhaskar

  • Formula in Query does not display Results Rows

    All -
    I know that people have posted this same thread before but I've been unable to find an answer or the questions have not been resolved.
    I have created a simple query and the key figure columns are all formulae.  The calculations are all the same format:  KF1/KF2
    Where
    KF1 is an Amount kf with Local Currency as the unit (the dataset only contains GBP)
    And
    KF2 is a counter (the standard 1ROWCOUNT 'number of records' key figure).
    The calculations work fine in the rows but I cannot get any results in any Results rows or Overall Result.  Something is populated when I do not define anything in "Calculate Results As..." for the formulae, but this is not a summation, and when I select Summation or Total, the Results rows are blank.
    I have tried altering settings for the key figures in the admin workbench, I've tried recreating them as global Calculated Key Figures, and I've tried playing around with the settings on the Calculation tab, but nothing works.
    Please does someone have an answer to this??
    Thanks
    Mischa

    Hi,
    As follows -
         Cost (£)     # Records     Formula
    Ref1     500     2     250
    Ref2     300     1     300
    Ref3     900     3     300
    RESULT     1700     6     
    I have the Cost (£) key figure and the # Records Key figure.  These are both hidden. 
    The formula behind the Formula is simply Cost(£)/#Records.
    The characteristic used is not based on the most granular level hence the need for the calculation.
    Although the formula is working correctly on a row by row basis, the results rows are blank.
    As mentioned above, I have tried changing these to Calculated Key Figures, this has not worked.
    Thanks
    Mischa

  • RDF report not displaying result in E-business suite.

    Hi,
    I have designed a very simple rdf report in Oracle Reports 10g.It has a single select query in it which selects some columns.When I run the report in the report builder then I get the proper result but when I run the report from E-business suite(11.5.10.2) I get only the headings(column names which I am selecting).There is no data beneath these headings.Can anyone guide me on where I am going wrong?

    Thanks for your time.I have found the error.My parameters were getting passed incorrectly.Now it is working correctly.
    Regards

  • XML SQL query not displaying result in SQLPLUS

    Have a registered schema and 1 xml document successfully inserted using Oracle 10.2.0.3.0
    I then run the following query:
    select extract(object_value,'/warehouse/warehousename')from xwarehouses;
    Expecting 1 record to be returned in SQLPLUS but get the following result:
    EXTRACT(OBJECT_VALUE,'/WAREHOUSE/WAREHOUSENAME')
    1 row selected.
    Can anyone shed any light? Is it a setting in SQLPlus

    Thanks A Non
    I still cannot see where I am going wrong!
    The schema registers okay. My inserts work fine.
    --register the schema
    begin
    dbms_xmlschema.registerSchema(
    'http://www.oracle.com/xwarehouses.xsd',
    '<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/xwarehouses.xsd"
    xmlns:who="http://www.oracle.com/xwarehouses.xsd"
    version="1.0"
    elementFormDefault="unqualified">
    <simpleType name="RentalType">
    <restriction base="string">
    <enumeration value="Rented"/>
    <enumeration value="Owned"/>
    </restriction>
    </simpleType>
    <simpleType name="ParkingType">
    <restriction base="string">
    <enumeration value="Street"/>
    <enumeration value="Lot"/>
    </restriction>
    </simpleType>
    <element name = "Warehouse">
    <complexType>
    <sequence>
    <element name = "WarehouseId" type = "positiveInteger"/>
    <element name = "WarehouseName" type = "string"/>
    <element name = "Building" type = "who:RentalType"/>
    <element name = "Area" type = "positiveInteger"/>
    <element name = "Docks" type = "positiveInteger"/>
    <element name = "DockType" type = "string"/>
    <element name = "WaterAccess" type = "boolean"/>
    <element name = "RailAccess" type = "boolean"/>
    <element name = "Parking" type = "who:ParkingType"/>
    <element name = "VClearance" type = "positiveInteger"/>
    </sequence>
    </complexType>
    </element>
    </schema>',
    TRUE, TRUE, FALSE, FALSE);
    end;
    --create the table
    CREATE TABLE xwarehouses OF XMLTYPE
    XMLSCHEMA "http://www.oracle.com/xwarehouses.xsd"
    ELEMENT "Warehouse";
    --Insert
    INSERT INTO xwarehouses VALUES(
    xmltype.createxml('<?xml version="1.0"?>
    <who:Warehouse xmlns:who="http://www.oracle.com/xwarehouses.xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
    xs:schemaLocation="http://www.oracle.com/xwarehouses.xsd
    http://www.oracle.com/xwarehouses.xsd">
    <WarehouseId>1</WarehouseId>
    <WarehouseName>Southlake, Texas</WarehouseName>
    <Building>Owned</Building>
    <Area>25000</Area>
    <Docks>2</Docks>
    <DockType>Rear load</DockType>
    <WaterAccess>true</WaterAccess>
    <RailAccess>false</RailAccess>
    <Parking>Street</Parking>
    <VClearance>10</VClearance>
    </who:Warehouse>'));
    I don't know if you see the error
    Thanks again.

  • Page not displaying results correctly

    I have a Search page developed in dreamweaver that talks to an SQL database. The SQL server behaviour in dreamweaver works fine and filters correctly but the page pulls back all the recordsets - has anyone seen this before as its quite urgent that i fix this issue.
    PLEASE PLEASE PLEASE can someone help !!

    Your post has gone nearly 24 hours without a response almost certainly because no one understands the actual problem. What do you mean by this?
    the page pulls back all the recordsets
    It would also help if you state which server model you're using. Your screen name suggests it might be ASP, and that you hate using it. On the other hand, it could mean you hate ASP so much that you're using something else.
    It might also help if you post your code in here, too.

  • Query Result Doesn't Display

    Hi All,
    When i run the code below the query with SELECT statement display result as expected but other queries with LOOP and Object oriented running againt same table as that used in SELECT statement doesn't show anything, not even the output page. The status bar only showed the the program has complied without syntax error but no output page.
    Please I need somebody to tell me why is the output not showing.
    REPORT  read_table_flights.
    DATA: itab_flight TYPE STANDARD TABLE OF sflight,
          wa_flight TYPE sflight,
          alv TYPE REF TO cl_salv_table.
    FIELD-SYMBOLS: <wa_comp> TYPE any.
    SELECT *
      FROM sflight INTO TABLE itab_flight
      WHERE carrid = 'LH' AND seatsmax < 250 .
    Alternative one: Loop at table and write the different components of work area
    LOOP AT itab_flight INTO wa_flight.
    WRITE:  wa_flight-carrid,
            wa_flight-connid,
            wa_flight-fldate,
            wa_flight-price,
            wa_flight-currency,
            wa_flight-planetype,
            wa_flight-seatsmax,
            wa_flight-seatsocc,
            wa_flight-paymentsum.
            skip.
    endloop.
    **Alternative two: Loop at table with dynamic assign of component
    *LOOP AT itab_flight INTO wa_flight.
    DO.
       ASSIGN COMPONENT sy-index OF STRUCTURE wa_flight TO <wa_comp>.
       IF sy-subrc <> 0.
         SKIP.
         EXIT.
       ENDIF.
       WRITE <wa_comp>.
    ENDDO.
    *ENDLOOP.
    object oriented way
    *cl_salv_table=>factory( IMPORTING r_salv_table = alv
                           CHANGING  t_table      = itab_flight ).
    *alv->display( ).

    Thanks SaiRam  for your prompt reply. and thanks to everyone who has read my post.
    The GUI i have is fresh installation. The SELECT query is working fine but LOOP doesn't display result even when SELECT does.
    Please help me.

  • BEX Query not dispaying results

    Hi All,
    I think this week am hit with number of issues....as mentioned in my earlier posts am new to SAP BW and having issues.
    Issue:
    We have a BEx query and it is not displaying results(in Web report). Error is "could not find any records for the given selection......... "
    I have checked the Infocube for the given selection in Query and I can display the records where as it is not displaying at all in BEx query results.
    I have reactivated the cube to see whether the data flows through but it didn't work.
    I tried executing query using RSRT and it is not displaying any results.
    I have deleted data in the infocube and loaded it again and it didn't work
    Any help would be much appreciated.
    Cheers
    Sandeep

    Hi Akshay,
    No errors while executing query under RSRT.
    Yes we are using time variants and we have included fical variant under characteristic restrictions.
    Cheers
    sandeep

  • Altavista will not display search results

    altavista us will not display search results. altavista canada works fine. On us site results will display in no style page but not in basic page style. The page comes up blank. This may have been caused by delta search. I think I have rid my computer of delta? Reloaded firefox. I use norton 360 and have run registry clean up and virus scans. Also cleaned explorer. In explorer the u.s. altavista works ok that is why I think it something to do with firefox and delta search showed up at the same time unwanted and forced a change on my home page. Have cleared computer of what delta files I could find my have something in the registry but I would not know what to look for or to do with. I am running xp

    In a round about way you solved my problem cor-el ! At the end of standard diagnostic there was mention of malware so I ran malwarebytes before running profile manager. malwarebytes found 21 items some in the registry. deleted these items and tried altavista us again and to my surprise it is working ok now.I thought norton 360 would catch such things but I guess it doesn't ! will keep and run a malware program from now on. thank you for your help.

Maybe you are looking for

  • How to access a file in Unix server from windows using java

    I want to access a file in unix server from windows using java program. I have the following code. I am able to open the url in a web browser. String urlStr="ftp:user:passwd@unix-server:ftp-port//javatest/test.csv;type=i"; URL url = new URL(urlStr);

  • Keywords Store

    Hello! I have a problem with my blackberry curve 8520. After Blackberry Messenger Update, appeared in the screen to permit or not the certify that was not fiable. I accepted and it asked me to insert my keywords Store password. I put it but it seems

  • IPod to iTunes

    I've had a HD failure on my iMac. I'm trying to transfer songs back to my HD from my iPod, but as of yet I've been unsuccessful. I've tried Senuti which did not fully transfer all the songs, though I tried it repeatedly. Any ideas as to what to do (o

  • Master Detail report   report error: ORA-20001: Error fetching column

    Hi All, I am a newbie in apex and try to create a master detail form, where the detail is displayed as a report. After inserting a new row in the master form i like to create the detail. It displays then ORA-01403: no data found I also insert in the

  • User/group overview from OID

    Hello, I am wondering if there is some/method available to produce a tree overview of all groups and users which are administered in OID. I have an Oracle Portal environment and I need to be able to specifiy a list of all users and groups they are in