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

Re: Error when assigning application structure Message no. RSDS016

$
0
0

Hi Jerald, Can you tell the steps you followed to resolve this. We are having the same problem.


Re: DPR_DX_PROJECT - not updated

$
0
0

Hi Naveen,

In column "parent" of tab "structure", this value is the object up the project hierarchy from the current object, i.e.;

- parent of project header is project header

- parent of first level element is project header (e.g. parent of a phase or task directly under the header is the header)

- parent of a second level element is the first level element to which it is assigned (e.g. parent of a task under a phase is the phase)

- etc.

 


As for the question about tables, I'm not sure if it is related to the t-code DPR_DX_PROJECT, and I'm sorry to say that there is no straightforward information about the whole table structure of Project Management.

 

However, you can run report DPR_GUID_ANALYZE with a GUID of a object in cproject. Then, you can find a list of tables. I hope this information is helpful.

 

Best regards,
Kim

Re: Order BOM

$
0
0

Dear Srikanth,

 

When MRP is being executed, the material BOM (Finish Product) will be exploded and thus system will propose the procurement or production quantity of the sub assembly.

 

Thanks

Karthik

Re: Simple Question

$
0
0

I think I understand the source of my confusion. Most transforms (e.g. query) have one or more inputs and one or more outputs.

 

Table comparison has the input (updates) and specifies a second input (the master table) in the properties of the transform.

 

For the output you have two options:

  • create a new flow. This will then create records with OP codes that show only the changes needed. This might then be consumed in a later CDC transform
  • link directly to the master table. In this case the output the changes are applied directly to the master.

 

I was thinking of this first type and not understanding the second type was possible.

 

Cheers

Cliff

Re: Change Labels of Segmentation Fields in Hybris Marketing

$
0
0

Hi Pratyasha,

 

Can you try clearing the cache once in the browser ?

 

Regards,

Nidhi

Re: Reservation Creation checking

$
0
0

Hi Leonard, Where do you define "the quantity limit in the receiving plant"? As far as I know, there's no such setting in standard. You have to consider to use BAdI or user-exit. Best regards, Polly

Re: Data Retrieval Shortfall

$
0
0

Are there two of the same table? There may be one 'dbo.MyTable' and 'userid.MyTable' so that depending on which userid you log in as you will get different tables.

Re: Business partner replication from ECC to CRM without using account group

$
0
0

Hi Ellen,

 

Thanks for your help.

 

I'm facing another issue now.

 

The ECC BP is replicating to CRM BP but it is always replicating as "General BP" role in CRM.

 

For e.g. when I'm creating an ECC BP with role contract partner which also exists in CRM and then replicating the ECC BP to CRM BP but in CRM the BP role is "General BP".

 

Is there anything I can check here to fix this?

 

Can you please help.

 

Regards,

Subhasish


Re: CRWEB00000119

$
0
0

Hi Krishna,


1. Check if the related servers like crystal reports processing server is running or not.
2. Following are the relevant KBAs and scn link
1673579 - An error has occurred: There is no server available to process your request. Please try again later, or contact your system administrator if the problem persists. [RCIRAS0387] while viewing crystal report
1686232 - Error: RCIRAS0384 or CRWB00000119 while opening Crystal

http://scn.sap.com/thread/3496042


Regards,
Ashwini

Re: Master Data and Transaction Data Replication. Bidirectional Replication C4C CRM

Re: BO的SDK问题

$
0
0

目前提取的dpid全是dpid=0,正常应该是有dpid=1~N的,BEX报表有这样的限制?

Re: Cannot extend MDGC with custom field

Re: DTP Filter for month by month in package by package

$
0
0

Thank you one and all for your valuable inputs.

 

Now that I've changed my expert routine code to handle the data, month by month within the package.

Though it is pretty bad @ performance, but as the data size is less for a month, it is OK for the system to handle.

 

Thanks again.

 

Ravi

Re: CO15 Confirmation - Posting actual hours

$
0
0

Dear Vijayasankar,

 

You may use CO11N as advised and probably you can explore configuration OKP0 to change the screen layout accordingly.

 

Thanks

Karthik

Re: BPC 10.1 Journal Entries

$
0
0

Additional:

 

For the showing description request, I found this function is already added in BPC NW10.0 according to note: 2083973. Not sure whether it is added in 10.1 or not. You can try this note in your 10.1 system to check whether it works or not. If not, then raise the enhancement request to idea place please.

 

Best Regards,
Arjen


How to use EPMRetrieveData in TDH report

$
0
0

Hi everybody

 

I want to use the  EPMRetrieveData function on report, and select the Key Date to control the Time Dependent Hierarchies.

But  the  EPMRetrieveData function doesn't follow the Key Date. Always show the current date result.

 

Help me please.

 

Best Regards

Re: Planning on Multiple Company Codes

$
0
0

Hi Bian,

 

From your description, I am not sure whether it is a BPC related function or not. Would you pls give more detail like a screenshot for your question?

 

Best regards,
Arjen

Re: Remove Extended Employee Profile on Listing and View in

$
0
0

Hi Stephen,

 

I want to remove the extended employee profile or if it possible no detail show on it, just org structure

extended ee profile.png

Regards,

 

Azebua

Re: How can I optimize\improve the performance of this piece of code

$
0
0

Hi,

you can do it by using Fieldsymbol,  but if you know the order of fields, it will be easy for you,

 

otherwise, you have to assign the field name of the structure.,

 

 

FORM get_fields_from_list CHANGING table TYPE STANDARD TABLE.
 
TYPES: BEGIN OF t_fields,
           field_value(
100) TYPE c,
        
END OF t_fields.

 
DATA: it_fields   TYPE STANDARD TABLE OF t_fields,
        wa_fields  
TYPE t_fields,
        numb_fields
TYPE i,
        counter    
TYPE i,
        c_3(
1)      TYPE c VALUE '3',
        lv_indext  
TYPE sy-index.

 
FIELD-SYMBOLS: <wa_fields> type t_fields,
                 <lv_value>
TYPE any.

 
"if you know the order of the field name, which you change it will be easy,
 
" otherwise you can just order them in another ITAB, and change them,
 
 
LOOP AT it_report_result INTO wa_report_result.
    counter
= c_3.
   
IF NOT wa_report_result-line+9(4) IN s_bukrs OR
       wa_report_result
-line+3(1) = c_*.
     
DELETE TABLE it_report_result FROM wa_report_result.
   
ELSE.
     
SPLIT wa_report_result-line AT '|' INTO TABLE it_fields.
     
DESCRIBE TABLE it_fields LINES numb_fields.
     
IF numb_fields = c_18.
       
LOOP AT it_fields ASSIGNING <wa_fields> FROM counter.
ASSIGN COMPONENT lv_index OF STRUCTURE <wa_fields> TO <lv_value>.
            <lv_value>
= wa_fields-field_value.
       
ENDLOOP.
     
ELSE.
       
MESSAGE e230 WITH text-007.
     
ENDIF.
   
ENDIF.
 
ENDLOOP.

ENDFORM.



as I mentioned, If you know the order of fields, you can use the above code, or try to order them.


Another Idea, you can add the name of fields which you want to change in ITAB,  and then you can use this statement


read table ITAB_Fields into lv_fieldname index sy-tabix.

ASSIGN COMPONENT lv_fieldnameOF STRUCTURE <wa_fields> TO <lv_value>.


Thats all,

I hope it could help you.


Regards

Ibrahim





Re: Calculate Halfyear based on 0Calmonth variable

$
0
0

Hi,

 

Create a variable with CUSTOMER EXIT as it's processing by and with INTERVAL option, let's call this ZRANGE_STD..

 

Let's call your input variable as ZINPUT_MONTH..

 

Do this in CMOD:

 

data: zstart(6) type c,
       zend(6) type c,
       zyear(4) type c.

   WHEN 'ZRANGE_STD'.                    

     if i_step = 2.

       LOOP AT I_T_VAR_RANGE INTO FISC_VAR_RANGE
             WHERE VNAM = 'ZINPUT_MONTH'

      zyear = FISC_VAR_RANGE-LOW(4).
     
        if FISC_VAR_RANGE-LOW+4(2) >= '04' and FISC_VAR_RANGE-LOW+4(2) <= '09'.
          CONCATENATE zyear '04' into zstart.
          zend = FISC_VAR_RANGE-LOW(6).
        elseif FISC_VAR_RANGE-LOW+4(2) >= '01' and FISC_VAR_RANGE-LOW+4(2) <= '03'.
          zyear = zyear - 1.
          CONCATENATE zyear '10' into zstart.
          zend = FISC_VAR_RANGE-LOW(6).        
        elseif FISC_VAR_RANGE-LOW+4(2) >= '10' and FISC_VAR_RANGE-LOW+4(2) <= '12'.
          CONCATENATE zyear '10' into zstart.
          zend = FISC_VAR_RANGE-LOW(6).
        endif.

         L_S_RANGE-LOW      = zstart.  
         L_S_RANGE-HIGH      = zend.  
         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 questions..

 

Regards,

Loed

Viewing all 8676 articles
Browse latest View live




Latest Images