Datasource which bring information from table s614

Hi
Is there any  datasource which brings information to bw from table S614..
what is the purpose of this S614 table..
Thanks in advance
Teja

Hi Teja,
S614, this is a structure, from s500 these are custom Info Structures ...so u have to create ur datasource based on this i guess...
Assign points if it helps..
Regards,
ARK
null
null

Similar Messages

  • SAP Query - Additional field that collects information from table RESB

    Hello gurus. I have a question.
    I want to create a SAP Query that shows me the stock level of a list of materials, and also show me the total quantity of order reservations in an additional field.
    I created an InfoSet with table MARD, which is the one that holds the Stock information in a plant. Then I created an additional field which would read information from table RESB, the table that holds order reservations per material.
    So I wrote this piece of code:
    SELECT * FROM RESB
    WHERE MATNR EQ MARD-MATNR and
           WERKS EQ MARD-WERKS.
    ENDSELECT.
    if ( sy-dbcnt NE '0').
          MOVE RESB-BDMNG to ZQTY.
    ELSE.
          MOVE '' to ZQTY.
    ENDIF.
    This works fine. However, this is currently just catching the first record in table RESB that matches my condition.
    What I would like is to collect every instance of RESB-BDMNG and add them to field "ZQTY", have it loop in RESB until it finishes finding every record that match the MATNR and WERKS. With this I could get the total number of order reservations that this material has in that table.
    Could someone share some coding that would help me achieve this?

    Yes! That did it. That's what I needed to do. Thank you so much.
    While I'm at it, let me ask you a related question.
    When I execute the query, in the first records of the query where there's no value from RESB to transfer, the value of field ZQTY appears empty. Once it finds the first record in RESB and it populates ZQTY with a value, then the rest of the records with no hit get the proper value of 0.
    Do you know why the first records in the query appear empty and not with a 0? Is there anything I should add to the coding to fix this?

  • How to design plug-in which extract information from file opened in illustrator

    Hi Everyone,
    I want to design a plug-in in adobe illustrator which could extract information from pdf file which is opened in illustrator.
    Can anyone give me direction from where could I start.??
    Thanks in advance.

    This is very difficult in any API because there are no tables in PDF.
    If the table is at a known exact location you would extract text from each known cell location
    If you have to discover tables you need to decide how to recognise them: perhaps by looking for drawn lines and analysing their relationship to see if they form a grid; then use the positions derived to get the text from the table.

  • How to design plug-in which extract information from file opened in illustrator in Illustrator

    Hi Everyone,
    I want to design a plug-in in adobe illustrator which could extract information from pdf file which is opened in illustrator.
    Can anyone give me direction from where could I start.??
    Thanks in advance.

    Moving this discussion to illustration community.

  • Link information from tables and show the "best " box.

    Hello! I'm totally new to this great software and the truth is I'm lost D:
    I try to explain in more detail what I have to do, I hope you can help me please it's urgent T_T
    I must make 3 tables should be linked to each other , ie a table where the name of a user will be manually enter, another where you manually enter the last name of a user and the third which will automatically enter the power of each user (for the automatic entry i will use a random data ) . Each table will have a box number , for example :
    Table 1, Box 1: Paul
    Table 2, Box 1: Gate
    Table 3, Box 1: 3.74
    Table 1, Box 2: Miguel
    Table 2, Box 2: Ramos
    Table 3, Box 2: 4.99
    Table 1, Box 3: Maelle
    Table 2, Box 3: Branco
    Table 3, Box 3 : 4.98
    I mean, I link the box to a table with the other three . And given that the program must compare the data in Table 3 (power ) and display data from the best user ( who has the highest power). In this example, the program should display :
    BEST USER :
    NAME: MIGUEL RAMOS
    POWER: 4.99
    (Is not nessesary save the information when i will close the program)
    I do not know if I 'm asking a lot , I have a very clear idea in my head of what I have to do , but being a new software for my not know how to implement it .
    Thank you in advance for your help and quick and ilustrative response! xD
    Solved!
    Go to Solution.

    Hi Miguel_Exe
    -Please check the snippet it does exactly what you said.
    -The Box 1,2,3 you mentioned are array indices.For example if you use table_1 and index it with 0(Yes, arrays index starts from 0), you will get first element which is Miguel-Vi used is Index Array.
    -For linking you can use string concatenation. Get each element from array using proper index and use Concatenate Strings.
    -I am getting the last Numerical Table and passing it to Array Max and Min to get where maximum value is and using same index (Box value) am getting full name.
    Thanks
    uday,
    Please Mark the solution as accepted if your problem is solved and help author by clicking on kudoes
    Certified LabVIEW Associate Developer (CLAD) Using LV13
    Attachments:
    Nearest_name.png ‏30 KB

  • How can I retrieve the col data size and Null information from table using labview connectivity toolset

    Hi, there,
    I am wondering how to get the table information by labview database
    connectivity toolset. The table list vi comes with the toolset can get
    only col name, data type and data size. And I found the the data size
    always gives back -1, even though it is a string type. Do somebody has
    some idea about it?
    Thanks.
    JJ

    JJ,
    Go into the diagrams of the DBTools List Columns and DBTools Get Properties respectively. When you inspect this diagram, you will see the raw ActiveX properties and methods called to get the size information. The value of -1 means the requested recordset is already closed. This is the sort of thing that is controled by the driver (ODBC, OLE DB, Jet, etc) you are using. Notice that you can right click on the property and invoke nodes and get more information about these specific items directly from the ADO online help.
    Crystal

  • Get information from table to checkbox

    I have a ms access database named "Animal" and 2 files: choices.jsp and choose.jsp
    This is the code of choices.jsp:
    <form action="choose.jsp" method="get">       
    <%
             String  drivername="sun.jdbc.odbc.JdbcOdbcDriver";
             String  URL="jdbc:odbc:Animal";
             String  sqlQuery="SELECT * FROM Animal";
             Connection  con=null;
             Statement   stmt=null;
             ResultSet   rs=null;
             Class.forName(drivername).newInstance();
             con=DriverManager.getConnection(URL);
             stmt=con.createStatement();
             rs=stmt.executeQuery(sqlQuery);
           ResultSetMetaData rsmd=rs.getMetaData();
          while(rs.next()){%>
         <input type="checkbox" name="content" value="<%=rs.getString(2)%>">
         <%
         out.println(rs.getString(2));
         out.println("<br>");
    %>
         <input type="submit" value="Submit" />This is code of choose.jsp:
    <%
         String[]     s=request.getParameterValues("content");
         out.println("You chosen:");
         for(int i=0;i<s.length;i++)
              out.println(s);
    %>When I click submit button, it has error:
    org.apache.jasper.JasperException: An exception occurred processing JSP page /choice.jsp at line 30
    27:       while(rs.next()){%>
    28:      <input type="checkbox" name="noidung" value="<%=rs.getString(2)%>">
    29:      <%
    30:      out.println(rs.getString(2));
    31:      out.println("<br>");
    32:      }
    33:
    Edited by: meodihia on Nov 23, 2008 5:26 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    meodihia wrote:
    org.apache.jasper.JasperException: An exception occurred processing JSP page /choice.jsp at line 30Which exception? You need to investigate this exception. The JasperException is just a wrapper exception whenever an unexpected exception occurs in your code. Read the stacktrace and the logs and fix this exception accordingly.
    That said, Java code belongs in Java classes rather than JSP files. It improves at least testability, maintainability and reusability.

  • Getting information from DB02 tcode in function

    I have developed a report which retrieves information from DB02 and it show information on a Word document.
    I have used functions for Oracle and SQL server databases, but at my actual landscape, I was using DB2 for AIX and I have not the knowledge how to pick up de information.
    In my report I use functions to pick up data for DB02, fill up internal table and after that to show the result in Word document
    In Oracle I use function
    DB02_ORA_FILL_TD110
    Is any function in DB6 for AIX I can obtain the same result??
    Regards

    I'm not an AIX guru but try, $ prtconf

  • Problem in selecting object currency fields from table COSP and COSS

    Dear All,
    We are facing a issue while creating a virtual DataSource   for CCA plan from tables COSS and COSP.
    The issue is that we are able to activate the view by including the fields value in object currency ( WOG001 - WOG012 ) but not able  to create a DataSource   on the view.
    We are able to include the transaction currency value but as our application requires us to include the object currency fields.
    Error displayed:Invalid extract structure template .This operation failed, because the template structure quantity fields or currency fields, for example, field WOG001 refer to a different table.
    Any tips to resolve this issue would be valuable.
    Thanks in advance
    Rashmi Nair.

    HI,
    Can you see this thread.
    Re: How to display BAPI decimal values into webdynpro!
    Thanks
    nageswar

  • Extracting information from Microsoft Acces

    Hello
    I need help, how do I extract information from tables in a database of Microsoft Access to SAP BW?
    If there is a manual please will thank you.
    Nandirri

    Please check if your client have XI or PI consultant, discuss with them.
    Regards,
    Sushant

  • IS-U DataSource for Budget Billing Plan (table EABP) available?

    Dear all,
    We're looking for a Datasource to extract data from table EABP, containing masterdata of Budget Billing Plan.
    Anybody any idea if this datasource is available?
    Kind regards, Harjan

    Dennis,
    Thanks for your answer.
    We decided to create a generic datasource with deltamechanism on creation date and change date. We created a DS with Function Module for this.
    However, when a Budget Billing Plan is deleted in IS-U it's deleted from table EABP.
    Thus this deletion never flows into BI, leaving the deleted BBP in BI.
    Any idea how to solve this?
    Kind regards, Harjan

  • Create a procedure which requires displaying information from two tables

    What if we want to create a procedure which requires displaying information from two tables. In this situation,
    I need to display all the details of an employee from an 'emp' table based on the deptno. and also their salary information which is
    stored in "Salgrade" Table. Is the use of "And" the correct way of using it?
    Do I need to declare all the attributes before begin or I can just access them directly? Thanks
    Create Procedure findDept
    ( I_deptno IN number
    ) As
    Begin
    Select Ename, Job, MGR, Hiredate, Sal, Comm, Dept_no from emp and exp, grade , location from salgrade where dept_no
    = I_Deptno;
    Exception
    When NO_Data_Found then
    DBMS_Output.Put_Line(' Department not found"|| I_deptno);
    End findDept;

    Hi,
    Besides Qwerty's remark, you've also got a quoting error:
    Change
    DBMS_Output.Put_Line(' Department not found"|| I_deptno);
    {code}
    into
    {code}
    dbms_output.put_line(' Department not found: '|| i_deptno);
    {code}
    Which leads to the question:
    What do you want to do when a record is found?
    Display it?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How do I pull information from a master table to another table?

    This may be quite simple, but I'm missing something.  I want to pull information from my master table into a secondary table.  In the Master Table in Column A, I have a list of teams ("Team 1" through "Team 12"), then in Columns B through D I have information for each assignment given to each team.  I want to have a secondary table for each team that lists all of their assignments.  So, this is what I want:   if Column A says 'Team 1', then I want the secondary table to have the info from Columns B through D.
    Again, I'm sure it's simple, but I just can't figure it out.
    Thanks for any help.
    Mark

    Hi Mark,
    1)  But does this work if in the Master Table (which will be over 300 rows long) each team will show up 10-15 times over the course of the 300 rows randomly (hence the need to have sub-tables for each team...so it's easier for them to see what their tasks are).
    Your fellow Numbers enthusiasts in this forum will need more information to help you with that. You are on the right track though with the idea of many tables. Therein lies the power of Numbers.
    2)  I'm a bit confused by the formula.  With the "$A2" do I select the first column in the Master Table?  And can you break down the second part of the formula?  The "$A$2:$D$4,2,0"  Why would you have A2 and D4 in the same formula?  They are not in the same row.  And what's the 2,0 at the end?
    Breaking this question down:
    With the "$A2" do I select the first column in the Master Table? 
    No. The $ keeps the reference to Column A absolute (it won't change to B then C as you Fill Right in the Team Task Table.
    And can you break down the second part of the formula?  The "$A$2:$D$4,2,0"  Why would you have A2 and D4 in the same formula?  They are not in the same row.
    $A$2:$D$4 is the range of cells (a rectangle) where VLOOKUP will search (in my example) but not in your 300 row table!
    And what's the 2,0 at the end?
    The syntax of VLOOKUP is VLOOKUP(search-for, columns-range, return-column, close-match)
    The 2,0 at the end means "return column" is 2 (the second column of the range) and 0 means "Exact Match" - it won't find a close match. After Fill Right you will need to edit the formula in each Column to change "return column" to 3, then 4, then ...
    With a table selected, click on the Function Button in the Toolbar and choose Function Browser. I find that much more useful than the Help Menu. However (there is always a however in life) the Help Menu will show Numbers User Guide, and Formulas and Functions Help. Download them and read at your leisure. The first four chapters of the User Guide are well worth a read. Use other chapters as a reference when you need them.
    Regards,
    Ian.

  • ERROR:  cannot find information from the FND_FORM_FUNCTIONS table

    Hi,
    I am in CU2, i have created my project, set the right responsibility in Project property panel of my Jdeveveoper.
    When i run the first page all is ok, but if i click on a h-grid link , i receive the following error:
    "Your system has not been properly set up. The system cannot find information from the FND_FORM_FUNCTIONS table which is needed for this process. Please consult your System Administrator for further assistance."
    This happens only if i launch the custom from jdeveloper. On the Applications, the custom works fine.
    Any idea about the error?
    Thanks in advance,
    Carlo

    Please check the calling logic which is written to invoke the custom form from the existing form.

  • Bring the employee photos from tables

    hi all,
    i got an error while bringing the photo from tables i dont know how to bring the photo for perticular pernr id.
    Is there any function module for this ... in which table the photos will be stored.........
    regrads,
    M.K.Chaitanya.

    Welcome to the Apple Community.
    Check that Photostream is enabled in your iCloud settings.
    Try quitting the photo app and relaunching it.
    Try turning Photostream off, restarting the iPad and enabling Photostream again.

Maybe you are looking for

  • How to get server output in SQL Developer

    I am learning SQL Deverloper and am using it in a University environment as well as Oracle test instances at Oracle. I know my way around SQL some but I am just learning PL/SQL.  I want to run an anonymous block and see output for the "dbms_output.pu

  • Reducing megapixel size of photo

    How can I reduce the size of a photo to a smaller more manageable size? When it comes in to iPhoto it comes in as a large size & the size is only slightly reduced when I crop the photo.

  • Assigning Multipel Property Values using IDocumentProperties

    We have a template that was created using the Content Server Explorer for our users to be able to submit documents to the Knowledge Directory and we have few questions regarding that template: One of the attributes in the template is Author(s) and it

  • RE:Object Brokers

    We have developed a number of applications using ObjectBroker both to callout from Forte and callin to Forte from 'C', Visual Basic etc. It is quite easy to do this once you get the hang of all the steps involved in advertising a Forte service object

  • Review: Dash Command Vs Torque  OBD II scantool apps

    Recently I had the opportunity to test both apps out.  They are both are great apps and provide many readings for a vehicle maintence/repair DIYer. They do require an ELM compatible bluetooth scantool transmitter.  These can be purchased on sites suc