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

sFIN Error in VF11

$
0
0

Hi Everyone,

 

We are implementing S/4 hana finance. When we try to create reversal posting from VF11, the sytem gives an error that is FAA_POST008.

 

Is there any advice?

 

Diagnosis

 

    Your system is being switched to SAP Accounting powered by SAP HANA.

    This the new Asset Accounting is available to you. You have to migrate

    from the classic Asset Accounting to the new Asset Accounting, or

    complete the migration of Asset Accounting. Only then is it possible for

    you to post in Asset Accounting again.

 

    The following applies to the Customizing switch:

 

    o In the client, the Customizing switch for new Asset Accounting

(PARALLEL_VAL) has the status In Preparation.

    o Alternatively, in the client the Customizing switch for new Asset

Accounting (PARALLEL_VAL) has the status Active (Posting Not

Possible in Client). It is not possible to post in accordance with

the new logic in the local system. The check displays an error

during the import (for example, inconsistent data).

 

System Response

 

    As long as the Customizing switch does not yet have the status Active,

    it is possible that the configuration could be inconsistent. Therefore

    the system does not allow any postings.

 

Procedure

 

    First complete the Customizing settings for new Asset Accounting and

    then activate the Customizing switch at client level (in Customizing for

    Asset Accounting (New) under Activate New Asset Accounting).

 

    If your data is consistent, posting is possible. If you do have 

inconsistent data, you can analyze it in Customizing for Asset

Accounting (New) under Check Prerequisites for Activating Asset

Accounting (New).


Re: Form - Invalid Form error on form close

$
0
0

Hi Diego,

 

I tried oForm = SBO_Application.Forms.ActiveForm; also. But it also gives same error.

 

Actually I do not need separate close button. But when I close the form using default close button on the form it gives same error.

 

I have seen output using EventViewer the error message is populated after FORM_UNLOAD() event.

 

Thanks.

Re: #Error during the conversion of input combined date and time data while using ToDate()

$
0
0

Hi Amit

     the first formula is working perfect it was due to the = issue i guess. everything is fine ,however with the second formula is showing #error  in some places.

 

ThankYou

Weight and Volume are varying

$
0
0

Dear All

 

I have query like weights and volume are varying in delivery order .

 

Here is my scenario

 

I have a material with the base UoM KG but my sales order and delivery is in the UoM L. I sales order with Qty 45000 L, so the gross weight is 24750 Kg, net weight is 20250 Kg and volume 45000 L. additional UoM in MMR is 100 L = 43kg. But i am creating a delivery only for 15000 L for now ,Delivery is splitted in batches which has bulk density 0.425 Kg/L . Now the delivery has net weight of 6671.513, gross weight of 8154.071 and volume 14825.584.

 

To my knowledge the weights are supposed to be gross weight is 8250 Kg, net weight is 6750 and volume 15000 L . Kindly clarify why there is small difference in the delivery.

Re: Make WBS element column editable for ME22N

$
0
0

Hi Sanjeev Mishra,

                      Go to standard program for me22n.Open it in se38.See the subscreen for which services are designed.Table control is designed inside in the screen.then go to the table control properties.search column in the screen attribures.then make them as editable.

Salesforce Integration

$
0
0

Hi SDNites,

 

I have a requirement where I have to fetch details from Salesforce system. Can you please let me know,

 

1. Do we need to use SFDC adapter provided by adavtaco mandatorily to fetch the details from Salesforce?

2. Also rather than using SFDC (advantaco adapter), can we make a SOAP call to Salesforce?

3. How can I get the api from Saleforce corresponding to that or where can I find the list of API's provided by them?

4. If API not available, do they have to do custom development as per our requirement.

5. Is there any other way to fetch the detail from Salesforce system.

 

Regards,

Abhi

Re: Need help regarding HTTPS with AS2 setup !!

$
0
0

The serial numbers are different and that is why I am getting authentication failed error at MDN.

 

I guess we need to send all old partners our new certificate.

Re: Mapping help

$
0
0

Hi Sai,

 

  • Those &lt; escape character for '<' and &gt; is for '>'
  • If you put the whole xml into one field it will be like that.
  • But you need to remove the xml declaration from the string that is why i have given the UDF to remove xml declaration from the string.

 

Regards,

Praveen.


Re: Error 'SAP Context is Initial' in REST Call (Get)

$
0
0

Hello Lokesh,

 

There is currently a correction under way to fill the "SAP Context" in reuse functions.

The library "WebServiceUtitlities" is such a reuse library.

 

May I ask you to wait for the next HF collection?

If it is not solved then, we still have a gap here and need an incident to follow up.

 

Thanks,

    Horst

Re: How do i connect social networking sites like Facebook in SAP BODS?

Re: PB Newbie - DW's DataSource

$
0
0

Here is a little fancier version of the SP. The advantage to this approach is that you can cast, compute, derive, etc your columns, names & values with more flexibility.

 

----------------------------------------------------------------------------

Create Procedure GetID 

 

@employee_id            Integer

 

AS

 

  BEGIN

      DECLARE  @EmpID as Integer

      DECLARE  @EmpSal as Numeric (8,2)

 

      SET @EmpID    = (  SELECT emp_id   FROM Employee   WHERE emp_id = @employee_id  )

      SET @EmpSal    = (  SELECT salary     FROM Employee   WHERE emp_id = @employee_id  )

 

      SELECT @EmpID, @EmpSal

  END

;

------------------------------------------------------------------------------------

 

Food for thought

PS: this also worked 100% with my SP based DW. 

Re: " 401 Unauthorized" error when trying to access sap pi nwa

Re: StackedColumn chart : Invalid Data Binding Error

$
0
0

I guess there's some error with the way you have mentioned path .

  data : {path : "mymodel>/"}



Have you made you model inside the controller?

Re: Need to make a field mandatory in travel Expense Entry

$
0
0

Dear Experts,

 

We are using portal 7.0 and standard Webdynpro Java component for Travel Expense.

 

that is : sap.com/ess~tra~tre/Expenses

 

please let us know possible ways to make that field mandatory.

 

It is very urgent requirement from customer.

 

Regards

Sowmya

Re: Call transaction with selection parameters fill with value

$
0
0

Why don't you try

 

submit ZPRAC1 with P_EBAN eq CONTENTS

via SELECTION-SCREEN and RETURN.

 

Explanation: Here After pressing the First program you need to call the Second program name

here  zprac1  is the second program name  and P_EBAN Is the parameter of the Second program

Via selection screen.

 

Create second program with the below one.

PARAMETER: P_EBAN TYPE EBAN-BANFN.


Only parameter don't do any thing.


In the first Program you need to use the below logic.

Copy past the code in Second program.


DATA: contents(250) TYPE c.

DATA: itab TYPE TABLE OF eban WITH HEADER LINE.

*-----------------------------------------------------*

* start of selection

*-----------------------------------------------------*

START-OF-SELECTION.

   SELECT * FROM eban

     INTO CORRESPONDING FIELDS OF TABLE itab

     UP TO 10 ROWS .

*----display the data output

   WRITE:/1(40) sy-uline .

   WRITE:/1 sy-vline,

         2 'Program Name',

         40 sy-vline .

   WRITE:/1(40) sy-uline .

   LOOP AT itab.

     WRITE:/1 sy-vline,

           2 itab-banfn,

           40 sy-vline .

   ENDLOOP.

   WRITE:/1(40) sy-uline .

*----- this is for the double click

AT LINE-SELECTION.

   contents = sy-lisel.

*--- get this parameter ids from the table TPARA

   CONCATENATE sy-lisel+1(10) ' ' INTO contents.

   CONDENSE contents .

*  SET PARAMETER ID 'BAN' FIELD contents.

*  CALL TRANSACTION 'ME53N'.

 

     BREAK-POINT.

   submit ZPRAC1 with P_EBAN eq CONTENTS

   via SELECTION-SCREEN and RETURN.



  Hop You understood.






Re: Unable to log into Universe Design Tool

$
0
0

Hi Anatoli,

 

 

Please follow below steps to resolve the issue :

 

FOR BusinessObjects Enterprise XI R3

 

 

  • Find the lsi folder: %Documents and Settings\<useraccount>\Application Data\Business
  • Objects\Business Objects 12.0\lsi
  • Delete all the files in that directory

 

FOR SAP BusinessObjects Business Intelligence Platform 4.x

 

 

 

  • Find the lsi folder: %Documents and Settings\<useraccount>\Application Data\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\lsi
  • Delete all the files in that directory

 

 

Regards,

Mahak

Re: Party entitled to dispose xxxx_xxxx is not allowed in warehouse number xxx Message no. /SCWM/MD036

$
0
0

HI,

 

here it is,

 

Img-SCM Extended Warehouse Management-Extended Warehouse Management-Master Data-Assign Warehouse Numbers

 

BR,

 

C K Reddy

Re: IR objects i found an Action Object? What is the use of Action and what is the business Scenario to use?Is it Required to Create Interfaces

$
0
0

Hi Sri,

 

1) You can create MM and OM for two operations and assign it to two actions in process integration scenario.

scenario.png

2) When you create process integration scenario then you need to create actions, actually with in the action we refer service interface operation. design perspective process integration scenario give you more graphical representation of the scenario and you can quickly create the directory objects based on process integration scenario.Performance wise both same there is no impact on performance.

 

Regards,

Praveen.

Validation Tranform - Concatenation of two columns in a condition

$
0
0

Hi All,

 

I have two tables TableA and TableB.

 

TableA Data:

 

C4C5
A100ABC
B200BBB
C300ABC
D400BBB
E500ABC
F600BBB
G700ABC
H800BBB

 

 

TableB Data:

 

C1C2C3
A100xxxx
B200xxxx
C300xxxx
D400xxxx
G700xxxx
H800xxxx

 

I want to load the data to TableC with columns C6 and C7.

 

My Data flow is like this:

 

TableA --> Validation Transform --> Pass--> TableC

 

I want give the condition  TableA.C4=TableB.C1||C2. How to do that?

 

Please advise.

 

TableC Data:

 

 

 

C4C5C3
A100ABCxxxx
B200BBBxxxx
C300ABCxxxx
D400BBBxxxx
G700ABCxxxx
H800BBBxxxx

Re: Price control have to be change from "s" to "V"

$
0
0

price control is in grey mode with price determination 3.what about the consequences if through with ckmm

Viewing all 3165 articles
Browse latest View live


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