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

Re: BEx-keyfigures in combination with "Basic Analysis Layout" template

0
0

Dear,

 

After some further investigation it seems that the issue is in the SplitCellContainer. When I drag and drop a bookmark from the fragment gallery to the SplitCellContainer, the datasource reloads. Because of the settings on my "Hide (can be shown)" (or "Always Show") the filter saved in my bookmark gets overruled by the BEx-query properties, causing them to hide (or show).

 

Is there a way I can prevent my datasource from refreshing when I drop a bookmark in the SplitCellContainer?

 

Thanks in advance.


Re: Looking for an honest ADS update

0
0

Chris, Mike, please let me your company name know and your company address. You can also send it to me via direct message if you want.

Re: How to take Non stock item directly to store instead of consumption agaianst Maint order

0
0

EK,

 

This can't be handled in SAP as the item is procured to the order (item cat N) and not to stock (item cat L).

 

However, some companies physically receive the stock into the warehouse, and put the "item cat N" items in a lay-down/holding area for later collection. They are not technically received into SAP stock.

 

PeteA

Re: Unable to access git project over https

0
0

Did you configure IDE with proxy settings, if any?

Re: Proper connection to the data source was not available

0
0

Hi Sri G,

 

 

Did you ever accidentally remove the default PAS users ("Guest", "mmadmin", "cbadmin", etc)" and then manually added them back?

 

Are you able to resolve the issue temporarily after restarting JPIP?

 

Regards,

Alicia

Re: GETTING PROBLEM WHILE UPLOADING DATA FROM EXCEL SHEET TO TABLE IN XML VIEW

0
0

Hi Ankita ,

 

Please try below code .

 

csvJSON :   function(csv){

 

            var lines=csv.split("\n");

 

            var result = [];

 

            var headers=lines[0].split(",");

 

            for(var i=1;i<lines.length;i++){

 

                   var obj = {};

var currentline=lines[i].split(",");

 

                   for(var j=0;j<headers.length;j++){

obj[headers[j]] = currentline[j];

}

 

                   result.push(obj);

 

            }

 

            var oStringResult = JSON.stringify(result);

var oFinalResult = JSON.parse(oStringResult.replace(/\\r/g, ""));

sap.ui.getCore().getModel().setProperty("/", oFinalResult);

          },

 

 

 

 

      

onConfirmDialog: function () {

var that = this;

var dialog = new sap.m.Dialog({

title: 'Upload',

type: 'Message',

icon: 'sap-icon://download',

content: [

 

new sap.ui.unified.FileUploader({

id: 'fileuploader',

width: '100%',

uploadUrl: 'upload/',

change: function(oEvent) {

var file = oEvent.getParameter("files")[0];

if (file && window.FileReader) {

var reader = new FileReader();

reader.onload = function(evn) {

var strCSV = evn.target.result; //string in CSV

                                      that.csvJSON(strCSV);

};

reader.readAsText(file);

}

dialog.close();

}

})

],

 

 

endButton: new sap.m.Button({

text: 'cancel',

press: function () {

dialog.close();

}

}),

 

afterClose: function() {

dialog.destroy();

}

});

 

dialog.open();

},


Regards,

Abhishek Lohiya

Re: Automatic Tracking no Enter in PR Through MRP

0
0

Dear Sam,

 

If you see the method Process_item method you have an importing parameter

IM_ITEM  TYPE REF TO IF_PURCHASE_REQUISITION_ITEM

 

first you need to call the acct. continer method and get the object

DATA LT_ITEMS TYPE MMPUR_ACCOUNTING_LIST

DATA LT_CATG TYPE KNTTP.

DATA WA_ITEMS LIKE LINE OF LT_ITEMS.

DATA LT_EXKN TYPE EXKN.

.

   LT_ITEMS = IM_ITEM->IF_ACCT_CONTAINER_MM~GET_ITEMS( ).

 

   LT_CATG = IM_ITEM->IF_ACCT_CONTAINER_MM~GET_CATEGORY( ). "This will return the account assignment field at item level value in your case sale order (C)


LOOP AT LT_ITEMS INTO WA_ITEMS

       LT_EXKN = WA_ITEMS-MODEL->GET_EXKN( ).  " here in EKKN you will find the sale order No

       IF LT_EXKN-vbeln IS NOT INITIAL.

** Do the set method here for tracking number updation

       ENDIF.

     ENDLOOP.


Regards,

Pavan

Re: SMARTFORMS - Step by Step Tutorial


Re: Issue in creating service entry sheet using ml81n

0
0

Dear experts,

 

I got the error trace as shown in the below screen shot:

 

error trace.JPG

 

Please suggest any solution. It's urgent.

 

Thanks

Sanjeev

Re: Where is the Priority Code maintained in C4C?

0
0

Hello Wendy,

 

the code lists for the fields Priority in opportunity and Delivery Priority in sales quotes come standard with the solution and there are no fine tuning options on that.

a possible suggestion to tackle any requirement around this would be to maintain appropriate code list mappings if an integration scenario is involved. In a standalone scenario, you can explore options of creating extension fields with the semantics.

 

I hope this helps.


Thanks,

Suraj

Re: Allow not to show a G/L ACCOUNT in FBL3N

0
0

Hi Preeti,

 

Thanks for your information, I'm going to see that post.

 

 

Kind regards,

Pedro Serrano

Re: Sample Program To Convert Smartform To PDF Document & Mail It.

Re: Incorrect rejection discussion

0
0

Jagannathan Santhanam wrote:

 

Hi Jelena - See below moderation notification.

 

Moderation Notification

Your content "Anyway to figure out the user running an Analytic in Design Studio?" has been rejected by an SCN moderator and is no longer visible in the community. Please see the Rules of Engagement for more information on why content is rejected.

Reason: Please share how you have searched for your question in accordance with SCN rules

So you did get a reason. You might not like the reason, but your initial complaint:

I find it absolutely rude on the part of moderators within SCN to simply reject a question without specifying a reason.

doesn't apply to you personally.

 

The moderator is directing you to do some research and then, if you still cant' figure it, repost but show that you have put some effort into finding the answer. That's how I read it. It seems fair.

 

Now follows a little explanation of moderation on this site.

1. Moderation is for the good of the community as a whole

2. Some threads may benefit the original poster, but nonetheless harm the community as a whole

3. When you have a discussion forum with unrestricted FAQs and basic questions, experts - the ones with the knowledge - rapidly get fed up of answering the same questions again and again. So they stop contributing. Therefore unrestricted FAQs and basic questions (which should have been covered in your courses, or are dealt with in help.sap.com), harm the site as a whole.

4. Moderators don't always get it right. If there is a query about moderation, it would be nice, once in a while, to see that raised in this space, in a respectful, non-aggressive, non-confrontational, non-outraged manner. After all, it was only a question on an internet forum. Nobody died.

 

This has been discussed at length over  the years. You may not agree with it, but it's pretty much the consensus of the site owners, administrators and moderators, so it isn't going to change any time soon.

Why do people get sooooooooooo offended?

0
0

I wrote elsewhere:

 

Moderators don't always get it right. If there is a query about moderation, it would be nice, once in a while, to see that raised in this space, in a respectful, non-aggressive, non-confrontational, non-outraged manner. After all, it was only a question on an internet forum. Nobody died.

 

Why is it some people get offended when their posts are rejected, but when they question it, they do so in an offensive manner? Do they have no sense of irony`?

 

Just wondering...

Re: Browser Access of B1 Fails

0
0

Hi Dinesh,

 

Please provide a screenshot of the error.

 

 

Kind Regards,

 

Nick Lakasas


Re: Transporting Table entries

0
0

I think you'll find that "business requirement" beats "security reasons" every time. Especially when those security reasons are a bit... dare I say, silly? I'm amazed they let people type things into transactions. What if they manipulate that data?

NFS to Mail with the file as attachment in PI 7.31 single stack

0
0

Hi Experts,

 

I am working on PI 7.31 single stack,my scenario is NFS to mail where PI pulls the text files and should email to constant email address with the file that picked up as an attachment which I have done through ICO no ESR objects. But the receiver channel is functioning in error and message got failed in PI. Please find the below error code:

 

"Transmitting the message to endpoint <local> using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.af.sdk.xi.srt.BubbleException: Failed to call the endpoint  [null "null"]; nested exception caused by: java.net.UnknownHostException: [smtp server of outlook]"

 

Please help to resolve the issue.

 

Thanks,

Nithin.

Re: BPC 10.1 Configuration Issue

0
0

If you resolve this issue and share to us.

 

Thanks

Re: Custom theme on NWBC 5.0 index page isn't displayed

0
0

Hi Julie,


thank you for your advice but I´m working on another topic now so I will contact OSS as soon as I get time to continue NWBC implementation.

 

Best Regards,

Denis

Re: EHQL :EHSQM

0
0

Dear Krishna

 

referring to

EHS - QM Interface. Inspection Plan Creation

EHS QM Interface Functionality

SAP EH&S - QM Interface

 

etc. The topic of EHS <=> QM interface is discussed rarely. I can not help as we don't use this interface but would propose to use "debug" and/or use sometimes transaction su53 to make sure that your SAP user does have the correct access rights. (and just try to figure out what is going wrong). If you just "google". a lot of smilar threads can be found. E.g. The SAP Fan Club Forums &amp;bull; View topic - EH&amp;amp;S and QM integration

 

On the top there is somethere a comment from SAP in this FORUM from Marko Lange (hes is a SAP representative) talking about EHS <=> QM interface and the "rare" use of this interface (but still looking for improvement in functionality).

 

Nearly 80% of the diiscussions which I found are related to your issues but in none of them a solution was proposed.

 

To my knowlegde: we have only the documentation in transaction "SPRO" (/customizing) for the set up of this interface;i am not aware of any other documentation which can help in set up of this interface.

 

C.B.

 

PS: may be do a cross read here: Integration of Inspection Plans - SAP Library

 

As well: there is a limted number of"OSS notes" in this context (e.g. Note 1632463:QM interface: Restriction of characteristic types )

Note 1266104:QM integr: Cannot enter master insp. chars. in mapping table

 

BUt most of thema are quite old and I assume will not help you.

 

PPS: which SAP release do you use (with higher release there are some business functions etc. daling with QM innterface)

 

E.g. check db:: 4.51::EHS - QM Interface. Inspection Plan Creation 9c

Viewing all 8851 articles
Browse latest View live




Latest Images