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

Re: Convert Number to Date and Time

0
0

Found the solution.

 

Date({field_name})


Re: SAP C4C SAP BW Integration

Re: Fiori theme designer issue

0
0

Hi Mike,

 

I tested, the same issue does not happen in sp 11. Thanks.

Re: Ship-tos, Bill-tos & Payer from ECC to CRM

0
0

Hi Anant,

 

Yes the Ship-to party partner function in R/3 (SH) is already mapped to 0000002 Ship-to party in CRM in the SPRO settings you are referring to.

Even after this settings, it is still getting as sold-to to CRM.

 

Thanks

Siva

Re: Blocking Storage Bin

0
0

Let me try it with an absurd example just to see if I got your requirement.

You have a huge glass (bin1) , and now everyone can add some beer to this glass until the glass is full.  (if full then the next empty glass (bin2) is to be filled)

But in the moment you take a sip from this beer you don't want that someone fills it up until it is drunk up.

Re: Filter not being sent to system with Odata read request

0
0

Yes, readSuccess is executed.  Data is brought back, but the filter was not used.  I set a breakpoint on the SAP side and confirmed that the filter was not sent.

 

"ODataUtils is not defined" is what I get in the console with your redefinition.

Re: Fiori App Modification Best Practices?

0
0

Unless I'm missing something there isn't anything in the Fiori Design Guidelines that addresses my question. That reference is more helpful for people who want to build Fiori applications.

Lockbox creates payment advice but no G/L posting

0
0

Hi,

We recently added a few new lockboxes to an existing file.  The new lockboxes are importing fine and the log shows where either invoices were found, or the customer was identified by the MICR data, or in some cases, the customer could not be found.  These are all things we see in a regular basis.  However, at a minimum, we expect the payment to post between the bank GL and Unapplied Payments account, and when possible, between Unapplied Payments and the customer.  However, for these new lockboxes, we are not getting any GL postings at all.  We do get a payment advice, but no GL.  I have compared all the setup to the other lockboxes that are working fine and see no differences.  I have also confirmed that the GL accounts are open in the right company codes and are set up like the others.  No error messages are given either. The file is in BAI2 format and being processed via RFEBLB00.

 

Any ideas?  Thanks in advance.

 

Wes


Re: Release procedure triggering for fields not classified

0
0

I guess your strategy is running through the exit, as a text change or adding of text will normally not trigger a new release check.

Check if EXIT_SAPLEBND_002 is active and if you have some coding in ZXM006U22.

Re: No relevant partner system XXXXX exists for output category COND_A

Re: BPC 10. Security to update and process dimension

0
0

Hi Leila et al.

 

In relation to this discussion, I would like to know if there is a way we can have create/edit/delete dimension (Manage Dimension tasks) as read only in QA except Edit members.  Since we want to keep QA locked from any changes since we are transporting it from DEV but should be able to add members directly for the Dimension.

 

Any suggestion highly appreciated.

 

Thanks

 

JM

Re: Why doesn't reorg rebuild update all the statistics

0
0

There is some useful documentation about using "create index" and gathering statistics on minor attributes of an index at:  http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc00641.1570100/doc/html/car1347305833682.html

 

Now, none of that is currently available in 15.7 for the reorg command, BUT I seem to remember from the ISUG-TECH conference a few weeks back that Jeff Tallman mentioned that this (collecting column stats for minor key attributes) is coming for reorg in 16.0 (SP02?).

 

Which one is faster?  Well, my _guess_ is that the drop/create index process is faster (or can be made to be faster -- sorted_data options, parallel non-clustered creation, etc).  However, you miss out on some of the other work that reorg does and some of it's features such as online availability, restart, etc.

 

Give the documentation a good read on both fronts and let us know your results.

Re: Add rail resource in transportation cockpit

0
0

Hi,

 

according to your screen shots you are using a layout which simply does not include rail specific resources. These should be added to your layout of the cockpit, e.g. railcars and/or locomotives. You can change the layout or create a new one via the button "Layout Personalization".

 

Best regards, Daniel

Re: US Excise tax for Medical Devices

Re: Pricing condition and setting scales for One Time Referral Discount

0
0

TW,

I tested that part many times...

I found a valid discussion link..

 

No condition update from the sales orders exist - VK322 Message

 

 

In that he has given the working solution. I missed only the condition index and routine for the Scale calculation. Then i went through a bunch of OSS notes too.. 615370, 931467, 176920.

When i click the cumulative button on the VK12 screen, it shows "There is no condition update from sales orders."Let me know your thoughts.... thanks


Re: preferred method while using routing

0
0

All right, that was an interesting journey.

 

here is what i did:

 

Component.init

 

by calling sap.ui.core.UIComponent.prototype.init.apply(this, arguments);

 

a new view specified in rootView property is instantiated ( onInit of it called ) and rootControl aggregation of Controller is initialized

 

Pay attention that Master and Detail view don't exist yet, so call setModel on App view will not propagate property

 

next, by calling this.getRouter().initialize(); framework initializes router and as a result instantiates Master and Detail views (and set aggregations detailPages and masterPages of App view).

 

so, we can't call getModel in Detail and Master views yet.

 

now, in controller's init we can call

 

var omyModel = new sap.ui.model.json.JSONModel({  data : "hi"
});
this.getAggregation("rootControl").setModel(myModel, "myModel");

 

inApp view we have Master view and setModel will propagate that property

 

so, now in onRouteMatched (or any other handler or function) of Master view we can use it

 

sap.m.MessageToast.show("Master says - " +  this.getView().getModel("myModel").getData().data );

Re: Vendor Language and Material Master Text

0
0

Hi,

   There is no option in standard as of my knowledge.

   You may either create a custom search help and assign to the language field in vendor master or you may maintain the default language as EN in PO when the vendor master language is different from specific languages. In PO. you may check the BAdI: ME_PO_PROCESS_CUST.

 

Regards,

AKPT

SQ00 Query: Sales Orders vs Delivered qty

0
0

Hello,

 

I created a simple query without needing a programmer, that would show all sales orders by line item details, comparing to the delivered qtys, but my infoset join will not include orders that do not yet have a delivery created, which I would like to show as well.

 

This is how I linked the tables: VBAK(Sales doc header) ->VBAP(Sales Doc item)<-VBFA(Sales Doc Flow)->LIPS(Delivery Item data)->LIKP(Delivery Header data)->VBUK (Delivery header status&admin).

 

I tried to left join VBAP to VBAP but it is not allowed.

 

Thanks,

Jose

HANA - Accelerate SQ01 Queries

0
0

Hello,

 

We recently went live with HANA Side Car Configuration and have configured standard Financial accelerators available in HDBC.

We have also accelerated some custom Z reports and have got great performance improvement.

Next we would like to tackle a no. of SQ01 queries.

I created the accelerator for one of the query and loaded using RDA_MAINTAIN. We did no see any significant performance improvement.

Is it possible to accelerate SQ01 queries ? Has anyone accelerated SQ01 queries ? 

 

Regards,

Manoj

same file name in sender and receiver sftp channel

0
0

Hi Experts,

 

my scenario is SFTP to SFTP  and im on SAP PI 7.31

 

Here I am picking up the file from one location and wirting int to another SFTP LOCATION , while writing the file to Destination it should create with the same name as source file name.

 

I have selected ASMA in both CC and given dummy  name in receiver file name and * in sender CC . But still iam facing error as * is not understandable.

 

can any one tell me what should i give  file name in sender and receiver channel? and need to write any UDF?

 

I have gone through all the forums but still i didnt find any soultion .

 

Thanks,

 

Reddy

Viewing all 8902 articles
Browse latest View live




Latest Images