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

Re: SAP consultant cant see client 000 on service connection

$
0
0

Hello Alwia ,

 

I have no problem to logon inn client 000, problem is SAP cant see the client 000 on SAP service connection drop Down list.

 

Thanks

 

Reza


Re: how to call stored procedure with parameters?

$
0
0

Figured it out for both way. Thanks.

Re: extract data from hash map for target structure mapping

$
0
0

Hi Mike,

 

So the insertion into the HashMap would be pretty staightforward but you could have a couple of options for the retrieval depending on how you want to handle it.  Code for the insertion:

 

HashMap<String, MaterialData> hm = new HashMap<String, MaterialData>();
String matID = someValue;
ArrayList<String> al = new ArrayList<String>();
String intMatID = someValueFromSoap;
// .. adding entries to ArrayList here and getting the internal mat id
MaterialData md = new MaterialData();
md.setMatIntID(intMatID);
md.setTuples(al);
hm.put(matID, md);

So for retrieving values you could have one more generic UDF for both field mappings or two UDFs with each one being specific to the target field.  Here is what the generic one could look like:

 

HashMap<String, MaterialData> hm = (HashMap<String, MaterialData>) container.getGlobalContainer().getParameter("matmap");
String targetField = target[0];
for(int i = 0; i < coreid.length; i++)
{
MaterialData md = hm.get(coreid[i]);
if(target[0].equals("intMatID")
result.addValue(md.getIntMatID());
else if(target[0].equals("tuples"))
{
ArrayList<String> al = md.getTuples();
for(int j = 0; j < al.size(); j++)
{
result.addValue(al.get(j));
}
}
else
// throw some error - should never happen except for at build time
}

The one thing to note in this example is that you would need an extra parameter along with the matID value to determine which field of your MaterialData object you want to add to the ResultList object.  The only difference for two separate UDFs is that the logic inside the loop from lines 05-17 above would be specific to the UDF and whichever target field that it would be mapped to, i.e. the internal mat ID would have the simple assignment whereas the tuple requires the extra loop to output all values.

 

 

 

Regards,

Ryan Crosby

Re: Display two key figures in one row in Excel for future time horizon

$
0
0

Thank Jens!  I'll try this.  Did you do this at your customer?

Kamala

Re: P/L run much longer than B/S

$
0
0

Can you check UJSTAT to see which part takes longer in 10.0 than in 7.5?

Re: End Routine for Populating data for Date by doing Loop

$
0
0

Hi Anil,

 

Please take help of your ABAP team.

 

Regards,

Ganesh Bothe

Re: Change storage type

$
0
0

Ok.. I was in that screen earlier but had trouble with it.  Went back to it again and finally got it!  The key was to use 999 movement.  I wasn't sure what to use there.

 

Thank!

 

Craig

Invalid marker: c2lcp:ItemDataExtra

$
0
0

Hi,

 

We use to download courses in the repository SAP LSO AE 604_14 and Java 1.4.2_19.

When I trying to import a course, as reusable media obj. At the stage of conversion into the SAP AE format will get an error Invalid marker: c2lcp:ItemDataExtra.

19-06-2014 23-18-33.jpg

Also attache imsmanifest.xml.https://dl.dropboxusercontent.com/u/53172073/imsmanifest.xml

 

Please help to resolve the problem.


Re: Add a carriage return

$
0
0

Yes just on the display. Let me clararify.

On my cross tab report, I select one of the fields and go to format field.

On the common tab, I select the display string button.

I have a similar formula to yours.

Replace(myvar,"/", chr(13) + chr(10))

 

myvar already has the "2/0.05" string in it.

I pull this from a db with a sp.

 

Anything else you can think of that might be causing me this issue?

I resized the report field making it 5 times larger than the space needed for the data, and the display didn't change.

 

Just running outta ideas...

Thanks for any...

Re: Problem in execution of F4 help in Module pool

$
0
0

Hi Deepika,

 

 

 

Following part of the example, I made this code, please try this:

 

1. Selection:

2.JPG

 

2. Dynpro:

3.JPG

 

3. Dynpro Procces:

 

1.JPG

4. MODULE f4_class.

 

MODULE f4_class INPUT.

   DATA:

     it_values TYPE STANDARD TABLE OF  ddshretval WITH HEADER LINE,

     it_dyntab TYPE STANDARD TABLE OF dynpread,

     wa_dyntab TYPE dynpread.

 

   FREE: it_data, it_dyntab.

 

   SELECT * FROM usr02 INTO CORRESPONDING FIELDS OF TABLE it_data

    UP TO 100 ROWS

    WHERE ustyp EQ p_ustyp.

   CHECK sy-subrc EQ 0.

 

   CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

     EXPORTING

       retfield        = 'BNAME'

       dynprofield     = 'BNAME'

       window_title    = 'Example'

       value_org       = 'S'

     TABLES

       value_tab       = it_data

       return_tab      = it_values

     EXCEPTIONS

       parameter_error = 1

       no_values_found = 2

       OTHERS          = 3.

   IF sy-subrc EQ 0.

     READ TABLE it_values INDEX 1.

     READ TABLE it_data ASSIGNING <data> WITH KEY bname = it_values-fieldval.

     IF sy-subrc EQ 0.

       p_bname = <data>-bname.

       p_class = <data>-class.

 

       FREE wa_dyntab.

       wa_dyntab-fieldname  = 'P_CLASS'.

       wa_dyntab-fieldvalue = p_class.

       APPEND wa_dyntab TO it_dyntab.

 

       CALL FUNCTION 'DYNP_VALUES_UPDATE'

         EXPORTING

           dyname               = sy-cprog

           dynumb               = sy-dynnr

         TABLES

           dynpfields           = it_dyntab

         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 EQ 0.

         CALL FUNCTION 'SAPGUI_SET_FUNCTIONCODE'

           EXPORTING

             functioncode           = '/00'

           EXCEPTIONS

             function_not_supported = 1.

       ENDIF.

     ENDIF.

   ENDIF.

ENDMODULE.                                             "F4_CLASS  INPUT.


5. Result:

5.JPG


4.JPG


Regards,

Richard.



Standard Reports

$
0
0

Hi,

 

Is there is any standard report in PM to get maintenance expenses and spate parts consumption for each Equipment/ Functional location wise ?

 

What is standard report available to find downtime details Equipment / Functional location wise ?

Re: Adding a dummy column for text in crosstab report

$
0
0

Ido Millet,

 

 

With me being so "Green" as a Crystal Reports user, I'm not sure I know what a "Display String" property expression is.  Can you please give me the detail steps on how to use it so that I can get the desired output?  I'd really appreciate it.  Thank you.

Re: I/E default in specification type (SAP EHS)

$
0
0

Dear Prasad

 

if you click on flag "'label relevant" and use F1 helpy ou get good explanation by SAP. In any case: if i remember correct it is related to the management of material/specification link which need to be considered during the label management process in SAP EHS,

 

C.B.

Re: Using backend ERP with multiple clients and EHSM?

$
0
0

Dear Cindy

 

this will simplifies your problem. The challenge is now clearly lower to you. In this scenario the risks are lower. But may be you should use current/recent version which is EHSM 5.0. In any case: there are a lot of links in this FORUM related to this solution. Check:; SAP EHS Management for Beginners

You will find a lot of references to the EHSM solution; e.g. topic of data migration, set up etc.

In my opinion regarding dublicating of master data and the other risks you have mentioned. the riks is low.

 

Good luck in installation/preparation.

 

C.B.

Column Chart

$
0
0

Hello, I have a column chart which was working fine when i had only one series in it. now i went to add another series so i could show the amount as well as units but it still shows one series which is the newer one that i just added. it is giving me 2 series label on the side but how can i get it to show both series?

Thanks.


Re: source for VBAK-XBLNR

$
0
0

Jose,

 

Many thanks!

 

Do you know where we can configure this?

 

Suppose, business does not want the data from previous bill (VBRK-XBLNR) in the return order (VBAK-XBLNR)? or this field should populate the PO number of the return order itself?

 

TW

Re: Set properties of a file getting downloaded from SAP

$
0
0

Hello Jelena,

 

Yes. You are correct that some of these attributes are set by the OS. What we want to do is set some of these properties in the program and want to check if if is possible in SAP. And yes, CL_GUI_FRONTEND_SERVICES sets only four attributes.

 

Thanks & Regards,

Manish

Re: BODI 11.7 to BODS 14.0 Migration

$
0
0

Hi Nagendran,

 

You have to use Data Services Repository Manager component to upgrade the repositories from one version to the other. Check the Upgrade of Local Repository in the ink SAP Data Services 4.2 Upgrade steps


Exporting and importing atl files, is only to migrate the code within the same version of BODS.

 

Thank you.

 

Regards,
Raghu.

MSS Powl - Time approval & task reminder dumps

$
0
0

Hi Folks,

 

We recently upgraded to EHP6 with ESS/MSS on ABAP Web-dynpro. We are facing an issue with one of the Powl application Time approval & task reminder which will be under Work overview in MSS. We are getting the dump saying "Exception condition "INVALID_PERSPECTIVE_ID" raised".

 

dump.PNG

 

I have checked the comp. configuration of the application, it is HRMSS_AC_POWL_INBOX_2, it is pointing correctly to 'MANAGER_MSS_INBOX_3'.

Please note that if I run this application from SE80 also, I am getting the same dump.

 

Capture.PNG

 

Can you please advise if anything is missing??

 

Thank you,

Krishna kishore T.

Re: Find heap memory Size for Web Intelligence processing server in BO 4.0

$
0
0

GO to CMC--> Servers--> Web Intelligence Processing Server--> Right click, properties.

 

Under Web Intelligence Core Services, if Enable services is enabled, you should see the values used.

Viewing all 8713 articles
Browse latest View live




Latest Images