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

Re: SAP BI App: Unable to connect BOBJ 4.1

$
0
0

Can you check your Connection Type? If it is BI4.1 it should be as shown below in the screen shot:

hector.PNG


Re: Can HANA stored procedures have a scalar output parameter?

$
0
0

Kemal,

 

please do read the SQLScript developer guide!

It explains the usage of table typed parameters quite well.

 

- Lars

Re: Donations getting deducted twice

$
0
0

Nobody can solve this without looking at your configuration, which where the error will sit. You need to understand that your SAP system is not the same as any other. It's been configured to match your requirements and that's where thing probably went wrong.

Talk to your technical SAP payroll expert or consultant to review the config.

If the priblem happens, when actions are run within a payroll period (rather than first day only), then the config is wrong for splits. They need to review that.

 

If they can't solve it, then they may find help here on the SCN, when they post the relevant config and ideally find the spot in the payroll log, where it goes wrong.

 

Sorry for not being able to help more, but that's how it works: you (your consultant) need to put in some effort to make it possible for the community to help.

Re: Accounting doc only generating in VF02

$
0
0

I know this is an old post but i'm having the exact same issue.. I can only release to Accounting from vf02 ( no errors ).

Do you remember what the problem was?

 

Thank you!

Release to Accounting only possible via VF02

$
0
0

Hello gurus!

 

I am having a strange issue. While doing billing via vf01, accounting doc is not created. If I release via vf02, accounting doc is created without any error.

I have searched again and again the forums but i am unable to find an answer.

I have checked VKOA, VOFA for Posting Block ( it is not checked ) and no errors appear when i release via VF02.

 

Could you suggest any possible solutions?

 

Thank you in advance!

Re: cancel QM inspection lot

$
0
0

this was extremely helpful!! thank you!


Re: Spool not generated when creating the TO from TR

$
0
0

can you add screenshots from the TO and from both spool files?

Re: Bapi of ca02 to load excel file

$
0
0

Hi Aniruddha,

 

reading the code, it appears that the BAPI_ROUTING_CREATE is called at each loop pass, for every row in the excel file (that is, for each operation), this resulting in the creation of different routing groups.

I would suggest to have an external loop based on each material code, and an inner loop for every operation for a given material. Before ending the external loop, have the BAPI call for that given material.

 

The concerned part of code (the fill_bdcdata_table form) should be looking like the following:

 

FORM fill_bdcdata_table.

  it_tab1[] = it_tab[].

 

  DELETE ADJACENT DUPLICATES FROM it_tab COMPARING matnr.

 

  LOOP at it_tab INTO w_tab.

 

    LOOP AT it_tab1 INTO w_tab1 WHERE matnr = w_tab-matnr.

 

      wa_item_operation-control_key     = w_tab1-steus.

      wa_item_operation-work_cntr       = w_tab1-arbpl.

      wa_item_operation-denominator     = '1'.

 

      wa_item_operation-nominator      = '1'.

      wa_item_operation-activity       = w_tab1-vornr.

*     wa_item_operation-description    = record-description.

      wa_item_operation-base_quantity  = w_tab1-bmsch.

 

      wa_item_operation-std_value_01   = w_tab1-vgw01.

      wa_item_operation-std_value_02   = w_tab1-vgw02.

      wa_item_operation-std_value_03   = w_tab1-vgw03.

     

      APPEND wa_item_operation TO it_operation.

 

    ENDLOOP.

 

    CALL FUNCTION 'CONVERSION_EXIT_CUNIT_INPUT'

      EXPORTING

        input                = w_tab1-meinh

        language             = sy-langu

      IMPORTING

        output               = w_tab1-nos

*     EXCEPTIONS

*       UNIT_NOT_FOUND       = 1

*       OTHERS               = 2

           .

    IF sy-subrc = 0.

*     move uom_result to BAPI structure MARM.

    ENDIF.

 

*   group_counter = '1'.

    wa_items_task-task_list_usage       = '1'.

*   wa_items_task-description           = '1602T Forging Press'.

    wa_items_task-task_list_status      = '4'.

    wa_items_task-VALID_FROM            = sy-datum.

    wa_items_task-VALID_to_date         = '99991231'.

**  wa_items_task-task_list_group       = group.

    wa_items_task-group_counter         = group_counter.

*   wa_items_task-task_measure_unit     = '1'.

    wa_items_task-plant                 = w_tab1-werks.

*   wa_items_task-task_list_status      = record-status.

    wa_items_task-task_measure_unit     = w_tab1-nos.

    wa_items_task-lot_size_from         = '1'.

    wa_items_task-lot_size_to           = '99999999'.

 

    APPEND wa_items_task TO it_task.

 

*      w_SEQ-SEQUENCE_NO = '000000'.

*      w_seq-SEQUENCE_CATEGORY = '0'.

*      append w_SEQ to it_seq.

    bomusage           = '1'.

    application        = 'PP01'.

    wa_item_materailtask-material      = w_tab1-matnr.

    wa_item_materailtask-plant         = w_tab1-werks.

    APPEND wa_item_materailtask TO it_materialtaskallocation.

 

    CALL FUNCTION 'BAPI_ROUTING_CREATE'

      EXPORTING

        bomusage                  = bomusage

        application               = application

      IMPORTING

        group                     = v_group

        groupcounter              = v_group_counter

      TABLES

        task                      = it_task

        materialtaskallocation    = it_materialtaskallocation

*     SEQUENCE                    = it_seq

        operation                 = it_operation

*     SUBOPERATION                =

*     REFERENCEOPERATION          =

*     WORKCENTERREFERENCE         =

*     componentallocation         =  componentallocation

*     PRODUCTIONRESOURCE          =

*     INSPCHARACTERISTIC          =

*     TEXTALLOCATION              =

*     text                        = text

      return                      = return.

  

      IF sy-subrc = 0.

 

        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'

          EXPORTING

            WAIT          = 'X'

*         IMPORTING

*           RETURN        =

               .

      ENDIF.

 

      CLEAR : v_group.

 

      REFRESH it_task.

      REFRESH it_materialtaskallocation.

      REFRESH it_operation.

 

  ENDLOOP.

ENDFORM.

 

 

 

The loop at it_tab is the external one for each material, the internal one at it_tab1 is dealing with operations for the related material. BAPI call is performed for each material, this assuring the creation of a single group, multiple operations, for every material.

 

I do hope this will fix the issue.

 

Thank you and bye,

 

Flavio


Can we identify HANA version from complete hana system's backup files?

$
0
0

Hi,

 

Assume I have a HANA system T1K. System is running on HANA version 85 currently. I have this system backup files which I took a few months ago. Now I want to refresh my system with this OLD Backup and I am pretty much sure this at that time system had lower hana version.

 

Backup files:

 

Z3P-20141217-060016_databackup_0_1

Z3P-20141217-060016_databackup_1_1

Z3P-20141217-060016_databackup_2_1

Z3P-20141217-060016_databackup_3_1

Z3P-20141217-060016_databackup_4_1

Z3P-20141217-060016_databackup_5_1

Z3P-20141217-060016.tar

 

 

By these backup files, is there anyway we can get to know what HANA version this backup belongs to?

 

Kindly help me.

 

Regards,

Dinesh Verma

Re: Slow extract SAP ECC 6

$
0
0

Good day everyone,

 

I guess there is a kind bug with something since trying to load the entire 3 years data erros with the above msg, but if I do in chunks one per year the load executes ok.

 

I noticed the .dat file size was about 2.3 GB for about 15 millions rows when failed , so I'm guessing that possibly be the problem, since loading by years the file size is just about 1 GB size.

 

Then the "solution" was load the data in chunks.

 

Thanks all for your valuable help.

Re: Wishing sapui5 openui5 be ported to typescript

$
0
0

One of the reasons SAP is successful is because it has a large ecosystem of partners adapting and building modules on top of SAP.

 

Maybe a lot of SAP employees are using SAPUI5, but not that many external developers are, and that's a problem for SAP with S4/HANA, getting them to move from a heavy typed language like ABAP to JavaScript.

 

If the cost of developing for SAP becomes too high, and training for customer resources too great, it will just be another reason to switch away from SAP. Cost are already too high, even in the ABAP world, and getting Java developers to embrace SAP didn't work in the past. Enterprise development is not the same as web design.

Re: BLOCK REPORT PROGRAM GENERATING ERROR

$
0
0

Hi,

 

You must be new here! This forum is not a place for you to dump your code and ask us to fix it. You didn't even bother to specify what the errors are.

 

I assume this is a student assignment - go and do some work, then come back with some more specific questions.

 

cheers

Paul

Re: Smart data access on hana cloud platform

$
0
0

Hi,

 

we have the same requirement:

 

Connect local on-premise HANA to HCP instance, but we run

into a kind of a deadlock by trying to establish a Smart Data Access to our HANA Cloud Platform instance.

On lacal machine

1. We configured unixODBC - it works

2. We connect to HCP, neo as well as Cloud Connector + HANA_DB Service on Port 32215 - it works

but

as soon we start the local HANA instance - localhost is associated with this HANA instance and we cannot point ODBC to the HCP instance, which works with isql connection when the local HANA instance is down.

Do have any idea how to solve?

Thanks and regards

Alexander

Automatic cost generation

Define A Fiscal Year Variant FIRST for Company Code

$
0
0

Although this was already done and taken care of  Attached a screenshot 

of T-Code OBBP


 



Not too sure why would this error surface.  Attached a screenshot


Re: No Amount Authorization for customers vendors in company code

$
0
0

Ok,  I really appreciate you all.

 

System went down again, and just now i am able to work on this issue.

 

I had to maintain the following as no entries were performed

 

T-Code  OBA0

T-Code  OMRB

T-Code OBA4

 

 

 

T-Code OBA3   has been already maintained

 

T-Code  OB57  is already maintained, but is it reading the Tolerance group from T-Code OBA3 ?

 

Error message Gone.

 

Now a new error of course surfaced !

"Define A Fiscal Year Variant FIRST for Company Code"

Define A Fiscal Year Variant FIRST for Company Code

Re: Wishing sapui5 openui5 be ported to typescript

$
0
0

Hi John, Denise & Joao,

 

My 2 cents - I talk about TypeScript from a more philosophical perspective. The purpose of TypeScript (IMO) is to get rid of simple type style/common JavaScript issues that can be identified with an additional preprocessor language.

 

While I don't think this is the solution for JavaScript, the problem is very real. My hope is that we get a much higher artificial intelligence in our linting programs that can effectively understand what the developer is trying to do (and ask questions if it doesn't understand).

 

The point is, UI5 is for enterprise programs, and enterprise programs are usually not prone to misspelling a variable name, and everything being okay.  UI5 programs can happily make it through to production without a red flag being notified to the basis team; and this is a real concern.

 

Linting is the best way we have today (which is not forcibly integrated in the deployment through WebIDE today), but I think we need more and TypeScript is one brute force solution to this.

 

So bring on the AI in linting that understand UI5, and introduce constants from XML views and Gateway Services that remove us from typing this.getView().byId("IncorrectId"), but that's a big project in itself, but what will be necessary to avoid developers used to heavily typed languages like ABAP making a mess of production UI5 code.

 

Just my 2 cents.

Cheers,

Matt

Re: No Amount Authorization for customers vendors in company code

$
0
0

This is a great shortcut to learn.   Thanks Erwin

 

but also i have attached the screen for the Table and T-Code OBA3

 

I have three different entries in the table !

Re: Unable to start hana cloud platform Java EE web profile server

$
0
0

Hi Ashish,

 

I'm having the same issue.

 

I hope you have solved this. If so, would you mind sharing the solution ?

 

Thanks and regards,

 

Elton

Re: unable to include maps in fiori extension application

$
0
0

Yes , I was able to clone repository.

 

But I get these messages

 

XHR finished loading: GET "https://webidetestingid2umd-p***trial.dispatcher.hanatrial.ondemand.com/resources/sap/ui/unified/messagebundle_en.properties".

sap-ui-core.js:27 GET https://webidetestingid2umd-pp***trial.dispatcher.hanatrial.ondemand.com/openui5/googlemaps/Map.js 404 (Not Found)

sap-ui-core.js:27 XHR finished loading: GET "https://webidetestingid2umd-p***triall.dispatcher.hanatrial.ondemand.com/openui5/googlemaps/Map.js".

UIComponent.js:6 Uncaught Error: failed to load 'openui5/googlemaps/Map.js' from ../openui5/googlemaps/Map.js: 404 - Not Found

 

Thanks,

Vidya

Viewing all 8667 articles
Browse latest View live




Latest Images