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

Re: Ques : Nakisa OC OU Listing

$
0
0

Hi Stephen,

 

1. Did you mean I should create parameter first on OrgUnit_SearchDataElement?

 

2. I use live analytic, by the way, Should I configured HR OCI for analytic? Is there any procedure of configuration, for activate the analytic function?

 

Thanks


Re: Query date range modification

$
0
0

Hi Samique,

 

Do this:

 

1. Create a variable for FISCPER with options SINGLE and processing by as MANUAL INPUT, lets's call it ZFISC_MANUAL

 

2. Create another variable for FISCPER with options INTERVAL and processing by as CUSTOMER EXIT, let's call it ZFISC_RANGE

 

3. Go to CMOD and enter this code

 

DATA: year type c length 4,

          temp_fisc_start type c length 7,

temp_fisc_end type c length 7.

 

WHEN 'ZFISC_RANGE'.

     if i_step = 2.

       LOOP AT I_T_VAR_RANGE INTO FISC_VAR_RANGE
             WHERE VNAM = 'ZFISC_MANUAL'.  


        year = FISC_VAR_RANGE-LOW(4) - 1.


        concatenate year '001' into temp_fisc_start.

         

       temp_fisc_end = FISC_VAR_RANGE-LOW.

         L_S_RANGE-LOW      = temp_fisc_start.

         L_S_RANGE-HIGH      = temp_fisc_end.
         L_S_RANGE-SIGN        = 'I'.
         L_S_RANGE-OPT         = 'BT'.
         APPEND L_S_RANGE TO E_T_RANGE.
         EXIT.
       ENDLOOP.
     endif.

 

Just post here for any questions..

 

Regards,

Loed

Re: Update UDF in a Document

$
0
0

Dear Edy,

 

I have tested your solution but it gave error as seen in  the print screen belows:

 

erro1.jpg

 

I made some changes in code

 

Dim oRec As SAPbobsCOM.Recordset = CType(oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset), SAPbobsCOM.Recordset)

Dim sSQL as string = "exec GetValueResourceAct """ + ItemCode + """,""" + ProductionOrderDocNum + """"

Ssql = String.Format(SSql, ItemCode, ProductionOrderDocNum)

oRec.DoQuery(sSQL)

Dim Resource As String = oRec.Fields.Item("Resource").Value

If sSQL.ToString <> 0 Then

'not found

oUDFForm.Fill("U_ACTUALCAP")

 

 

But it is failed and throwing an error message like the print screen. Pls kindly solve the problem.

 

 

Rgds,

Steve

Scheduling an XS-Job won't save

$
0
0

Hi experts,

 

I want to enable an xsjob in the HANA XS Administration tool. My user has the JobAdministrator role.

 

I input the user "SYSTEM" and ticket the Active checkbox.

 

Unfortunately these settings are not saved. The AJAX Call to servername:8000/sap/hana/xs/admin/logic/updateJob.xscfunc returns the following

 

{"success":false,"message":"Job password not found"}

 

There is no Password box  where I can enter anything and the package's .xsaccess has   "authentication": null set.

 

 

What do you suggest?

 

 

kind regards

Jan

Re: Goods receipt not happening in EWM

$
0
0

Hi Milind,

 

Can you share you PPF tab of the inbound delivery, the SLG1 log you have attached seems the one when your inbound delivery got created in EWM, thus PPF to trigger GR is not fulfilled,

 

Vic

Re: BPC in CUA environment

$
0
0

if you don't get an answer then maybe its a good idea to open a new thread.

Re: ISSUE IN CREATING PCR FOR PF NEPAL

$
0
0

That is a different query, and probably related to the WT configuration.

Re: How to re-trigger BA00 after sales order has been rescheduled

$
0
0

Hi, Anbuselvan,

 

Thanks for the reply.

 

The requirement is to trigger the order confirmation automatically. And I did some research, I found this requirement could be fulfilled by configuring the change program in transaction NACE. In V1-> BA00 -> Change output.

 

All the best.


How to detect if the "DB profile" window poped-up or not?

$
0
0

Hello,

 

I'm writing a script for "CJI3" - this is similar to other Tcodes as well-.

 

1- If the code is not used in this session and the DB profile is not selected I'll have a pop-up asking to choose the DB profile.

2- Otherwise, I'll get the Tcode window entry.

 

In the recordeed script the following line will be added only if the DB profile Pop-up window appears.

 

session.findById("wnd[1]/usr/ctxtTCNT-PROF_DB").text = "z1000"

 

How to limit this line execution to cases (1) above?

Re: Game of War - Fire Age

$
0
0

I am not a fan of games where it is not possible to get beyond a certain point without paying real money to "buy" armor, skills, weapons, whatever advantages, and where basically who has the most money to burn wins. I don't play a lot of games -- I used to, but just don't have time for it anymore -- but the online games I preferred were the ones where everyone paid the same, say a flat monthly rate, and you could not otherwise spend real money in-game. You had to earn everything the old-fashioned way. The hard way. And if you're caught buying from "gold farmers", you're banned. That's the way to run a game. Granted, the in-game purchase method makes the developers lots and lots of money, so as a marketing/money-making tool, it's hard to argue with, but I'll wager that Blizzard makes plenty of money with World of Warcraft, too. They do seem to know what they're doing.

Post Journal got error

$
0
0

Hi,

 

I tried to post journal into the system use Web, but it give me the error: Failed to assign Field-Symbol;table/dimension does not exist, any advise? Thanks.

Re: And if the SCN communities were like the Game of Thrones houses

Re: Save SAP-generated pdf to filesystem

$
0
0

Hello Stefan,

 

Can you share how you access the SAP from excel?

Re: TAD Item category

$
0
0

So As I understand, if the Item category is determined in SAP as TAD,then the plant is not determined even though I have the CMIR maintained with a delivery plant

Re: update Infotype with no authorization

$
0
0

Program uses below code to update IT0003, does it mean it's lack of authorization check?



if SY-SUBRC EQ 0 AND l_MD_flag = '' AND l_PDC_flag =''.
*  for record change log
       perform update(rpupdctl) tables old_p0003 p0003
                              using  'X'
                                     'X'
                                     'X'.
*  for record change log
     W_OK = W_OK + 1.
     IF P_KOABR EQ 'X'.                      "NMH0448731
       IF D_KOABR EQ 'X'.                    "NMH0448731
         PERFORM SET_MCW.                    "NMH0448731
       ELSE.                                 "NMH0448731
         PERFORM RESET_MCW.                  "NMH0448731
       ENDIF.                                "NMH0448731
     ENDIF.                                  "NMH0448731
ELSE.
     IF l_MD_flag = 'X'.
       PERFORM SAVE_ERROR_LOG USING PERNR-PERNR TEXT-L04.
     ELSEIF l_PDC_flag ='X'.
       PERFORM SAVE_ERROR_LOG USING PERNR-PERNR TEXT-L05.
     ELSE.
     PERFORM SAVE_ERROR_LOG USING PERNR-PERNR TEXT-L02.
     ENDIF.
ENDIF.


Re: Differences in Depreciation calculation as per new act 2013

Re: Creating a jdbc connection to HANA with Powerdesigner 16.5 SP04 (64bits)

$
0
0

Hi Stephane,

 

Have you installed Java in your machine? and you should make sure your JAVA_HOME is workable.

 

Best regrad,

Lucy

Re: Netweaver 7.4 SR2 Install Stop Error - startJava was executed with status ERROR (err code: FCO-00011)

$
0
0

If I'm remembering my SAPMMC icons correctly, then your SCS instance number would be 01 from that picture.

HUPAST packing station

$
0
0

Hi

 

I am confuse on setting up HUPAST profile and not sure how to use HUPAST.

 

1 - May I know if you can direct me in which website have a user training document on using HUPAST with picture screen shot?

2 - how to setup the HUPAST profile?

 

you can please send the document to my mail? aiyosap AT googlemail  DOT com

 

thanks

Yong

Re: Manager unable to Approve Leave Request

$
0
0

Hi Sriram,

 

Please also share the launchpad tile and mapping definition for Approve Leave Request.

When the ResolveLink could not get the tile and mapping definition, the error comes.

 

Regards,

Masa / SAP Technology RIG

Viewing all 8798 articles
Browse latest View live




Latest Images