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

Re: Macro to Sum up Month's History to 1st Bucket of the Month

$
0
0

Hi JB,

 

I do not know what SCM calendar is and how and where does it say week belongs to month m1 or m2

 

If you have multiple periodicity used for storage buckets, then the 1st week BUCKET OF the month can have variable number of days from 1 to 7 days and the month itself can have variable number of week buckets from 4 to 6. In such a situation iterations may not work correctly all the time, if you are copying the entire month's value to the 1st week bucket, the only way to do it is in a storage bucket view wherein you can put the sum total of all the buckets in the calendar month to the first bucket of the calendar month. 

 

If this is the case then, you need to define layout variables for what month and what # week, and then in next step so the arithmetic based on the value of the variables. I think this will be a macro of moderate complexity.


I am no expert on macros or SAP in general but hope this gives some clues

 

Thanks

BS


 


Re: Internal Table to xls Attachment cl bcs?

$
0
0

Every line except first one is starting with tab character. This needs to be taken care of.

Basically, for first field of every line, you need to ensure that only value is concatenated, not the tab character.

Try changing the IF block after ASSIGN statement to this.

  1. ASSIGNCOMPONENT sy-indexOFSTRUCTURE ls_kdmat TO<lv_field>.
  2. IF sy-subrc EQ0.
  3.   IF lv_string ISINITIAL.
  4.     WRITE<lv_field> TO lv_string_field.
  5.     lv_string = lv_string_field.
  6. *  ELSE.
  7.   ELSEIF sy-indexEQ1.
  8.     WRITE<lv_field> TO lv_string_field.
  9.     CONCATENATE lv_string lv_string_field INTO lv_string.
  10.   ELSE.
  11.     WRITE<lv_field> TO lv_string_field.
  12.     CONCATENATE lv_string gc_tab lv_string_field INTO lv_string.
  13.   ENDIF.
  14. ELSE.
  15.   CONCATENATE lv_string gc_crlf INTO lv_string.
  16.   EXIT.
  17. ENDIF.

/.

Re: BW 7.4 SP5 Supports BI 3.x Data Flow?

$
0
0

Hi Martian,

 

 

Thanks a lot for your quick reply. Really
appreciate it.

 

 

I saw the note you had given
"1940927", it says that 7.4 supports 3.x data flows, but it doesn't
talk about whether 7.4(SP5) supports or not.

 

 

Thanks in Advance

 

 

Thanks

Re: How to configure NWBC

$
0
0

Hi Julie

 

Thanks for your reply. I have already gone through SAP Help but I could not understand where I am lost.

 

Regards

Sasidhar Gupta

Re: PSA blocking users

$
0
0

I see in WH parameters, block is set with option C. That is the issue, as per the note it should have been B. Good!!

Re: how to make select option only have one input in webdynpro?

$
0
0

Hi Revn Zhao,

 

To make work select options as parameters in Web Dynpro.

 

 

select.PNG

 

In the method ADD_SELECTION_SCREEN( ) , set the parameter I_NO_INTERVALS as abap_true.

 

This will solve your issue.

 

Thanks & Regards,

Sankar Gelivi

Re: BW 7.4 SP5 Supports BI 3.x Data Flow?

$
0
0

please search for latest note for the same doubt. if note exist at market place you may find.

other wise take SAP assistance for the same.

 

7.3 Gui will enough to work on bw 7.4.

 

Thanks

Re: Mutli source based universe and webi report sql based on that


Re: BW 7.4 SP5 Supports BI 3.x Data Flow?

$
0
0

The note given say about version 7.4 in general. Based on this also SP05 must support 3.x flows. Otherwise there would be statement claiming it differently which is not the case.

 

SAP will remove support for 3.x flows in future versions of BW - that's or sure. However it is not the case of 7.4 version.

 

thanks,

m./

How to add new marketing attribute to the existing marketing attribute set?

$
0
0

Hi all,

              I searched for existing forums but I didn't find the required one. I found some using Tcodes ,which is not my requirement. My requirement is to add new marketing attribute to the already existing marketing attribute set. This  attribute set is created by my team lead with 4 attributes but now i have to add new attribute to this set so total will become 5 attributes for this attribute set. This has to be done through marketing professional business role. If this is not done through marketing attribute set, then I will go for the transaction where I can add marketing attribute for attribute set.

 

Please send the details of both marketing professional business role and transaction code.

 

Your help is highly appreciated.

 

Thanks,

Baasanthi.

Re: UNABLE TO LOAD NON NUMERIC DATA IN CUBE

$
0
0

Hi Kiran,

 

Welcome to SCN.

 

Please never use capital letters to write header lines or issue description while opening thread.

 

Thanks

Re: PI to update status of Outbound IDoc in SAP-ECC based on various criteria

$
0
0

Hi Vertika,

 

Please update the resolution

 

I am facing the same issue

in Sending back the translation status (Mapping status)


Success or Failure for Translation (S = status 10 F = status 5) andFile transfer (S = status 12 F = status 11).


Thanks and Regards,

Pooja

Re: SAPUI5 get URL parameters

Fiori Approve PO app - issue

$
0
0

Experts,

I'm customizing the Fiori App "Approve PO". I'm facing a problem wherein I'm not able to place any custom button on the footer bar. I'm doing the change as per a guide that describes the structure of Fiori apps. I'm doing the change in the "MasterFooterBar" view but for some reason no change of mine is getting reflected in the app.

 

Can any of you mention the exact file and location I need to edit to get my change in the footer bar for the Approve PO application?

Re: GR/IR amount posting partially to Material in MIRO

$
0
0

Hi Cherian,

 

Are you able to resole this issue? If so could you pls share how you did? We are facing same issue with stock items and non stock items. We have so many unlearned items in our Gr/IR accounts and need clear them and as well need find out the route cause for this incorrect posting at MIRO.

 

Thank in advance, your hep will be appreciated.

 

Thanks

 

Sanjay

bm2sanju@gmail.com


Method Transport_To_Model, Transport_From_Model Not Triggering

$
0
0

Hi All,

 

     I am creating one enhancement using BADI ME_GUI_PO_CUST. I implemented this BADI using methods Subscribe, Map_Dynpro_Fields, Transport_From_Model, Transport_To_Dynp,Transport_From_Dynp and Transport_To_Model. While debugging the program is not processing the following methods: Transport_From_Model, Transport_To_Dynp,Transport_From_Dynp and Transport_To_Model. While running transaction ME22N i am getting the fields but without any values also when i tried to save those values unable to do so. I think something is missing in the program.

 

 

I searched all the forums and applied all the solutions but still not getting the desired result.

 

Kindly help me on the same.

 

Thanks

Hitesh

SMP3 - AppDevelopment (native):

$
0
0

Hi, I have a question on SMP3 and AppDevelopment (native):

I need the tutorial and sample of native ios application on SMP 3.0. I am going use the standard SAP Netweaver Gateway and OData. Does anybody have it?

I have found only samples for cloud and special tools. I need the sample for standard SMP 3.0 server.

Thanks in advance.   

NEW USER OF SAP ISU BILLING / CASH COLLECTION

$
0
0

Of late, the organisation I am attached to, has implemented SAP ISU (SAP GUI 7.10) Easy Access software, This is mainly used in billing & cash collection (electricity) like day to day activities. Being the organization a public sector, it has many offices that are being operated by this software. I know that the version is too old & there is hardly any support for this version. We find some T_Codes to perform different tasks. But the software provides us many extensive details (such as terms, activities, reports etc). Is there any procedure to know the software in details (such as manuals, help books etc)?

Re: DYNPRO_SEND_IN_BACKGROUND SAPLSPO1 or LSPO1U06 POPUP_TO_CONFIRM

$
0
0

Hello Madan,

 

From your ST22 dump file it is clearly visible that the background job was scheduled by user EWMONECC.

 

It might be problem with the authorization. Might be you can check by scheduling the same job with the other user id.

 

Also refer to the below link for reference.

 

https://scn.sap.com/thread/3465159

 

Regards,

Thanga

Re: Excel data source for webi

$
0
0

Hi Imran,

 

Even if you are updating your excel file frequently...this approach works fine. All you need to do is update the excel and run the report.

 

If you are adding any new columns to the excel, you have to update your universe as well.

 

Regards,

Siva

Viewing all 8798 articles
Browse latest View live




Latest Images