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

Re: Control does not transfer to Data Provider Class with big data

$
0
0

Hello Ira,

 

Are you performing POST operation on the same entity? 

I mean consider for example you have entity Employee and have A B C fields.

So here are you dealing with a scenario to push all A B C fields of multiple Employees as part of POST ?

 

Regards,

Ashwin


Re: MRP Planned Order Splitting and Conversion

$
0
0

Hello

 

The planned order quantity is defined by the lot sizing procedure. Which one are you using?

 

Also, if you have only one requirement for the entire month, system will generally create only one planned order to cover it. If you are planning your material agains PIRs, I suggest you to run MD67 to split the PIRs, before the MRP execution.

 

Another possibility is to define a "takt time" for your material and a maximum or fixed lot sizing.

 

BR

Caetano

Re: Add New Line Item with different partner than header to Sales Order using BAPI

$
0
0

Maybe note 205775 is applicable.

 

Rob

Re: Bar id using this.byId() gives error when try to set its vibility

$
0
0

i get below error when used: sap.ui.getCore().byId("yourId").setVisible("true"); Cannot read property 'setVisible' of undefined

Re: Bar id using this.byId() gives error when try to set its vibility

$
0
0

hi Florian, i've tried this before, didnt worked. tnx

Re: SAP Work Manager 6.2 Installation Problem

$
0
0

The FlightBooking application uses OData to access the SAP Demo server. I'm the only one using the server (its a sandbox development server) so no one would be accessing the system but me.

 

I checked the log files immediately after restarting the SMP server. I could be wrong but I think the error occurs when the Work Manager app tries to connect to the backend system.

 

I'm not sure what is needed (or where) for the backend tab to be populated in the management cockpit for the app.

 

Thanks,

Dave

Re: Custom field label not changing in standard MB52 report while saving as variant

$
0
0

Finally found solution.

 

Declare an internal table itab TYPE SORTED TABLE OF textpool.

 

READ textpool sy-repid INTO itab LANGUAGE 'EN'.

 

and insert following entries in INITIALIZATION

 

itab-ID                = 'S'.

itab-KEY            = 'P_TEST'.               "parameter name

itab-ENTRY       = '        Desc'.            "parameter description

itab-LENGTH     = '20'.                        "length of the text

 

 

Thanks

Kota

Re: (MX) Contabilidad Electrónica - RME 2014 Anexo 24

$
0
0

Does anybody knows if we also need to stamp COA, Balances and Journal Entry lists similar to the payroll process in Mexico before we upload them in SAT webpage?

 

Thanks


Re: BSI Tax Factory 10.0

$
0
0

Thanks Matt:

 

We implemented note 2033053.  I tried to apply 2041117 today, but had some activation issues- will look at that again.

 

How do you activate Feature 10EET?

 

We've suppressed 14 message numbers: Including yours that you indicated.

 

Chris

Re: Time calculation

$
0
0

Hi,

 

try creating a query returning just [Transaction hours], merge your original query with this query on [Transaction hours]. Bring the merged [Transaction hour] in your table. Create a measure variable [new data] = If(IsNull([data]);0;[data]). Bringing the merged [Transaction hour] and [new data] on a table will do the trick.

If you need other dimensions from your original query, bring them onto the table as well and then follow Pavan's advice.

Cheers,

Rogerio

Re: rule sets trouble shooting

$
0
0

Hi Dipak,

 

When the event handler processed in SAP EM, it goes to several rule activities.

 

First, It goes to Multitask EH Update Activities rule activities and next Rule Sets activity.

 

If you look at Rule Sets -> Rules under Reactions to Event Messages in SAP EM system– The event handler process in rule sequence, which you maintained here and same thing it will display in log.

So, check the rule sequence which you maintained for both EH update and rules sets then amend based on your requirement.

 

If the above solution you are not looking for, then paste the screenshot to guide you in right path.

 

Regards


GGOPII

Re: Error when saving Crystal Report to excel

$
0
0

What version of CR?

Give the %TEMP% dir read write permissions.

 

 

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Re: system's strange behavior - need ur urgent help

Re: How to write script to set decimal places in Design Studio?

$
0
0

Did you try and check whether the decimal places are set AFTER you click on the crosstab? You seem to have put the script up on the onSelect() event of the crosstab, meaning you will have to manually make a selection for the script to be executed. If you want the script to be executed when the application loads, you will have to put up the script within the onStartup() event, found under the Application's properties.

 

Thanks and Regards,

Eshwar Prasanna

Re: Erro ao executar VL01N

$
0
0

hi

can you provide the screen shot


Re: Do you like the new SAP logo? And do you know how it evolved in the past 4 decades?

$
0
0

Yup, a couple of weeks after the new logo was introduced, SAP took a U-turn and brought back the old blue logo That's why you don't see it anymore...

 

They say it's because of the strong feedback from customers, partners and stakeholders

Interesting...

Re: Do you like the new SAP logo? And do you know how it evolved in the past 4 decades?

$
0
0

And obviously you are not alone The old logo is back. Long live the blue

Program gave dump after execution of Select query more than 1000 records select options.

$
0
0

HI All,

 

I am getting dump for below code.

 

dump1.PNG

 

Dump details:

 

   Possible error causes:

    o The maximum size of an SQL statement was exceeded.

    o The statement contains too many input variables.

    o The input data requires more space than is available.

    o ...

 

 

   You can generally find details in the system log (SM21) and in the

   developer trace of the relevant work process (ST11).

   In the case of an error, current restrictions are frequently displayed

   in the developer trace.

 

I have requirement to fetch list material which linked with MFRPN (MPN = manufacturer part number). MPN (MARA-MFRPN) is non key field.

 

So i am passing (%MFRPN% into select query to get list material linked with MPN please find select query below.

 

If i give restrict selection value into 100 to 200 both code1 and code2 works fine. if pass more value like more than 1000 or around 1000 then its give dump.

 

Any buddy could please suggest how to solve this issue.

 

 

Code 1:

 

      LOOP AT lt_mara ASSIGNING <ls_mara>.

 

*      Concatenate mpn number with star (%)

        CONCATENATE lc_star <ls_mara>-mfrpn lc_star INTO l_mfrpn.

*      Append to range table

        APPEND INITIAL LINE TO lr_range_mfrpn ASSIGNING <ls_range_mfrpn>.

        <ls_range_mfrpn>-sign    = lc_sign.

        <ls_range_mfrpn>-option  = lc_option.

        <ls_range_mfrpn>-low     = l_mfrpn.

 

      ENDLOOP.

 

 

 

      REFRESH lt_mpn_matnr.

      DATA : s_cursor TYPE cursor .

 

      OPEN CURSOR WITH HOLD s_cursor FOR

 

              SELECT matnr                          "Material number

                   mtart                          "Material Type

                   imatn                          "FFFC

                   mfrpn                          "MPN

 

              FROM mara WHERE mfrpn IN lr_range_mfrpn .

 

      DO.

 

 

        FETCH NEXT CURSOR s_cursor

          APPENDING TABLE lt_mpn_matnr

           PACKAGE SIZE  1500.

 

        IF sy-subrc <> 0.

          CLOSE CURSOR s_cursor.

          exit.

        ENDIF.

 

      ENDDO.

 

Code 2:

 

    LOOP AT lt_mara ASSIGNING <ls_mara>.

Concatenate mpn number with star (*)

      CONCATENATE '%' <ls_mara>-mfrpn '%' INTO l_mfrpn.

 

 

      SELECT matnr                          "Material number

             mtart                          "Material Type

             imatn                          "FFFC

             mfrpn                          "MPN

        FROM mara

        APPENDING TABLE lt_mpn_matnr

        WHERE mfrpn like l_mfrpn."lr_range_mfrpn.

 

 

    ENDLOOP.

 

 

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

Re: Align Caption in Webdynpro

$
0
0

Hi Anju,

 

To make the alignment of caption to work in grid layout, you need to set the width of CAPTION and then use the property "hAlign" as shown below

wd_caption_width.PNG

 

 

Hope this helps you.

 

Regards,

Rama

Re: Webdynpro.... Context...Right click...Create...Attribute is disabled....why ?

$
0
0

Hi ,

The reason is simple. You node which you've shown in you snapshot has dictonary structure = VBAK. That is the reason why your create attribute is in disabled .

 

Remove that dictionary structure and add attrbute will be enabled as shown below .

 

Capture.JPG

 

Thanks

KH

Viewing all 8667 articles
Browse latest View live




Latest Images