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

Re: Authorization relavant field in attribute view

0
0

Hi Ravi,

 

If you are using BW 7.4, IMHO, you should use aDSO rather than Transient Provider as this is obsolete.

ProviderConsolidation.png

 

And yes, apart from Composite Provider, you can put aDSO (Advanced DSO) on top of Open ODS View for further processing/modelling on the data.


Re: Confused about Aggregation authorization (Colon authorization)

0
0

Dear Loed,

 

Thank you for your reply.

 

Regards,

 

Nuttapol

Re: MII Project Import in 15.1

0
0

Thanks Swaroop,

I will give a go with that but I have run into another problem which I need to fix first. MY SUM tool interrupted in between, may be I should post that in separate thread.

 

Cheers

Rupesh

Smart Business Tiles in custom Catalogs?

0
0

Hi All,

 

So users should generally not have access to the SAP:KPI's catalog since:

a) It's huge (impact to FLP performance)

b) They may not have access to many of the tiles

c) The catalog potentially does not align with your nomenclature of your other catalogs

 

And they way to give them access is effectively give them access to the underlying Fiori app for analysis through target mapping; and to add the tile directly to the "group" you'd like it to appear in.

 

That's all good; but here's the issue I see:

 

If the user deletes the tile from their main FLP page; they can still access the app via the search (if they know what to search for), but the tile does not appear anywhere in the tile catalog; and the only way to get it back is to reset the group it was assigned to.

 

Has anyone figured a way to at least make this accessible in it's own catalog (preferably in a local catalog, but I'm assuming that is definitely not possible)?  I've considered copying the SSB remote catalog ODATA service and using a filtered view; but that's a little extreme...

 

Thanks,

Matt

Re: function module for maintenance order creation

0
0

Hi Ashish,

 

TYPES: BEGIN OF ORDER,

   ORDER_TY TYPE AUFART,

   SHT_TXT  TYPE EQFNR,

   PRIO_ID  TYPE PRIOK,

   FUNC_LOC TYPE TPLNR,

   EQUIP_ID TYPE EQUNR,

   ASSEMBLY TYPE BAUTL,

   PLANG_P  TYPE IWERK,

   PLAN_GRP TYPE INGRP,

   WK_CTRPT TYPE ARBPL,

   WORK_CNR TYPE GEWRK,

   SYS_CND  TYPE ANLZU,

   PM_ACTTP TYPE ILA,

   B_STRDAT TYPE CO_GSTRP,

   B_FINDAT TYPE CO_GLTRP,

   REVISN   TYPE REVNI,

   END OF ORDER.

 

 

PARAMETERS : ORDER_TY  TYPE AUFART,

SHT_TXT          TYPE EQFNR,

PRIO_ID          TYPE PRIOK,

FUNC_LOC         TYPE TPLNR,

EQUIP_ID         TYPE EQUNR,

ASSEMBLY         TYPE BAUTL,

PLANG_P          TYPE IWERK,

PLAN_GRP         TYPE INGRP,

WK_CTRPT         TYPE ARBPL,

WORK_CNR         TYPE GEWRK,

SYS_CND          TYPE ANLZU,

PM_ACTTP         TYPE ILA,

B_STRDAT         TYPE CO_GSTRP,

B_FINDAT         TYPE CO_GLTRP,

REVISN           TYPE REVNI.

 

DATA: ORDER TYPE TABLE OF ORDER,

       WA_ORDER TYPE ORDER.

 

 

DATA: LT_METHODS  TYPE TABLE OF  BAPI_ALM_ORDER_METHOD,

         LT_HEADER  TYPE TABLE OF  BAPI_ALM_ORDER_HEADERS_I,

         LT_PARTNER_UP TYPE TABLE OF BAPI_ALM_ORDER_PARTN_MUL_UP,

         LT_CONFRMITEM TYPE TABLE OF  BAPI_ALM_TIMECONFIRMATION,

         LS_TEXT TYPE  BAPI_ALM_TEXT,

         LV_AUFPL TYPE CO_AUFPL,

         LV_APLZL TYPE CO_APLZL,

         LT_RETURN TYPE TABLE OF BAPIRET2,

         LS_RETURN TYPE BAPIRET2.

 

DATA: LV_OBJKEY  TYPE OBJIDEXT VALUE '%00000000001',     " Temp key value , Imp

LV_ORD_REF TYPE IFREFNUM VALUE 1 .

DATA LS_METHOD TYPE BAPI_ALM_ORDER_METHOD.

 

FIELD-SYMBOLS<LT_METHODS>        TYPE BAPI_ALM_ORDER_METHOD,

                 <LT_HEADER>          TYPE BAPI_ALM_ORDER_HEADERS_I.

 

 

LOOP AT ORDER INTO WA_ORDER. " Order header "

 

   APPEND INITIAL LINE TO LT_HEADER ASSIGNING <LT_HEADER>.

 

 

 

   <LT_HEADER>-ORDERID = '%00000000001'.

   <LT_HEADER>-ORDER_TYPE = WA_ORDER-ORDER_TY.

   <LT_HEADER>-SHORT_TEXT = WA_ORDER-SHT_TXT.

   <LT_HEADER>-PRIORITY = WA_ORDER-PRIO_ID.

   <LT_HEADER>-FUNCT_LOC = WA_ORDER-FUNC_LOC.

   <LT_HEADER>-EQUIPMENT = WA_ORDER-EQUIP_ID.

   <LT_HEADER>-ASSEMBLY = WA_ORDER-ASSEMBLY.

   <LT_HEADER>-PLANPLANT = WA_ORDER-PLANG_P.

   <LT_HEADER>-PLANGROUP = WA_ORDER-PLAN_GRP.

   <LT_HEADER>-PLANT = WA_ORDER-WK_CTRPT.

   <LT_HEADER>-MN_WK_CTR = WA_ORDER-WORK_CNR.

   <LT_HEADER>-SYSTCOND = WA_ORDER-SYS_CND.

   <LT_HEADER>-PMACTTYPE = WA_ORDER-PM_ACTTP.

   <LT_HEADER>-START_DATE = WA_ORDER-B_STRDAT.

   <LT_HEADER>-FINISH_DATE = WA_ORDER-B_FINDAT.

   <LT_HEADER>-REVISION = WA_ORDER-REVISN.

 

   LS_METHOD-REFNUMBER  = '1'.

   LS_METHOD-OBJECTTYPE = 'HEADER'.

   LS_METHOD-METHOD     = 'CREATE'.

   LS_METHOD-OBJECTKEY  = '%00000000001'.

   APPEND LS_METHOD TO LT_METHODS.

   CLEAR LS_METHOD.

 

ENDLOOP.

 

LS_METHOD-REFNUMBER  = ''.

LS_METHOD-OBJECTTYPE = ''.

LS_METHOD-METHOD     = 'SAVE'.

LS_METHOD-OBJECTKEY  = '%00000000001'.

APPEND LS_METHOD TO LT_METHODS.

CLEAR LS_METHOD.

 

LS_METHOD-REFNUMBER  = '1'.

LS_METHOD-OBJECTTYPE = 'HEADER'.

LS_METHOD-METHOD     = 'RELEASE'.

LS_METHOD-OBJECTKEY  = '%00000000001'.

APPEND LS_METHOD TO LT_METHODS.

CLEAR LS_METHOD.

 

CALL FUNCTION 'BAPI_ALM_ORDER_MAINTAIN'

   TABLES

     IT_METHODS = LT_METHODS

     IT_HEADER  = LT_HEADER

     RETURN     = LT_RETURN.

 

*  READ TABLE lt_return TRANSPORTING NO FIELDS WITH  KEY type = gc_error.

*  IF sy-subrc NE 0.

*

*    IF NOT lv_notif_check IS INITIAL.                           " Order created for notification

*

*      READ TABLE lt_return  INTO ls_return TRANSPORTING message_v2  WITH KEY type = 'S'  number = '126'.

*      lv_order_no = ls_return-message_v2.

*

*    ELSE.                                                       " Standalone order created

*

*      READ TABLE lt_return  INTO ls_return TRANSPORTING message_v2  WITH KEY type = 'S'  number = '112'.

*      lv_order_no = ls_return-message_v2.

*

*    ENDIF.

*

*    alpha_in lv_order_no.

 

CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'

   EXPORTING

     WAIT = 'X'.


I execete above code in report.


Regards,

Mahesh

Re: How do you have multiple parameters for a dimension set?

0
0

Can you elaborate on the requirement a little more? It is not clear, at least to me, as to what you are trying to achieve.

 

Would be great if you could attach a screenshot or provide a snapshot of the data.

 

Thanks.

Re: Partitioning from ABAP level

0
0

Hi Phani,

 

Thanks, however, it seems that for some PSA tables, the records are not evenly distributed.
Mostly went to one particular partition.  Normal behaviour?    

 

 

Thanks.

Re: Peso liquido e Bruto

0
0

Olá Andrew, esta opção que o Augustus destacou já usei em alguns projetos.

 

O detalhe é que a execução da consulta de usuário na aba Imposto era através de uma atualização do documento (ou seja, executado após o documento ser adicionado, realizando uma atualização do documento), pois não é possível rodar uma consulta de usuário que percorra a grid antes da adição do documento.

 

Uma segunda opção é a criação de uma função por addon, onde o addon lê a informação da Grid e atualiza automaticamente o campo peso bruto, antes de adicionar o documento.

 

Vamos ver o feedback do Augustus.

 

Abraços,

Rodrigo da Costa Feula


Re: SAP B1 9.1 PL12

0
0

Julian gracias por su respuesta. Pero como obtengo la version de Copy Express para el 9.2 Pl12? Este ya no viene en los instaladores de la 9.1.

 

Quedo atenta, muchas gracias

BRFplus Decision table structure change issue

0
0

Hi Experts,

 

Recently I faced issue related BRFplus decision table structure change. We added two new fields in decision in development system and created transport request. When we moved this transport request to the Quality system , it also overwritten the contents in the decision table in Quality with the contents from dev. system.

 

Ideally only two new columns changes to decision table should have been moved to Quality system after transport import, but it also carried the decision table data from DEV box.

 

How can we only capture the decision table structure changes in transport request and not the contents? Otherwise everytime we need align decision table data in Dev. box as per quality or prod system decision table contents then make add required fields and then capture it in Transport request but this is not feasible option.

 

Thanks,

Sanjana

Mac OS

0
0

Dear All,

 

Now considerng to install 3D Visual Enterprise Author on Mac (Mac Book Pro) with Windows BootCamp.

Any idea whether is thisl work or not?

 

Please advise if anyone who has this experience.

 

Best regards

 

Shingo

Information Needed on Rich Text Column Behavior

0
0

I am trying to take a notes application which was using a 32k varchar column and move the support of this from plain text via a mle to a rich text column.

 

It seems to work redefining the column as a Rich text column - but data entered and retrieved pops back up with the header owidctlpar

 

The documentation seems to be confusing between rich text edit controls, rich text datawindow style and rich text column behavior.

 

Is there anywhere where the requirements and behavior of the rich text column are discussed.

 

BTW this is PB 12.6 and will be implemented in 64 bit with SQL Anywhere

Re: Lumira for Teams vs. Lumira for BI Platform

0
0

Lumira connectivity matrix wiki page is greatly helpful! Many thanks, Tammy and Matt!

Re: Tables or Table histories - Solman alert

Re: Attempting to join two queries!

0
0

Hi Richard,

 

I just tested it on a customer site & it seems to be working for that site. What are the doc types for the two documents returned, and what open lines are on them for each item?

 

Try this that adds ObjTYpe to the query:

SELECT S0.ItemCode,MIN(S0.ShipDate)[Next Due In], S0.DocEntry, S0.ObjType, S0.Quantity

 

 

FROM

( SELECT T0.ItemCode, T0.ShipDate, T0.DocEntry, T0.ObjType, T0.Quantity  FROM POR1 T0

WHERE T0.[LineStatus] = 'O'

--and T0.ItemCode =$[$5.0.0]

 

 

and T0.ShipDate = (select min(T1.ShipDate) FROM POR1 T1 where T0.ItemCode = T1.ItemCode and T1.[LineStatus] = 'O' )

 

 

UNION ALL

SELECT T1.ItemCode, T1.ShipDate, T1.DocEntry, T1.ObjType, T1.Quantity  FROM PCH1 T1

WHERE T1.[LineStatus] = 'O'

--and T1.ItemCode = $[$5.0.0]

AND T1.BaseType = 22

 

 

and T1.ShipDate = (select min(T2.ShipDate) FROM PCH1 T2 where T1.ItemCode = T2.ItemCode and T2.[LineStatus] = 'O' ))S0

GROUP BY S0.ItemCode,S0.DocEntry, S0.ObjType, S0.Quantity


Process Integration (PI) using Software Update Manager(SUM) update problem

0
0

Hi Experts,

     I want to update pi software component SP-Level using Software Update Manager(SUM).But it has been running several days in PREP_EXTRACT/PREIMP phase.The state of the image below.When I chose stack.xml file, it was like this. The stack.xml file see annex.

     BEE02D42-8D0E-4EC7-A429-1BE1F836AE7B.png

           F608D693-0F91-495E-A406-FBC654301C38.png

               Is there anyone who can solve my problem? Thank u very much.


Re: update dropdown box after Ajax call

0
0

oModel.refresh(true)


check if it helps.

Re: SAP LT replication server advanced settings document

0
0

Hi Vishnu,

 

SLT SP10 guides are available in the below help.sap.com link

 

SAP Landscape Transformation Replication Server 2.0 SP10 – SAP Help Portal Page

 

As per the Application Operations guide, "For more information about these advanced replication settings, see the documentation that is accessible from the UI of transaction LTRS."

 

Click on Application Help Icon (2nd Icon with i symbol) in LTRS, you can find all the details about the Advanced Replication Settings.

Re: Receive 500 error when integrating PI 7.1 and Biztalk 2013

0
0

Hi Mary,

 

I am currently using both MS BizTalk 2013 and SAP Business Connector 4.8 to process IDOCs from ECC6. 

Business Connector listens for IDOCS from ECC then sends them as xml to website Hwsmessages/BTSHTTPReceive.dll on the BizTalk server.

Can you paste here the HTTP Header(s) and HTTP Body for a successful request going to the Biztalk server? We need a log that looks like this:

error.png

Once you have provided it, we will be able to advise you.

 

 

Regards,

Mark

Re: Attempting to join two queries!

0
0

Hi Julie,

 

Taking AP4003 for example.

 

This is pulling up two dates 1/8/12 - which relates to a PO that we created an A/P reserve invoice off.

But - this document and lines are closed - so unsure why it is showing up?

 

The next date is an open PO of 3/6/16.

 

Regards

Rick

Viewing all 8713 articles
Browse latest View live




Latest Images