Power Query to SAP BO - Connection issue

Hi all,
I have spent a few hours trying to connect my Power Query addon to Business Objects.
But I am now facing an issue, and I can't do anything for it. It would be interesting to have your feedback on this :-)
I have the right address (link) to enter in the first invite in order to access to my universe, but my issue comes at the moment where I have to log in. 
I know exactly what to enter, but the thing is that numbers in my password disappears when validating, and the authentification mode comes back on "Enterprise"
by default, so I am unable to link to my business objects universe...
I have all the minimum requirements, everything is ready to be used, I just have this small issue to fix... :-(
I have already uninstalled and re-installed it a few times to be sure...
Example with images :
1/ I enter my credentials as I should, and validate.
2/ Once I validated, I have an error message. When I go back in the options to see what is currently used for the connection, here is what I get :
Numbers disappeared and enterprise came back by default.
Did someone met this issue before? How could I found a workaround solution?
Thanks to all of you for your help and have a great evening,
Best regards,
Anthony.

I can confirm that modes other than "Windows AD" are not getting properly represented by the credentials dialog. We'll file a work item to fix this.
I cannot reproduce the issue where the numbers at the end of the password are truncated. The number of dots in the password field doesn't actually represent the length of the password that was entered previously and will be used. Maybe there's
some confusion because of that?
Is this issue blocking you from connecting? If so, are you blocked from connecting because the password gets truncated?

Similar Messages

  • Power Query for Excel login/connection issue.

    Hi all
    I have recently installed Power Query for Microsoft Excel in MS Office 2013.
    I can connect successfully to the all the BI Universes, create queries & design reports in Excel.
    The problem that I have is that I can only do this with the Administrator account. The Admin account is the only account that can connect successfully to the BI universes.
    I have created test user accounts,test groups and assigned security to basically reflect the same rights as the Admin group, but to no avail.
    I have also assigned security to these users & groups on the application level (RESTful Web Service, Universes, Connections) , but no luck.
    It constantly says : "Access to the Resource is forbidden"
    The last thing I want to do is make the users part of the Administrator group. I'm sure you guys would agree that that would be like opening Pandora's Box

    Hi Liang,
    Power Query is part of Excel 2016 and can be found under the Data tab.
    Regards,
    M.

  • BEx Query for SAP BO WebI issue

    Hello Experts,
    I am facing a problem in BEx query which is feeding SAP BO WebI 4.0 (SP5) via BICS.
    BEx query designed on top of a Multiprovider consists of two standard InfoCubes namely ZBW1 and ZBW2.
    We need "ZPRCTR" from InfoCube ZBW1 and the Key Figures (Calculated Key Figures based Restricted Key Figures) are from InfoCube ZBW2.
    Now, the problem is we are not getting the data for this combination.  Any suggestion will be appreciated.
    Thanks in advance
    Indra

    Is ZPRCTR available in ZBW2 also? If not, then it will not give the desired result.
    Check the below url:
    https://help.sap.com/saphelp_nw73/helpdata/en/4c/2226c805e65792e10000000a15822b/content.htm?frameset=/en/4a/40bf3597ea1d0fe10000000a42189c/frameset.htm&current_toc=/en/a3/fe1140d72dc442e10000000a1550b0/plain.htm&node_id=251
    Regards,
    Suchitra

  • Can not see new Power Query data sources?

    Hi, 
    New Power Query can connect to three new data sources: Sybase IQ, Exchange, Dynamics CRM Online
    http://office.microsoft.com/en-us/excel-help/whats-new-in-power-bi-ha104149776.aspx
    I just installed the latest Power Query and wanted to connect to CRM Online instance. For some reason I can not see these new data sources, what am I missing?
    Thanks in advance!

    Hmm... I didn't think we had quite released this version yet. It's possible that that website went live before the link to the new download. There should be a blog entry about this on the "Power BI" blog in the very near future.
    At the risk of providing a spoiler :), the CRM Online support is via OData.

  • Where to find the timeout setting for connecting to SAP Bi Universe in Power Query for Excel

    Hi All,
    I am trying to connect a SAP BI Universe. I am able to login to the environment and get the list of folders. But on trying to use the universe inside the folder, I am getting a time out error. The time out happens exactly at 100 seconds always.
    DataSource.Error: SapBusinessObjects: The operation has timed out
    Can you let me know if any setting can be done to avoid this timeout and get the universe into power query?

    I have the same problem with Version: 2.17.3850.242. It times out after 100 seconds. 
    In addition, I couldn't report it by sending a frown. Get the following error message
    Error Message: Could not load file or assembly 'Microsoft.Office.Interop.Outlook, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'
    or one of its dependencies. The system cannot find the file specified.

  • Power Query occassionally connects, seems to load, but returns only 200 rows with 1 error

    I have a Power Query that i have used for few weeks, successfully, but occasionally requires being run a few times to return records.  Just lately it seems to require run more than a few times to make it work. 
    When it doesn't return records , it seems to connects and start retrieving data, but returns only randomly like 100 - 200 rows with 1 error.  The error doesn't have any message. So its hard to troubleshoot from that perspective.
    Query appends two other large and merges in a few others. The data sources are either csv files, Sharepoint Lists and tables in workbook.
    I haven't identified anything in terms of environment or query changes that might cause this.
    When it finally does retrieve all records,  it might be after i have done the following things, but i can't say for certain exactly what did the trick:
    * to run query multiple times
    *maybe simply changing anything in query resolves issue
    * making upstream queries (that are merged or appended into this query)  to Not Load to worksheet or model, eg just have connection
    I'd think this type of error and situation while not common is encountered by others.
    Does this ring a bell for anyone, and if so, can you please shed some light on the reasons and resolutions for this?
    Thanks!

    If you click on "1 error" it should show the editor with a query that will select the rows with errors. This unfortunately might not show all errors for various reasons, but you should try it.
    If that doesn't work, here's an example of how to retrieve error details.
    Suppose the following query:
    = Table.FromRecords({[A="B", B="C" + 1]})
    Notice how we're using the + operator with a string and number. This will result in an error.
    I can create a custom column that uses the 'try' operator over the B column. This returns a record with details which I then expand to retrieve the message.
    let
    Source = Table.FromRecords({[A="B", B="C" + 1]}),
    #"Added Custom" = Table.AddColumn(Source, "Custom", each try [B]),
    #"Expand Custom" = Table.ExpandRecordColumn(#"Added Custom", "Custom", {"HasError", "Error"}, {"Custom.HasError", "Custom.Error"}),
    #"Expand Custom.Error" = Table.ExpandRecordColumn(#"Expand Custom", "Custom.Error", {"Message"}, {"Custom.Error.Message"})
    in
    #"Expand Custom.Error"
    Let me know how this works for you.
    Tristan

  • Connect to Linkedin API with Power Query

    Hello
    Is there a way to create Power Query queries that connect to Linkedin API permanently (like Power Query does with Facebook)? I know it is possible to access Linkedin API the way Shish Shridar did it, but it is pretty limited and thus frustrating (see his
    article entitled "Analyzing LinkedIn Data using PowerBI" on his blog).
    I am sorry to ask without more technical details, but I am pretty new to Power query. I guess it has something to do with OAuth2 authentification not being implemented in Power query...
    I would be delighted If someone would be kind enough to provide me some insight on this issue !

    Thanks for your answer.
    What if I create an app to get the required access token etc? I know an excel add-on could be considered as a Twitter app, and thus be able to connect to the website's API (I'm thinking about Analytics for Twitter 2013 for instance) - is there any way to
    do the same with Linkedin?
    I guess this is far beyond my capacities for now, but any insight would be very much appreciated !
    [EDIT]
    I did a little more research... I created a Linkedin app and then followed the steps described on the official documentation to enable it to make authenticated API calls to LinkedIn using OAuth 2.0 (I cannot use hyperlink for now, but here is the full link
    to the official doc : https://developer.linkedin.com/docs/oauth2)
    Maybe some VBA would be able to request an authorization code following this type of URL : https://www.linkedin.com/uas/oauth2/authorization?response_type=code&client_id=MYCLEINTID&state=STATE&redirect_uri=MYREDIRECTURL
    - Then the user will be presented with LinkedIn's authentication dialog box. Is VBA able to fill in this login form?
    -If it is, then it should get the code displayed in the redirection URL, which looks like :
    MYREDIRECTURL?code=THECODETOGETWITHVBA&state=STATE
    -If VBA could, then it just has to go to this new URL : https://www.linkedin.com/uas/oauth2/accessToken?grant_type=authorization_code&code=THECODETOGETWITHVBA&redirect_uri=MYREDIRECTURL&client_id=MYCLIENTID&state=STATE&client_secret=MYCLIENTSECRET
    -At this point, the last URL returns the access token, which could then be stored somewhere in Excel and thus used in Power Query (pretty easy to do using a headers like this:
    Headers=[#"Authorization"="Bearer Access Token"]])
    Hope someone will see this and tell me if it is feasible and likely to succeed.

  • Power Query Update breaks connection to PostgreSQL database

    After the update to Power Query 2.11.3625.144, we can't connect our PostgreSQL database anymore. 
    Error message is: 
    DataSource.NotFound: PostgreSQL: Unable to find a database provider with invariant name 'Npgsql'.
    This error may have been the result of provider-specific client software being required but missing on this computer.  To download client software for this provider, visit the following site and choose at minimum 'Npgsql version 2.0.12': http://go.microsoft.com/fwlink/?LinkID=282716
    Readding the Npgsql driver doesn't solve the issue. Has the version requirement changed with the Power Query update? Or is PostgreSQL connectivity completely broken?

    Hmm, 
    If I add the line, I get the following error message in Power Query: 
    'Npgsql' returned the error: 'Unrecognized element. (C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config line 169)'.
    This error may have been the result of provider-specific client software being required but missing on this computer.  To download client software for this provider, visit the following site and choose at minimum 'Npgsql version 2.0.12': http://go.microsoft.com/fwlink/?LinkID=282716
    The code in the machine config looks like this: 
      <system.data>
            <DbProviderFactories />
            <add description=".Net Framework Data Provider for Postgresql Server" type="Npgsql.NpgsqlFactory, Npgsql, Version=2.0.12.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7" name="Npgsql Data Provider" invariant="Npgsql" support="FF"/>
        </system.data>
    The node seems to be empty by default. Can it be that the surrounding stuff has to be differently written in that case?

  • Power Query Unable to Connect to SSAS

    Hi I am trying to connect Power Query to an SSAS Cube (Tabular). In the navigator, I expand the database, expand the folder and expand the model.  I am running Excel 64bit and PQ 2.18 64 bit. I can connect to an SQL Server and I can connect to the cube
    with PowerPivt.  I can not connect with Power Query.    When I expand the model I get an error saying "Object reference not set to an instance of an object".  When I peek I get the following error:
    Unexpected error: Object reference not set to an instance of an object.
    Details:
           at Microsoft.Mashup.Engine1.Library.AnalysisServices.AnalysisServicesCubeContextProvider.<NewTabularDisplayFolders>b__1(AnalysisServicesMeasure m)
       at System.Linq.Lookup`2.Create[TSource](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer)
       at System.Linq.GroupedEnumerable`3.GetEnumerator()
       at System.Linq.Enumerable.ToDictionary[TSource,TKey,TElement](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer)
       at System.Linq.Enumerable.ToDictionary[TSource,TKey,TElement](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector)
       at Microsoft.Mashup.Engine1.Library.AnalysisServices.AnalysisServicesCubeContextProvider.NewTabularDisplayFolders()
       at Microsoft.Mashup.Engine1.Library.AnalysisServices.AnalysisServicesCubeContextProvider.get_DisplayFolders()
       at Microsoft.Mashup.Engine1.Runtime.NativeFunctionValue1`2.Invoke(Value arg0)
       at Microsoft.Mashup.Engine1.Language.DebugExpression.Execute(Value frame)
       at Microsoft.Mashup.Engine1.Language.FunctionInvocationExpression2.Execute(Value frame)
       at Microsoft.Mashup.Engine1.Language.DebugExpression.Execute(Value frame)
       at Microsoft.Mashup.Engine1.Language.RecordExpression.RuntimeRecordValue.Force(Int32 index)
       at Microsoft.Mashup.Engine1.Language.RecordExpression.RuntimeRecordValue.get_Item(Int32 index)
       at Microsoft.Mashup.Engine1.Runtime.RecordValue.get_Item(String field)
       at Microsoft.Mashup.Engine1.Language.RecordExpression.RuntimeRecordValue.Force(Int32 index)
       at Microsoft.Mashup.Engine1.Language.RecordExpression.RuntimeRecordValue.get_Item(Int32 index)
       at Microsoft.Mashup.Engine1.Runtime.RecordValue.get_Item(Value key)
       at Microsoft.Mashup.Engine1.Runtime.Library.Linker.BindFunctionValue.TypedInvoke(RecordValue environment, Value section, TextValue name)
       at Microsoft.Mashup.Engine1.Runtime.NativeFunctionValue3`4.Invoke(Value arg0, Value arg1, Value arg2)
       at Microsoft.Mashup.Engine1.Language.MembersFunctionValue0.Invoke()
       at Microsoft.Mashup.Engine1.Language.ListExpression.RuntimeListValue.Force(Int32 index)
       at Microsoft.Mashup.Engine1.Language.ListExpression.RuntimeListValue.get_Item(Int32 index)
       at Microsoft.Mashup.Engine1.Runtime.ListValue.get_Item(Value key)
       at Microsoft.Mashup.Engine1.Language.MembersFunctionValue1.Invoke(Value arg0)
       at Microsoft.Mashup.Engine1.Language.RecordExpression.RuntimeRecordValue.Force(Int32 index)
       at Microsoft.Mashup.Engine1.Language.RecordExpression.RuntimeRecordValue.get_Item(Int32 index)
       at Microsoft.Mashup.Engine1.Runtime.RecordValue.get_Item(String field)
       at Microsoft.Mashup.Engine1.Language.FunctionInvocationExpression2.Execute(Value frame)
       at Microsoft.Mashup.Engine1.Language.Expression.ExecuteCondition(Value frame)
       at Microsoft.Mashup.Engine1.Language.DebugExpression.ExecuteCondition(Value frame)
       at Microsoft.Mashup.Engine1.Language.IfExpression.Execute(Value frame)
       at Microsoft.Mashup.Engine1.Language.DebugExpression.Execute(Value frame)
       at Microsoft.Mashup.Engine1.Language.RecordExpression.RuntimeRecordValue.Force(Int32 index)
       at Microsoft.Mashup.Engine1.Language.RecordExpression.RuntimeRecordValue.get_Item(Int32 index)
       at Microsoft.Mashup.Engine1.Runtime.RecordValue.get_Item(String field)
       at Microsoft.Mashup.Engine1.Language.MembersFunctionValue0.Invoke()
       at Microsoft.Mashup.Engine1.Engine.Microsoft.Mashup.Engine.Interface.IEngine.Invoke(IValue function, IValue[] arguments)
       at Microsoft.Mashup.Evaluator.SimpleDocumentEvaluator.BeginGetResult(DocumentEvaluationParameters parameters, Action`1 callback)
       at Microsoft.Mashup.Evaluator.SimpleDocumentEvaluator.BeginGetResult(DocumentEvaluationParameters parameters, Action`1 callback)
       at Microsoft.Mashup.Evaluator.FirewallPartition.BeginGetResult[T](Action`1 callback)
       at Microsoft.Mashup.Evaluator.FirewallDocumentEvaluator.Evaluation`1.OnBufferComplete(Exception exception)
       at Microsoft.Mashup.Evaluator.Firewall.BeginBufferPartitions(Action`1 callback)
       at Microsoft.Mashup.Evaluator.FirewallDocumentEvaluator.BeginGetResultInternal[T](DocumentEvaluationParameters parameters, Action`1 callback)
       at Microsoft.Mashup.Evaluator.RemoteDocumentEvaluator.Service.OnBeginGetPreviewValueSource(IMessageContext context, BeginGetPreviewValueSourceMessage message)
       at Microsoft.Mashup.Evaluator.MessageHandlers.TryDispatch(IMessageContext context, Message message)
       at Microsoft.Mashup.Evaluator.ContextMessenger.ContextMessageHandlers.TryDispatch(IMessageContext context, Message message)
       at Microsoft.Mashup.Evaluator.MessageHandlers.Dispatch(IMessageContext context, Message message)
       at Microsoft.Mashup.Evaluator.ContextMessenger.OnMessageWithUnknownContext(IMessageContext baseContext, MessageWithUnknownContext messageWithUnknownContext)
       at Microsoft.Mashup.Evaluator.MessageHandlers.TryDispatch(IMessageContext context, Message message)
       at Microsoft.Mashup.Evaluator.ContextMessenger.ContextMessageHandlers.TryDispatch(IMessageContext context, Message message)
       at Microsoft.Mashup.Evaluator.MessageHandlers.Dispatch(IMessageContext context, Message message)
       at Microsoft.Mashup.Evaluator.EvaluationHost.Run()
       at Microsoft.Mashup.Host.EvaluationContainer.EvaluationContainerMain.Run(String[] args)
       at Microsoft.Mashup.Host.EvaluationContainer.EvaluationContainerMain.Main(String[] args)
       --- End of inner exception stack trace ---
       at Microsoft.Mashup.Evaluator.RemoteDocumentEvaluator.Service.OnBeginGetPreviewValueSource(IMessageContext context, BeginGetPreviewValueSourceMessage message)
       --- End of inner exception stack trace ---
       at Microsoft.Mashup.Host.Document.Preview.PreviewManager.<>c__DisplayClasse.<StartPreviewEvaluation>b__b(EvaluationResult2`1 result)

    Hi,
    This issue will be fixed in an upcoming release. Certain tabular models can have measures without measure groups, which wasn't considered. The specific case you hit is that when a tabular model has no measures, a default one without a measure group
    is added in order to allow retrieving the dimension members in certain tools.
    Thanks,
    Tristan

  • Power Query - OData Connection to CRM - On Premise

    Hi All.
    I'm trying to connect Power Query to CRM via an Odata connection and I cannot seem to get it to work.
    I have an on premise CRM organization so I figured that the online issue wouldn't apply, but I might be wrong.
    I post the OData URL when prompted, go to the organizational account sign in section and when I click sign in I'm met with this response:
    Unable to connect. This credential type is not supported for this resource.
    Is this something I'll have to resolve with our system administrator? or is connecting via OData something I won't be able to do yet?
    I have version 2.10.3598.81 of Power Query.

    It really is not supported for CRM IFD/ADFS On-Premise deployment. I wrote for that a special Proxy service (client side java console application), which makes transparent translation: 
    from: 
    https:// <org>. crm. <domainname> .com/XRMServices/2011/OrganizationData.svc / 
    to: 
    http://localhost:8002/XRMServices/2011/OrganizationData.svc/

  • Power Query Connection to SharePoint in O365 Failing

    Hi all, I'm trying to connect Power Query to a SharePoint list by using the SharePoint List option. After pasting in the URL for the sharepoint (O365 hosted) site and go to Organization Account to type in my O365 credentials for the site, I receive
    the following after clicking Save.
    I've tried this on a number of PCs with different admins around the company to no avail. It appears that no list is available to be seen. I've also tried OData feeds there too with no luck. Any ideas?
    Brian Knight Pragmatic Works SQL Server Training, Tools and Services

    OK looks like I'm narrowing it down. This appears to be an issue on the O365 SharePoint sites. One site appears to be working while another is not working for Power Query or any other API reader that wants to connect to it. I'm an admin of both so it doesn't
    appear to be permission problems. Is there anything that I could check inside of SharePoint that would prohibit Power Query from connecting?
    Thanks!
    Brian Knight Pragmatic Works SQL Server Training, Tools and Services

  • Unable to connect Power Query to Salesforce through custom domain

    If I try a straight login / connection through Power Query, I get "Your company's authentication service is currently down.  Please contact the administrator at your company for more information".
    If I try to connect via the Custom Domain, new box will pop up, opening up an IE window in Excel, where I can log in and it does connect me to my default page, but the Power Query connection does not connect.
    You can see the successful connection but the Salesforce connection in Power Query isn't made.  Is this a custom domain connection issue, a company security issue or a Saleforce connection bug?

    First off, I can never undestand how Microsoft can have these forums operate efficiently if just about ever response is entered as a duplicate entry.  Across many different forum channel, for years, I continue to see multiple entries, regardless of
    browser I'm using.  It just seems unprofessional and so counter productive to the image that Microsoft is trying to project, but that's a different rant.
    I'm in the process of getting some information on how our system is set up.  Working for a large company, local IT is good for somethings but when it comes down to system settings for global salesforce roll-outs, the team can only answer so much. 
    Until I discover the settings at my side, it's a bit early to have some mark a solution as answered if not all the facts are in.  Someone have some sort of strange forum quota for closures going on?
    Just curious.  There's this add-in that is supposed to let you connect to Saleforce, but may not connect to Production or Sandbox environment or custom domain because there's a choice?  I realize this is the first iteration and the video and description
    look good but how long before it becomes more versatile and open to more users whom might be in a similar situation?
    Don't get me wrong guys (and girls).  I love that this product and these various forums do exist to flush out problems of users and I sincerely appreciate the time and effort everyone puts into helping out where/when they can, but it is very much a
    sour grapes situation for me.  It's a bit like 1 step forward and 2 steps back.  It will be nice when we get to the final destination, I just hope it happens sooner, rather than later.

  • Connecting Power Query to SharePoint Foundation 2010

    I'm looking to set up PowerQuery in Excel 2013 to link into the various lists on our SharePoint 2010 Foundation server.
    I have established the connection URL.
    The SharePoint Foundation 2010 server is on the same LAN I'm connected to, so I've opted for Windows Authentication.
    These two aspects of the setup appear to be fine: However at the point when Power Query links to the SharePoint server the following error is being returned.
    DataSource.Error: OData: The feed's metadata document appears to be invalid.
    Any ideas?

    Hi,
    We have forum for Power Query discussion and feedback. I will move your post to that forum:
    https://social.technet.microsoft.com/Forums/en-us/home
    The reason why I move your post is to get you the most qualified pool of respondents, and other partners who read the forums
    regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.

  • CR2008 connectivity issue with BOE Universes(sap and non sap universes)

    Hi Experts !!
    Recently we tried to build/connect to a Universe in Crystal Reports2008 via 'Make a new connection tab'.
    The universes are of SAP BW or non SAP Lying in BOE Servers and we are trying to build reports on them by conncting/utilizing the universes as a database for Crystal Reporting.
    Our issue is most of the time we are not able to connect to the Universes and the connectivity blows out by some 'communication Error' thing initially.
    While at some other points in time, the connectivity takes us to the Universe and we are able to select few characteristics and key figures from the Universe but the moment we go futher and try to run by pressing 'OK' button it blows out and say' LOGON FAILED'.
    Apparantly, it is an connectivity issue with BOE server and from the different blogs it looks like it is a known issue for long.
    The proposed issue resolution were like either CR2008 should be SP2 with BOE SP3 or there should be some additional .dll files defined in the paths in case of MSSQL database. None of this applies to us as we are on CR2008 with SP3 and going back to SP2 is probably not a viable option for us, and we are using Oracle as underlying database in this specific case.( i would like to tell you here that we are able to connect to Oracle Database directly though).
    We have raised a message with SAP and was just wondering if we do have some solution/workaround already available to this known issue in place please?
    Thanks&Regards.
    Edited by: AMIT GHILDYAL on Aug 1, 2011 2:41 PM
    Edited by: AMIT GHILDYAL on Aug 1, 2011 2:44 PM
    Edited by: AMIT GHILDYAL on Aug 1, 2011 3:14 PM

    Hi Amit,
    Moved to Universe Forum.
    If you have a case logged then no point posting here also, this is a public site and not a case management tool.
    Once you do get the solution from your case please post it here also to help others if they have the same problem.
    Thank you
    Don

  • Using an existing connection in the Excel 2013 file in Power Query

    Hi,
    I've created an Excel workbook and a SQL Server data connection in this workbook.
    When I open Power Query I cannot to use this created data connection.
    In general, inside Power Query can I use a data connection created in the original Excel workbook?
    Many thanks

    Following on from Ehren's advice please find the following screen shot and link; -
    https://support.office.com/en-gb/article/Connect-to-a-SQL-Server-database-Power-Query-e5004318-0f2e-46a3-8b15-1559aa3c04db?ui=en-US&rs=en-GB&ad=GB
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

Maybe you are looking for

  • How can i change an ipad2 video to a still photo?

    Hos can I change a ipad video to a still photo?

  • HT1386 my itunes wont sync all of my songs and i dont know why.

    This problem never used to be there for me but now it is it has nothing to do wiothe space left because i have enough left i have tried looking at other answers but they havent really helped please help quickly

  • Sender IDOC issue.

    Dear all, I am doing IDOC to FILE scenario. I did all the configuration required. 1) in  r/3 side:- created LS, RFC destination, port ,PP . 2)XI side:- created rfc destination , port in IDX1. IDOC is generated perfectly but in SM 58 I am getting the

  • Costing views

    Dear all What is the function of costing views 1 and 2 in material master record, work scheduling view. please explain

  • Search options bug in 1.2.1.32 (and what about the Help?)

    Hi, this is a little bug I experience both in 1.2.1.32.00 and 1.2.1.32.13. I don't know exactly what triggers it, so I can only describe the symptoms, hoping someone will be able to reproduce somehow. 1) Edit a package 2) Try searching: you can acces