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

Re: How to extract the Equipment data along with class

$
0
0

Hello thirupathi,

 

If you are asking about standard report then it is IE05.

In the ALV output go to Settings > Show/Hide  classification. The Characteristics and values are added to the ALV layout. See this picture (IE05 ALV).

untitled1.jpg

 

 

If you are talking about function module:

There is no single function module to get both, you need to use fm BAPI_EQUI_GETDETAIL for Equipment details and then BAPI_OBJCL_GETDETAIL  for Class and Characteristics. See this post:ALV Report on Equipment vs Class vs Characteristics vs Values

 

 

Good luck

KJogeswaraRao


Re: Creating Parameters in SQL Command

$
0
0

Got it, thanks for the clear instruction.

 

Now that I've gotten through Step 3, I'm not sure I understand Step 4.  Which prompt am I supposed to edit?  Please advice.  Thank you.

Re: Any document for Fiori app version update?

$
0
0

Hi Senthil,

 

Please have a look at the migration steps included in the Snote 2112514 .The migration to the new Timesheet 2.0 app is more like to be  implementing the new app , assigning it to users and unassigning the older app roles from users.

 

Regards

Virinchy

Re: Quiz: understanding security policies in SAP (SECPOL)

$
0
0

Hi,

 

sorry, but your answer is not entirely correct.

 

Best regards

Stefan

Re: LTKRN14N.dll absent

$
0
0

So, where is this dll? I didn't find anything in C:\Windows\System32. I have also try to unregister/register the dll (with regsvr command) in a pc without this error but it didn't find it. If I download and install LEADTOOLS I will get the dll?

Re: Users with saplogon entry pointing directly to CI

$
0
0

Hi Mandeep.

 

Thanks for your reply.

 

Actually, I need to track who logged on in SAP without using load balance. That means: Entry in SAP logon is pointing to custom application server, instead Server Group

Then, I will send this information to the service desk to adjust SAP Logon entry.

 

Regards.

Re: Calculated view with input parameters

$
0
0

hi abhishek, I am using my calculation view directly from HANA and calling it from a stored procedure within HANA. my issue which seems similar to yours was due to the single quotes around the input params - I didn't have any @prompts so mine was direct call. make sure your input param is wrapped with 1 single quote at the beginning and end... and if you have multiple values such as in my case, you need to have 2 single quotes in between values and comma such as 'value1'',''value2'  this is how I solved my problem - again.. I didn't have a @prompt or universe. hope this helps

Re: How to sort numbers in SAPUI5?

$
0
0

is your EmpNum a numeric value ? does it have any non-numeric characters in it? if it has any non-numeric chars, then that's the reason. if it is only numeric values, then your model should return it as a int, float, decimal and your sorter shouldn't be a problem... if this continues, then you may need to parse into the correct numeric value in order be be able to sort your EmpNum values. an alternative would be to use the sort function in JavaScript hope this helps


Re: How to sort numbers in SAPUI5?

$
0
0

var id_sort=new sap.ui.model.Sorter("EmpNum");

 

 

 

id_sort.fnCompare = function(a, b){

  var intA = parseInt(a), intB = parseInt(b);

 

  if (a == b) {

  return 0;

  }

  if (a < b) {

  return -1;

  }

  if (a > b) {

  return 1;

  }

  return 0;

};

Re: LTKRN14N.dll absent

Re: Importação Saldo de Estoque Lote/Série - posição no depósito

$
0
0

Olá Andrea, segue a dica para fazer importação de "Saldo inicial do inventário"

 

A importação será baseada na importação de 3 templates:


1. Equivalente ao cabeçalho do documento OIQI, na tela de seleção de arquivos "InventoryOpeningBalance"


2. Equivalente as linhas do documento IQI1, na tela de seleção de arquivos "InventoryOpeningBalanceLines"

 

3. Equivalente as lotes dos itens, na tela de seleção de arquivos

"InventoryOpeningBalanceBatchNumbers"

 

 

OIQI.png

 

IQI1.png

 

Lotes.png

 

 

 

 

No DTW utilizar as seguintes opções:

 

=> Transactional Data (for example, sales invoices, purchase orders, and so on)

 

=> Add New Data

 

=> Inventory \ Inventory Transactions \ Inventory Opening Balance

 

 

 

DTW_Arquivos.png

 

si.png

 

Os CSVs estão anexados aqui na Thread.

 

Espero ter colaborado.

 

Abraços,

Rodrigo da Costa Feula

Re: Deploying a kapsel offline app without HANA cloud

$
0
0

Hi Praveen Antony,

, is it possible to have a Kapsel offline app(because it was created from that template) with the cordova barcode scanner plugin (without SMP or HCPMS or offline feature ) deployed onto the ABAP UI repository?

Are you referring to the WebIde Kapsel Offline Template ? If so,once even if the initial offline project is created specifying the odata url and the entitysets to be cached for offline used and project is created, we are supposed to go to the project settings of the newly created project to add the plugins that are to be used in the project.

(Remember , we just got a template to start our offline project and no plugins are added till now)

 

Screenshot 1: Creating a Kapsel Offline Project from webide template

kapsel_OfflineTemplate_webide.png

 

It is in the ' Project settings-->Device Configuration' of the project that we specify the plugins to be used by our application. 

 

Screenshot 2: Adding the plugins to be used in our application

kapsel_OfflineTemplate_webide_DeviceConfiguration_Cordova.png

 

Please look at screenshot 2, Cordova plugins are open source and does n't require HCPMS/ SMP 3 to be used. 

 

But if kapsel plugins like offline are to be used , Specifying the HCPMS/SMP 3 details are mandatory as kapsel plugins are part of SMP SDK.  

 

Screenshot 3: Adding kapsel Plugins and specifying HCPMS/ SMP 3 connection details

kapsel_OfflineTemplate_webide_Device_configuration.png

Please remember that we are creating a hybrid application which generates a package file to be installed by the user (Package file- Android : .apk , IOs: .ipa). which is n't to be hosted in ABAP UI repository.

 

Abap UI repository is only to host the webfiles of UI5 . Here in Hybrid application we are taking the webfiles of UI5 and creating a hybrid application to generate an application package (.apk / .ipa).

Eventually it needs to be  launched from SAP FIORI client?  

Fiori client is just another hybrid application developed using Fiori client plugin of Kapsel and available to download from respective device stores  To develop a new fiori client / customise the fiori client , SMP SDK is required as it is one of the kapsel plugins.

 

Midhun had a good blog to get started with offline plugin of SMP using WEBIDE. Creating Offline Mobile Apps using SAP Web IDE . Links to download trial SDK and HCPMS registration are added earlier.

 

Also there is an Open SAP course started last week that will help to gain good insights of developing mobile applications using HCPMS and offline plugin. Developing Mobile Apps with SAP HANA Cloud Platform - Jeff Gebo  and Dhimant Patel 

 

Regards

Virinchy

Re: SAP report based on Production date

$
0
0

Hi,

 

Use SQVI and generate your own query with Tables AUFK and AFPO with field AUFNR. Mark Dates as selection list.

 

Thanks With Regards,

Dinesh V.

No stocks from HU storage locations can be managed on SU

$
0
0


Dear Experts

 

the case is

 

there is two lines in WM stock

 

1000 PC In storage type 001

-1000 pc in storage type 902

 

we need to clear the two lines, when i use lt01 to create the TO?

 

The issue is

 

 

Capture11.PNG

 

  I found the HU has been deleted and Su is exist

 

there is same issue in the forum before. but there is no solution..

谁帮发个KBA的链接

$
0
0

链接是KBA 1842106,哪个帮忙发一下,谢谢。


Re: Convert from DataType RAW(1024) to DataType RAW(255)?

$
0
0

Hi,

 

Subba Krishna last log on Aug 26, 2014 1:46 PM

 

I did not try this.

 

Assuming ECC 6.0

 

concatenate all the entries in raw(1024) to big  XSTRING and then use CL_BCS_CONVERT=>XSTRING_TO_SOLIX .

 

 

Regards.

Re: Planning strategy MTO or MTS?

$
0
0

Swathi,

This question does not seem to be related to your original question.  I suggest you open a new thread.

 

I further suggest you first review SAP online help about planning strategies before posting more questions about these basic functionalities.

Strategies for Make-to-Stock Production - Demand Management (PP-MP-DEM) - SAP Library

 

Start here, expand MTS, study all.  Then, down to "strategies for planning components".  Expand, study all.  Continue down the list until you have reviewed all pertinent Strategy help.

 

Once you have digested this information, come back with any questions that remain.

 

Best Regards,

DB49

Re: 谁帮发个KBA的链接

Re: Help Required to resolve error "No cookie with target path found in request"

$
0
0

Hi,

Can anyone help on the above issue?

 

Thanks & Regards,

Nilesh Shete

GST03 report Malaysia(RPFIMY_GST): errors

$
0
0

Dear gurus,

 

I implemented GST-03 report for Malaysia.

Now report RPFIMY_GST is executable.

 

But now I am facing 3 errors.

 

Error1: In selection screen, field is not displayed correctly.

It shows technical name as below.

error1.png

 

Error2: Jumps to asset acquisition report, even though I dont use Asset Accounting module.

In selection screen, depreciation area is mandatory.

 

error2.png

 

Error3: When report result is displayed finally, warning message displayes as

"Status STANDARDMY of the user interace RPFIMY_GST missing".

 

error3.png

 

Yoshi

Viewing all 8676 articles
Browse latest View live




Latest Images