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

Re: Activating Non Leading ledger

$
0
0

Yes you can create Non-leading ledger parallel  with your Leading ledger for addressing japan co reporting with diff FYV. I think this is the option because you want to use same controlling area.

 

But as you now planning to use new GL concept in your JV , and the FYV also diff, It will be always better proposition to implement this as a new instance by org structure for smooth flow of transaction and reports. Here you have also some dependency with your JV company and if you take this instance also in your gr company parameter , may affect your closing activities due to JV transaction.


Need to procure materials even after ordered quantity as a free good

$
0
0

Dear Users,

 

I have a case like we raise PO for 100 quantity and received all the ordered quantity i.e., 100 so PO will be closed. But we still receive some more materials from same Vendor take it as 10 quantity and it should be a free goods which has no value or any PO. So my doubt is how to configure free goods for same material which has value as well as no value i.e., zero value. Please give me some possible solution.

 

Thanks,

Manoj

Re: Increasing Font size of UI elements Text

$
0
0

Hi,

 

Check in Text view UI element property 'Design' make it as header2 or others and try.

 

 

Regards,

 

Srini

Re: Dynamic Internal table and Work area for a Field List

$
0
0

you can loop on your ztable having these fields and use assign component to refer to fields of table A and table B and assign the values.

 

for ex:

 

Loop at itab into wa.

Assign component (wa-col1) OF structure WA_TABLEA assigning <FS_A>.

Assign component (wa-col2) OF structure WA_TABLEB assigning <FS_B>.

 

<FS_B> = <FS_A>.

 

A rough outline of what you can do, can you build your logic around this? I'm not able to see the need for dynamic internal table, may be u can elaborate?

Re: data loading from multiple data sources

$
0
0

Hi,

 

first get the business requirments and apply the business rules in the tranforamation

finally what user want which reprots and how many reprots

 

before mapping the transformation you can write the routines for business requirements.

yes you can create the 6 DTP's  and 6 info package if  your are loading the the 6 data sources.

 

Thanks,

Phani.

Re: Version not generated in ME21N

$
0
0

Both the PO are made on same date and are in sequence also the PO made before this is also having version activated only in this case it has not been generated.

Re: deletion of delivery is not calling EM AI

$
0
0

Hi Kevin and Steffen,

 

If it is design flaw, then SAP would have given or could give SAP OSS Note to correct this.  What would be the right approach to deal this?

 

Hi Shubh,

 

Have you raised SAP OSS note to SAP? If yes, did you get any reply from them.

 

Regards

 

GGOPII

Re: Drill Concept

$
0
0

Drilling up

Drilling up means to replace the data you are drilling up on with the data for the parent element of that data. You drill up to compare data.

 

Drilling down

Drilling down means to replace the data you are drilling down on with the data for the child element of that data. You drill down to see more detail about data.

 

Example : Year contains Months, Months contains Weeks, Weeks contains Days, Days contains Hours, Hours contains Minutes.

 

Drill through or Drill by

Drill through takes him to a report that is relevant to the data being analyzed, also at the click of a mouse. For example, a tabular report that shows sales revenue by state can allow the user to click on it and reveal an analysis grid of the same data, or a heat map representing the data in visual form. It is called “drill through” because it is a feature that allows the user to pass from one report to another while still analyzing the same set of data.

 

Example: By Passing ID through a report block and getting a completely new report through open-document link.


One column is not displayed in CSV format but shown in Excel

$
0
0

Hi,

 

I have a WEBI document for 3 fields only.

This is built on BeX query.

 

Two columns are coming BeX and one column was created in the WEBI itself for constant values.

Also header is not expected to be shown in the report output.

 

It gives correct output when downloaded as an excel file but when it is downloaded as a CSV file, it does not show the column of constant values created in the webi itself and also it is showing the header in the output.

 

Please see below screenshot for reference:

1. WEBI:

 

2. Excel Output Sample:

 

3. CSV Output Sample:

 

Request your guidance on the cause & resolution of the issue.

 

Thanks,

Shyam Alok

Re: diference between IE02 and IE4n

$
0
0

Hi

 

you can install and dismantle from either IE02 or IE4N, in IE4N you can addtionally place the dimantled equipment directly in stores where accounting document will be created

 

Regards

Thyagarajan

How can a parent class access public and protected methods/variables of child class?

$
0
0

We can access the public, protected and private members of parent class in sub classes/child class. But public class can access the protected and public members of child class as well. How to achieve this?

 

 

*&---------------------------------------------------------------------*

*& Report  ZSR_TEST

*&

*&---------------------------------------------------------------------*

*&

*&

*&---------------------------------------------------------------------*

 

 

REPORT  zsr_test.

 

 

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

*       CLASS parent DEFINITION

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

*

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

CLASS child DEFINITION DEFERRED.

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

*       CLASS parent DEFINITION

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

*

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

CLASS parent DEFINITION FRIENDS child.

 

 

   PUBLIC SECTION.

     DATA: v_pub TYPE char40 VALUE 'Public variable in Parent class'.

     METHODS: m_parent.

 

 

   PROTECTED SECTION.

     DATA: v_pro TYPE char40 VALUE 'Protected variable in Parent class'.

 

 

   PRIVATE SECTION.

     DATA: v_pri TYPE char40 VALUE 'Private variable in Parent class'.

 

 

ENDCLASS.                    "parent DEFINITION

 

 

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

*       CLASS parent IMPLEMENTATION

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

*

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

CLASS parent IMPLEMENTATION.

 

 

   METHOD m_parent.

     WRITE: / 'Method - M_PARENT :-',

            / 'Parent Class Attributes are as follows: ',

            / '=======================================',

            / v_pub,

            / v_pro,

            / v_pri.

     SKIP 2.

    

*     CALL METHOD m_child.

   ENDMETHOD.                    "m_parent

 

 

ENDCLASS.                    "parent IMPLEMENTATION

 

 

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

*       CLASS child DEFINITION

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

*

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

CLASS child DEFINITION INHERITING FROM parent.

 

 

   PUBLIC SECTION.

     METHODS m_child.

     DATA: c_pub TYPE char40 VALUE 'Hello'.

 

 

 

 

   PROTECTED SECTION.

   PRIVATE SECTION.

 

 

ENDCLASS.                    "child DEFINITION

 

 

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

*       CLASS child IMPLEMENTATION

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

*

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

CLASS child IMPLEMENTATION.

 

 

 

 

 

 

   METHOD m_child.

 

 

     DATA oref TYPE REF TO parent.

     CREATE OBJECT oref.

     WRITE  oref->v_pri.

 

 

     WRITE: / 'Method - M_CHILD :-',

            / 'Child class can access all Public attributes from Parent',

            / '========================================================',

            / v_pub,

            / v_pro.

     "/ v_pri. Private data can't be accessed from Child

     SKIP.

 

 

     v_pub = 'Public has been changed in Child class'.

     v_pro = 'Protected has been changed in Child class'.

 

 

     WRITE: / 'Changed Public & Protected attributes:',

           / '======================================',

           / v_pub,

           / v_pro.

*           / v_pri.

 

 

   ENDMETHOD.                    "m_child

 

 

ENDCLASS.                    "child IMPLEMENTATION

 

 

START-OF-SELECTION.

   DATA: o_parent TYPE REF TO parent,

         o_child TYPE REF TO child.

 

 

   CREATE OBJECT: o_parent, o_child.

 

 

   CALL METHOD: o_parent->m_parent,

               o_child->m_child.

 

 

   o_parent->v_pub = 'Public data is changed again by Sandip.'.

 

 

   SKIP 2.

   WRITE: / 'Public data can be changed outside the Class:',

          / '=============================================',

          / o_parent->v_pub.

 

Regards,

Gopa

Re: Interface Determination "Not Equal" Condition is not working

$
0
0

Hi,

 

/p1:MTPODSalesLSUK/Record_Set/Data/MTD_Quantity[not(starts-with(.,"0"))] EX

/p1:MTPODSalesLSUK/Record_Set/Data/MTD_Quantity ≠ '0'

/p1:MTPODSalesLSUK/Record_Set/Data/MTD_Quantity ≠ "0"

Don't use apostrophes or double quotes when using NE or EQ. Just use 0 and it should work.

 

Regards,

Mark

Re: Mass maintenance of Risk ID and Rule ID for a Mitigation control ID

Re: Pass field value from Request to Response Mapping, without BPM in PI 7.11

$
0
0

Hi Nabendu,

 

DC should work but it can only hold 200 characters, so take this into account too.

 

Regards,

Mark

Re: SAP Career Guidance

$
0
0

Okay, I will do my best and work hard Krishna.

Thank You.


EHP7 upgrade preprocessingphase MAIN_SHDRUN/ACT_UPG running from long time

$
0
0

Hi experts,

 

I'm doing an EHP7 upgrade on our windows cluster system.

 

Currently on Phase MAIN_SHDRUN/ACT_UPG Pre Processing and this phase

is taking too much time.

 

I have checked the logs its not updating, I tried few oracle & memory related sap notes still same .

 

any suggestions

Re: How to add Formula Field from GF1 to a column in Cross-Tab

$
0
0

Hi Jocelyn,

 

I sent the updated report to your e-mail.

 

-Abhilash

Re: Tax code is working fine but calculation is hidden in invoice tab in PO

$
0
0

Hi Experts,

 

Please suggest a solution for this. In the display taxes when double click on BASB-Base Amount, the net price should come as the condition value.But here condition value field is not appearing. condition control parameters are correctly set. Pl guide to solve this issue.Capture2.PNG

Regards

Aneesh

Re: QS61 - Method Discussion

$
0
0

Hi,

Authorization Group is created & used for: changing Material Data/Master Data in QM. More often than not, it is used to define group of individuals for assigning Digital Signatures  in SAP (Ex. for RR and UD transactions).

In case you have not defined any Authorization group and hence not assigned any, the reasons could be:

1. Version of Inspn Method

2. Key dates

3. Status.

 

Since you have responded to Craig that the plant is the same for MIC & Method, that possibility is eliminated.Regards, KrishnaM

Re: Performance Management (Appraisal Documents) ABAP webdynpro error on HTTPS

$
0
0

Hello surya,

 

is the problem solved?

 

Best regards Oliver

Viewing all 8851 articles
Browse latest View live




Latest Images