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

Re: How to display WT Text in both the language

$
0
0

An other way would be to do a Log-in with Language = RU, and to use t-code se16n to look at table T512T.  Delete the number in the "Maximum occurences" box, enter the Country Code for Russia, select EN for Language, and execute the report.

 

Open an other session and use t-code sm30 to add the required Russian descriptions to the WTs in table view V_T512T.

 

Note that if the Customer WTs were created with a RU Log-in, then you would have to do the reverse (do an EN log-in and create the WT's Labels).


Re: Recreate search help in Personas 3.0

$
0
0

I simply searched for a table- or structure field in DDIC where the VMVA search help is referenced. There are a lot of such relationships; I picked one that I found to be generic enough and is most likely there in all systems.

 

If you don't find a suitable field and you are on SP01, you can still create the necessary search help reference using a Z structure, as described in the KB article.

Re: Table maintenance of a table - ABAP Development

Picking Strategy M Large/small quantities

$
0
0

I am using strategy M (Large/small quantities)


Small quantities: st.type PCK

Large quantities: st.type BLK


For example, I have an article X where control quantity = 95 units. And a blocked BLK bin with 96 units and an available PCK bin with only 16 units.


Storage search sequence: PCK - BLK


If I have a delivery for article X for 96 units, this strategy should select BLK because 96 is bigger than 95. The problem is when all the BLK bins are empty or blocked it doesn't start over the search sequence creating a TO for 16 units for the PCK storage type

 

In order to start over the search sequence over again, is there any configuration I might be missing?

Re: SAP fiori launchpad in local env

Re: Existing Fiori App Migration to HANA

$
0
0

Hi Mayasuki,

 

Thanks for your help.

 

Just want to make things more clear, don't we have to change the SELECT queries of abap objects to utilize the maximum benefit of HANA database. Changing the SQL queries native to HANA will result inn more improved performance, isn't so??

 

And What will be the case if we are looking for S/4 HANA.

 

Thank You very much for your help and support.

 

Regards,

Dhiraj

Re: How to get the SAP Web IDE 1.16 on premise

$
0
0

Hi Tareq,

 

A new release of SAP Web IDE local trial version is now available.

SAP Web IDE - Local Trial Version

 

Please note: This is a trial version for non-productive usage only. This version is not updated with the latest features in the way the SAP HANA Cloud version is. It contains a subset of SAP Web IDE functionality, leaving out cloud-specific features such as plugin/template development, consumption of optional plugins and collaboration support.


Regards,

-- Raz

Re: How to export table functions

$
0
0

The Developer Mode export just exports modelled views as mentioned. And I think this will also not be enhanced in the future.


Re: Unable to export Crystal reports to any file formats

$
0
0

Hi,

If the report loads you should see at least the print button.

The easiest solution would be that you print the document to a pdf printer, then you get a pdf-Document of your report.

 

Regards, Andreas

Re: Will DQM duplicate check work without running Quarterly Adjustments

$
0
0

Where are you seeing the 4.0 SP2?  are you looking at transaction SPAM?  the product version report?  4.0 SP2 was originally released in 2012.  We typically do not have new customers on SP2 any longer, but we do have confusion with the version because of when support was added for BASIS 740.  The product version report will provide the necessary information.  /fldq/rsprodver

 

If you do not have a populated match code table, duplicates will not be found against records that exist in your system.  they will only be found in records that have been modified and match codes created.

 

If you create match codes without running the quarterly reports, as Nestor mentions, your results can be poorer because the codes could be different.

 

Thanks,

Virginia

Re: HANA tenant backup

$
0
0

Hi

Try

hdbsql -i 00 -n hostname:30041 -d SID -U SYSTEM -p pass

Re: Depreciation key defaulting for Tax Dep area

$
0
0

Hi Vijay

 

Would earnestly request you to close your threads, as a prudent user of SCN..

 

You can close it by marking any relevant answer as CORRECT ANSWER... If no solution exists, mark it as ASSUMED ANSWERED. If there is a workaround available, mark the relevant answer as HELPFUL. This helps others to refer the solution in Future. Hope you will do your bit towards a Better SCN

 

 

 

For your issue,

 

Check this IMG node.. You must have assigned the Takeover rules here (Don't assign Area 01 as reference for the tax area)

 

ORFA -> Valuation - > Dep. Areas - > Specify transfer of Dep terms

 

Tax area should be like thisSCN.jpg

 

Ajay M

Re: How to know if there is budget for a cost center or commitment item?

$
0
0

Hi Srinivasan,

 

I don´t have that transaction in my SAP.

 

Thank you anyway.

 

Rita

Re: Regarding the Binary search in Abap

$
0
0

Jelena Perfiljeva wrote:

 

Benedict Venmani wrote:

 

Even yesterday I used a BINARY SEARCH in one of my BW transformations to improve performance....did I do something wrong

And I yesterday got a program that used BINARY SEARCH instead of HASHED table.

 

It's not wrong when there is no better option. I doubt OP understands it. Certainly the code example here is not the best "use case" for it.

Unless you're dealing with huge volumes of data, you can always convert a standard table (e.g. given to you by a function module) into a HASHED/SORTED table, with additional keys as necessary. But only if you find that using the standard table is really making things slow.

 

But if you are defining an internal table, you should always define it to be the most optimal type for your purposes. If there's a COLLECT, for example, 99% of the time you really want to be using a HASHED table.

Re: Periodic campaigns vs trigger based campaigns

$
0
0

Strange, we have CUAN 120, aka 1511 release, but I still don't have this configuration option. Are you sure it's not 1602 release?

 

Maris


Resource not found for segment ''.

$
0
0

Hello, getting Resource not found for segment ''. when we run sap/opu/odata/SAP/SRA004_SRV/Travels('2000000155').

 

For some reason, this GET_ENTITY call works fine in Fiori itself, but when testing the call from gateway client or browser we get that error or sometimes Resource not found for segment 'Travel'.

 

Tried clearing cache and loading metadata, but that didn't help.

 

sap/opu/odata/SAP/SRA004_SRV/Travels comes back 200, so it can see the resource.


This also happens in our Z extension of the project, and for any new GET_ENTITY we make in that project.


Any ideas?

Re: Regarding the Binary search in Abap

$
0
0

Jelena Perfiljeva wrote:

 

Am I the only one noticing that this code has no logic (we have VBELN parameter and then proceed to select the whole table? wtf?) and is... um... not great overall?

 

 

Actually... I did exactly that today! Forgot to put the select option in the select statement.

 

But yes, I'd hardly define BINARY SEARCH as a "concept" or even something that needs teaching. Except to say you can sort a standard table and use the binary search addition...

Re: Integrating extended fiori app

$
0
0

I'm pretty sure that's right, as I was able to successfully test that change in the web IDE.  However SAP appears to be caching data somewhere and even though my updated component.js file is in SAP, it's still looking at the old one.  Any idea how I can get it to refresh the new version?

Re: Not allow asterisk (*) in selection screen

$
0
0

Jess,

 

  Yes it is possible.  Here is some code to do so. 

 

PARAMETERS werks type werks_d OBLIGATORY.

   AT SELECTION-SCREEN.

   if werks ca '*'.

     clear werks.

   endif.


There are many other ways to do this, this is just probably the simplest.


Thanks,


Jacob

Re: Using Powerbuilder to run CTE queries

$
0
0

I've been running tests to see when this works in a datawindow and when it does not.

 

SQL Server:  Native client works, as does ODBC.

OLEDB does NOT work.  Has anyone else tried with OLEDB? 

 

Oracle: Native driver works

Viewing all 8713 articles
Browse latest View live




Latest Images