Quantcast
Channel: SCN: Message List
Viewing all 8676 articles
Browse latest View live

Re: Unable to reload all the material data from r/3 to APO


Re: Unable to reload all the material data from r/3 to APO

Re: Unable to reload all the material data from r/3 to APO

Re: Has anyone actually fixed the "bobj is undefined" problem?

$
0
0

Typically, the bobj error is a configuration issue, so nothing to "fix" as such. If you enter the search term 'crystal net bobj' you get well over 20 KBAs on possible solutions. See if any of those help you out. If not, do come back, but let us know what you tried.

 

re:

 

Only thing is that I have not copied any files to the wwwroot directory. I want to make a reference through the config file.

 

See KBA 1691356 - Error Message: "Bobj is undefined" during deployment of ASP.NET application

KBA 2007190 - Error: JavaScript runtime error: 'bobj' is undefined


And see the SAP Crystal Reports .NET SDK Developer Guide  (search for 'web.config viewer')

 

BTW, the solution mentioned here: Error: 'bobj' is undefined - crystal report for VS2013 - please help ASAP,

is documented in 1691356 - I believe

 

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Re: Purchaser is not able to create the confirmation for Limit Item shopping cart - SRM Upgrade

$
0
0

Dear All,

 

Could you please advise if anyone is having any suggestions on this where we are in SRM 7 EHP 3. Thanks in advance for your help.

 

Best Regards,

Bharathi

Re: Blank while Shopping Cart  Return from Catalog

$
0
0

Hi Prasath,

 

Did the issue got resolved?

 

Best Regards,

Bharathi

How to use MS Team Foundation Server as Build and Unit Test Server

$
0
0

Hi,

 

does anyone use the TFS build service for PowerBuilder to realize continuous integration with unit testing?

 

best regards

 

Benjamin

Re: Selection of a mobile framework - for enterprise mobility app.

$
0
0

Sukanta Rudra,

 

I love to work with SAP products and so i m in SAP. Having worked on several other mobile applications before , i can clearly see the ease in development of Enterprise applications using SAP products portfolio.

 

Often I have seem blogs in SCN, advocating for frameworks other than that of SAP. No harm

Please mention the blogs as a reference for more understanding. I can always only see Cordova / appcelerator being the recommended platforms by SAP for cross platforms development.

 

SAP Partners with Adobe-Cordova/phonegap , Appcelerator, Sencha (the three big players in cross platform development)

Developer Announcement: Third Party Tools

SAP Drives Openness and Choice for Millions of Mobile App Developers

More over i have worked mostly on all the three for a while and have experienced the ease in development with cordova.

 

Also the HWC (Hybrid Web Container ) - the former way for developing hybrid applications on SAP Mobile Platform till 2.x has Cordova/phonegap plugins inbuilt in it. Literally it followed the approch of Cordova and ui framework was of Jquery Mobile .

 

But Now with the release of SMP 3.X things are completely under the control of developer. There are no restrictions to use a particular framework for development and developers are free to use their choice for development (SMP 3.x highlights BYOT - Bring Your Own Tools for Developers).

 

Adding to above , just would like to mention there are few products mainly focused and developed on cordova technology (KAPSEL plugins, Appbuilder, Fiori Client , River RDE in future integrating Kapsel plugins)

 

SMP 3.x is all open for developers , we are free to use any platform as per our requirements and convenience now.

 

PLease have a look at these videos on how SMP 3.x strategy stands for

 

 

 

My experience has been using Kony-SKY framework for developing the mobility apps (not mobile web). SKY plugins has been certified by SAP, to be used for developing mobility applications. (SAP does embrace other vendors). My questions pointed out above, was out of the struggles we had while implementing the project. Many at times, I felt I was reinventing the same tools while integrating into the SAP backends.

I am not a Kony guy, but will surely look into this and would check if i can help you.But out of my experience with Cordova /HWC/ Kapsel , it was satisfactory.

 

I presume you might have used/using SAP's Fiori apps, SAPUI5, mobile architecture and would like to gather some more information very specific to SAP's environment. I have no experience now on delivering apps using SAP's products. Maybe three months from now, I would get deep with 'SAP Fiori UX and SAP Screen Personas'. Maybe you could throw some light on few more queries.

 

Yeah , thanks to SAP for Fiori being out of License now and UI5 an Opensource. I have had the opportunity to also work and implement Fiori transnational applications and also develop Custom UI5 applications .

 

Note : Personas is really a good product , but on the down side is n't responsive in nature , so might not be a best fit for mobile devices

 

How are builds generated for different platforms? (Android uses.apk, Blackberry uses .cod, iPhone uses .ipa)

I can help you understand this with an Android Phone Gap project example

 

Typically Native Android apps are developed using Core Java.

 

Initially all the Core libraries of Android and java are loaded with import command

import android.os.Bundle;

Now Cordova libraries are added to existing libraries

import android.os.Bundle;

import org.apache.cordova.*;

and Android uses the concept activities and layout for screen navigation and designing.

and by default any android project should have an activity and layout for launching the application, for which the code looks something similar to this

setContentView(R.layout.main);

so , a Relative layout is initially launched as main view.

 

As mentioned in the blog in  " How does it actually work section " cordova loads web views instead of the native layouts /activities

How Does it actually work ?

Technically the User Interface of a Cordova Application is effectively a WebView that occupies the complete screen and runs in the native Container. So , it is the same web view that is used by the Native  Operating systems. This purely means that only the Native Containers changes according to the OS and internally the web pages remain the same. (Since the browser rendering of webpages are different for each operating systems)


For       IOS it is UIWebView class

             Android it is in  android.webkit.webview

             Windows it is WebViewClassand the similar goes to other OS .

 

This line of code is responsible for that

super.loadUrl("file:///android_asset/www/index.html");

our developed web applications should reside in the above mentioned location to access as any native web view

 

also few other hacks are to be done at

public class [appname]Activity extends Activity {

to

public class [appname] Activity extends DroidGap {

and to the android manifest file accordingly to get the permissions

 

Now internally the android applications works just like any native applications but accessing the web applications files in the web view. and just generates the .apk accordingly to the application.

 

Say a query is executed from a mobility app, say the result set is some 1000 rows, how does the data fetch mechanism work. Do you use some delta data fetch mechanism?

if i were to handle this , would try to filter this out to sections. Lets imagine huge PO s are resulted upon a query, i would try to create some sections/categories for Unreleased/Open/Approved /... and again try to perform some dynamic filter operations on each category selection/ or make use of pagination property to move across the items/records

 

Also user would not be interested to scroll and search for his item from a huge collection of items.

 

More over for handling of huge records Native approach is preferred to Hybrid/mobile web.

When a mobility connection snaps while the user is using the app, does the app stop immediately? Or rather how is user informed about non availability of the network connection?

Lets assume two cases here

 

1) Complete Online application

2) Online Offline Application

 

1) If user is trying to access the data from the application , since this being an online application , a proper network connectivity id to be checked properly before making any request .

 

for phone gap/cordova , Network Object helps us to check if network connectivity is available to make any request. else throw an alert to check the connectivity/ turn on the connectivity.

 

Similarly a Connectivity manager API exists for Android . Here is an example. Same would apply for other OS also.

 

2) For online - offline application . user wouldn't be able to read records from back end , but can perform other necessary operations on the device, and once the device gets connected to network, can sync with the back end . An alert should be thrown to inform the user about the loss in network connectivity and the limitations in accessing the data .

 

Build/release mechanism and subsequent tracking for mobility apps for periodic release of apps  - say there would regular fixes to bugs, upgrades to framework SDK, device OSs might get upgraded - Is there a tool for tracking all these, etc

Yes. MDM tools are perfect fit for these. Afaria and Mocana are doing well now.

 

And, anything that you would like to share, related to SAPs environment, that makes implementation easier.

SAP Mobility is really booming and will grow , dominate in enterprise mobility in future.

 

For our understanding:

 

SAP Mobility Flow.png

 

Let us know for more.

 

Regards

Virinchy


Re: Crystal report changed after reinstalling it! Is that possible?

$
0
0

Hi Ken

 

 

In a word; Nope. No way. I'd suspect something else happened during that process. Things not backed up correctly, backed up in a different place, the directory he is pulling from is incorrect, etc.,etc.

 

 

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Re: Balance CarryForward missing

$
0
0

Dear Sara,

 

First of all, just to point out it is really not good practice to be toggling the Balance Sheet Account/P&L Account setting in the master data like has been done in your production system. This can lead to carry forward issues and retained earnings balance issues like you have seen.

 

From you screenshots it is clear that in production system the balance carry-forward was done while the account was in the P&L status in the master data. This is the only explanation I can think of for a 0,00 opening balance.

 

Please note because you are using the NewGL that FAGLGVTR is the only method to carry forward the balances again. There are no options in the NewGL to carry forward the balance of accounts individually.

 

I would agree with Christoph that the way to solve this issue is to re-run the balance carry-forward again with FAGLGVTR, this should reduce the value to the retained earnings account and give the opening balance of ZCARGA_AP the correct amount.

 

If you want to double check the calculations involved then please refer the following Wiki article:

 

Behaviour of Retained Earnings GL Account in relation to the Balance Carry Forward

 

...and in particular the follow-on article which deals with calculations involved:

 

Understanding the logic of Retained Earnings account with Example

 

You can view the balance of the retained earnings account and compare it to the sum of all the P&L account balances to determine if the account updated the total of the retained earnings correctly.

 

Please ensure also to take care while using FAGLGVTR in the production environment. While it is possible to re-run the transactions multiple times into the current fiscal year, it is not advised to run the transaction from a previous fiscal year into another previous fiscal year as this could result in change to the balance sheet values in a closed fiscal year which is not allowed by your external auditors. Always double check before running the transaction in update mode, it is a critical transaction.

 

Kind regards,

Declan

Re: Crystal Reports prompt issue on export: “The report you requested requires further information”

$
0
0

Excellent

 

happy coding,

- Ludek

Re: Cannot add interface to connection in BPB

$
0
0

Hi Guy,

 

 

Make sure the interface has the following fields defined:

 

1.png

 

  • Sending Logical Component
  • Receiving Logical component
  • Technology
  • Type

 

In the component view, make sure to create the connection as the same type you defined for the interfaces

 

2.png

 

Then when assigning the interface:

3.png

 

They’ll be available:

4.png

 

best regards,

Fabricius

Re: SOAP Sender to RFC Scenario WSDL File

$
0
0

If it just for generating the structure then you can create an external definition object in ESR and import the wsdl file provided by client.

Re: Two predecessors (VONA relationship between One-Order documents)

$
0
0

Hello,

 

2 predecessors for one document is possible, and has always been: you can even check tcode CRMD_ORDER in SAP GUI: start a search that will retrieve more than one hit, then select multiple lines and click "create follow-up"... all your business transactions will be set as predecessors (didn't test it in WebUI though).

But for sure, even in WebUI, it is possible to add more than one predecessor through "subsequent assignment". So, I don't see any problem at all to achieve your requirement.

 

Regards,

Nicolas.

Re: Help with alternate parts relevances

$
0
0

Thx Julian

The issue was due to Follow up discontinuing material. setup view MRP4 in material master,,,, maybe you can use this one as further reference...thank you for your comment...


Re: Does Hana XS have a built-in XML parser? If not, what's approach to process xml in XS?

$
0
0

Thomas Frank has one here that I am using. I had to modify it as it was not retaining values inside of xml tags that contained attributes (eg <myTag myAttr="myAttrValue">myTagValue</myTag> was not retaining "myTagValue" in the JSON. I will post my updates to the code momentarily, just need to clean up some "proprietary" pieces of it.


Updated JS:

 

https://dl.dropboxusercontent.com/u/70795294/xml2json.js

Re: Envio de e-mail via SAP

$
0
0

Como vai Cleyton, tudo bem?

Fiquei uns meses sem acessar a comunidade, espero que a resposta não esteja tão tardia. Aproveito também para compartilhar informação com a comunidade pois deve ser dúvida de mais alguém.

 

A nota técnica SAP n. 1702632 esclarece bem esta questão e deixa claro que nativamente, fazer SMTP com autenticação só é possível a partir do Netweaver 731 no nível mínimo de support package SAPKB73106, e kernel mínimo 7.21. Abaixo disso, somente com customização, ou colocar outro servidorzinho de SMTP relay no meio do caminho que faça o relay do SAP para a locaweb e vice-versa.

 

Espero ter ajudado.

Abs,

Re: query is not using the cache

$
0
0

We actually found out that the cache becomes invalidated when data is loaded/reloaded etc.  So we are looking at ways to not have this occur for certain queries that we run the same way over and over.

Re: Report with Parameters

Re: Purchasing customized ODS ZPUR_O01 Purchase Order Item

$
0
0

I also like to add that there are few PO's business brought to our attention, of not updating couple of past PO'S that was changed, this happened only couple of records.  Eg: first load -- Quantity 3 CS, updated in R/3 as 8 CS, that PO still showing as 3 CS.

Viewing all 8676 articles
Browse latest View live




Latest Images