Data source not in active state in admin workbench in BIW

Dear all,
We had created a ZHR datasource  i our source,but when we replicate the same data source in our BW system it is coming in inactive state,can you pls tell what is the issue
thanks

Amarinder's comment is true, if it is within development system.
But when u transport this datasouce from R/3 DEV to R/3 QA, after the replication into BI QA, U should again transport same datasource from BI DEV to BI QA.. Same applies to PRD too.

Similar Messages

  • JTA transaction is not present or the transaction is not in active state

    Hi,
    I am trying to execute an asynchronous bpel process. the bpel process has 5 OSB calls and is taking approximately 100 seconds for completion. The OSB calls in the BPEL are taking 90 seconds for completion. In the end of the BPEL process, after completion I get the following error:
    [2010/07/22 01:56:44] BPEL process instance "1220007" completed
    [2010/07/22 01:56:44] There is a system exception while performing the BPEL instance, the reason is "JTA transaction is not present or the transaction is not in active state. The current JTA transaction is not present or it is not in active state when processing activity or instance "1,220,007". The reason is The execution of this instance "1220007" for process "BPELProcess1" is supposed to be in a jta transaction, but the transaction is not present or in active state, please turn on the application server transaction debug logs to get more information.. Please consult your administrator regarding this error. ". Please check the error log file for more infromation. Please try to use bpel fault handlers to catch the faults in your bpel process. If this is a system exception, please report this to your system administrator. Administrator could perform manual recovery of the instance from last non-idempotent activity or dehydration point.
    We do not want to increase the transaction-timeout properties in the server in the Transaction-manager.xml or in the orion-ejb-jar.xml since we have other projects with synchronous processes running in the same server.
    Can anybody please suggest a workaround to overcome this issue apart from increasing the transaction-timeout?

    Hi 783703,
    As Sridhar suggested for your problem you have to set transaction-time out in j2ee/home/config/transaction-manager.xml.
    If you use Idempotent as false for your partnerlinks, BPEL PM will store the status till that invoke(Proof that this invoke gets executed).
    So better to go for increasing the time instead of going for idempotent as it has some side effects.
    And coming to dehydration ....Ideally performance will be more if there are no much dehydration poitns in our process. But for some scenarios it is better to have dehydration(ex: we can know the status of the process...etc)
    Dehydration store will not get cleared after completion of the process. Here dehydration means ....it will store these dtails in tables(like Cube_instance,cube_scope...etc).
    Regards
    PavanKumar.M

  • Help Me "Data Source - Not User Data Source"

    Hi All!
    I have written an addon in Service Call Form To add new Matrix in this form with code as follows:
    Dim oLink As SAPbouiCOM.LinkedButton
    oFormServiceCall = SBO_Application.Forms.GetFormByTypeAndCount(60110, 1)
            oItem = oFormServiceCall.Items.Item("159")
            oNewItem = oFormServiceCall.Items.Add("Matrix1", SAPbouiCOM.BoFormItemTypes.it_MATRIX)
            oNewItem.Left = oItem.Left
            oNewItem.Width = oItem.Width
            oNewItem.Top = oItem.Top
            oNewItem.Height = oItem.Height
            oNewItem.FromPane = 8
            oNewItem.ToPane = 8
            oMatrix = oNewItem.Specific
            oColumns = oMatrix.Columns
            oColumn = oColumns.Add("#", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "#"
            oColumn.Width = 20
            oColumn.Editable = False
            '// Add a column for BP Card Code
            oColumn = oColumns.Add("callID", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
            oColumn.TitleObject.Caption = "Call ID"
            oColumn.Width = 20
            oColumn.Editable = True
            oColumn = oColumns.Add("subject", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "Subject"
            oColumn.Width = 120
            oColumn.Editable = True
            oColumn = oColumns.Add("customer", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
            oColumn.TitleObject.Caption = "Cust.Code"
            oColumn.Width = 30
            oColumn.Editable = True
            '// Link the column to the BP master data system form
            oLink = oColumn.ExtendedObject
            oLink.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_BusinessPartner
            oColumn = oColumns.Add("custmrName", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "Cust.Name"
            oColumn.Width = 120
            oColumn.Editable = True
            oColumn = oColumns.Add("itemCode", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
            oColumn.TitleObject.Caption = "Item Code"
            oColumn.Width = 30
            oColumn.Editable = True
            oLink = oColumn.ExtendedObject
            oLink.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_Items
            oColumn = oColumns.Add("itemName", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "Item Name"
            oColumn.Width = 100
            oColumn.Editable = True
    And code to bind data to matrix
    oDBDataSource = oFormServiceCall.DataSources.DBDataSources.Add("OSCL")
            'oUserDataSource = oFormServiceCall.DataSources.UserDataSources.Add("OSCL", SAPbouiCOM.BoDataType.dt_LONG_TEXT)
            oColumn = oColumns.Item("callID")
            oColumn.DataBind.SetBound(True, "OSCL", "callID")
            oColumn = oColumns.Item("subject")
            oColumn.DataBind.SetBound(True, "OSCL", "subject")
            oColumn = oColumns.Item("customer")
            oColumn.DataBind.SetBound(True, "OSCL", "customer")
            oColumn = oColumns.Item("custmrName")
            oColumn.DataBind.SetBound(True, "OSCL", "custmrName")
            oColumn = oColumns.Item("itemCode")
            oColumn.DataBind.SetBound(True, "OSCL", "itemCode")
            oColumn = oColumns.Item("itemName")
            oColumn.DataBind.SetBound(True, "OSCL", "itemName")
    But It's error when Run at the row is bold. This error:
    oColumn.DataBind.SetBound(True, "OSCL", "callID")     Run-time exception thrown : System.Runtime.InteropServices.COMException - Data Source - Not User Data Source
    Please help me fix problem.
    Thanks
    Edited by: Tao lao on Mar 5, 2008 3:10 AM

    I think, u can't bind the system table system columns to the column of the matrix in the form which is bound to the same table.(though, m not sure on this.) service call is by default bound to OSCL. If u try creating a user defined column in OSCL and then bind it, it works. but, if CallId is already bound on form, and u r bnding it one more time, it will give you error.

  • File data source not found with guest login???

    Hello everybody,
    i'm working with BIP 10.1.3.2.1 on Win2003/Tomcat.
    Everytime if i call a report with a file data source directly via url or in the gui via guest login i get the following error message: "File data source not found: <file data source name>".
    If i use a login in the gui which have the explizit permision to use this data source then there is no problem. Well at this point u might say then use this account, but - if i call a similar report with a database data source directly via url or guest login in the gui everything works fine. So, where is the point? Any ideas?
    Best regards
    Ralf Kanis

    Hi guys,
    I'm running into exactly the same issue. The problem seems to occur only when the report being accessed by guest is a file data source. The only other option I could think of is setting up SSO for BIP and the application issuing the URL to the report.
    Could'nt find anything else in the documentation or known issues list that might fix this without having to setup Single Sign On. Any further luck with your investigation? I'd appreciate any feedback.
    Thanks
    Jonathan Cruz

  • Data source not shown in active state after replicating from source system

    Hi Gurus,
    I have activated the datasou 0CO_PC_ACT_05 in R/3 system form RSA5 and replicated the same in BW system. After replication when i try to activate the datasource by instaling the business content.It is not getting installed.
    The datasource is already present in the BW system in the modified version, do we need to install the business content to bring the datasource to active state.
    Please help.

    if its in 3.x then first you need to install business content info source(0CO_PC_ACT_05)
    later you can assign your ecc data source to info source and source system. in this process transfer rules and communication structures will comes into picture.
    you can use program to activate data source - RS_TRANSTRU_ACTIVATE_ALL
    You want use in 3.x version only?
    if you have 7.x version bw, better to go with 7.x data flow.

  • Business Content Data Source not active in R/3

    Hello,
    I am using ECC 6.0 system,
    I would like to change the data source 2LIS_11_VAITM  using t-code as a RSA6 but i could not find this datasource.
    But when i use t-code RSA5 i can able to see the data source.
    I would like to know the difference RSA6 and RSA5?
    Do we need to active the 2LIS_11_VAITM  data source before using ?
    Thanks,

    Hi,
    For this datasource goto LBWE and activate the datasource.
    RSA5 is used to install the datasource and the installed datasource is then available in RSA6. In RSA6 you can enhance the standard datasource if needed.
    Cheers,
    Kedar

  • Creating list- data from child data source not appearing in output

    I am trying to create a list of leads created between a date range for customers in a specific state. My audience is Persons. When I run the list, it does not return any values. However, I noticed that the date fields are not in the output. How do I get the date fields (from data source LEADS) into the output for my list? It seems to only be giving me output for the Parent data source of PERSONS.

    Map the Date Fields of the Leads data source to the ams_list_entries and check the box display in list entries.
    HTH

  • Data source not getting replicated

    hi all,
    i have created a generic datasourc  and when i tried to replicate the datasource in BI, its not getting replicated at all.\
    the datasource is active in rsa5.
    I tried to replicate the application component but still  the particulate datasource is not getting replicated.
    I tried to store the data source in ECC in separate application component and try to replicate in Bi.,But still cannot replicate.
    how to replicate the datasource?

    Hi,
    Please check if you r not replicating the daat source first time:
    1. Delete teh PSA records if any.
    2. Check if your replication trial create  lock entry in daat base tables.
    3. After deletion of whole datasource along with teh data , try replicating teh datasource again.
    IF new datasource:
    Go to rsa6 activate teh data source , check in RSa3 the extraction is proper.
    log off from all teh sessions and of both BW and R/3 system.
    Log in to BW and select teh r/3 system and replicate full data source.
    Also check teh daat source RFC is activated and restored as well.
    Thanks
    Mukesh

  • 0GL_ACCOUNT Hirearchy Data Source not working properly

    Hi All,
        I am trying to upload hierarchies for 0GL_ACCOUNT using data source 0GL_ACCOUNT_T011_HIER. But its getting failed. In R3 the data source is working fine. When I m displaying data source in RSA1 it displays Version : Modified , Active Version : Does not exist. Is this normal?
    I am using transfer method IDOC. what may be the reasons behind the failure?
    Regards:
    Jitendra

    Hi  Jitendra,
    Did  you already try to activate DS again?  Please try it with rpeort RS_TRANSTRU_ACTIVATE_ALL, using  for 0GL_ACCOUNT _HIER and name of source system  as parameters.
    Hope this helps
    Joe.

  • Data source not getting imported

    Hi,
    Triggering following error when I am try to import the DS '/IRM/LIS_RM_IPCRITM' from BW development to quality.I have replicated the data source in qty and imported once again
    Start of the after-import method RS_RSDS_AFTER_IMPORT for object type(s) RSDS ( )
    Name /IRM/CALIS_RM_000020000001 is not in the namespace for generated BW Metaobjects
    Name /IRM/CCLIS_RM_000020000001 is not in the namespace for generated BW Metaobjects
    Errors occurred during post-handling RS_AFTER_IMPORT for
    The errors affect the following components:
    BW-WHM-MTD (Metadata (Repository))
    Please help me in fixing the issue
    Thanks,
    Sarasu

    Hi Pani,
    I already tried using the program,same error with program also
    @5B\QInformation@    Activation of Objects with Type DataSource
    @5B\QInformation@    Checking Objects with Type DataSource
    @5B\QInformation@    Checking DataSource /IRM/LIS_RM_IPCRITM EQ1CLNT300
    @5D\QWarning@    Changes to Field ZZKSTBWNT ( Position 126 ) are not compatible with database
    @5B\QInformation@    Saving Objects with Type DataSource
    @5B\QInformation@    Saving DataSource /IRM/LIS_RM_IPCRITM           EQ1CLNT300
    @5C\QError@    Name /IRM/CALIS_RM_000020000001 is not in the namespace for generated BW Metaobjects
    @5C\QError@    Name /IRM/CCLIS_RM_000020000001 is not in the namespace for generated BW Metaobjects
    @5C\QError@    Error saving DataSource /IRM/LIS_RM_IPCRITM           EQ1CLNT300
    @5C\QError@    DataSource /IRM/LIS_RM_IPCRITM (EQ1CLNT300) could not be activated

  • Funds management data sources not available in RSA5

    Dear all,
    We have got requiremnt for implemtation of Funds management.
    i have searched SDN for the same. my question is the data sources 0FI_FM_1 , 0FI_FM_2, 0FI_FM_31 ,0FI_FM_32 ....are availabel from help.
    But in the system (RSA% )when i wanted to see these data sources then i cant find them.
    what is the reason for that and how to go about it.
    Regards
    venu

    Hi Venu,
    The datasources u mentioned are now replaced with new datasources.
    Please got through the thread for further information.
    Datasource not present in RSA5 after appln component hierarchy activation
    Hope it helps
    Regards,
    Javed

  • Delta DATA SOURCE not at all visible in RSA7

    hi ,i have installed ecc6 and bi on two different servers ,and the connection is also established ,but coming to ecc,i have activated the data source which is generic data source,and i have initiated delta and generic delta is successfully created but the problem is the data source is not showing in RSA7,i have tried in so many ways like i have tried for logistic data also but,RSA7 not showing any data sources,from my side i am able to initiate delta successfully ,,but RSA7 IN ecc not working,no data source is listed in RSA7,,,please help me ,any settings i need to do in RSA7 to visible data source in RSA7.,,,,,please help me
    Moderator message: not directly related to ABAP development.
    Edited by: Thomas Zloch on Nov 22, 2011 10:16 AM

    try running an ethernet cable from your Mac to the AX. this should enable AU to see it.
    once configured, you can disconnect the ethernet cable.
    JGG

  • Data Source to get activity type(ActTyp) for service orders.

    Hello friends..
    Could you please provide, with the data source, that can be used to derive activity types (ActTyp),for service orders.
    (Not maintenance activity type (PMACTTYP, in BI))  
    I have checked ZLIS_18_ORDER, where i could find (Maintenance activity type, ILART) but not Activity type.
    Or if we need to create a Genric DS for same, could you ppl please provide me with the table name, to get the Activity type.
    Thank you.
    Raghu

    Thank you Rajesh,
    Could you please lemme know, how can i pick this value, as there is no AUFNR (Order Num) in this table, so that i can pick up using order number.
    Thanks '
    Raghu

  • ODBC data source error, invalid cursor state??

    I'm using Photoshop Album Starter Edition 3.0, on Windows XP, and I was having some trouble organizing so I deleted all the photos in the catalogue, but now I can't add any new images. After opening the program and trying to add new pictures, I get the error that the files can't be found. After that one time, every time I try to add any photos at all, it gives me this error:
    The ODBC data source returned the following error:
    "[Microsoft][ODBC Microsoft Access Driver]Invalid cursor state"
    I've tried restarting the program, the computer... I don't know what the error even means or how to solve this problem. So if anyone has any ideas, please let me know. Oh, and I would reinstall the program, except I think it just came with the computer, I don't have a cd with it or anything. Is there somewhere else or another way to reinstall? Anyhow I'm done now, please help if you can. Thanks. :)

    Since this is a free software, you can download this from Adobe.com. Try reinstalling Photoshop Album Starter Edition 3.0. If Reinstall does not work, try repairing the Windows ODBC drivers.
    The reason for the error may be the Windows ODBC Drivers.To repair the ODBC drivers, follow these steps:
    1) Go to Start>Settings>Control Panel. Select Add/Remove Programs and select SP2 and uninstall.
    2) Insert your original Win XP CD and choose the Upgrade option.
    3) When completed, reinstall SP2. Go to Start>Windows Updates and select SP2.
    You can also try this:
    Install Windows XP Service Pack 2 _or_ install the "Microsoft Data Access Components (MDAC) 2.8" from http://www.microsoft.com/downloads/details.aspx?FamilyID=6c050fe3-c795-4b7d-b037-185d0506 396c&DisplayLang=en
    Please let us know if that worked.
    -Smriti

  • Data Federator data source not available causes Universe Connection error

    I created a Data Federator project that connects to 20 servers across US and Canada.  All data sources are SQL Server 2005.  The DF project maps 40 source objects into 4 target objects.  I created a universe based on the DF project and we have been quite pleased with Webi query response.  Today one of the source servers was taken off line and this generated a connection error when trying to access the universe (not trying to access the data source that failed).  We do not want the universe connection to error when one source server is not available u2013 is that possible?
    If the answer is no then I see us abandoning what appears to be a great solution for real time distributed reporting and resorting to ETL and moving data.

    Hi Chapman,
    Can you be little elobrate on what you have done to solve the issue.
    Thanks,
    Dayanand

Maybe you are looking for