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

Re: Caching in SAP API MANAGEMENT HCP Trial!

$
0
0

Sravya, can you give us some details on what you are using to trigger your cache? When misconfigured it will definitely cause a Cache miss. I used code similar to Holger's above (though not the same) on a test proxy, here was the result:

 

cache_hit.png

 

You can see the first result took 5.29 seconds due to its large size, while the second request, a successful cache hit, only took 183ms.


Re: Como trocar relatório padrão de pedido de compras para um customizado recém importado

Re: Alteração arquivo remessa para banco

$
0
0

Amigo, preciso verifica melhor pois ainda não consegui, realizar a inserção da mensagem.

Re: SAP Career Dilemma

$
0
0

Hi

I completely agree with TW. 98% of expertise of SAP comes by on job experience. However, I suggest SAP Certification ideally to get an entry into SAP world. I am not discouraging you, but MS may not make any additional difference to you.

As far as modules are concerned Order to Cash (SD) and Accounting to Reporting (FI) are going to be ever green and modules which are in demand. However, wait for release of S/4 HANA Simple Finance.

Re: Query related S/4 HANA

$
0
0

Hi Winston

I suggest you to switch to SAP S/4 HANA Simple Finance which has very hot market as of now. As you are from ABAP/BI background another area which may be suitable to you is Analytics which is gaining tremendous importance after SAP switching for HANA Db.

FM HR_INFOTYPE_OPERATION to create 0185---- A complex application error has occurred

$
0
0

Dear Friends,

 

   When i used FM Infotype 0185 FM HR_INFOTYPE_OPERATION to create 0185, A SYSTEM ERROR COME:A complex application error has occurred.when i uesed below codes and let GV_DIALOG_MODE  = '2' ,the problem not come.what prolbem?

 

*  COP  复制

*DEL  删除

*DIS  显示

*EDQ  加锁/解锁

*INS  创建

*LIS9  定界

*MOD  更改

*INSS  对活动的创建未转动更改

 

   DATA LV_OPERATION TYPE PSPAR-ACTIO VALUE 'INS'.

   DATA LV_NOCOMMIT TYPE BAPI_STAND-NO_COMMIT VALUE ABAP_TRUE.

   DATA LV_LOCKINDICATOR TYPE P0001-SPRPS VALUE ABAP_FALSE.

   DATA LV_KEY TYPE BAPIPAKEY.

   DATA LV_SUBTYPE TYPE P0001-SUBTY.

   DATA LW_P0185 TYPE P0185.

 

 

 

***************init

   CHECK P_OUT-TYPE <> G_ERROR .

 

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

   IF P_OUT-ICTYP  IS NOT INITIAL.

     LW_P0185-PERNR = P_OUT-PERNR.

     LW_P0185-BEGDA = P_OUT-ONBDATE.

     LW_P0185-ENDDA = '99991231'.

     LV_SUBTYPE     = P_OUT-ICTYP.

*    LW_P0185-SUBTY = LV_SUBTYPE.

     LW_P0185-ICTYP = P_OUT-ICTYP.

     LW_P0185-ICNUM = P_OUT-ICNUM."证件号码

*    LW_P0185-ISSPL = P_OUT-ISSPL."证件签发地  "复杂的应用程序错误

     LW_P0185-USEFR = P_OUT-USEFR."证件有效开始日期

     LW_P0185-USETO = P_OUT-USETO."证件有效截止日期

*    LW_P0185-ASTAT = '2'.

     BREAK 54478.

     CALL FUNCTION 'HR_INFOTYPE_OPERATION'

       EXPORTING

         INFTY            = '0185'

         NUMBER           = LW_P0185-PERNR

         SUBTYPE          = LV_SUBTYPE

*       OBJECTID         =

         LOCKINDICATOR    = LV_LOCKINDICATOR

*       VALIDITYEND      =

*       VALIDITYBEGIN    =

*       RECORDNUMBER     =

         RECORD           = LW_P0185

         OPERATION        = LV_OPERATION

*       TCLAS            = 'A'

         DIALOG_MODE      = GV_DIALOG_MODE

         NOCOMMIT         = LV_NOCOMMIT

*       VIEW_IDENTIFIER  =

*       SECONDARY_RECORD =

       IMPORTING

         RETURN           = P_RETURN

         KEY              = LV_KEY.

     IF P_RETURN-TYPE  = 'E'.

       P_OUT-TYPE =   P_RETURN-TYPE .

       P_OUT-MESSAGE  = P_RETURN-MESSAGE .

       PERFORM ADD_MESSAGE  USING P_OUT.

       EXIT.

     ENDIF.

 

   ENDIF.

 

Thanks

Ravi

Re: Is it possible to show dates on mobile reports?

$
0
0

Hi Juan Mena,


You could use a free cell with the last run formula on your report. This would work on Tablet devices as per layout design. This would work for Webi reports.

Please refer http://scn.sap.com/community/mobile/businessobjects/blog/2014/11/15/guidelines-for-designing-webi-reports-for-sap-businessobjects-mobile


Note:- If you are using it on a iPhone you will need to attach a free cell to a report part. Please Refer to Report Designer Guide of how to attach a free cell to Report Part. http://help.sap.com/businessobject/product_guides/boexir4/en/631_mobiOS_Repdesigner_en.pdf


Regards

Vikas

SELECT when one column might be NULL

$
0
0

Hi,

 

Inside of a stored procedure I'm doing the following

 

SELECT T.LineId,T.Qty

FROM TransactionRows AS T

WHERE T.ArticleId = @ArticleId AND T.LotNumber = @LotNumber;

 

 

@ArticleId contains the "article number" that I want to select, and @LotNumber contains the "lot number".

 

 

The problem is that @LotNumber might be an actual value, OR IT MIGHT BE NULL.

 

If @LotNumber is NULL, the SELECT above FAILS.   However, if it is NOT NULL, it doesn't fail.

 

After many years working with databases I hadn't realized this until now ....

 

 

To get the correct row(s), if @LotNumber is null, I would have to write:

 

SELECT T.LineId,T.Qty

FROM TransactionRows AS T

WHERE T.ArticleId = @ArticleId AND T.LotNumber IS NULL

 

 

The complete statement would be:

 

IF @LotNumber IS NULL THEN

  SELECT T.LineId,T.Qty

  FROM TransactionRows AS T

  WHERE T.ArticleId = @ArticleId AND T.LotNumber IS NULL;

ELSE

  SELECT T.LineId,T.Qty

  FROM TransactionRows AS T

  WHERE T.ArticleId = @ArticleId AND T.LotNumber = @LotNumber;

END IF;

 

 

Is there a more elegant way of doing this?

 

Thanks,

Edgard


Re: Copying user Interface design of configuration profile

$
0
0

Hi Deepak,

 

As far as I know, I am not aware of any standard function that can help reaching directly your aim.

 

However, there are a couple of BAPI's that can be used in a custom program, and with them I do believe it should be possible to satisfy your request.

 

They are:

 

BAPI_UI_GETDETAIL

that loads detail information for Interface Design

 

BAPI_UI_SAVEM

that creates (or changes) Interface Design

 

(please also have a look at CUDUI function group for other).

 

Basically, the custom program should first read the existing ID details with the first BAPI, make the needed changes (ID name and whatever) and finally create the new ID with the second BAPI.

 

 

Alternatively, there could also be the possibility to create an IDoc from the existing ID, make the needed changes (ID name, etc), and import it afterwards.

 

 

I do hope this could be of some help.

 

Thanks and regards,

 

Flavio

Re: I have completed SAP fico and looking for SAP fico jobs.

$
0
0

Hi Ajay,

 

Thank you for your reply. The Institute I have done SAP from is no longer providing the course and they are not of any help. I am doing my learning promptly.

 

 

Regards

Savitha

Re: CTI - Live Activity Pane does not work

$
0
0

Hi Marlos,

 

I have resolved the issue with some backend correction as per your incident request. Could you please recheck the issue.

 

Regards,
Sandeep

Re: DTP stuck in yellow with message "0 data packages with a total of 0 records transferred successfully"

$
0
0

Hello All,

 

This issue has been resolved after building secondary indexes on DSO for sales document.

 

Reg,

 

Guru.

Slow Processes SAP B1 PL11

Re: MIGO - Error during document number assignment

$
0
0

If you want to see document tyoe assignment, check OMBA transaction.

Solman System confiugration

$
0
0

Dear Experts,

 

We have just completed the installation of solution manger 7.1 and upgraded the SP level from SP09 to SP14.

Solman Rel: 7.1 SP14

 

We are in the process of basic configuration steps. [SOL would be SLD]

 

System preparation=> 6.1 Select SLD => SLD landscape description

We are receiving an error message like

Solman_error.png

please help me to resolve this issue

 

Thanks
Senthil


Agentry - Label edit type doesn't use style correctly

$
0
0

I've had many problems with the Label edit type on detail screens on iOS platforms.  It seems the label randomly chooses not to use the color component of the applied style.  Currently, I have a label being used as a hyperlink.  I have a field level style applied.  When I have its Hidden rule set to "Always Visible" then the style is applied correctly.  However if I actually use a Hidden rule, when the Label becomes visible it doesn't use the color component of the style.  I don't have any styles applied at any other levels such as at screen, platform or application levels.  Has anyone seen this behavior and know what the workaround is?

 

I'm using Agentry client 7.11.0.68 on an iPhone 6.

 

Thanks

Tim

Manually Changing Planning Method In Planning Board

$
0
0

Hi Experts,

 

I have set a particular project profile planning method to open planning for both both basic and forecast. In addition, I have set scheduling scenario to free scheduling. Per other threads and available SAP guidance this can be changed at a project level from the project planning board by selecting options and scheduling tab. However, when I go to there, the fields are not available to do so. I am operating on ECC 6.0 / EHP 7. Can someone advise if this ability has been moved or taken away or if it's visibility is controlled by some additional configuration or through an OSS note?

 

Thank you,

Kevin

MIGO update value for FI Document

$
0
0

Hi Experts,

 

I have a requirement to update BSIS-ZUONR and BSIS-XREF3 when doing Goods Issue in MIGO(FI Document).

Is there a BADI or user exits that can update the value of those fields?

BSIS-ZUONR should be euqals to customer name.

BSIS-XREF3 should be the FI document number.

Re: S/4 HANA 1511 Enterprice Services

$
0
0

Hi Himadri,

 

Any luck with your querry? I have an old link for Enterprise services browser but could not find a similar one for the latest S4 release.

 

Regards,

Siddhesh

Re: Input Parameter that is 'Derived from Procedure' does not return anything

Viewing all 8851 articles
Browse latest View live




Latest Images