Does any LO cockpit extractyor extract VBKD table values

Hello Friends
Does any LO cockpit extractyor extract VBKD table values--I am looking for BSTDK field.
Thanks
Tanya

Hi Tanya.....
This table is related to SD.......Following datasources r extracting data from the table VBKD.......but none of the table extracting BSTDK field.........
2LIS_11_VAITM >> SD Sales: Document Item
2LIS_11_VASCL >> SD Sales: Document Schedule Line
2LIS_11_VAKON >> SD Sales: Order Conditions 
2LIS_11_V_ITM >> SD Sales: Document Item Billing
2LIS_11_V_SCL >> SD Sales: Document Schedule Line Billing
U hav to enhance the Datasource........Check this.......
http://help.sap.com/saphelp_nw70/helpdata/EN/3c/7b88408bc0bb4de10000000a1550b0/frameset.htm
Regards,
Debjani......

Similar Messages

  • Is there any post 2008R2 information available on Table Valued Parameters being usable for writes?

    The last I heard on the efforts to make TVPs writable was that they were on the roadmap for the 2008 R2 release but that it didn't make the cut.  
    Srini Acharya commented in the connect item associated with this feature that...
    Allowing table valued parameters to be read/write involves quite a bit of work on the SQL Engine
    side as well as client protocols. Due to time/resource constraints as well as other priorirites, we will not be able to take up this work as part of SQL Server 2008 release. However, we have investigated this issue and have this firmly in our radar to address
    as part of the next release of SQL Server.
    I have never heard any information regarding why this was pulled from the 2008R2 release and why it wasn't implemented in either SQL Server 2012 or SQL Server 2014.  Can anyone shed any light on what's going on here and why it hasn't been enabled
    yet?  I've been champing at the bit for the better part of 6 years now to be able to move my Data Access Methodology to a more properly structured message oriented architecture using Request and Response Table Types for routing messages to and from SQL
    Server Functions and Stored Procs.    
    Please tell me that I won't have to manually build all of this out with XML for much longer.
    Note that in SQL Server 2008 table valued parameters are read only. But as you notice we actually
    require you to write READONLY. So that actually then means that at some point in the future maybe if you say please, please please often enough we might be able to actually make them writable as well at some point.
    Please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please, please,
    please!

    Can someone please explain what the complication is?  
    It makes no sense to me that you can
    1)declare a table typed variable inside a stored procedure
    2)insert items into it
    3)return the contents of it with a select from that table variable
    but you can't say "hey. The OUTPUT parameter that was specified by the calling client points to this same variable."
    I would like to understand what is so different between
    create database [TechnetSSMSMessagingExample]
    create schema [Resources]
    create schema [Messages]
    create schema [Services]
    create type [Messages].[GetResourcesRequest] AS TABLE([Value] [varchar](max) NOT NULL)
    create type [Messages].[GetResourcesResponse] AS TABLE([Resource] [varchar](max) NOT NULL, [Creator] [varchar](max) NOT NULL,[AccessedOn] [datetime2](7) NOT NULL)
    create table [Resources].[Contrivance] ([Value] [varchar](max) NOT NULL, [CreatedBy] [varchar](max) NOT NULL) ON [PRIMARY]
    create Procedure [Services].[GetResources]
    (@request [Messages].[GetResourcesRequest] READONLY)
    AS
    DECLARE @response [Messages].[GetResourcesResponse]
    insert @response
    select [Resource].[Value] [Resource]
    ,[Resource].[CreatedBy] [Creator]
    ,GETDATE() [AccessedOn]
    from [Resources].[Contrivance]
    inner join @request as [request]
    on [Resource].[Value] = [request].[Value]
    select [Resource],[Creator],[AccessedOn]
    from @responseGO
    and
    create Procedure [Services].[GetResources]
    ( @request [Messages].[GetResourcesRequest] READONLY
    ,@response [Messages].[GetResourcesResponse] OUTPUT)
    AS
    insert @response
    select [Resource].[Value] [Resource]
    ,[Resource].[CreatedBy] [Creator]
    ,GETDATE() [AccessedOn]
    from [Resources].[Contrivance]
    inner join @request as [request]
    on [Resource].[Value] = [request].[Value]
    GO
    that this cannot be accomplished in 7 years with 3 major releases of SQL Server.
    If you build the database that I provided (I didn't provide flow control commands, of course so they'll need to be chunked into individual executable scripts) and then 
    insert into [Resources].[Contrivance] values('Arbitrary','kalanbates')
    insert into [Resources].[Contrivance] values('FooBar','kalanbates')
    insert into [Resources].[Contrivance] values('NotInvolvedInSample','someone-else')
    GO
    DECLARE @request [Message].[GetResourcesRequest]
    insert into @request
    VALUES ('Arbitrary')
    ,('FooBar')
    EXEC [Services].[GetResources] @request
    your execution will return a result set containing 2 rows.  
    Why can these not 'just' be pushed into a "statically typed" OUTPUT parameter rather than being returned as a loose result set that then has to be sliced and diced as a dynamic object by the calling client?

  • How to extract HTML table contents

    Does someone know how to extract HTML table contents? I want to download a html file which contains table from internet and extract the table contents. Finally, insert the table contents into database.

    To do this you have to user a Parser to parse your html file and retrieve the information you want.
    Please have a look at the following classes:
    HTMLEditorKit.ParserCallback
    ParserDelegator()
    Here is an example which retrives the FRAMSET src of an html file. The purpose here is to find if the html file describes a multi-frame page or not. If so it add the frame src name to a Vector
    HTMLEditorKit.ParserCallback callback =
    new HTMLEditorKit.ParserCallback() {                      public void handleSimpleTag(HTML.Tag t,      MutableAttributeSet a, int pos)
         if (t.equals(HTML.Tag.FRAME))
    {                                          Logger.debug(this, "Frame tag found in "+f.getURL());                      Enumeration e = a.getAttributeNames();
    while (e.hasMoreElements())
                             Object name = e.nextElement();
                             if (name.toString().equals("src"))
                                  Object ob = a.getAttribute(name);                     
                                  Logger.debug("found an src "+ob);
                                  currentFrameSrc.add(new String(ob.toString()));
                   Reader reader = new FileReader(aFile);
                        new ParserDelegator().parse(reader, callback, false);
    It's not clean but I hope it will help :-)
    Stephane

  • Does any one have good idea about the backup and recovery georaster table?

    Does any one have good idea about the backup and recovery georaster table?
    Best Regards,
    Lin
    Edited by: ylin on 2009-10-10 上午2:07

    for backup and recovery, please follow the standard procedure of general database backup and recovery. you need to backup both the georaster table and all related RDT tables.

  • When cache log table modified "nologging" , Does any problem occur?

    test environment   :
        *. readonly cache group :
    create readonly cache group cg_tb_test1
    autorefresh interval 1 seconds
    from
    TB_TEST1
    (       C1      tt_integer,
             C2      CHAR (10),
             C3      tt_integer,
             C4      CHAR (10),
             C5      CHAR (10),
             C6      CHAR (10),
             C7      CHAR (10),
             C8      CHAR (10),
             C9      tt_integer,
             C10     DATE,
      PRIMARY KEY (C1)
        *. oracle's tables
        SQL> select * from tab;
             TB_TEST1                       TABLE
             TT_06_147954_L                 TABLE
             TT_06_AGENT_STATUS             TABLE
            TT_06_AR_PARAMS                TABLE
            TT_06_CACHE_STATS              TABLE
            TT_06_DATABASES                TABLE
            TT_06_DBSPECIFIC_PARAMS        TABLE
            TT_06_DB_PARAMS                TABLE
            TT_06_DDL_L                    TABLE
            TT_06_DDL_TRACKING             TABLE
            TT_06_LOG_SPACE_STATS          TABLE
            TT_06_SYNC_OBJS                TABLE
            TT_06_USER_COUNT               TABLE
    15 rows selected.
        SQL>
    After generated cache group , Lots of archive logs generated.  So, I modified the log table "TT_06_147954_L" with "nologging".
    Does any problem occur?
    Thank you.

    If you ever need to recover the Oracle database, or this table, in any way then you are hosed and things will break. Also, I'm pretty sure this is not supported. Why is the logging a problem?
    Chris

  • ExportPDF does a poor job when converting pdf tables to MS Excel tables - Any advice?

    ExportPDF does a poor job when converting pdf tables to MS Excel tables.
    The resulting file had several lines merged into one and had strange font sizes and line heights and widths.
    If needed, I can send both files to show what happened.
    I am using Adobe Reader 10.1.4, with Adobe ExportPDF (unknown version, bought Oct 4, 2012), MS Excel for Mac 2011, version 12.2.2 (120421) on a MacBook Air with Mac OS X version 10.7.4.
    Best regards,
    Pedro

    I have the same problem. I would like to convert bank statements to Excel but am only interested in the transaction history. Is it possible to select only certain parts of the document as a template for other conversions?

  • LO Cockpit Data Extraction (2LIS_11_VASTH)

    Hi Experts,
    Could you please update me on how to proceed with regards LO Cockpit Data Extraction
    Datasource: 2LIS_11_VASTH
    I activated the Datasource in R/3 and
    Activated relevant BW Content.
    I performed INITILIZATION that fetched 0 Records to BW
    I performed DELTA  that fetched 0 Records to BW
    I checked in RSA3 (R/3) ....2LIS_11_VASTH extracted 0 Records
    I checked the setup table for 2LIS_11_VASTH which showed 0 Records
    Please update me in detail on how to perform Delete/Fill setup tables and
    Do i need to perform DELTA in BW after filling setup tables in R/3
    Please update me in detail.
    Thanks

    Hi,
    Filling of set up tables
    Go to transaction SBIW --> Settings for Application Specific Datasource --> Logistics --> Managing extract structures --> Initialization --> Filling the Setup table --> Application specific setup of statistical data --> perform setup (relevant application)
    3.In OLI*** (for example OLI7BW for Statistical setup for old documents : Orders) give the name of the run and execute. Now all the available records from R/3 will be loaded to setup tables.
    Deletion of set up tables
    transaction code LBWG (Delete Setup data) and delete the data by entering the application name.
    Delta settings
    Go to transaction LBWE and make sure the update mode for the corresponding DataSource is serialized V3 update.
    Go to BW system and create infopackage and under the update tab select the initialize delta process. And schedule the package. Now all the data available in the setup tables are now loaded into the data target.
    Now for the delta records go to LBWE in R/3 and change the update mode for the corresponding DataSource to Direct/Queue delta. By doing this record will bypass SM13 and directly go to RSA7. Go to transaction code RSA7 there you can see green light # Once the new records are added immediately you can see the record in RSA7.
    Go to BW system and create a new infopackage for delta loads. Double click on new infopackage. Under update tab you can see the delta update radio button.
    Now you can go to your data target and see the delta record.
    For Delta related info go through the below link
    Link:[[SAP Network Blog: Gist of LO Cockpit Delta|/people/happy.tony/blog/2006/11/24/gist-of-lo-cockpit-delta]
    Regards
    KP
    Please go through the below link for more details
    http://www.sap-img.com/business/lo-cockpit-step-by-step.htm

  • Does any body have any design patterns of JSF Web Application Developping?

    Can any one answer me some questions?
    #1.I am an amatuar of people who develop Web Application.For some reason,We choose the JSF to develop our item.through some introduction,I know the UI component of JSF is resided in Server side,is it right?but I am a little confused that:if there are many users who are exploring our jsf website.(to simplify my question,image I had just one web page and just one button)How many UI components(buttons) will be there?How it(they?) works?
    #2.Does any body have the success experience (for example design pattern)to develop web applications?if We just concern about the Add,Delete,Modify,Query operations of some data.
    I just do my job according to my feeling.
    I will give every page a pagebean(backing bean),and I am not sure how to combine the business data with the pagebean.some one suggested that I should use delegate pattern to separate my business log and page logic.But I am still confused by following things:
    #2.1 does JSF have the same ability to help us construct the model dialog just like swing to
    help us control the operation flow?
    #2.2 If there is not,Does the following way work?I put every tabledata's property as corresponed component.if user choosed the row in the table,My Listener will syncronize the row data to the components.But
    #2.2.1 if JSF has the components according to the web users' number,how can My Listener tell which component should be update?Should I maintain the map?
    #2.2.2 If the problem I imaged above is false,Does any body can tell me how to custom      the ListDataModel,so I can use it like Swing?because now I can just use some view data to insert into ListDataModel,but after some selection operation,my business object must be find according to the selected data,it is not an interesting job!
         I am waiting for your advice!

    Ok I'll try to explain Step by step please correct me if I make any mistake because I have not played much with shared variables.
    To create a shared variable to an RT target go to the target if tou have already otherwise add an RT target by right clicking the Project>>Add targets and Devices
    Then in the target Right clikc and select the variable as shown below.
    Then once the Shared variable settings window opens Enter a variable name and then Select the type "Network Published"
    In the right side you can select the data type for the shared variable and even you can choose your custome controls.
    After selecting the data type go for the Network and select buffering if required else leave it if you are planning to use the variable just for display purpose.
    Then you can enable the RT FIFO if required (Not able to explain how it works and why it is used).
    Then after completing the Shared variable setup you can access the variable in the VI in both the Host and the RT.
    You can bind the variable to a control so that if any data from the RT is coming you can read the data from that control.
    Once you have placed your shared variable in the BD you can change the access typr to read or write depending on your need.
    This might not explain the complete shared variable concept but I believe that this would defenelty give you a kick off to start using the shared variable. Please correct or add more comments if anybody know better.
    Good luck.
    The best solution is the one you find it by yourself

  • Table-Valued Function not returning any results

    ALTER FUNCTION [dbo].[fGetVendorInfo]
    @VendorAddr char(30),
    @RemitAddr char(100),
    @PmntAddr char(100)
    RETURNS
    @VendorInfo TABLE
    vengroup char(25),
    vendnum char(9),
    remit char(10),
    payment char(10)
    AS
    BEGIN
    insert into @VendorInfo (vengroup,vendnum)
    select ks183, ks178
    from hsi.keysetdata115
    where ks184 like ltrim(@VendorAddr) + '%'
    update @VendorInfo
    set remit = r.remit
    from
    @VendorInfo ven
    INNER JOIN
    (Select ksd.ks188 as remit, ksd.ks183 as vengroup, ksd.ks178 as vendnum
    from hsi.keysetdata117 ksd
    inner join @VendorInfo ven
    on ven.vengroup = ksd.ks183 and ven.vendnum = ksd.ks178
    where ksd.ks192 like ltrim(@RemitAddr) + '%'
    and ks189 = 'R') r
    on ven.vengroup = r.vengroup and ven.vendnum = r.vendnum
    update @VendorInfo
    set payment = p.payment
    from
    @VendorInfo ven
    INNER JOIN
    (Select ksd.ks188 as payment, ksd.ks183 as vengroup, ksd.ks178 as vendnum
    from hsi.keysetdata117 ksd
    inner join @VendorInfo ven
    on ven.vengroup = ksd.ks183 and ven.vendnum = ksd.ks178
    where ksd.ks192 like ltrim(@PmntAddr) + '%'
    and ks189 = 'P') p
    on ven.vengroup = p.vengroup and ven.vendnum = p.vendnum
    RETURN
    END
    GO
    Hi all,
    I'm having an issue where my Table-Valued Function is not returning any results.
    When I break it out into a select statement (creating a table, and replacing the passed in parameters with the actual values) it works fine, but with passing in the same exact values (copy and pasted them) it just retuns an empty table.
    The odd thing is I could have SWORN this worked on Friday, but not 100% sure.
    The attached code is my function.
    Here is how I'm calling it:
    SELECT * from dbo.fGetVendorInfo('AUDIO DIGEST', '123 SESAME ST', 'TOP OF OAK MOUNTAIN')
    I tried removing the "+ '%'" and passing it in, but it doesn't work.
    Like I said if I break it out and run it as T-SQL, it works just fine.
    Any assistance would be appreciated.

    Why did you use a proprietary user function instead of a VIEW?  I know the answer is that your mindset does not use sets. You want procedural code. In fact, I see you use an “f-” prefix to mimic the old FORTRAN II convention for in-line functions! 
    Did you know that the old Sybase UPDATE.. FROM.. syntax does not work? It gives the wrong answers! Google it. 
    Your data element names make no sense. What is “KSD.ks188”?? Well, it is a “payment_<something>”, “KSD.ks183” is “vendor_group” and “KSD.ks178” is “vendor_nbr” in your magical world where names mean different things from table to table! 
    An SQL programmer might have a VIEW with the information, something like:
    CREATE VIEW Vendor_Addresses
    AS
    SELECT vendor_group, vendor_nbr, vendor_addr, remit_addr, pmnt_addr
      FROM ..
     WHERE ..;
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • How  and where does SAP standard programs update the master tables...

    Hello there,
    How  and where does SAP standard programs update the master tables...
    to be precise.. if a (any) transaction occurs  the programs behind it holds the data in temporary structures.
    where and when does it get updated in the master table.
    can anyone tell me how it happens?
    I Know that from the where used list one can find the corresponding table but most of the time it wont suffice
    I am expecting a proper answer.
    Santosh B

    Hello Santosh,
    you need to do some self-reading on the following topic
    Updates in the SAP System (BC-CST-UP)
    http://help.sap.com/saphelp_47x200/helpdata/en/e5/de86e135cd11d3acb00000e83539c3/frameset.htm
    Regards,
    Siddhesh

  • Extracting Multiple Table Data Dynamically..Table is an Input parameter

    Hi All
    Can any one update the Program/design of extracting multiple table data as a list or to an excel sheet
    For eg:- Mutliple Tables are entered in selection screen and upon executing the output should be to an excel sheet sequenctially according to the table names entered in the selection screen
    Awaiting for your update
    Regards
    Shiva
    Edited by: shivakumar bandari on May 29, 2009 9:35 PM

    HI Naimes
    Thanks for youe reply
    your second step says to select data from 'table' here tables are dynamic in nature I mean they are an input parameters..how can I write select on a table..
    I can get the table existence from DD02L table and pass the retrieved tables to FM Get_Component_List to get the fields existing for the particular table,
    But I cannot pass the dynamic table value to select query to retrieve the data..Please update me if you have anything on retrieving data from dynamically inputted value
    Can I do this
    Select * from <dyntable>
    Any suggestions will be appreciated
    thank you

  • Does any one tried anychart to save a chart as jpg in a blob for reports

    Hi does any body used anychart through plsql to save a chart as jpg in a blob in a table to display it in oracle reports, or for another use.
    Thank you :)

    Hi,
    Have you solved this?
    I have the same problem.

  • Does any one know how Fixed Assets links to the Purchasing ledger?

    Hi,
    Does any one know how Fixed Assets links to the Purchasing ledger? As I have looked high and low and can't find any table mappings or anyway the ledgers link, this is a problem as I am struggling to track an asset back to a Purchase Order.
    I have looked at http://etrm.oracle.com with no joy and any help with this would be great.

    You would want to try this forum as well:
    General EBS Discussion

  • Problem: Can't edit any table values

    Hi,
    I'm using the latest version of Oracel SQL Developer in XP and cannot edit any table values (ie: the actual data). I've tried the reset of Accelerators as previously suggested to no effect. I know the user has access since TOAD and DreamCoder all allow edits.
    Any ideas?
    Cheers,
    Peter

    I was trying to edit by double-clicking the field, which opens an Edit box. And then I had believed I could type a new value in? This was behaviour I was used to in Toad so I appreciate I may be doing it incorrectly.
    Is this not the correct way to edit a value? (without using SQL).
    EDIT: I re-read you're reply and I see what you mean. Going to Table> MyTable > Data (tab) I can add rows and such. But this seems to mean I can't execute an SQL query to pullback specific data and then edit it in-place, in the grid?
    Cheers,
    Peter
    Edited by: [email protected] on 14-May-2009 08:05

  • Error when extracting huge table from MSSQL server.

    Hi:
    Under BI 7
    I configured a DB datasouce to retrieve data from a view on MSSQL server.
    It runs well when the data amount is below 5 million rows.
    When the data volumn is over 5M, the datasouce start failed...
    If I use the PREVIEW button in the Datasource maintain page, the system returns
    the message:
    Unknown error while uploading data from the DB table
    Message no. RSDS_ACCESS027.
    Does any expert know how to solve this issue?
    Thanks a lot!!

    Hi Clayton Hung,
    I'm facing exactly the same problem with Oracle.Additionally Errors in source system
    Message no. RSM340.
    Have you found anything?
    Cheers Marco
    [email protected]

Maybe you are looking for

  • How do I get a rid of the error message "Insecure Start-Up Items folder detected because the folder does not have the proper security settings?

    I recently upgraded my OS from 10.4.11 to 10.6.8, so that I could download iTunes to my new iPhone 5.  After upgrading to 10.6.8, I received error message about my Symantec Norton anti-virus security, so I upgraded that to security that's compatible

  • Parsing XML with .ReadXml

    Hi, I have an xml file which I'm parsing with following code //check if the xml is properly parsed XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(strXML); //load the data set from the valid xml string System.IO.StringReader sr = new System.IO

  • Elements 10 won't open a nef(raw) file?

    I downloaded photoshop elements 10.Uptated it.It still won't open a nef(raw) file.It just said it is the wrong type of file?What do I have to download to open and edit this type of file?

  • Migrating LR 2.3 to new MacBook Pro

    Sorry if this has been covered many times but I want to get it right. I am on LR2.3 on a MacBook Pro using OSX 10.4.11 .  I have a new MacBook Pro that will be running 10.5x whatever the current release is.  After backups.......... I understand the p

  • I need your help...I made a very big mistake!

    I really need your help. A friend of mine has an iPod Nano and when I was helping him out on his PC, I accidentally spelled his last name wrong. As in, instead of Smith, I typed Smyth. Anyway, how do I remove that mistake in his iTunes and iPod? It's