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

Re: Transfer configuration data to subitems in quote in CRM

$
0
0

Hi Anil,

 

I am not sure wether it will work or not but you can try.

 

You get IV_ITEM_GUID in this method.

 

You can call CRM_ORDER_READ to get all items and then you can change the configuration.

 

You can use below code to get all the items from buffer.

 

field-symbols: <gt_orderadm_h_wrk>         type crmt_orderadm_h_wrkt.
  assign ('(SAPLCRM_ORDERADM_I_OB)GT_ORDERADM_I_WRK')   to FIELD-SYMBOL(<gt_orderadm_i_wrk>).
  if sy-subrc ne 0.
    CALL FUNCTION 'CRM_ORDERADM_I_READ_OB'
      EXCEPTIONS
        others = 3.
    assign ('(SAPLCRM_ORDERADM_I_OB)GT_ORDERADM_I_WRK')   to <gt_orderadm_i_wrk>.
  endif.

 

After you have got all the items you can try adding configuration values in it.

 

Regards,

Naresh


Re: Update Sales Order with XML

$
0
0

Hi

 

By just looking at the xml (meaning I haven't tested) I would remove the DocEntry element from both the Document/row and Document_Lines/row

 

Regards,

Eric

Re: Import Existing jobs into cps redwood ?

$
0
0

Hi Chinna,

 

I referred above links, but I am able to schedule standard job from cps redwood i.e SAP_IMPORTCCMSJOBS but getting the following error from stdout.log. Please find

 

Import Failed

BAPI exception while calling BAPI_XBP_JOB_SELECT: E XM 057 No job was found that corresponds to the specification [BAPI_XBP_JOB_SELECT, , , ]

at com.redwood.scheduler.connector.sap.rfc.jco2.connection.impl.ClientConnectionImpl.checkBapiReturnCode(ClientConnectionImpl.java:818)

at com.redwood.scheduler.connector.sap.rfc.jco2.connection.impl.ClientConnectionImpl.call(ClientConnectionImpl.java:605)

at com.redwood.scheduler.connector.sap.rfc.connection.AbstractRfcConnection$4.doPerform(AbstractRfcConnection.java:289)

at com.redwood.scheduler.connector.sap.rfc.connection.RemoteFunctionCall.perform(RemoteFunctionCall.java:130)

at com.redwood.scheduler.connector.sap.rfc.connection.AbstractRfcConnection.perform(AbstractRfcConnection.java:445)

at com.redwood.scheduler.connector.sap.rfc.connection.AbstractRfcConnection.execute(AbstractRfcConnection.java:282)

at com.redwood.scheduler.connector.sap.rfc.jco2.connection.impl.SapFunctionModuleWrapper.execute(SapFunctionModuleWrapper.java:194)

at com.redwood.scheduler.connector.sap.rfc.jco.AbstractSapFunctionModule.execute(AbstractSapFunctionModule.java:107)

at com.redwood.scheduler.connector.sap.rfc.job.util.CcmsJobFinder.findMatchingJobs(CcmsJobFinder.java:229)

at com.redwood.scheduler.connector.sap.rfc.command.impl.ImportCcmsJobsCommand.execute(ImportCcmsJobsCommand.java:91)

at com.redwood.scheduler.connector.sap.rfc.command.AbstractXbpCommand.doExecute(AbstractXbpCommand.java:123)

at com.redwood.scheduler.connector.sap.rfc.command.AbstractCommand.execute(AbstractCommand.java:56)

at com.redwood.scheduler.connector.sap.rfc.service.SapJobWork.doWork(SapJobWork.java:107)

at com.redwood.scheduler.infrastructure.workqueue.Worker.run(Worker.java:59)

at java.lang.Thread.run(Thread.java:708)

Re: Changing Pallet Heights

$
0
0

Hi,

"1. Can we set up putaway bin determination based on Pallet Height ?"

The standard knows the height only via a "classification", means HU types. What you find in our templates as E1 or E2, a one meter or two meter high europallet. That is not a fixed or real value, the system does not know if the E1 is 1,05 meter or only 95 cms high. But with this you can find bin type and this is part of the search strategy.

If you want to use the real height - have to build it.

 

"2. The Pallets height being recived in warehouse is changed frequently

by vendor . Vendor sends different height pallets."

If you can life with the HU types, you can enter or change the HU type during creation of the WT or in a workcenter in the staging area for goods receipt. If you want to enter the real height, you would need a workcenter.

Brgds

Juergen

Re: NWDI Track issue

Re: Issue with WDDOEXIT

$
0
0

Hi Kamesh,

 

I wonder about this strange behavior.

 

But WDDOEXIT will always trigger immediately after the source code during exit of the application.

 

So in your condition, please check your source coding and also make sure that you are not using any time delay for your application.

 

 

BR,

RAM.

Re: PF payment to employee

$
0
0

Hi Rishi,

 

For your scenario, you have to take the /3f3 and payroll period from the cluster table and tell abaper to develop the code to fetch these details and write the logic to get sum of the all /3f3 wagetypes. Like this you can achieve your requirement.

 

Regards,

Narayana


Re: Delete the record from internal table

$
0
0

Hi

loop at lt_swpsteplog into ls_swpsteplog.

if ls_swpsteplog-log_count <>1.

delete lt_swpsteplog from ls_swpsteplog.

endif.

 

endloop.

 

regards.

laxman


Re: how to create Inventory Posting layout

$
0
0

cr.png

You've check it?

Its working fine to me. I don't know why its not working on you.

Double shift Depreciation calculation issue

$
0
0

Dear Gurus,

 

I am using Straight line method, for single shift 4.75%, double shift 7.42% and triple shift 10.34% as per companies act.

do we need to create 3 depreciation keys for each shifts and assign the variable depreciation % in each asset master data, which is related to multiple shifts and can we adjust the shift factor if the depreciation amount is not correct. Many thanks.

 

Please help. Many thanks.

 

Regards,

Siddu

Re: Short dump on Select Query execution

$
0
0

Hello,

 

I dont find any screen shot, please share the screen shot of dump and also the where condition.

 

 

 

 

Regards,

Mallikarjuna

Re: Can't find column level security in BO 3.1

Re: Trigger Javascript

$
0
0

Hi Maren,

 

Below code will work for your field with java script.

 

   <%@page language="abap" %>
<%@extension name="thtmlb" prefix="thtmlb" %>
<%@extension name="chtmlb" prefix="chtmlb" %>
<%@extension name="bsp" prefix="bsp" %>

<%

data: lv_Attr_name type string.

lv_attr_name = CONTEXT NODE NAME->IF_BSP_MODEL_BINDING~GET_ATTRIBUTE_NAME( attribute_path = 'ATTRIBUTE NAME').

%>


<script for="<%=lv_attr_name%>" event=onblur type="text/javascript" >
  alert('Java Script Triggered');
</script>

<chtmlb:config mode = "RUNTIME"
               xml  = "<%= controller->configuration_descr->get_config_data( ) %>" />

 

Regards,

Naresh

smartforms

$
0
0

Hi Experts,

 

My doubt is regarding smartforms.

 

after multiplying quantity and netprice...value is not coming in the print preview form.

How to connect DB2 database to Xcelsius

$
0
0

Hi,

 

I am looking out for options to connect my DB2 database to xclesius. I dont want to go for BOBJ licensing cost. Do we have some other way to achieve this?

 

Thanks,

Neha


Re: NW7.0 - NWDS Error:

$
0
0

took backup of .dtc, .dtr folders from default location of my win7 ; c:\users\xxx\

then created a new workspace and started the NWDI

Re: Propose the Amount and the Quantity on the MIRO transaction screen

$
0
0

Jean thank you very much, this worked well.

 

 

Regards,

 

Robert.

Re: Rebuild of VF04 resp. table VKDFS

$
0
0

Hi

 

Check these notes, maybe they will help you to solve this mess

 

SAP Note 38501 - Intercompany billing before customer billing document

SAP Note 308989 - Consulting note for cross-company transactions

 

and related notes

 

I hope this help you

 

Regards

 

Eduardo

Re: smartforms

$
0
0

Hi Abdul,

 

You have defined the workareas/internal tables in the outbound parameters which stores the value.

Put a Hard Breakpoint in the form and execute in debugging mode.

 

Regards,

Kannan

Re: Confused a bit about abuse rejections

$
0
0

I'm a Moderator now and if I see people asking or even hinting for points I edit their post.

But, if I were to be challenged then I would have to admit that officially there is nothing that says they can't do it.

Viewing all 8611 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>