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

Qty and / or delivery completed ind. or final issue ind. are missing

$
0
0

Hi Experts,

 

While doing cancellenation of confirmation of extended classic scenario, we are getting this error but checkboxes of invoce indicator are transferred to ERP.

 

Also have the same behaviour for ERP PO too.

 

We want to cancel confirmation because the confirmation has been created with 0 quantity and final entry was 'X'.

 

Error: Qty and / or delivery completed ind. or final issue ind. are missing


Could you please anyone suggest the needful/correct answer. Points wil be awarded.

 

Thank you and Best regards

Siva


Re: How to reconcile the incoming & payments

Re: Showing startdate and Enddate Quater of the given date

$
0
0

Hi Ramesh,

 

Do you simple need to display this range as a title on the report header?

 

Or, do you also want the report to return results for that particular quarter?

 

-Abhilash

Re: MIRO Accounting entry for Letter of credit PO

$
0
0

Hi,

 

In this link they mentioned create a bank as a vendor.

 

Regards,

Mukthar

MARA Physical Commodity missing in MM02 Basic Data 2

$
0
0

Hi

 

The field physical commodity is missing in the material master record in tab page 2 Basic Data 2 (normally at the bottom). How to get this field included? I tried

Define Structure of Data Screens for Each Screen Sequence

Assign Fields to Field Selection Groups

Maintain Field Selection for Data Screens

 

The field MARA-COMMODITY is in selection group 101.

Re: Tile to display when the button is selected using function

$
0
0

Hi Dennis,

 

Thanks for the quick response, it is working in JSbin but for some reason it is not working for me in the eclipse.

 

<!DOCTYPE HTML>

<html>

  <head>

  <meta http-equiv="X-UA-Compatible" content="IE=edge">

  <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>

 

 

  <script src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"

  id="sap-ui-bootstrap"

  data-sap-ui-libs="sap.ui.commons,sap.ui.ux3,sap.ui.table, sap.m, sap.suite.ui.commons"

  data-sap-ui-theme="sap_bluecrystal">

  </script>

  <!-- only load the mobile lib "sap.m" and the "sap_bluecrystal" theme -->

 

 

<style type="text/css">

  .sapMStdTileNumS {

  font-size: 1rem;

  color:green;

  margin-top: -0.125rem;

  }

  .sapMStdTileInfo {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  text-align: start;

  font-size: 0.8rem;

  color:red;

  margin-top: 2rem;

  }

</style>

 

 

<script type="text/javascript">

jQuery.sap.require("sap.ui.core.IconPool");

 

     var app = new sap.m.App();

  var page = new sap.m.Page({});

     page.setEnableScrolling(false);

     app.setInitialPage(page.getId());

  page.setShowHeader(true);

 

      jQuery.sap.require("sap.ui.model.json.JSONModel");

  var oModel7 = new sap.ui.model.json.JSONModel();

  oModel7.loadData("http://ZZZ/MN_PROJECT/AtrView_Odata/CustomerInfo.xsodata/CustomerCollecion/?$format=json");

 

  var oAuto7 = new sap.ui.commons.AutoComplete({

  tooltip: "Enter a name",

  maxPopupItems: 20,

  displaySecondaryValues: true,

  width : '500px',

  semanticColor: sap.ui.commons.TextViewColor.Positive,

  items: {

  path: "/d/results/",

  template: new sap.ui.core.ListItem({text:"{KUNNR}", additionalText: "{NAME1}" })

  },

  //liveChange : function(oEvent){

  // sap.ui.getCore().getControl("TextView").setText(oEvent.getParameter("liveValue"));

  //}

  });

  oModel7.setSizeLimit(15000); 

  oAuto7.setModel(oModel7);

 

  //Define a custom filter

  oAuto7.setFilterFunction(function(sValue, oItem){

  return jQuery.sap.startsWithIgnoreCase(oItem.getText(), sValue) || jQuery.sap.startsWithIgnoreCase(oItem.getAdditionalText(), sValue);

  });

 

  var oNameInput = new sap.m.Input({placeholder : "Enter Name of SCN User"});

    

     var oButtonDisplay = new sap.m.Button("display", {

  type: sap.m.ButtonType.Default,

  text: "Display",

  icon: sap.ui.core.IconPool.getIconURI("display"),

  enabled: true,

  press : showData

  });

    

    

     var oButtonReset = new sap.m.Button("refresh", {

  type: sap.m.ButtonType.Default,

  text: "Refresh",

  icon: sap.ui.core.IconPool.getIconURI("refresh"),

  enabled: true,

  press : resetData

  });

    

    

  app.addPage(page);

  page.addContent(oAuto7);

  // page.addContent(oNameInput);

  page.addContent(oButtonDisplay);

  page.addContent(oButtonReset);

 

 

     app.placeAt('content');

    

  

 

  function handlePress(oEvent) {

     window.open(oEvent.oSource.getActiveIcon(), "_blank");

  }

 

 

  function showData(oEvent) {

 

 

  if (!oAuto7.getValue()) {

  jQuery.sap.require("sap.m.MessageBox");

  sap.m.MessageBox.alert("Complete your input first.");

  return;

  }

 

   var numContent = page.getContent().length;

   if (numContent === 4) { 

     page.removeContent(numContent - 1);

   }

 

  var CustomerNumber = oAuto7.getValue();

  console.log(CustomerNumber);

 

   var oTileContainer = new sap.m.TileContainer({

 

 

 

 

     tiles : [

 

 

       new sap.m.StandardTile({

 

 

         icon : "sap-icon://play",

         title : "Customer NUmber",

         number : CustomerNumber,

         press : function() {

           oController.nav.to("AfoStart");

         }

       })

 

 

 

 

     ],

 

 

 

 

   });

   page.addContent(oTileContainer);

 

 

 

  }

 

  function resetData(oEvent) {

 

  oTileContainer.destroyTiles();

// page.setTitle();

  oNameInput.setValue();

 

  }

  </script>

  <script>

  sap.ui.localResources("tile3");

  var app = new sap.m.App({initialPage:"idTilefromInput1"});

  var page = sap.ui.view({id:"idTilefromInput1", viewName:"tile3.TilefromInput", type:sap.ui.core.mvc.ViewType.HTML});

  app.addPage(page);

  app.placeAt("content");

  </script>

 

 

  </head>

  <body class="sapUiBody" role="application">

  <div id="content"></div>

  </body>

</html>

Re: locked login list status in sybase ASE

$
0
0

HI,

 

Have you tried with locksuid is not null filter over syslogins query?

 

Hope helps.

Regards.

Javier.

Re: Difference between reorg-rebuild and index re-create in Sybase ASE

$
0
0

Hi,

 

As Mark explain I think that one of the most important points between them is performance impact cause by a missing index on a prod env. Reorg rebuild the index may generate some minimal locks over user workload but if you execute it over a low workload you may not have any problem.

 

There are also another points depends on what type of index (PK/clustered) you are rebuilding or recreating. PK gets worse if recreate process its choosen because of integrity constraints defined and clustered index also because of nonclustered index rebuild at the same transaction if not dropped before.

 

Hope helps.

Regards.

Javier.


Re: Source of supply Not being determined in PR against Info. Record on Material Group

$
0
0

You cannot use an info record that is created for a material group  if you order a material with a material master. In that case you need an info record for a material number.

You info record for material group is used if you order without material number.

Re: RRI from BW to ECC webgui using web dispatcher

$
0
0

Just an update, I have also changed the RSBBS_RSRR_URL and TWPURLSVR in the ECC system (source system) but it's still accessing the application server directly. Am i missing something?

Job Scheduling Management (JSM)- Transactions

$
0
0

Hi Experts,

 

I am working on JSM(Job scheduling Management) .


I am using 'Detailed Job Request'. I am looking for below details & how it works.


1) what is the transaction type for ''Detailed Job Request".

2) How I can configure statuses for Job Request

3) Also when I integrate JSM with Charm RFC, how the status of Job Request governed . Do I need to map some where the statuses of Job request & RFC ?

 

Regards

P Kumar

Re: SAP B1 web acces require 2 public IP

$
0
0

what I mean is, If I use different machine as a webserver aside from the SAP server, do I need to have 2 external IP for it to access from outside. If not, how can I can configure it to work using 1 external IP.

Re: Trying to understand report usage (standard reports, ad-hoc reports) in a BusinessObjects environment

$
0
0

>>correct person to answer on this is end user.

-- very good point, we're doing a user survey soon . . . 

 

other points good as well . . . thanks !         


I'll leave this open until Tues or Weds.

Gerar XML com B1 Studio for Microsoft Visual Studio

$
0
0

Pessoal boa noite,

 

Estou iniciando um projeto de desenvolviemento onde preciso pegar os dados de um formulário preenchido e gerar um arquivo xml.

 

Como faço?

 

Att,

 

Yuri Rocha

Re: Update Transaction on entry via the WEB UI

$
0
0

Hi Christian

 

Thank you for your response.

 

Unfortunately our technical manager does not want me to use BOL at this point as we a small support team with limited technical resources. He is not prepared to use BOL as the skill set is small in this area.

 

He only wants to use traditional BAdi's, etc where he believes the code is easier to manage.

 

Thanks

 

Panduranga


Re: Manage batch classification only in Purchase

$
0
0

Mahdi,

 

You're welcome

 

Pascale.

Re: Count Rows Table oData

$
0
0

Danilo,


Will this sample help? Plunker

Check onAfterRendering event in controller.


Working Snippet:

Capture.gif


Regards,

Sai.

Re: Retrieve server processing time

$
0
0

No, I cannot tell you how this is done in detail.

It's not part of the provided API and exclusively used internally by SAP HANA Studio.

To be clear here: it's not meant for anybody outside SAP to use this data via this way. It's not documented, supported or otherwise available.

Technically it's done by accessing class internal data via java reflection - which is about as much as I can comment on this.

Re: I have 367 columns in EXCEL, but see data only 257 columns into Table through BODS

Re: CCMS Aborted Jobs Email AlertOn

$
0
0

Hello Maria,

 

the MTE "AbortedJobs" is for all aborted jobs on a server, in this MTE you cannot monitor only a specific job. To monitor a specific job you have to setup the monitoring as per note "553953 - RZ20: Monitoring background jobs".

 

Regards,
Alwina

Viewing all 1065 articles
Browse latest View live


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