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

Re: Integrated Business Processes with ERP Systems Textbook Discussion


Re: PowerBuilder Classic Connecting to WCF Web Service over HTTPS

$
0
0

Thanks .. that's great news David!  

 

May the chocolate force (Easter Bunny) be with you!  

Re: ButtonCombo: add ChooseFromList for each ValidValue

$
0
0

I've invented woking, but ugly sollution (so common in SAP )

Well,

  1. Add a BottonCombo to a form. Set the desirable Caption.
  2. Create appropriate ChooseFromList for each ValidValue in the ButtonCombo .
  3. Add a hidden button for each ChooseFromList you've created above and place it wherever you want on the form. Set appropriate ChooseFromList ID for each button you've added.

Now you need to implement the handler of ButtonCombo ComboSelectBeforeevent. This handler

  1. Checks which ValidValue has been choosen.
  2. Freezes the form and unhides the button corresponding to the choosen ValidValue.
  3. Calls the MyButton.Item.Click() method which openes the corresponding ChooseFromList.
  4. Unfreezes the form and sets BubbleEvent to false. The letter step prevents the altering of Caption.

capacity check method 4

$
0
0

Hi All,

 

I have set capacity check as 4 for my storage type 100.

I have two materials with SAME FIXED BIN

 

I have mentioned minimum and maximum quantity for both materials in material master:

 

Material A: Min qty 100 Max Qty 1500

Material B : Min qty 50 Max Qty 500

 

Fixed Bin is 1-00-01 for which maximum bin capacity is 2000.

 

So capacity usage i have calculated and maintained in wm1 view as follows

 

for material A = 2000/1500= 1.33 and for material B = 2000/500 = 4

 

when i am creating a single TO with 2 line items by using this two materials system should not allow create TO of quantity greater than 1500 for material A and quantity greater than 500 for material B

 

Results:

 

It is Ok for first material but for material B system is not even allowing to create TO for 500 qty.

 

PLEASE REVERT in case of any clarification needed.

Re: Communications error(14). Connection failed

$
0
0

Karan, are you configuring this application with Afaria or configuring it manually? If configuring it manually, you may want to look at the configuration data associated with the application policy in Afaria to see if it looks appropriate. The only interaction between the two should be that Afaria delivers the application and optionally may configure it. If you are delivering other large applications via Afaria, it is possible that may slow the connection down, but I wouldn't expect it to break the communications... So that is one other area to look, if during the initial Afaria enrollment that you are looking at SAP Work Manager, you may want to see if any other large policies are assigned.

 

NOTE: I'm not certain that this application uses configuration via Afaria and am making an assumption there since most SAP built apps do.

 

For further information, it may be helpful to provide the OS which you are experiencing the problem, and if the problem is seen on another OS (Android/iOS).

Re: Instalação NF-e 3.10

$
0
0

Olá Leandro,

após a minha atualização eu tive o mesmo erro, conforme o Rodrigo Feula disse pode ser que não tenha sido acrescido código de imposto em algum item da NF. No meu caso o motivo foi outro, os cálculos estavam todos corretos, porém o Add-on não informava o valor correto no xml, verifique o valor informado no xml se está exatamente conforme NF, minha solução foi corrigir o erro no add-on.

 

 

Att.

Jackson Vilela

Re: Do not use fields and field symbols () globally

$
0
0

When I do global search with T_OUTPUT, I can easily know where it is being populated/appended, modified, cleared/refreshed and where/how it is being used. Watch points works better in debugger. I am still not clear on how local variable code is "More readable".

 

 

But I am satisfied with Suhas Karnik point,

Suhas Karnik wrote:

 

 

... it is the fact that they are a recipe for unpredictable behaviour and therefore disastrous errors. When accessing (i.e. viewing or changing) the value of a global variable, you do not know whether any other code has modified/unassigned the variable/FS and this can lead to unwanted results or even crashes/dumps. This property of "touch this and something else might explode" also makes refactoring impossible.

 

That's why global variables are considered harmful in most other programming languages too ...

 

 

I will follow this now strictly ..

 

 

Thanks,

Eswar

Return can not be deleted

$
0
0

Hi All,

 

Business has accidentally created RE document and issued credit note G2. Now they want to cancel RE document itself. 

When they cancel G2 and tried to delete RE line item,system is throwing warning message - consider subsequent document.

Then line item were put on reason for rejection but still system not allowing to do so.


Re: Success factors SSO setup with Active Directory

$
0
0

Hi Luke,

 

Do you have any documentation on the Integration .

 

Thanks

Nag

Re: Please Provide SAP HCM Certification Questions

$
0
0

Hi

Even I have my certification exam this Month.. Any guidance would be really helpful

Re: Success factors SSO setup with Active Directory

$
0
0

There is some on the SuccessFactors Partner Portal

Re: Steps to access fiori application on internet

$
0
0

You might need to configure webdispatcher which will host your internal URL to public URL and then you can run on mobile device.

 

If you configure : www.myfiori.com

 

You have to append : /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html

 

in order to run SAP FIori launchpad, which is a one stop access for all application(provided your apps are hosted on launchpad)

 

Let me know if more help is required.

 

Regards,

Tejas

Re: Send Json data as string to if_http_client~request->append_cdata

Re: Prevent user from typing in an input field with search help

$
0
0

PROCESS ON VALUE-REQUEST.

   FIELD: wa_emp-name MODULE fill_on_f4.

 

MODULE fill_on_f4 INPUT.

 

   DATA: step LIKE sy-stepl,

         tab TYPE dfies-tabname,

         field TYPE dfies-fieldname.

 

 

   DATA: t_dynpfields TYPE TABLE OF dynpread,

       s_dynpfields TYPE dynpread,

       t_return TYPE TABLE OF ddshretval,

       s_return TYPE ddshretval.

 

   CALL FUNCTION 'DYNP_GET_STEPL'

     IMPORTING

       povstepl = step.

 

   IF sy-subrc <> 0.

* Implement suitable error handling here

   ENDIF.

 

   READ TABLE it_emp INTO wa_emp INDEX step.

 

   CASE wa_emp-id.

 

     WHEN ...

       tab = ...

       field = ...

     WHEN ...

 

   ENDCASE.

 

   CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'

     EXPORTING

       tabname           = tab

       fieldname         = field

       dynpprog          = sy-repid

       dynpnr            = sy-dynnr

       dynprofield       = 'WA_EMP-NAME'

       stepl             = step

     TABLES

       return_tab        = t_return

     EXCEPTIONS

       field_not_found   = 1

       no_help_for_field = 2

       inconsistent_help = 3

       no_values_found   = 4

       OTHERS            = 5.

   IF sy-subrc <> 0.

* Implement suitable error handling here

   ENDIF.

 

   READ TABLE t_return INTO s_return INDEX step.

 

   s_dynpfields-fieldname = 'WA_EMP-NAME'.

   s_dynpfields-fieldvalue = s_return-fieldval.

   APPEND s_dynpfields TO t_dynpfields.

 

   CALL FUNCTION 'DYNP_VALUES_UPDATE'

     EXPORTING

       dyname     = sy-repid

       dynumb     = sy-dynnr

     TABLES

       dynpfields = t_dynpfields

*   EXCEPTIONS

*     INVALID_ABAPWORKAREA       = 1

*     INVALID_DYNPROFIELD        = 2

*     INVALID_DYNPRONAME         = 3

*     INVALID_DYNPRONUMMER       = 4

*     INVALID_REQUEST            = 5

*     NO_FIELDDESCRIPTION        = 6

*     UNDEFIND_ERROR             = 7

*     OTHERS     = 8

     .

   IF sy-subrc <> 0.

* Implement suitable error handling here

   ENDIF.

 

 

ENDMODULE.

Re: Sorting is required before delete data from internal table?

$
0
0

Hi Mathew,

 

Thanks for your explanation. I regret for the inconvenience caused.

 

Regards

Priya


Re: MEMORY_NO_MORE_PAGING - Dump occurs frequently

$
0
0

Hi Sriram,

 

Thanks for the help. Could you please tell me what are those parameters related to this dump.

What is the recommended parameter for any SAP system?

Export/import a table which has an index and privileges

$
0
0

Hi all,

I'm copying some tables from one instance to another one using EXPORT on one side and IMPORT WITH REPLACE DATA ONLY on the other side. I'm using the DATA ONLY clause because without it all permissions on the target table are deleted. Now this works fine, until I've included a table with an index, now the import says

 

* 2048: column store error: table import failed:  [30139] Could not import data only due to metadata mismatch;Data only import is not possible: create statement differs,object=I2S:CATSen SQLSTATE: HY000

 

When I remove the DATA ONLY clause or when I delete the index on both instances the import works, but I'm losing the index or the privileges. NB the tables are identical and so is the index, the only difference is that the source Hana is SPS7 and the target Hana is SPS9. Is there a way to make this work? I want to copy only data and keep both the index and the granted privileges.

 

Cheers,

 

-- Micha

Re: differentiate input fields in loop at screen

Not able to see Asset Classes in AS01

$
0
0


Hi Seniors,

 

I am not able to see Asset Classes in AS01.  But, I have checked the config.  Asset Classes have been created properly, Depreciation areas have been activated.  Company Code is assigned to the Chart of Depreciation etc.,  Not able to find out the reason.  Please help.

 

Thanks & Regards

 

KVKR

Re: differentiate input fields in loop at screen

$
0
0

Hi,

 

I don't have a selection screen but a screen made by the screen painter.

Viewing all 8902 articles
Browse latest View live




Latest Images