Documentary Payment Guarantee Data Source (AKKP table)

Hi sap gurus, I couldn't find a data source based on AKKP table. I need Documentary Payment Guarantee information. I can create documants with vx11n. this transaction creates data at AKKP table for a specific customer. is there any specific data source based on AKKP table?

There is no standard content for this table. Therefore, you're going to have to create a generic DataSource for this table.

Similar Messages

  • Data source - Invalid table name [66000-7]

    Hi,
    I created UDO with master table and child table and when I tried to execute on it a dbdatasource query I got this error Data source - Invalid table name [66000-7]. When I tried this query on system table it works perfectly, so I don't know where is the problem (it looks like DBDataSources.Query doesn't work on user tables).
    My code:
                    oDBDataSources = oForm.DataSources.DBDataSources.Add("@MyTable");
                    oConditions = (SAPbouiCOM.Conditions)(SBO_Application.CreateObject(BoCreatableObjectType.cot_Conditions));
                    oMatrix = (SAPbouiCOM.Matrix)(oForm.Items.Item("mtx_dzial").Specific);
                    oCondition = oConditions.Add();
                    oCondition.BracketOpenNum = 1;
                    oCondition.Alias = "U_MyDate";
                    oCondition.Operation = BoConditionOperation.co_BETWEEN;
                    oCondition.CondVal = "2008/10/01";
                    oCondition.CondVal = "2008/10/06";
                    oCondition.BracketCloseNum = 1;
                    oDBDataSources.Query(oConditions);
    Regards
    Ela

    Hi
    Look here the working example...
    Hope it can help you.
    Public Sub SBO_CreateForm()
      Dim oForm As SAPbouiCOM.Form
      Try
        Dim sUniqueID As String = "O99_" & Microsoft.VisualBasic.Format(Now.Millisecond, "0000")
        Dim sFormXmlFile As String = "MY_FORM_FILE.xml"
        ' Search for this function on this forum...
        Call ReplaceUIDandLoadToB1(sFormXmlFile, sUniqueID)
        oForm = SBO_Application.Forms.Item(sUniqueID)
        Call Matrix_SetConditions(oForm)
        oForm.Visible = True
      Catch ex As Exception
        If Not oForm Is Nothing Then
          oForm.Close()
          oForm = Nothing
        End If
      Finally
        System.GC.Collect() 'Release the handle to the table
      End Try
    End Sub
    Private Sub Matrix_SetConditions(ByRef oForm As SAPbouiCOM.Form)
      Dim oMatrix As SAPbouiCOM.Matrix
      Dim oConditions As SAPbouiCOM.Conditions
      Dim oCondition As SAPbouiCOM.Condition
      Try
        oMatrix = oForm.Items.Item("mtx00").Specific
        If oMatrix Is Nothing Then Throw New Exception("ERROR!...")
        oConditions = SBO_Application.CreateObject(BoCreatableObjectType.cot_Conditions)
        ' ++++++++++++++++++++++++++++++++++++++++++++
        If Not sItem1.Equals("") And Not sItem2.Equals("") Then
         '// AND (P.U_CodItem BETWEEN '" & s1.Trim & "' AND '" & s2.Trim & "')"
         oCondition = oConditions.Add
         oCondition.BracketOpenNum = 1
         oCondition.Alias = "U_CodItem"
         oCondition.Operation = co_BETWEEN
         oCondition.CondVal = sItem1
         oCondition.CondEndVal = sItem2
         oCondition.BracketCloseNum = 1
        Else
         If Not sItem1.Equals("") Then
             '// AND P.U_CodItem = '" & s1.Trim & "'"
             oCondition = oConditions.Add
             oCondition.Alias = "U_CodItem"
             oCondition.Operation = co_EQUAL
             oCondition.CondVal = sItem1.Trim
         End If
         If Not sItem2.Equals("") Then
             '// AND P.U_CodItem = '" & s1.Trim & "'"
             oCondition = oConditions.Add
             oCondition.Alias = "U_CodItem"
             oCondition.Operation = co_EQUAL
             oCondition.CondVal = sItem2.Trim
         End If
        End If
        ' other conditions ....
        '// Execute the query with the conditions collection
        oForm.DataSources.DBDataSources.Item("@O99_MY_TABLE_NAME_HERE").Query(oConditions)
        oMatrix.LoadFromDataSource()
        oMatrix.SelectionMode = BoMatrixSelect.ms_Single
      Catch ex As Exception
        ' log exception here
      Finally
        If Not oConditions Is Nothing Then If oConditions.Count > 0 Then glo_Conditions = oConditions
        System.GC.Collect()
      End Try
    End Sub
    In the xml file of my form I have added dbdatasource:
            <datasources>
              <dbdatasources>
                <action type="add">
                 <datasource tablename="@O99_MY_TABLE_NAME_HERE"/>
                </action>
              </dbdatasources>

  • Error while creating data source using table KONP

    Hi Frnds,
       I am creating  a data source (RSo2) from Extraction from view, using the Table KONP , then i getting an error saying that
    Field KBETR with reference field KONWA: ZOXPTS0031 is to replace reference table RV13A
    Message no. R8390
    Field MXWRT with reference field KONWA: ZOXPTS0031 is to replace reference table RV13A
    Message no. R8390
    Field GKWRT with reference field KONWA: ZOXPTS0031 is to replace reference table RV13A
    Message no. R8390
    Regards
    rakesh

    You have to include reference fields also in the extract structure.

  • What is a Standard Data Source for table T006A?

    Dear Experts,
    As a part of one requirement I need to pull the data from Table T006A which is available in BW as well.
    I did many search on forums before posting the same but didnt get clear idea.
    I am aware how Units are being updated withing BW but I need to pull the text for all Units within BW.
    Do we have any standard Data Source which pulls the data from T006A table?
    Thanks in Advance,
    Nilesh

    Dear Raf Boudewijns,
    Requirement is to load the Unit texts(available in table T006A) into one custom InfoObject.
    I know this table is already pulled within BW and frequently being updated but didnt get any Standard Data Source which fetches the data from T006A table.
    I can create a new Generic Data Source within BW itself based on table T006A. But would like to use Standard Data Source if its available else will have to create a new generic Data Source.
    Thanks,
    Nilesh

  • Error generic data source for table VBAK in SAP R/3  7.01

    Hi
    When I was trying to create  generate data source(RSO2) from table VBAK. The system replies that
    Invalid extract structure template VBAK of Data Source ZSD_SALES
    You tried to generate an extract structure with the template structure VBAK. This operation failed, because the template structure quantity fields or currency fields, for example, field ZZLFAMT refer to a different table.
    Use the template structure to create a view or DDIC structure that does not contain the inadmissable fields.
    Regards
    Anand Reddy

    Hi,
    use 2lis_11_vahdr instead.
    But in addition, you need to create a view on vbak and the reference table/s of the keyfigure units, add the unit fields as well as all fields of vbak to the view and use the view for the generic datasource instead of the table.
    Siggi
    Edited by: Siegfried Szameitat on Oct 5, 2010 2:46 PM

  • Livecycle 8.0 data view does not identify data source as table

    Livecycle 8 documentation states:
    To create a table from a data source
    Some data from a data source could be shown in a table. When you connect to a data source, the Data View palette identifies any items that could be tables. LiveCycle Designer also shows which items will become rows in the table if it finds a repeating data group.
    however, I have successfully created connections for MS Access tables, SQL server tables and XML files, but none of them were identified as capable of being shown in a table. I have not been able to successfully create or populate a table from a data source. What am I missing?

    Yes, i'm in a important projekt at the moment.
    Its also intresting that in an other apex installation (same version) on an other server (same OS) - i'm working a bit longer with - the data load works...
    So i dont know any reason for the problem.

  • Data Source for Table J_1IEXCDTL  & J_1IEXCHDR

    Hi,
    I suppose to extract data from J_1IEXCHDR & J_1IEXCDTL table to BI system.
    Can any body tell me is there any SAP provided Data Source is available for these table.
    As these tables are created during some patch upgradation only.
    Thanx in Advance.
    Point will be awarded for Good suggestion.

    Hey Kiran and Kumar....
    Do U got any solution.....  please do share....
    Is there anyone who can help.... as i am facing the same issue....
    ur assistance is rewarded....

  • Data Source for Table CRM_KNVH_TEMP

    Hello Experts,
    I have an issue related to the Hierarchy of Partner number. I have checked the data source like :-
    0CRM_BP_SALES_HIER
    0BPARTNER_HIER
    in the 0BPARTNER_HIER hierrachy, i didnt get the required data but in hierarchy 0CRM_BP_SALES_HIER there is the required data but when i executes the info package, it throws an error message of duplicate records. please tell me that how can i handle the duplicacy in the hierarchy. is there any data source for the table CRM_KNVH_TEMP so that i can directly use that Hierrachy DS for the info object
    also let me know whether it is possible if i can use the data souce 0CRM_BP_SALES_HIER in the info object 0BPARTNER.
    Thanks in advance
    neha

    Hi Pradeep,
    Please also check the following link,
    http://help.sap.com/saphelp_sm40/helpdata/EN/ab/bcc99b16db422e86af45b659712912/content.htm
    Regards,
    Amit

  • Need Data source for Table MARD with field LABST

    Hi,
    I am having field LABST from Table MARD.Can you just tell me from which data source This field exists.

    Check this thread :
    How to get the field from extract structure to datasource
    Regards
    Kiran Sure

  • CrystalRpts - Excel Data source, SQLServer2005 table. SQL Query behavior?

    Greetings - What should be a simple report (with Excel 2007 spreadsheet as primary data source linking to a SQLServer 2005 table ) returns incorrect results.  Query designed to select data from SQL Table with  'DATES >=' certain date, but data returned ignores the DATE qualifier.
    Running DATE query manually against the SQL Table proves the data is correct. 
    Anyone notice problems with SQL Query behavior when mixing data sources?  Thanks.

    Hello,
    Take the SQL that works outside of CR and then create a new report and add all data sources. Now use a Command Object and paste in your SQL. YOu may have to play with adding each data source in a different order. If that works great if not you'll have to figure out a way to get all the data into one source.
    I believe MS SQL Server can link multiple data sources and types. Check SQL Help file for more info it it is possible.
    Thank you
    Don

  • Data Source for table CRMD_PARTNER

    Hi,
    Is there a standard BC data source in SAP CRM for getting partner function values for sales orders.
    (Partner Function, Sales order header, Sales Order Item, Business Partner,..)
    Thanks
    Pradeep

    Hi Pradeep,
    Please also check the following link,
    http://help.sap.com/saphelp_sm40/helpdata/EN/ab/bcc99b16db422e86af45b659712912/content.htm
    Regards,
    Amit

  • Pivot table data source keeps referring to old file name

    Hi,
    I am using Excel 2013 on Windows 8
    I create a table, and insert a pivot table that use this table as data source
    I close the excel and rename the file from "myfile.xlsx" to "newfile.xlsx, and then open it again
    When trying to refresh my Pivot Table, I get the following Error:
    "We couldn't get the data from 'Table1' in the workbook 'C:\myfile.xlsx' Open this workbook in Excel and try again."
    i.e. it is still looking for table using the old file name.
    I need to update the file every week, so having to manually go back and change source file name for every pivot is very time consuming and painful for me :-(
    Please investigate and advise how to fix this ?  

    Hi,
    Based on my tested in my environment (Window 8.1 & Excel 2013), the error message pop up when a pivot table using an external data source. If you use the table as external data source, pivot table uses OLEDB to connect it, it'll refresh failed after
    you changed the file name. It's by design.
    Then, we may try the two workaround to avoid it:
    1) Keep the data source table and pivot table in the same file.
    2) Add the table to a connection, steps:
    Click Data tab>Connection> Add> Browse more> Choose the file.
    Please try to change in new file in property before you refresh the Pivot table.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Table for List of Active  Data Sources

    Hello All,
    I have a requirement like, to collect List of Active Data Sources from which extractions are happening for the past one year.
    Actually i have many Data sources which are in Active State but extractions are happening only on some of the Active Data Sources.
    I can collect List of Active Data Sources from Table RSOLTPSOURCE, but how to collect Active Data Sources from which extractions are happening for the past one year.
    Is there any such table which satisfies my requirement?
    Thanks in Advance!!

    Hi Srikanth,
    I had similar kind of requirement in my project and I used following approach,
    1) We already had a list of all the process chains which extract data from source system. So you also need to get such list if you don't have then goto RSPCLOGCHAIN and get the list of all the active chains.
    2)after that goto table RSPCCHAIN and for all of your chains or for a single chain you can put the TYPE as "loading" and you will get list of all the infopackage.
    3) Once you get the list of all the infopackages which are loading data from your source system.
    4) goto table RSLDPIO and put all your infopackage name and source system you will get the list of all the datasources in OLTPSOURCE field.
    Regards,
    Durgesh.

  • How to trace master data source (table-field)?

    Hello All,
    Please help, its Urgent!!
    I have the following 4 characteristic requirement in BW from PM/PS module.
    Master data source (format: table-field)
    AFVV-FSAVD - early start date
    AFVV-FSEDD - early finish date
    AFVV-SSAVD - late start date
    AFVV-SSEDD - late finish date
    can anyone tell me the procedure, how to find them in R/3 n if there r any standard business content for the same?
    Thanks in advance,
    JP

    Go to RSA5 Tcode in R/3, under SAP R/3 Application component, you can get PO/PS Components, and under that you can get PO-IO/PS-IO Components, here you can check all the vaialble master data datasources.
    KJ!!!

  • Detla Infopackage Creation problem at Generic data source

    Hi Experts..
    In 7.0 BI I'm loading data in infoCube through generic data source ( type Table View). I have loaded the data first time ie Full mode. Now I would like to change update mode full to Delta. i have tried to create new infoPackage with DELTA Update MODE but this option is not available. as i have used Transformation and DTP to fetch the data in Info cube. in data souce Generic Delta is enabled at Numeric pointer.
    your help will highly appreciable.
    Regards
    kamal
    INDIA

    >
    kspurohit wrote:
    > Delta specif field kept blank with option Numeric Pointer...
    You have to fill in the Delta-Specific Field Name for any of the options.  Numeric pointer is usually a document number that is guaranteed to increment with every change.  This would not be a good choice for documents that can be changed after initial creation, or for number ranges that are buffered across application servers (unless you can set the safety limits to compensate).
    After that, create and run an init InfoPackage, then you will be able to create a delta InfoPackage.

Maybe you are looking for