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

Ignore the destination info on LM45

$
0
0

Hi,

 

We want to ignore the 'destination info' on the LM45 RF screen. is there a way to configure the verification profile to ignore it?

I can there is a option for 'ignore source info for putaway', but no option for picking

 

 

For example: we want to ignore screen 3 and 4 if possible.

 

Screen 1 – scan pick hU

Screen 2 – scan EAN number,

Screen 3 – then ‘F1 Save’, push ‘F4 save’

Screen 4 – then ‘F1 save’ to confirm the TO

 

LM45 Screen sequence.JPG

thanks


Re: How to get "Enable Launch Forms by dynamic Group" in Advance Settings of Compensation Module

$
0
0

Also, there is a permission in RBP called Manage Groups in Options menu. Maybe that is not set?

 

groups.jpg

WebService for access roles of Portal

$
0
0

Dear Gurus,

 

I really need your help. I've ben struggling my brain in order to develop a webservice which can show the content of one or several roles. Till now I could get a role list, but when trying to get attributes of role's content I'm geting class cast exception

 

I've tried many options, but always ended with a class cast exception

 

All your suggestions will be very appreciatted. Thanks in advance

 

 

 

My base are this posts:

Query pcd roles through api

Exposing the Enterprise Java Bean as a Web Service - Developing Java EE 5 Applications - SAP Library

Browse portal content and object properties - Code Gallery - SCN Wiki

 

This is my code:

 

public List<PortalObject> getContentsFromRole(String roleName)

{

    this.portalObjArray = new ArrayList<PortalObject>();

    Hashtable roleList = getRoleListByName(roleName);

    Enumeration keyEnum = roleList.keys();

    try

    {

        InitialContext ctx = null;

        try

        {

            IUser principalObj = null;

            try

            {

                // getting the SAP user.

                IUserFactory userfact = UMFactory.getUserFactory();

                principalObj = userfact.getUserByLogonID("e_aaceval");

            }

            catch (UMException umex)

            {

                portalObjArray.add(new PortalObject("getContentsFromRole() UMException:" + umex.getMessage()));

            }

 

 

            Hashtable env = new Hashtable();

            env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);

            if (principalObj != null)

            {

                env.put(Context.SECURITY_PRINCIPAL, principalObj);

            }

            env.put(Constants.REQUESTED_ASPECT, IPcdAttribute.PERSISTENCY_ASPECT);

            ctx = new InitialContext(env);

        }

        catch (NamingException nex)

        {

            //TODO

        }

 

 

        while (keyEnum.hasMoreElements())

        {

            String roleKey = (String) keyEnum.nextElement();

            String val = (String) roleList.get(roleKey);

 

 

            PortalObject po = new PortalObject();

            po.setId(roleKey);

            po.setName(val);

 

 

            portalObjArray.add(po); // role data

 

 

            IPcdContext rootRole = (IPcdContext) ctx.lookup(roleKey);

            Object titleObj = rootRole.getAttributes("").get("com.sap.portal.pcm.Title");

            portalObjArray.add(new PortalObject("getContentsFromRole() titleObj:" + titleObj.toString()));

            if (titleObj instanceof IPcdAttribute)

            {

                IPcdAttribute titleAtt = (IPcdAttribute) titleObj;

                String title = titleAtt.get().toString();

                portalObjArray.add(new PortalObject("getContentsFromRole() title:" + title));

            }

        }

    }

    catch (Exception ex)

    {

        //TODO

    }

    return portalObjArray;

}

 

 

And this is the error:

 

Cannot cast class com.sapportals.portal.pcd.gl.PcdGlContext to interface com.sapportals.portal.pcd.gl.IPcdContext

Re: How to specify to only consider certain locations during the planning?

$
0
0

Also, would you mind explaining what fields 2 to 4 affect and how they work? I haven't been able to find any specific documentation on Optimizer Settings.

 

Thank you,

Adrian

Re: Error while recovery DB

$
0
0

Hi Abhinav,

 

Please describe the scenario in more detail

Are you recovering a Multitenant backup to another multitenant backup? Is the topology same on source and destination?

Can you share more entries from the Indexserver trace log for the tenant being recovered?

 

Sunil

Re: Mysql to Cloud Application

$
0
0

like I mentioned before, it will not run 100%... there are syntax differences and also data types.
Please refer to the CDS creating entities - here is a blog or the hana developer guide

Re: Do I need to assign a different user for inbound email service?

$
0
0

This is helpful. So SICF is cross-client. So that tells me that I need to create a new SMTP host for every host beyond SAPConnect.

 

SAPConnect is a default SMTP host that comes with SAP ECC out of the box. I can use this one for my first client. However, I will need to create a new SMTP host for the other clients.

 

I will also need to have a separate user in each client in order to be able to use the service.

 

My question has been resolved.

 

Thanks Yuksel!

Re: F.97, F.98 and F.99 issue

$
0
0

Hi,

Did you ever find out why the SUBMIT code was commented out in MSERPF21?


Re: BKPF and BSEG data extraction into two internal tables

$
0
0

To Explain this further : Modify the where conditions also in the same order as it is in the table..

Re: SD-QM-PP issue regarding Reference Operation Set

$
0
0

Caetano,

 

Could you please help me to create routing with reference to sales order ? Because we don't have sales document field in CA02/QP02.

 

Thanks

Re: F.97, F.98 and F.99 issue

$
0
0

We asked SAP Support and they came back saying the old TCodes while weren't supported since 4.5B (IIRC) did still work for the most part. In the newer release they just weren't supported and wouldn't execute so we migrated the few users who still accessed them to the standard menu where we also had the reports listed.

 

So no real reason just that they weren't supported anymore and that was their suggested solution.

Some questions about C4C Retail execution and SAP IS-Retail system.

$
0
0

Hi experts,

 

I have some doubts about this "retail execution" topics in C4C.

 

1. Is it necesary to integrate C4C Retail execution with SAP IS-Retail system?

1.1  if not, which functionality is available only in C4C without integration with SAP IS-Retail system?

 

2. i've read that SAP IS-Retail system is available in ECC EHP 6 .

2.2 this functionality is available without licensing? or the customer has to pay more money for that?

 

3. More documntation about this topics.

 

thanks!!!

Re: Does deleting obsolete tables and transaction codes affect the system performance?

$
0
0

You can feel free to delete the obsolete tables or transaction codes which you have created and are not using now without worrying about system..

 

Since you are working on performance check.. Code optimizing is better way to make a program run faster.. Use SAP Trace to track the time your program took and you can see which query is taking time and you can do necessary optimization to speed it up..

 

The Number of System objects wont effect your performance of a program or a particular transaction

Re: F.97, F.98 and F.99 issue

$
0
0

Hi David,

Thanks for the quick response.

 

Cheers

Murray.

Re: How to give intervals[ 0000,01 to 9999,99] in custom domain with decimals data type ?

$
0
0

Hi Ravi,

 

You can only define whole positive numbers for the value ranges (single values or intervals), so there's no way to maintain the values 0000,01 to 9999,99 and activate the domain.

 

Furthermore, You will only get the automatic value check on the screen for domains with type CHAR or NUMC, however, for the types DEC and INT[n] (and for other types no value ranges can be defined) You will still get an F4-Help with maintained value ranges.

 

According to SAP, if You need the value check and can't change domains type, You currently have to program the value check Yourself.

 

Please refer to the messages 191–219 of message class DO.

 

Regards, Michał


Re: SAP GUI 740 for MAC OS

$
0
0

Hi Rahul,

 

on recent versions of Os X (10.9 or above):

    I suggest you to use SAP GUI Java 7.40 rev 7 (released recently)

     remember to update Oracle java (system preferences > tab "update")

 

on earlier version of Os X ( <= 10.8.x):

     my suggestion: SAP GUI Java 7.30

 

probably you have to change java VMOptions for SAP GUI increasing the value of "-Xms" option;

you can do this modifying Contents/Info.plist file inside SAP GUI's package (left click on SAPGUIxxx.app, then click on "show package contents")

Screen Shot 2016-03-30 at 00.16.13.png

How to pass URL parameters to NW Gateway Class/Method?

$
0
0

Hi,

This is the pattern of the URL that I would like to use for my getEntitySet:

 

http://...<Project_SRV.>/TradingContractSet?WERKS=1126

 

My hope is to constrain the list of trading contract HEADERS to those that have ITEMS from plant 1126.

 

My stumbling block is how to get a handle to the value of the "WERKS" parameter in the URL.  In the sample URL above, my application code needs to get the value "1126".

 

I have tried running cl_wd_runtime_services=>get_url_parameters, but this WebDynpro class does not seem to work from within an Gateway ABAP class.

 

I am able to import FILTER type URL parameters, but that is an overly complex solution.  Additionally, my HEADER entityType does not include WERKS (because WERKS exists at the items level), and I don't want to add the WERKS attribute to the HEADER just for the sake of importing a variable.

 

I do not see a coding solution for how to do a simple read of a URI parameter from with a NetWeaver Gateway ABAP Class Method.

 

Any help would be very appreciated!

 

Regards,

Kevin

Re: Fields to Display on SNC PO Screen

$
0
0

Hi Sandhya,

 

If you are unable to view the field maybe its made hidden by a previous consultant.

 

Did you try to check in Development system by writing &sap-config-mode=X to the end of the relevant view's link?

 

It will help you to see the hidden and avalilable fields.

 

 

Regards,

 

Selim Batur

Re: Notating a revised sales order

$
0
0

Hi,

 

Welcome to SAP Business one forum.

 

To know status of picking, Go to form settings--> select pick status. From this field you can know status of picking.

 

Status

 

N- Not picked

 

Y -Picked

 

R- Release for picking

 

P- Partially picked.

 

Thanks

SAP HCM Standard Report in Fiori

$
0
0

Hi,

 

I have a requirement. I want certain standard SAP HCM reports to be available from FIORI so that user can access those in FIORI itself and does not need to log in to R/3. In addition, I would like 1-2 custom developed reports also to be launched in such a way from FIORI. Is this possible?

Viewing all 8746 articles
Browse latest View live




Latest Images