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

Re: Change default CardType on adding a new business partner

$
0
0


Thank you, but your solution is not what i need.

With your solution when I click on "Add" it will not select "Lead". I show a little magnifying glass on the field and if i click on the glass it select "Lead". And it also select Leas when I enter a BP code.

 

What I want is just that when I click Add button on the toolbar, the default BP type is "Lead" and if i want to change it I select "Customer" instead, but most of the time it will stay at "lead" value.


Re: retrieving a keyfield from a object into a internal table

$
0
0

Hi,

 

So do you need this information in the workflow (attribute/container element) or do you need this information in a report using workflow data?

Is this data retrievable in the workflow log?

 

I doubt that something like working hours is the key field of the object.

 

Could you post the functional requirement?

Maybe there are other ways of achieving the functionality.

 

Kind regards, Rob Dielemans

Re: Unable to export the SPM data during migration

$
0
0

HI, was the problem resolved?  I am having same issue.  if so, who was your problem resolved.  Thanks in advance.

Re: Linking Two Crytal Report Enterprise

$
0
0

Can you suggest me some link or document which explain detail steps.

My hyperlink is working fine, but Parameter is not getting pass

Re: blank page issue in adobe forms

$
0
0

hi henniger

 

Thanks for reply

you are absolutely right i have done a mistake .

 

The mistake was ,i have added a subform2 after the subform1 form, in which i am adding the rows dynamically , and i have set the property of subform2 that  keep with previous. thats why it was happening when the no of rows in subform1 reaches at end of page since subform2 property is keep with previous and contents of subform2 are not able to fit on the current page then it will create a blank page and when in the subform1 no rows are not able to fit on current page it will do page break and subform 2 will be shifted to blank page..

 

for removing the mistake i unchecked the property keep with previous.

Regards

Jitendra

Re: Document could not be saved error while using BAPI_BUSPROCESSND_SAVE

$
0
0

Hi Sachin,

 

Still the same error.

I had debugged the code and found that the FM 'CRM_EVENT_PASS_INFO_EXE_OW' called internally is failing to generate the events required for save.

The next step of this is deleting the objects to save and inturn , the error.

 

The events are filled based on entries in table 'gt_plan_exets' in the FM, but for me the table is blank.

 

I tried to find how this table is getting filled, but I could not trace it.

 

Regards

Sunil Pasunooti

Use a global variable in context node class

$
0
0

Hi All ,

 

Need Help ..

 

I have declared a global variable in _IMPL class and now I want to use it in the getter method of one of the attribute , is there a way we can do this , please suggest .

 

Thanks ,

Vaibhav

BP determination in checklist step using Rule Policies

$
0
0

Hi gurus,

 

I've a problem with the bp determination asociated to PPOMA_CRM.

 

 

 

I've configurated in my solman the org structure but I do not know who to make a policity rule.

 

 

 

What I want is to get the bp responsible from a bp (parameter).

 

For example

 

org unit root

     + org unit2

          + position 1

               + bp 1 (parameter)

 

          + position 2 (head of the unit org)

               + bp 2 (boss)

 

          + org unit 4

          + org unit 5

               + position 3

                    bp 3 (parameter)

        

     + org unit3

 

 

My idea:

 

case 1: If I execute the rule policy with bp 1, it should determine bp 2.

case 2: If I execute the rule policy with bp 3, it should determine bp 2.

 

 

Does anybody if is there a rule what I could do this and associate to my rule modeler profile (so I can use it in my checklist).

 

7.JPG

 

Thanks in advance.

 

Regards


Re: How to do app configuration in SAP ERP system for Agentry development

$
0
0

Jitendra,

 

You should see:

 

Search Results
000001SMERP 610_700
Installation Software Component
000002SMERP 600_700
Installation Software Component

 

 

 

If you dont' you need to contact SAP CIC to get access to the downloads.

 

Stephen

Doubt about H99B_OPEN_LFORM_JOB Function.

$
0
0

Hi Gurus.

 

I have a program with  H99B_OPEN_LFORM_JOB function and I need undesrtand why in form the field CPF dont show the last number.

 

Then i get the value of parameter  i_folname and I acces the transaction smartforms but dont exist the I try in Se71 and dont exist .

 

How Can I find the form print to chage it?

 

See the code:

*&---------------------------------------------------------------------*

*&      Form  PRINT_FORM

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*      -->P_P_FORM  text

*      -->P_GO_CL_TERM  text

*----------------------------------------------------------------------*

FORM print_form USING pv_fgroup  TYPE p_99b_fogroup

                       pv_form    TYPE p_99b_formlogc

                       pv_prcop   TYPE itcpp-tdcopies

                       po_cl_term TYPE REF TO zcl_hrpaybr_term.

 

   DATA ls_options   TYPE itcpo.

   DATA ls_term_data TYPE zhrpaybr_s_term.

   DATA lt_term_data TYPE zhrpaybr_t_term.

 

* Get the Data generated by the class

   po_cl_term->get_data( IMPORTING et_data = lt_term_data ).

 

   IF lt_term_data[] IS INITIAL.

     RETURN.

   ENDIF.

 

   SELECT SINGLE fogroup  INTO pv_fgroup FROM t799bmfg

      WHERE molga   = pbr99_molga

        AND folname = pv_form.

 

* Get the print parameters according to user

   PERFORM get_print_parameters USING pv_prcop

                             CHANGING ls_options.

 

   CALL FUNCTION 'H99B_OPEN_LFORM_JOB'

     EXPORTING

       i_molga        = pbr99_molga

       i_fogroup      = pv_fgroup

       i_folname      = pv_form

       options        = ls_options

     EXCEPTIONS

       fotype_invalid = 1

       job_not_opened = 2

       OTHERS         = 3.

 

   IF sy-subrc <> 0.

     MESSAGE e008(pla).

*   Não foi possível abrir o job de impressão

   ENDIF.

 

   LOOP AT lt_term_data[] INTO ls_term_data.

 

*   Write the form for the employee (Independent of output technology)

     CALL FUNCTION 'H99B_OUTPUT_LFORM'

       EXPORTING

         i_molga        = pbr99_molga

         i_fogroup      = pv_fgroup

         i_folname      = pv_form

         i_data_struc   = ls_term_data

       EXCEPTIONS

         error          = 1

         fotype_invalid = 2

         OTHERS         = 3.

 

     IF sy-subrc <> 0.

       MESSAGE e010(pla).

*     Erro na impressão de formulário

     ENDIF.

 

   ENDLOOP.

 

* Close Form

   CALL FUNCTION 'H99B_CLOSE_LFORM_JOB'

     EXCEPTIONS

       fotype_invalid = 1

       closing_error  = 2

       OTHERS         = 3.

 

   IF sy-subrc <> 0.

     MESSAGE e009(pla).

*   Não foi possível fechar o job de impressão

   ENDIF.

 

ENDFORM.                    " PRINT_FORM





The value of i_folname is ZHR_BR_TERM3_SFO



sdn_error.png



Re: Creation of breakdown order only from the breakdown notification

$
0
0

Always do some basic search before posting any query. Just by searching in 2 min, if we could give some useful links, why can't be possible for you??

Create a Connection on TREX for 2 systems with same SID

$
0
0

Hello world,

 

Here is my case,

We have a PRO systems With SID=PRO On Host= production , and a Sandbox system with also SID=PRO On Host=SANDBOX

now i need to create a connection in TREX in parallel so when i add the 2nd one it just edits the 1st one that i have already made

 

So is it possible to create 2 connection of same SID but diffrent Hosts In parallel?

If Yes how ?

 

Thanks In Advance...

 

 

Ahmed Salam

Re: TDS on Incoming payment

$
0
0

Hi Shiva

 

Thanks For your reply

 

Client want to enter TDS amount manually at the time of payment

 

I have tried to post in F-28 but i could not find out this and also i have given with holding tax type in the customer master for payment posting but it is not calculating

 

Please advise on this

 

Regards

Srini

Re: IDOC issue

$
0
0

Hi Partha,

 

Please also see note 1784381 - Duplicate invoice check in case of simultanenous posting where it is said to use FM FI_DUPLICATE_INVOICE_CHECK for IDOCs.

Best regards!

Message type HRDM_A in eRecruiting

$
0
0

Hi gurus!!


We are implementing our eRecruiting system outside of our HCM system. The type of message we need to use is HRDM_A because of the infotypes we need to transfer via ALE. But when we verify in our eRecruiting system, this type of message doesn't exist.


I have two questions:

- Can this type of message be used in eRecruiting?

- How can we import a standard message type to our system?



Thanks in advance!!

DiEula



Re: How to create 'Query Result Object' entity?

$
0
0

Hello,

 

In fact there is not really entities for query result object, it's entries in the result table.

 

So you need to modify the search to add more results, usually there are some badi to do so, or maybe you can extend the class used to perform the query in order to add some results.

 

Regards,

 

Benoît

Re: Reporte de compras

$
0
0

Hola Pablo,

 

La diferencia la debes realizar con el campo CardType, el cual es S para Proveedores, C para Clientes y L para leads.

 

 


Saludos,


Wuilmer Venegas

Re: SAP BW: Inventory Data Source For Getting Calendar Month Wise Inventory Value

$
0
0

Hi All,

 

Thanks for your reply.

 

Cube - 0IC_C03 was realy helpful for me, but now I am facing performance issue.

 

Once Again Thanks.



Re: TDS on Incoming payment

$
0
0

Hi Mahesh

 

Thanks For your Reply

 

Customer will deduct TDS amount from invoice at the time of payment

 

This TDS is related to payment only not for invoice

 

Please advise on this

 

Regards

Srini

Re: Crystal Report-Page Break and continuing Text

$
0
0

Dear all thank you for your response.

 

I have the text object under "Details". I do not need header/footer.

When i click export to work document and start working on the page, when the rest does not fit on the text box, it doesn't go to a next page, but goes hiding.Untitled.jpg

Viewing all 8575 articles
Browse latest View live




Latest Images