Quantcast
Channel: SCN : All Content - All Communities
Viewing all 8830 articles
Browse latest View live

How to show the "SIA name" in the CMC screen(s) for administration ( BI 4.1 SP5)

$
0
0

When logging on to "BI4" (cmc) we have several options.

 

First option: the web page for the login.

Our system has 3 SIA's ( DEV , TEST , PROD ), three Tomcat "web app servers" with respective urls

DEV is a simple one: everything on one machine.
(exceptions: databases in Oracle, IFRS / OFRS are NAS mapped to D:/something on the BI4-DEV server)

 

TEST is separated:
tomcat on an application server (url:bi4-web-test) ,
one "management server" BI4-MAN-TEST for SIA,
a "processing server" BI4-PRO-TEST for the processing services.

PROD is much like test, only more processing servers on extra machines

 

BUT

logging on to CMC, at either one of these 3 URLs : http:/<siaservername>/BOE/CMC/ ,
I still have the option: "Server:" ( BI4-DEV , BI4MAN-TEST, BI4MAN-PROD : three different "manager" or SIA names)

So starting from BI4-DEV, I can log on to BI4-PROD

My problem: the URL shown in the browser navbar now does NOT tell me any more at which server I am working. The url only shows where I logged in.

 

Is it possible to SHOW the ACTUAL SERVER somewhere - say next to the logged-in user name ?

Instead having a page header showing:

 

... <preferences> ... Welcome, Administrator

 

I imagine it showing:

 

... <preferences> ... Welcome, Administrator ON <SIA>

 

Is this at all possible ?

In Boxi 3.1 we could modify the "header layout" for InfoView. Users would see our company logo, their login name ... but we never did that for boxi 3.1 "CMC"

Now in BI4.1 , with the much more complicated setup, we want to do that.

I did not find it in the "Administrators' Guide" .... yet.

 

Hans Rens,

Brussels


Enhance oData service

$
0
0

Hello. I extended oData service /IWPGW/TASKPROCESSING v.2 and added new property "Ext" to entity Task. Service generated whithout errors. But when I try to run the service in gateway client, then I get error "Property 'Ext' of data object 'Task' has no Internal type assigned". In my model class this field is exist and has data type "string". What did I do wrong? If I delete new property, then service run correctly

LSMW update Contract Item field

$
0
0

Dear Experts:

 

My question is can I use LSMW batch recording to update contract item fields,  e.g Qty  in contract items.

 

I didn't see any item index e.g. Contract item No, so how can I create my source file?

 

Thank you very much

 

Janey

XD01 - Exit or badi with KUNNR created

$
0
0

Hi experts

 

I'm working with exit ZXF04U01 when i SAVE the xd01 .

But when it pass by this exit the kunnr is empty because is not created ( i think)

 

1-Are there  any way i get the kuunr value in this exit or are there  other exit or badi with kan1 data and kunnr not empty.?

FMBB - Custom field at line item in Payment Budget Tab

$
0
0

Hi Experts,

 

We have a requirement to add a custom field at line item level in Payment Budget Tab in FMBB Tcode.

 

I found a BADI  FMBW_CUSTOMER (Method - ADD_FIELDS_TO_LINE_ITEM).

 

I added the below lines of code in the method

 

 

c_t_fieldcat_ci[] = i_t_fieldcat_std[].

   DATA: x_fcat TYPE lvc_s_fcat,
   l_lines type i.

   DESCRIBE TABLE c_t_fieldcat_ci LINES l_lines.

   x_fcat-col_pos = l_lines + 1.
   x_fcat-fieldname = 'ZZIMPR_CODE'.
   x_fcat-tabname = 1.
   x_fcat-datatype = 'CHAR'.
   x_fcat-inttype  = 'C'.
   x_fcat-intlen = '000020'.
   x_fcat-reptext = 'Imp.Code'.
   x_fcat-domname = 'NUM4'.

   APPEND x_fcat TO c_t_fieldcat_ci.

 

But when I activate the badi and run, in FMBB transaction I don't see the field.

 

Please suggest if any ideas.

 

 

 

 

Regards,

Mohammed

XS job stuck in RUNNING status

$
0
0

Hi folks,


I have an XS job that normally completes in 2 minutes that has had a RUNNING status for days.  I looked at admin console performance and truly nothing is running on server related to this so it just seems to be stuck with false status.  Deactivating the job and saving and then activating again is not working.  How can I reset this status?  For now I've resorted to manually running the job which runs fine as normal.  So nothing is wrong with the actual procedure.

 

Thanks,

-Patrick

PowerBuilder 12.6 RegistryGet Not Behaving

$
0
0

Howdy!

 

Has anyone noticed an issue with RegistryGet in 12.6.0.4035?

 

I have code which looks up the ORACLE_HOME key and in PB 12.5.1 it work fine, but in 12.6 it fails. The code is identical.

 

I will be totally transparent, here, and admit that my knowledge of Windows API's is dreadfully shallow. I did try running my app 'As Administrator' just in case this was a permissions issue, but to no avail.

 

Thanks in advance!

Tom

Why is an optional import parameter passed with value overridden if the calling FM doesn't export it?

$
0
0

Hi Folks,

 

while tracking down an issue with not always properly working updates in the APO-system, I happened upon some SAP-code I don't quite understand – or don't know whether this might actually be an error worth raising an OSS-Message about.

 

Background:

We recently discovered that under certain circumstances, one important APO-quantity field doesn't get updated during the delivery-process triggered in SD via IDOCs (other fields do get updated as expected). When the triggering IDOC is the SAP standard SHPCON it works, if it's a Z-version, it doesn't. It seems that it's just one structure (IS_APOINF) which only has one field (ORIGIN) which controls the behaviour for this particular update of the APO-quantity-field: if this field is filled with 'A' (for goods movement) it works, if it's blank it doesn't. We were able to pinpoint this via debugging where we simply overrode the blank with 'A' in this field in the R/3-system before calling the APO-FM via RFC. The APO-updates then worked as expected.

 

We are on SAP_APPL 606 0013 SAPKH60613 with EHP6 after a rather big upgrade in early December 2014 from EHP0. From checking out some OSS-Notes where the impacted FMs are mentioned, it looks as if at least some of the code was added during this upgrade. Unfortunately, we are not able to pinpoint the exact time since when the issue occurs but from the information we have available it seems likely to have started with the upgrade but might have flown under the radar due to low traffic via the Z-IDOC. More items are being processed via this route now which is why issues have been noticed with the APO-quantities.

 

Tracking down the root-cause

Knowing which field to look for, I spend quite a lot of time debugging the process, searching for the proverbial needle in the haystack with the additional obstacle to first determine in which haystack to look for it. I compared what happens where for the standard-IDOC and our Z-version, noticing that most of the processing goes through the same SAP-standard routines. That way, I was eventually able to zoom in to where I think the processing of the Z-version loses the 'A' in IS_APOINF-ORIGIN.

 

Here is the relevant code in FM RV_COMMON_TABLE_UPDATE which gets processed in both cases:

  CALL FUNCTION 'TH_IN_UPDATE_TASK'

       IMPORTING

            IN_UPDATE_TASK = LF_IN_UPDATE_TASK

       EXCEPTIONS

            ERROR_MESSAGE  = 1

            OTHERS         = 2.

  IF SY-SUBRC = 0  AND LF_IN_UPDATE_TASK = 0.

    XVBBS[] = FXVBBS[].

    YVBBS[] = FYVBBS[].

    PERFORM VBBS_GLOBVAR_REFRESH ON ROLLBACK.

    CALL FUNCTION  'RV_VBBE_AND_VBBS_BEARBEITEN' IN UPDATE TASK

      EXPORTING

        IS_APOINF  = IS_APOINF

        F_VBELN    = F_VBELN

        FXVBAK     = FXVBAK

        IV_VORGANG = VORGANG

        IV_VBAK_MANDT = VBAK_MANDT

      TABLES

        FXVBBE     = FXVBBE

        FYVBBE     = FYVBBE

        FXVBBS     = FXVBBS

        FYVBBS     = FYVBBS

        FXVBPA     = FXVBPA

        FYVBPA     = FYVBPA

        FXAPOI     = FXAPOI

        FXVBAP     = FXVBAP

        FXVBUK     = FXVBUK

        FXLIPS     = FXLIPS.

  ELSE.

    CALL FUNCTION  'RV_VBBE_BEARBEITEN'

      EXPORTING

        IS_APOINF  = IS_APOINF

        F_VBELN    = F_VBELN

        FXVBAK     = FXVBAK

        IV_VORGANG = VORGANG

        IV_VBAK_MANDT = VBAK_MANDT

      TABLES

        FXVBBE     = FXVBBE

        FYVBBE     = FYVBBE

        FXVBPA     = FXVBPA

        FYVBPA     = FYVBPA

        FXAPOI     = FXAPOI

        FXVBAP     = FXVBAP

        FXVBUK     = FXVBUK

        FXLIPS     = FXLIPS.

 

IS_APOINF-ORIGIN was previously set to 'A' regardless of the standard or Z-IDOC being processed.

 

This code, however, gets processed differently depending on the IDOC. For the standard IDOC, the local variable LF_IN_UPDATE_TASK is set to 1 which leads to the ELSE-code being processed – note that IS_APOINF gets exported to RV_VBBE_BEARBEITEN:

  ELSE.

    CALL FUNCTION  'RV_VBBE_BEARBEITEN'

      EXPORTING

        IS_APOINF  = IS_APOINF

        F_VBELN    = F_VBELN

        FXVBAK     = FXVBAK

        IV_VORGANG = VORGANG

        IV_VBAK_MANDT = VBAK_MANDT

      TABLES

        FXVBBE     = FXVBBE

        FYVBBE     = FYVBBE

        FXVBPA     = FXVBPA

        FYVBPA     = FYVBPA

        FXAPOI     = FXAPOI

        FXVBAP     = FXVBAP

        FXVBUK     = FXVBUK

        FXLIPS     = FXLIPS.

 

If this processing is executed, IS_APOINF-ORIGIN retains the 'A'.

 

For the Z-IDOC, LF_IN_UPDATE_TASK is set to 0 and the other FM is called – also exporting IS_APOINF – but 'IN UPDATE_TASK', so "shelved" for later processing:

  IF SY-SUBRC = 0  AND LF_IN_UPDATE_TASK = 0.

    XVBBS[] = FXVBBS[].

    YVBBS[] = FYVBBS[].

    PERFORM VBBS_GLOBVAR_REFRESH ON ROLLBACK.

    CALL FUNCTION  'RV_VBBE_AND_VBBS_BEARBEITEN' IN UPDATE TASK

      EXPORTING

        IS_APOINF  = IS_APOINF

        F_VBELN    = F_VBELN

        FXVBAK     = FXVBAK

        IV_VORGANG = VORGANG

        IV_VBAK_MANDT = VBAK_MANDT

      TABLES

        FXVBBE     = FXVBBE

        FYVBBE     = FYVBBE

        FXVBBS     = FXVBBS

        FYVBBS     = FYVBBS

        FXVBPA     = FXVBPA

        FYVBPA     = FYVBPA

        FXAPOI     = FXAPOI

        FXVBAP     = FXVBAP

        FXVBUK     = FXVBUK

        FXLIPS     = FXLIPS.

 

The FM RV_VBBE_AND_VBBS_BEARBEITEN gets IS_APOINF as an optional import parameter passed with value and the 'A' is still visible at the start of the process:

 

FUNCTION RV_VBBE_AND_VBBS_BEARBEITEN.

*"----------------------------------------------------------------------

*"*"Update Function Module:

*"

*"*"Global Interface:

*"  IMPORTING

*"     VALUE(IS_APOINF) LIKE  SHP_APOINF STRUCTURE  SHP_APOINF

*"         DEFAULT SPACE

*"     VALUE(F_VBELN) LIKE  VBAK-VBELN DEFAULT SPACE

*"     VALUE(FXVBAK) LIKE  VBAK STRUCTURE  VBAK OPTIONAL

*"     VALUE(IV_VORGANG) TYPE  CHAR1 OPTIONAL

*"     VALUE(IV_VBAK_MANDT) TYPE  MANDT OPTIONAL

*"     VALUE(IV_NO_CREATE_ORD) TYPE  CHAR1 DEFAULT SPACE

*"  TABLES

*"      FXVBBE STRUCTURE  VBBED

*"      FYVBBE STRUCTURE  VBBED

*"      FXVBBS STRUCTURE  VBBSD

*"      FYVBBS STRUCTURE  VBBSD

*"      FXVBPA STRUCTURE  VBPAVB

*"      FYVBPA STRUCTURE  VBPAVB OPTIONAL

*"      FXAPOI STRUCTURE  ATPFIELD OPTIONAL

*"      FXVBAP STRUCTURE  VBAPVB OPTIONAL

*"      FXVBUK STRUCTURE  VBUKVB OPTIONAL

*"      FXLIPS STRUCTURE  LIPSVB OPTIONAL

*"----------------------------------------------------------------------

 

    CALL FUNCTION  'RV_VBBE_BEARBEITEN'

      EXPORTING

        F_VBELN    = F_VBELN

        FXVBAK     = FXVBAK

        IV_VORGANG = VORGANG

        IV_VBAK_MANDT = VBAK_MANDT

      TABLES

        FXVBBE     = FXVBBE

        FYVBBE     = FYVBBE

        FXVBPA     = FXVBPA

        FXAPOI     = FXAPOI

        FXVBAP     = FXVBAP

        FXVBUK     = FXVBUK.

 

As the first activitiy, FM RV_VBBE_BEARBEITEN gets called, but without exporting IS_APOINF as is done when this FM is called from RV_COMMON_TABLE_UPDATE. Before the FM gets called, IS_APOINF still contains 'A'.

 

For RV_VBBE_BEARBEITEN, IS_APOINF is also defined as optional with value and default SPACE.

*"----------------------------------------------------------------------

*"*"Update Function Module:

*"

*"*"Global Interface:

*"  IMPORTING

*"     VALUE(IS_APOINF) LIKE  SHP_APOINF STRUCTURE  SHP_APOINF

*"         DEFAULT SPACE

*"     VALUE(F_VBELN) LIKE  VBAK-VBELN DEFAULT SPACE

*"     VALUE(FXVBAK) LIKE  VBAK STRUCTURE  VBAK OPTIONAL

*"     VALUE(IV_VORGANG) TYPE  CHAR1 OPTIONAL

*"     VALUE(IV_VBAK_MANDT) TYPE  MANDT OPTIONAL

*"     VALUE(IV_NO_CREATE_ORD) TYPE  CHAR1 DEFAULT SPACE

*"  TABLES

*"      FXVBBE STRUCTURE  VBBED

*"      FYVBBE STRUCTURE  VBBED

*"      FXVBPA STRUCTURE  VBPAVB

*"      FYVBPA STRUCTURE  VBPAVB OPTIONAL

*"      FXAPOI STRUCTURE  ATPFIELD OPTIONAL

*"      FXVBAP STRUCTURE  VBAPVB OPTIONAL

*"      FXVBUK STRUCTURE  VBUKVB OPTIONAL

*"      FXLIPS STRUCTURE  LIPSVB OPTIONAL

*"----------------------------------------------------------------------

 

  VORGANG = IV_VORGANG.

  VBAK_MANDT = IV_VBAK_MANDT.

  PERFORM VBBE_BEARBEITEN.

  IF IV_NO_CREATE_ORD IS INITIAL.

    PERFORM VB_APO_CREATE_ORD.

  ENDIF.

  PERFORM VB_APO_PUT ON COMMIT LEVEL LEVEL_ATP.

  IF NOT ( FXVBBE[] IS INITIAL AND FYVBBE[] IS INITIAL ).

    PERFORM MEMORY_UPDATE ON COMMIT LEVEL LEVEL_ATP.

  ENDIF.

  PERFORM VBBE_BEARBEITEN_UPD_DB ON COMMIT LEVEL LEVEL_ATP.

  PERFORM VBBE_GLOBVAR_REFRESH ON COMMIT LEVEL LEVEL_ATP_INIT.

  PERFORM VBBE_GLOBVAR_REFRESH ON ROLLBACK.

* Register bgRFC send on commit (level > LEVEL_ATP)

  CALL FUNCTION 'CIF_SEND_BGRFCUNIT_REGISTER'.

  PERFORM VB_APO_REFRESH ON ROLLBACK.

 

ENDFUNCTION.

 

Within the processing, IS_APOINF is queried or passed to other FMs but not actively changed to another value as far as I can tell.

 

When this FM is processed for the Z-IDOC, the value of IS_APOINF shows as blank right at the start, most likely because it didn't get passed from the calling FM but is defined with a default value of SPACE. This will affect some processing within those called routines where IS_APOINF gets checked for 'A':

 

* to allow creation of in transit nodes for VMI batch items

* created at the same time as the goods issue.

    IF is_apoinf-origin EQ 'A'

    AND da_vbbe-updkz EQ updkz_new

    AND da_vbbe-vbtyp EQ vbtyp_lino

    AND da_vbbe-omeng EQ 0.

      CALL FUNCTION 'CIF_VMISD_EXISTS'

      EXPORTING

        iv_kunnr = da_vbbe-kunnr

      IMPORTING

        ev_exists = lv_is_vmi_kunnr.

      IF NOT lv_is_vmi_kunnr IS INITIAL

      AND fxlips IS SUPPLIED.

        READ TABLE fxlips

        WITH KEY vbeln = da_vbbe-vbeln

                 posnr = da_vbbe-posnr

        BINARY SEARCH.

        IF sy-subrc IS INITIAL.

          da_vbbe-omeng = da_vbbe-vmeng = fxlips-lgmng.

          da_vbbe-apomobile = '4'. "prevent ERP update but allow APO

        ENDIF.

      ENDIF.

    ENDIF.

 

But, what concerns me the most is the fact, that IS_APOINF has been set to SPACE when the processing is back in RV_VBBE_AND_VBBS_BEARBEITEN even though that FM never passed the field to RV_VBBE_BEARBEITEN. How can it be that an optional import parameter changes its value if it wasn't even passed into the called FM? Isn't that a rather big source for potential problems not just in this case but also more generally speaking?

 

Needless to say, once IS_APOINF is filled with space it never gets filled again after this sequence of FMs and the APO-processing doesn't properly work.

 

How best to proceed?

I'm planning to open an OSS-message about this, but would like to get some feedback from you first, mainly to get a better handle on whether this is an "oversight" by SAP or could have been intentionally programmed like this.


From past experience it's rather likely, that as soon as we mention the preceeding processing via a Z-IDOC, SAP-support will concentrate on what we might be doing wrong there instead of actually checking out the code already identified as potentially problematic (and I have saved many screenshots from debugging I could provide). Describing the necessary steps to reproduce the error - or even better: to watch it unfold during debugging! - in enough detail will also be rather time-consuming. Setting up working testcases in and by itself is a hassle for these tests, especially if the goal is to ensure that they are basically identical. Does anybody know of a "shortcut" to get somebody from SAP-development quickly involved in tackling an OSS-message, ideally via a conference call where screen-sharing is possible? Talking a developer through this would be a lot easier than trying to make somebody from SAP-support understand the technical details.

 

Thanks much for any feedback you can provide!

 

Cheers

Baerbel


Customer Engagement - Utilities are E-Commerce Companies

$
0
0

- News from Berlin! My colleagues and I learned a lot from listening to utilities, partners, and our SAP colleagues from around the world about the customer-led revolution in Utilities business world-wide. We'll post our story and view of the customer engagement revolution here in a few days! STAY TUNED!

 

 

omni.png

 

 

For a larger background, read the blog series on customer engagement from Juergen Kuhmann, Solution Management Utilities at SAP. He describes the fundamental changes utilities globally are facing and what you can do to stay relevant to consumers.

 

Logs of FireFighter user dont sync

$
0
0

Hi experts,

 

I need obtain the logs of emergency users from backend system. for this reason, i excute the progra GRAC_SPM_LOG_SYNC in SE38.

 

The program runs with error: "LOAD_PROGRAM_NOT FOUND"

 

 

 

 

 

 

 

Thanks and regards.

 

Claudio

Not able to connect to SAP HANA through Eclipse

$
0
0

Hi,

 

I have registered for free developer account on HCI Cloud and able to install required Eclipse as mentioned in

8 Easy Steps to Develop an XS application on the SAP HANA Cloud Platform

 

Tried to add the cloud system in HANA Modeler perspective using my SDN credentials however, not able to connect.. it is showing some credential error and I am not sure whom to contact, as I didnt' find any contact info on the https://account.hanatrial.ondemand.com/cockpit#/acc/

 

Please help.

 

Best Regards,

Vijaya

Display Month verbiage on chart but sort by month number

$
0
0

Hello,

 

I have inserted a simple bar chart (values by month for a single year) and my goal is to get the data values to group by month.

I found that I can achieve this by using a formula that extracts the month from my Date/TIme field MONTH({Command.OB_DELIVERY_DATE}).

This works OK and displays months as 1, 2, 3,  etc. on my chart), but I want to display the month text instead (Jan, Feb, Mar)

 

I tried a second variable:  ToText({Command.OB_DELIVERY_DATE},'MMMM')

This works in displaying the verbiage of the months,however, the problem is that it groups the months on my chart alphabetically now (April is now my 1st month instead of January).

 

What is the trick to displaying month verbiage on my chart, but still sorting these months in their proper numerical order?

 

 

Many Thanks!

Outgoing Payments Series numbering

$
0
0

Hi experts,

I have a customer who has a document numbering for payments documents as eg 2014/100001 and 2015/100001.

 

When I try to preview these reports with same document numbers but different series i.e. 2014 and 2015, the preview brings the 2014 details and also the total amount it brings both 2015 and 2014 totals.

 

I tried to edit the report by changing the sub reports link taking away the OVPM.Docnum parameter and replaced it with OVPM.Docentry.

 

When I try to preview it brings one total per the document but the details part is not coming and the payment means details does not come at all.

Has anyone come across this instance I am describing?

 

If yes I want someone to help me out with an edited outgoing payment crystal report that addresses these repeated document numbers with different series.

 

This request is very urgent and a solved help will be much appreciated.

 

Please assist with a worked on default outgoing payment crystal report that addresses the scenario described.

 

 

Regards

Justice

html Editior Icons not displaying in portal 7.4

$
0
0

Hi All

 

I am unable to view the ICONs in the XML Editior,

I made setting in KM under utilites and HMTL Editior and checked to allow only basic formating ,but still its not refelecting Icons ,

 

Can you any one let me the exact settings for displaying of ICONS .

awaiting for the response ....

 

 

Alert Icons.PNG

 

Thanks & Regards

Deepika

Saprouter is not starting

$
0
0

Dear Experts,

Our sap router is not starting with the command saprouter -r, gives the error as below, the certificate is also renewed.please advice.

"trcfile  dev_rout

no logging active

routtab  cannot open './saprouttab': EXIT PROGRAM !!!

         (running without saproutab is no longer supported for security reasons)

Could not open permission table"

 

dev_rout:

 

 

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

trc file: "dev_rout", trc level: 1, release: "742"

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

 

 

Fri Apr 24 18:19:09 2015

SAP Network Interface Router, Version 40.4

 

 

command line arg 0: f:\usr\sap\saprouter\saprouter.exe

command line arg 1: -r

command line arg 2: -R

command line arg 3: f:\usr\sap\saprouter\saprouttab

command line arg 4: -W

command line arg 5: 60000

command line arg 6: -K

command line arg 7: p:CN=AWQ-SOLMAN1, OU=0000880983, OU=SAProuter, O=SAP, C=DE

SncInit(): Initializing Secure Network Communication (SNC)

      PC with Windows NT (mt,ascii,SAP_UC/size_t/void* = 8/64/64)

      GetUserName()="soladm"  NetWkstaUser="soladm"

SncInit(): Trying environment variable SNC_LIB as a

      gssapi library name: "f:\usr\sap\saprouter\sapcrypto.dll".

  File "f:\usr\sap\saprouter\sapcrypto.dll" dynamically loaded as GSS-API v2 library.

  SECUDIR="F:\usr\sap\saprouter" (from $SECUDIR)

  The internal Adapter for the loaded GSS-API mechanism identifies as:

  Internal SNC-Adapter (Rev 1.1) to SAPCRYPTOLIB 5.x

  Product Version = SAPCRYPTOLIB  5.5.5C pl38  (Oct  7 2014) MT,[aesni],NB

main: pid = 4732, ppid = 0, port = 3299, parent port = 0 (0 = parent is not a saprouter)

reading routtab: 'f:\usr\sap\saprouter\saprouttab'

 

 

Fri Apr 24 18:19:50 2015

*** ERROR => NiBufIProcMsg: hdl 17 received rc=-104 (NIEROUT_SNC_FAILURE) from peer [nibuf.cpp    1984]

 

 

Fri Apr 24 18:20:15 2015

*** ERROR => NiBufIProcMsg: hdl 18 received rc=-104 (NIEROUT_SNC_FAILURE) from peer [nibuf.cpp    1984]

 

 

Fri Apr 24 18:20:37 2015

*** ERROR => NiBufIProcMsg: hdl 19 received rc=-104 (NIEROUT_SNC_FAILURE) from peer [nibuf.cpp    1984]

 

 

Fri Apr 24 18:21:19 2015

*** ERROR => NiBufIProcMsg: hdl 20 received rc=-104 (NIEROUT_SNC_FAILURE) from peer [nibuf.cpp    1984]

*** ERROR => NiBufIProcMsg: hdl 21 received rc=-104 (NIEROUT_SNC_FAILURE) from peer [nibuf.cpp    1984]

*** ERROR => NiBufIProcMsg: hdl 22 received rc=-104 (NIEROUT_SNC_FAILURE) from peer [nibuf.cpp    1984]

 

 

Fri Apr 24 18:35:06 2015

 

 

shutdown message received, good bye ...


how to identify the row to input field in table in BDC

$
0
0

Hi Friends,

 

I have a scenario to create customer master data upload, so i have decided for go for call transaction bdc. but the problem is in one of the tab it has a table which can have multiple records which has values displayed based on configuration maintained, but for one record we need to pass the value from our bdc, remaining all the line items are in disabled mode except for this particular record only one field will be ready for input value. and this line item can be in any order.

so how do i pass the value for this particular field in the table, which can change in its order of display(i.e it can 1st row or 2nd row etc...).

 

Please help me to build a logic for this.

 

Regards,

siva

sFIN 2.0 vs SFIN 1.0

$
0
0

Hi Gurus,

I know the sFIN 2.0 GA is  next monday,that is 03.30.2015.However i wonder ,if any one has information on what is the difference between them.

Rather   what are the features of sFIN 2.0 .

Any  insight is highly appreciated

 

Regards,

Kelly

Unable to load Excel in SAP Predictive tool

$
0
0

Hi Gurus,

Please help me to get the issue below resolved.I have a Valid License key and i am using SAP Predictive latest tool.

However when i try to do LOAD  a MODEL an Excel file in the MODELER ,I get error as below

I have system admin rights for the computer i am using and also i have a valid license

 

sap predicitve issue.png

field symbol not assigned

$
0
0

Hello All,

 

I am using a function module in which I have declared a field symbol. In some cases, that field symbol does not have values. So it is giving dump when field symbol is not assigned.
That field symbol is being used at many places in the function module. So everywhere I cannot check IF <field-symbol> IS ASSIGNED.
Is there any way to control the logic so that it would not give dump even if field symbol is not assigned?

Convert cross tab with 2 summarized fields to a chart

$
0
0

Greetings,

 

I have a simple cross tab containing a date row and 2 summarized fields. It looks like this (see Figure 1)

 

Fugure1.jpg

 

 

When I convert (insert) my cross tab into a stacked bar chart, I only get one of the summarized fields to show up on the chart. It looks like this (Figure 2)

 

Fugure2.jpg

Is there a way for me convert this cross tab into a stacked chart so that both of my summary fields appear?

 

Many Thanks!

Viewing all 8830 articles
Browse latest View live


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