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

Re: difference between like and type

$
0
0

HI Mounika,

 

If you want to find the difference between type and like, I suggest you to create a structure using  LIKE and TYPE  you will find the exact difference.

 

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

TYPES: BEGIN OF itab1,

    *--- using type---*

              MATNR TYPE MATNR,

              ERSDA TYPE ERSDA,

    *--- using like---*

             *ERNAM   TYPE CHAR10,

             ERNAM    LIKE  CHAR10,

          

             END OF itab1.


data : itab1 like mara occurs 10 with header line.

data : itab2 type mara occurs 10 with header line.


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

If you create a structure like this you will encounter an error.

  "CHAR10" must be a flat structure. You cannot use internal tables,strings, references, or structures as components. 


Try to create using type you wont get any error.


If  you use like, it will accept only the referenced ones in our case char10 is not referenced , if you use type it can accept the both.

Please make sure that you don't use "like" in your developments as they are obsoleted.


Regards,

Girish Kumar v.


Re: sum of two fields in one column

$
0
0

Hi,

 

If you want to display sum of 2 columns of one internal table in another then the code will be as below:

types : begin of ty_itab,

            sum1 type dmbtr,

            sum2 type dmbtr,

           end of ty_itab.

types : begin of ty_final,

           sum3 type dmbtr,

           end of ty_final.

data : itab type table of ty_itab,

         wa_itab type ty_itab,

         it_final type table of ty_final,

         wa_final type ty_final.

 

loop at itab into wa_itab,

wa_final-sum3 = wa_itab-sum1 + wa_itab-sum2.

append wa_final to it_final.

endloop.

Re: Procurement Process

$
0
0

Hi Ajya
This is fine , but if in case of moving average of Material and Stnd. Price Matrl situation how this can be hit in entry in MIGO and MIRO ?

Refurbishment process

$
0
0

Hi all,

Can any one tell me difference between Refurbishment Process with serial number and without serial number i am having confusion on that can any one tell me with example thanks in advance.

Re: How to query a custom table in xsjs using the trial version

$
0
0

Florian thank you!

I am so happy that I have to share my result with you

 

xsjs

 

xsjs.JPG

 

sapUI5 and odata in HANA XS

 

html5.JPG

Re: How to query a custom table in xsjs using the trial version

$
0
0

Another small question: is it possible to create a destination for an html5 (with web ide) application using an odata service defined by me in the HANA XS instance? I tried but not working, probably authentication issue.

Re: How to create a customer no. starting with a few fixed letters which is system-proposed?

$
0
0

We also used external number ranges in my previous project - for example the customers assigned to plants were with PXXXX where XXXX is the plant number. The P* customers were also used as cross-docking partner function for some of the regular trade customers and there was additional setup for alowed combination of delivering plant and x-docking location. It is much easier for the end users to remember a logical mapping instead of memorizing the internal number assigned by the system.

There are some other cases when it is pretty normal and even advisable to use external number ranges- for example when you create the customer hierarchy it makes more sense to use your own logic for the hierarchy nodes.

For trade customers - I am not 100% sure, but sometimes you may want to have exactly the same data for part of the customers in quality and in PRD, but you do not need to have all trade customers created in Q system. So imagine a user is supposed to test a change to an invoice smartfrom with some pricing conditions applied per customer number. In PRD he uses customer 96134, but in quality he should have the data for customer 96002. This means that he has to ask to extract the conditions for 96134 and request upload for 96002 after the new customer is created. Usually we set up a temporary test system before go-live with upload of all data for testing and validating the business processes and the users are supposed to check the quality of master data as well, because this is what they will get for go-live. If you use internal numbers for trade customers it is a very time-consuming task for the master data team to match the newly created customer numbers from the initial upload to the templates provided by the key users for pricing conditions or credit master records (for go-live).

Re: display 24th september 2015 in code

$
0
0

what if system date is 1 september 2015 ..in this case i need

st for 1


/DSD/VC_VP Date Rule-Item Level

$
0
0

Hello Gurus,

 

Please refer the Screen shot.

 

 

OK, so I am creating a Visit Plan via the transaction /DSD/VC_VP.

And as you can see at the header level there is a Weekly Rule thing i.e, the Monday through Saturday Checkboxes,

Well, my necessity is that I need the Weekly rule (the Checkboxes) at item level, which is here Ginger Ale & Charlie Brown e.t.c

 

So, kindly advice how it could be achieved (FYI I have seen this at my clients System, they have item level Weekly rule, I also debugged it & could not find if there is any enhancement).. Is it a Customization activity or do I have to carry out any enhancement somewhere?.

 

Thanks in advance.

Re: display 24th september 2015 in code

$
0
0

that means i have keep on changing concatenate by st and th and rd for 1 ,2 , 3

 

1st september 2014

2nd september 2014

3 rd september 2015

4th september 2015

5th september 2015 ...so on

Re: Need to display multiple alv using oo alv in background

$
0
0

Hi Srithar,

 

CREATE OBJECT o_split

      EXPORTING

        parent        = o_docking

        sash_position = 80

        with_border   = 1.

 

The sash_position and with_border are not the exporting parameters .

 

It is giving me an error.

 

can you please check the code .

 

Regards,

Swapnil

Re: How to eliminate # and not assigned from report level

$
0
0

Hi,

 

This works as designed. There are limited work-arounds like diplaying a text of the Characteristic; make the text for # (unassigned) blank. Suppress 0 (zero) in the BEx Query Designer.

If this is not sufficient, then you will have to prepare your data during data staging. Some ABAP coding could be necessary in this case.

 

Best regards,

Sander

Re: display 24th september 2015 in code

$
0
0

that means i have keep on changing concatenate by st and th and rd for 1 ,2 , 3

 

1st september 2014

2nd september 2014

3 rd september 2015

4th september 2015

5th september 2015 ...so on

 

Re: Activity type allocation on PCC in ratio of FG quantity produced

$
0
0

Hi Abhinav

 

  Can you tell how you have activated the field "ORDER" as receiver in cycle? But PCC can't be receiver becuse in standard attributes in Cycle PCC is not define but ORDER is defined but I could not populate the field in Cycle Receiver as a entry field. Can you please tell?

 

 

Kamal

Re: Data is not refreshed in reciever RFC communication channel

$
0
0

Hello Mahesh,

 

After changes, Usually Stop/Start channel should be enough.


Re: Fiori Launchpad (FLP) and Remote Catalogs to another ABAP system

$
0
0

Hi Simon;

 

Did you configure web dispatcher also for testing this or only by adding the system alias of SRM system in the oData Service "PAGE_BUILDER_CUST".

 

I think in the launchpad designer the tiles will appear without web dispatcher configuration also.

But for the end user web dispatcher configurations are required.

 

 

 

Regards,

Sarbjeet Singh

Re: we are facing one problem SAP BI 7.3 while executing tcode RSA1 CL_RSBM_ERROR_HANDLER=========CP

Re: Filter in WebI Chart

$
0
0

Hi Mark,

 

I tried your method but didn't work for my scenario. When I run the report for the year 2010, table should be blank though table has values in it where as when I run for 2015, table should show values.

 

Table.png

Re: want to add custom tab in ml81n

$
0
0

Hi Anita,

 

You have screen exit for ML81N

SRVEUSCR--User screen on entry sheet tabstrip

Implement the enhancement in CMOD once check and revert.

 

Regards,

Pavan

Re: CONFS field not getting updated on confirmation of change in FK08?

Viewing all 10116 articles
Browse latest View live


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