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

Re: GRC Repository Sync is missing some user entries in RA

$
0
0

Hi

Try "Locked and Expired" users.

 

Regards

Mustafa


Fiori all the tiles missing for the user

$
0
0

Hi,

 

Until yesterday everything working fine, suddenly Fiori application custom tiles are missing for the user.

There is no change in role, tile group and catalog.

 

If we create a new role and assign the same Fiori catalog and group things are working fine.

But we have create 32 zroles with different tile combinations needed for business. Recreating roles is a painful job.

Let me know your valuable inputs to fix the issue.

 

 

SAP_UI add-on details:

 

SAP_UI7400012SAPK-74012INSAPUI0000-@6H\QAchieved with Support Package@User Interface Technology 7.40

 

UI5 lib details:

 

Capture1.JPGot

 

Chrome Browser inspect element:

 

I cross checked the browser inspect element and found OData service /sap/opu/odata/UI2/INTEROP/TargetMappings?sap-cache-id=94A5DA864AABC3D77151F9498C57A741 returning 0(zero) records for the user.


But if I check with working role, same service returning target mapping details.


Capture2.JPG



Untitled3.jpg

Thanks,

Lakshman Balanagu.

Re: Host agent issue in solman server

$
0
0

Hi,

 

Check dev_saphostexec log for details.

 

Regards,

Anatoliy

Re: AS on date state wise sales vs collection report

$
0
0

Hi Anukaran,

 

I believe Some mapping identification is missing...

The 0SOLD_TO is reference char of 0CUSTOMER, Check if you had identified both the Customer and sold-to-party for both the infoproviders.

 

Can you share the MP identification mappings for SOLD-TO and Customer.

 

Regards

KP

Re: How to debug SAPUI5 code is IE10?

Re: Why is the LCMCLI ignoring my use of the "-includeSecurity=true' parameter?

$
0
0

Hello Chris,

 

did you found a solution for your Problem?

 

I'm currently working on a similar issue. We have SAP BW user groups which are already imported on both the destination and the source system. 

 

When I promote a folder which has these groups as principals in the user security settings, the user groups are dropped and the security settings get lost on the destination.

 

This seems not to be an issue regarding user rights because this also happens when we promote the objects with the administrator account.

 

Regards,

Marius

Re: Sales Order Condition Data delete not happening..

$
0
0

Hi Renjith,

 

I have tried passing logic switch earlier as well but i get error. also followed the note mentioned in my post above. Still no success.

 

Don't know why its happening!

 

Regards,

Pavan G

Re: Hi want proper guidance for SAP Functional Modules Certification

$
0
0

Hi Pratik,

 

   Well..Appricate your passion to learn in depth. Keep going with the same interest rest will follow you..

 

   Its on you, whether getting into SAP MM or SAP SD specific, having knowledge in cross functional modules is always a added advantage, since SAP ERP is absolutely a "Business process integration application".

 

Go to the site & enhance yourself..

 

help.sap.com

 

Regards,

Mani


Re: AFAR Usage (Recalculate Depreciation)

$
0
0

Hi Shriya,

 

It does not post any document if run AFAR. Just system will change depreciation calculation for the assets. After run it, you have to run AFAB, then only system will post depreciation entries.

 

Regards,

Mukthar

Re: error in creating odata using custom function module

$
0
0

Hi Pavan,

 

I guess you are trying to perform get operation (As the image shows -Get Selected).

For performing the change Quotation operation please check following:

 

- Function Module should have Commit.

- Lets first check if the developed Function Module works as per requirement.

 

For more help please check SAP Gateway Self-Paced Learning.

 

Thanks

Pavan G

Re: SASO / KUCAS registration information

$
0
0

My initial review would be check your customs procedures for example Saudi Arabia and see if there is a license check.

 

Check the foreign trade details in the material master and VX01N to create an export license for the SASO process if this is the know way.

 

Regards

 

 

Waza

Bapi to get address(adrc) details in sap using Remote call from ECC system to SRM

$
0
0

Hi All,

 

I need a Bapi where i have to populate address details from ADRC table into SRM system from ECC.

 

I was able to remotely call Company code details using Destination.Based on screenshot below.

 

Companycode.jpg

But for fetching the ADRC details,I need the respective Bapi where destination parameter can be included.Please suggest.

I tried with a function Module-ADDR_GET but it does not allow Remote function call.

ADRC.jpg

Re: when I assign the item to a job, no data is changed

$
0
0

thanks for your reply!

 

I have checked, even on job tab, I create a new job, input job description and job type, then save the order, there is still information  "no data was changed", and there isn't the job in service order,

 

Dandan

Re: How to give focus for input box in sapui5 mobile application

$
0
0

Hi Venkatesh,

 

SAPUI5 provides mechanisms for observing the moving focus in an application page for controls. This information is then preserved for refocusing elements after

rerendering. The focus triggers event firing. However, due to the high degree of flexibility in control rendering,

a functionality tailored to the respective controls is required. For this, the framework provides helper functions for the implementation of focus handling.

Each control provided by the SAPUI5 framework has its own behavior for focus handling, depending on the functionality that is provided by the control.

Complex controls and their embedded content constitute the highest level of complexity.

The base class for elements (Element.js) provides the following four methods to support the implementation of focus handling:

Element.getFocusDomRef()

Once a visible element is rendered, it has a Document Object Model (DOM) representation. The root DOM node can be accessed by using the method getDomRef()

on the element. The root DOM node is the default focused DOM node. After rendering, when a control is supposed to be focused, the framework asks the control for its

focus DOM node by using the getFocusDomRef() method. If the root DOM node does not represent the element that should have the focus, you have to return another DOM

node by overriding the getFocusDomRef() method.

Element.focus()

The focus() method sets the focus on the element. This is done using the focus DOM node.

Element.getFocusInfo()

For some controls, it is even more difficult to apply the focus once the control has been rerendered. List controls, for example, have their own internal focus

handling and set the focus on the different items. A data table moves the focus over a matrix of cells. The requirement is that a control can apply the focus to

its exact previous position after rerendering. In cases where the SAPUI5 rendering mechanism fails to find the correct element after rendering (for example because

it does not have an ID or the ID changed), override the getFocusInfo() method and serialize the focus state into a JSON object and return it. Before rendering, the

render manager calls this method for the element instance and stores this information for future use. After rendering, it calls the applyFocusInfo() methodand passes

back the serialized object. This is not only useful for focus information: The exact cursor position of a TextField control, for example, can also be stored in such an object.

Element.applyFocusInfo(oFocusInfo)

The applyFocusInfo() method applies the focus to the element after rerendering. You use this method if a different behavior is expected for the element.

 

I hope it's useful to you.

Re: Quantity Based Tax Conditions in TAXINN

$
0
0

We have observed that when we try to create the record through VK11 -> system is not allowing us to maintain the record based on quantity. It is allowing to maintain only in percentage.

What error System is throwing-Tell us first with screen shot...

 

Are you using the same condition type created in V/06 & using in VK11?

 

Phanikumar


Re: Is there a process in SAP where the company recieves materials for the service rendered

$
0
0

Dear,

 

If it is related with procurement of services from a vendor, you can opt subcontracting process in sap.

 

or

 

You can try with consignment process , by creating a consignment P.O with item category K.Whenever you need to consume the stock of vendor , here you can use MB1A.

 

Regards,

Pardhu

Re: Page break in Spool output

$
0
0

can you show me the output which you are getting in the  spool.

Key Figure controls for a version per template

$
0
0

Hi Experts,

 

I am currently working on a project where we have multiple versions enabled for a template. Currently our template is showing empty key figures for some versions without any data.

 

My question is, would it be possible to remove some key figures (other than hiding) from a version depending on the template we create.

 

Please let me know if more information is necessary and I will provide as much as I can.

 

Thank you for your time,

Louis

Re: Insufficient stock coverage for invoice quantity

$
0
0

Sudhan,

This question leaves a lot to be desired.  You quote 'something' from 'somewhere', say you don't understand it, and then ask us to elaborate.  You haven't even bothered to give us a context where this issue actually occurs, asking us instead to provide one.

 

I am not an expert in MM or CO, but this sounds like a scenario where the actual invoice value differs from the expected invoice value, under the condition where stock is valuated via 'moving average'. If there is less quantity of stock on hand than the amount of stock implied by the invoice to be posted, it makes no sense to post the entire variance to the stock account.  This would lead to a misstatement of the true value of the inventory.

 

As I mentioned earlier, this is not my field of expertise.  I suggest you speak to one of your local MM/CO experts, and ask them to tell you about account postings during the business cycle of purchasing, receiving, invoicing, and issuing under the valuation procedure 'moving average'.  Or, just read the appropriate sections in help.sap.com, paying particular attention to invoice verification.  FYI sap help docs are liberally sprinkled with examples.

Logistics Invoice Verification (MM-IV-LIV) - SAP Library

 

I further suggest that in the future, you provide actual examples for us to evaluate, and not just snippets of 'something' with no context.

 

Best Regards,

DB49

java.lang.UnsatisfiedLinkError: no sapjco3 in java.library.path

$
0
0

Hi all,

 

I am getting error "java.lang.UnsatisfiedLinkError: no sapjco3 in java.library.path" while using eclipse ide with sapui5 plugin. For your reference please see as below.

error.png

How can I resolve this problem,Please help me.

 

Thanks in advance

Viewing all 8676 articles
Browse latest View live




Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>
<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596344.js" async> </script>