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

Business Area not determined in batch posting.

$
0
0

Dear SAP experts,

 

My client is on 4.6c system.  Till now they were not using business area.  Recently we have activated business area balance sheet.  While posting FI document manually using FB01, business area derivation happens correctly on vendor/customer/balance sheet line items.  However, when same document is posted via bdc session, business area derivation is not happening.  I also tried to manually simulate bdc session.  Still no derivation happened.  Any suggestion/solution will be highly appreciated.

 

Unit.


Re: ABAP program is not working

$
0
0

Hi,

 

Just a wild guess... is this code normally not something that is generated by some IBM solution..? Meaning - something not to be messed with..? Because:

 

"D_LEN – Is a variable used during generation of the ABAP program. The value is set automatically based on the total length of columns in the SQL query. If this value is less than 16000, the ABAP program will concatenate the record before making an RFC call. If it is greater than 16000, each line will be a RFC call, which will create many RFC calls that will negatively effect performance." --Understanding ABAP extract data processing with InfoSphere DataStage Pack for SAP R/3 and it's performance


cheers

Jānis

Re: Using MDAB to create Planning file

$
0
0

Hi Marianne

 

Please open a new thread instead of reopening such old threads.

 

BR

 

Caetano

Re: Crytal reports with static paramter, need to select multiple values

$
0
0

Dell,

 

Thanks for your post..

I have tried below but it still says A string is required here

 

NumberVar i := 1;

StringVar result := '';

while i < UBound({?Store}) do

(

     if i = 1 then

          result := {?Store};

     ;

          result := result + ',' + {?Store};

     i := i + 1;

)

Re: asp.net crystalreportviewer not showing report

Re: Unable to see costs of labor and material in Plant Maintenace work order

$
0
0

Consing Variant Planned & Costing Variant Actual assignment is missing at order type level in your 1st screen shot.

 

The assignment (which you shown in 4th screen shot) of Costing variant to order type might have been done at the later after creating that order.

 

Create New order & see the result.

BW 7.4 DTP fails because of date format. My date format is Date From 1/1/1000 Date to 12/12/2014. I am loading data from FF-CSV

$
0
0

Hi Experts

When I upload my data from csv file to the text I/O. it failed giving the followng reason

My date formt is Date From 1/1/1000 Date to 12/12/2014. I am loadig date from FF-CSV

 

Invalid from Date 1/1/1000

Invalid from Date 1/1/2014

Re: BPC Process Chain Continues Despite Failure

$
0
0

Hi Mark,

 

If you double click on black arrow you'll see 2 additional options: success and failure. Draw an arrow to process you want to run on successful completion and select "success". Draw another arrow to process you want to run in case of error and select "error".

 

Regards,

Gersh


Re: Unable to find associated SLD element for specified class - PI

$
0
0

Hi,

 

We found that ora-lh should not be registered because it does not exist anymore.

 

After delete from SLD its associations after restart of Java Instance it appears again.

 

Any clue?

Re: Single cycle count scheduling

$
0
0

As I mentioned already, during Maintenance, because of some test run, some counter might have been consumed.

 

Even there is no change in counter value, measurement document during TECO only will update the Completion Reading in IP10. Creating Manual Measurement documents or through Integration with Production will not be considered to postpone the next Planned counter based on shift factor.

 

As there is no link between Manual Measurement document & PM Order completion, system can't recognize that latest reading as Completion reading & it can't plan from there.

 

Also, insisted you to go with new Maintenance plan with same set of data. Else, click on that marked row & click the calculator. See what is the calculation happened.

 

Just by seeing IP10 screen shot (without understanding about the other details changes), its not possible to give any kind of solution.

SAPUI5-How to toggle between HTMLviews using router

$
0
0

I am sure others will spot this instantly, but this problem is baffling me.

 

 

I have a simple test app using an App.

 

 

Within this application I have two htmlview pages: page1, and page2.

 

 

I have set up a router configured to switch between these two htmlviews.

 

 

On each htmlview I have a button that users the router.navTo( route) to take me to the other htmlview.

 

 

The problem is that although the buttons successfully navigate me to the 'other' htmlview, and this is confirmed by the change in the URL, the other view does not replace the first view.

 

 

 

The index.html is 'standard':

 

 

 

<!DOCTYPE HTML>

<html>

<head>

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

<script src="resources/sap-ui-core.js" id="sap-ui-bootstrap"

data-sap-ui-libs="sap.ui.commons,sap.m"

data-sap-ui-theme="sap_goldreflection"

data-sap-ui-resourceroots='{

        "navtest": "./"

    }'>

</script>

<script>

sap.ui.getCore().attachInit(function() {

   new sap.m.Shell("shell",{

       app : new sap.ui.core.ComponentContainer({

          height : "100%",

          name : "navtest"

       })

   }).placeAt("content"); });

</script>

</head>

<body class="sapUiBody" >

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

</body>

</html>

 

 

 

I have configured the router as follows:

 

 

jQuery.sap.declare("navtest.Component");

jQuery.sap.require("navtest.Router");

sap.ui.core.UIComponent.extend("navtest.Component", {

metadata : {

  name : "navtest",

  version : "1.0",

  includes : [],

  dependencies : {

     libs : [ "sap.m", "sap.ui.layout" ],

     components : []

  },

  rootView : "navtest.view.app",

  config : {

 

 

},

  routing : {

         config : {

            routerClass : navtest.Router,

            viewType : "XML",

            viewPath : "navtest.view",

            targetAggregation : "pages",

            clearTarget : true

         },

         routes : [ {

            pattern : "",

            name : "page0",

            view : "page1",

            viewType : "HTML",

            targetAggregation : "pages",

            targetControl : "idAppControl"

         },{

            pattern : "1",

            name : "page1",

            view : "page1",

            viewType : "HTML",

            targetAggregation : "pages",

            targetControl : "idAppControl"

         }, {

            pattern : "2",

            name : "page2",

            view : "page2",

            viewType : "HTML",

            targetAggregation : "pages",

            targetControl : "idAppControl"

         }]

  }},init : function() {

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

   var rootPath = jQuery.sap.getModulePath("navtest");

   this.getRouter().initialize();

  },

  });

 

Each HTML view is as follows:

 

 

<template data-controller-name="navtest.view.page1">

<div data-sap-ui-type="sap.m.Page" data-title="page 1">

    <div data-sap-ui-aggregation="content">

    this is page 1

    </div>

<div data-sap-ui-type="sap.m.Button" data-text="showPage2"

    data-tap="showPage2"></div>

</div>

</template>

sap.ui.controller("navtest.view.page1", {

showPage2 : function(oItem) {

    sap.ui.core.UIComponent.getRouterFor(this).navTo("page2");

}, 

onInit: function() {

            sap.ui.core.UIComponent.getRouterFor(this)

   .attachRouteMatched(this.onRouteMatched, this);

},

onRouteMatched : function(oEvent) {

}  

});

 

 

The main app.xml is simply:

 

 

<?xml version="1.0" encoding="UTF-8"?><mvc:View

xmlns:mvc="sap.ui.core.mvc"

displayBlock="true"

xmlns="sap.m" >

<App id="idAppControl" >

<Page id="navtest.page1"></Page><Page id="navtest.page2"></Page>

</App>

</mvc:View>

 

I know I will feel like an idiot when the problem is shown to be trivial, but I can live with that:-)

Re: asp.net crystalreportviewer not showing report

$
0
0

Hi Ludek,

 

Thanks for your reply

 

I have already tried this before but no luck. aspnet_client is already in my application. also i have try with crystalreportviewer13 folder only. Even i have format my system because i think may be problem with my installation. I have try to do this in other computer as well. In windows application everything works fine but in web application no luck.

Re: installation cannot be completed! Any help?

Post method for creation

$
0
0

Dear All,

I developed a Odata service using classical scenarios to create Notifications. I have almost 6 fields out of which we can create notification using 4 fields. Is it mandatory to pass values to all 6 parameters while posting them OR can be passed with 4 and rest blank. However, In my case I tried using 4 and 6 but no create entity gets triggered while using Post method from Chrome REST service. I tried testing with X-CSRF token but still couldn't create. Please share an example if you have one. Please help.

 

This is my structure for my entity type and entity set.

lo_entity_type = model->create_entity_type( iv_entity_type_name = 'Znotif_ty' iv_def_entity_set = abap_false ). "#EC NOTEXT

 

***********************************************************************************************************************************

*Properties

***********************************************************************************************************************************

 

lo_property = lo_entity_type->create_property( iv_property_name = 'FunctLoc' iv_abap_fieldname = 'FUNCT_LOC' ). "#EC NOTEXT

lo_property->bind_data_element( 'TPLNR' ).

lo_property->set_conversion_exit( 'TPLNR' ).

*lo_property->set_creatable( abap_false ).

lo_property->set_updatable( abap_false ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).

lo_property = lo_entity_type->create_property( iv_property_name = 'Equipment' iv_abap_fieldname = 'EQUIPMENT' ). "#EC NOTEXT

lo_property->set_is_key( ).

lo_property->bind_data_element( 'EQUNR' ).

lo_property->set_conversion_exit( 'ALPHA' ).

*lo_property->set_creatable( abap_false ).

lo_property->set_updatable( abap_false ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).

lo_property = lo_entity_type->create_property( iv_property_name = 'ExternalNumber' iv_abap_fieldname = 'EXTERNAL_NUMBER' ). "#EC NOTEXT

*lo_property->set_is_key( ).

lo_property->bind_data_element( 'QMNUM' ).

lo_property->set_conversion_exit( 'ALPHA' ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).

lo_property = lo_entity_type->create_property( iv_property_name = 'ShortText' iv_abap_fieldname = 'SHORT_TEXT' ). "#EC NOTEXT

lo_property->bind_data_element( 'QMTXT' ).

*lo_property->set_creatable( abap_false ).

lo_property->set_updatable( abap_false ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).

lo_property = lo_entity_type->create_property( iv_property_name = 'Priority' iv_abap_fieldname = 'PRIORITY' ). "#EC NOTEXT

lo_property->bind_data_element( 'PRIOK' ).

*lo_property->set_creatable( abap_false ).

lo_property->set_updatable( abap_false ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).

lo_property = lo_entity_type->create_property( iv_property_name = 'Planplant' iv_abap_fieldname = 'PLANPLANT' ). "#EC NOTEXT

lo_property->bind_data_element( 'IWERK' ).

*lo_property->set_creatable( abap_false ).

lo_property->set_updatable( abap_false ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).

lo_property = lo_entity_type->create_property( iv_property_name = 'Reportedby' iv_abap_fieldname = 'REPORTEDBY' ). "#EC NOTEXT

lo_property->bind_data_element( 'QMNAM' ).

*lo_property->set_creatable( abap_false ).

lo_property->set_updatable( abap_false ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).

lo_property = lo_entity_type->create_property( iv_property_name = 'NotifType' iv_abap_fieldname = 'NOTIF_TYPE' ). "#EC NOTEXT

lo_property->bind_data_element( 'QMART' ).

*lo_property->set_creatable( abap_false ).

lo_property->set_updatable( abap_false ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).

lo_property = lo_entity_type->create_property( iv_property_name = 'NotifNo' iv_abap_fieldname = 'NOTIF_NO' ). "#EC NOTEXT

lo_property->set_is_key( ).

lo_property->bind_data_element( 'QMNUM' ).

lo_property->set_conversion_exit( 'ALPHA' ).

lo_property->set_sortable( abap_false ).

lo_property->set_nullable( abap_false ).

lo_property->set_filterable( abap_false ).


lo_entity_type->bind_structure( iv_structure_name  = 'ZCL_NOTIF_CREATE_MPC=>LS_ZNOTIF_TY' ). "#EC NOTEXT

 

 

***********************************************************************************************************************************

*   ENTITY SETS

***********************************************************************************************************************************

lo_entity_set = lo_entity_type->create_entity_set( 'ZNOTI_SET' ). "#EC NOTEXT

lo_entity_set->set_creatable( abap_true ).

lo_entity_set->set_updatable( abap_true ).

lo_entity_set->set_deletable( abap_false ).

lo_entity_set->set_subscribable( abap_false ).

lo_entity_set->set_filter_required( abap_false ).



Thanks,

Vikram

Re: General Evaluation report T-code;ME80FN showing Net order value Zero only

$
0
0

do you see the values in ME23N?

are there any red traffic lights in the conditions tab of your PO items?

do you have proper authorization to see the value, did you check authority by entering /NSU53 when you are in the ME80FN report?


Re: calculo /426 exento prima dominical

$
0
0

Hola Omar,

Buen día, ¿tienes algo parecido para el ccnomina /427?

De antemano, muchas gracias.

Saludos!

Juany

Re: Problem with Dashboard Designer

$
0
0

Hi, The problem is presenting for multiple dashboards and the problem is principal for the viewer machine . The problem is not load data from the universe. In the machine of developer is running ok. Is possible require special configuration  for the  viewer machine ?

 

 

Image the problem for load the data from the universe.

 

 

Dashboard1.png

Re: CFDI - PTU pagado por otra sociedad

$
0
0

Buen día a todos,

Nosotros tenemos el mismo caso, y un detalle adicional, cuando se presentan estos casos de cambio de sociedad, tenemos que reclasificar manualmente la descarga contable del PTU, ¿Uds saben si esto es el procedimiento estándar de SAP?

Saludos

Juany

Re: Problem with Dashboard Designer

$
0
0

Hi,  The ping is perfect, the problem is connection for universe in the viewer machine. 

Some opinion for this problem.

Re: Problem with Dashboard Designer

$
0
0

The ping is perfect, the problem is connection for universe in the viewer machine. 

Some opinion for this problem.

Viewing all 8851 articles
Browse latest View live




Latest Images