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

Re: IE9 and IE10 - Microsoft security update KB2846071

$
0
0

Hey,

 

I just received confirmation that the fix works at least on IE10. We are still testing other supported browsers.

 

Also I got confirmation that we have done adjustment to the code for coming SP6. With SP6 there should be no problems.

 

Jukka


Re: stock confirmation

$
0
0

Hi

 

How you are reserving the stock at the moment? If this is with availability check then you can go for delivery option. Dont reserve the stock the time of order creation. When you want to reserve the stock against any sale order just create the delivery for that order and don't do the PGI. System will automatically reserve the stock against that delivery in schedule for delivery.

If you want this to be done from availability check then I am afraid it is not possiblt. Because in that check system will reserve the stock against first order.

Check the below link if it is helping for you.

http://scn.sap.com/thread/2068072

 

Thank$

Job log cannot be send out to User

$
0
0

Hi,

My job, ZWRP ended and I could see the job log in SM37

However, even with a recipent in my background job, I am not getting any job log send to the designated group of User.

While I understand if there is a spool, it will send the spool but in this case, there is no spool except a job log.

 

can someone advise if it is possible to configure without coding?

 

Thanks

Re: Problem in HTML string conversion.

$
0
0

Hi nagaraj,

 

i tried like this, it is working for me

 

data:
t_objbin   type standard table of solisti1,   " Attachment data
t_objtxt   type standard table of solisti1,   " Message body
t_objpack  type standard table of sopcklsti1, " Packing list
t_reclist  type standard table of somlreci1" Receipient list
t_objhead  type standard table of solisti1.   " Header

data: wa_docdata type sodocchgi1,   " Document data
       wa_objtxt  type solisti1,     " Message body
       wa_objbin  type solisti1,     " Attachment data
       wa_objpack type sopcklsti1,   " Packing list
       wa_reclist type somlreci1.    " Receipient list

data: w_tab_lines type i.           " Table lines


types : begin of ty_sflight,
         carrid     type  sflight-carrid,
         connid     type  sflight-connid,
         fldate     type  sflight-fldate,
         price      type  sflight-price,
         currency   type  sflight-currency,
         planetype  type  sflight-planetype,
         end of ty_sflight.

types : begin of ty_final,
         carrid(3) type c,
         connid(4) type c,
         fldate(8) type c,
         price(17) type c,
         currency(5) type c,
         planetype(10) type c,
         end of ty_final.

data : it_sflight type table of ty_sflight,
        wa_sflight type ty_sflight.
data : it_final type table of ty_final,
        wa_final type ty_final.




* Start-of-selection
start-of-selection.

select carrid
        connid
        fldate
        price
        currency
        planetype
        from sflight into table it_sflight up to 10 rows.

loop at it_sflight into wa_sflight.
   wa_final-carrid     =    wa_sflight-carrid.
   wa_final-connid     =    wa_sflight-connid.
   wa_final-fldate     =    wa_sflight-fldate.
   wa_final-price      =    wa_sflight-price.
   wa_final-currency   =    wa_sflight-currency.
   wa_final-planetype  =    wa_sflight-planetype.
  append wa_final to it_final.
clear wa_final.
endloop.




* Creating message
   perform create_message.

* Sending Message
   perform send_message.

*&---------------------------------------------------------------------*
*&      Form  create_message
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
form create_message .

**1 Title, Description & Body
   perform create_title_desc_body.

**2 Receivers
   perform fill_receivers.

endform.                    " create_message

*&---------------------------------------------------------------------*
*&      Form  CREATE_TITLE_DESC_BODY
*&---------------------------------------------------------------------*
*       Title, Description and body
*----------------------------------------------------------------------*
form create_title_desc_body.

*...Title
   wa_docdata-obj_name  = 'Email notification'.

*...Description
   wa_docdata-obj_descr = 'Email body in HTML'.

*...Message Body in HMTL
   wa_objtxt-line = '<html> <body style="background-color:#FFE4C4;">'.
   append wa_objtxt to t_objtxt.

   wa_objtxt-line = '<p> List of Test materials </p>'.
   append wa_objtxt to t_objtxt.

*   table display
   wa_objtxt-line = '<table style="MARGIN: 10px" bordercolor="#90EE90" '.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = ' cellspacing="0" cellpadding="3" width="400"'.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = ' border="1"><tbody><tr>'.
   append wa_objtxt to t_objtxt.

*   table header
   wa_objtxt-line = '<th bgcolor="#90EE90">Airline & Code</th>'.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = '<th bgcolor="#90EE90">Flight Connection Number</th>'.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = '<th bgcolor="#90EE90">Flight date</th>'.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = '<th bgcolor="#90EE90">Airfare</th>'.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = '<th bgcolor="#90EE90">Local currency of airline</th>'.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = '<th bgcolor="#90EE90">Aircraft Type</th></tr>'.
   append wa_objtxt to t_objtxt.

*   table Contents
   loop at it_final into wa_final.
      wa_objtxt-line = '<tr style="background-color:#eeeeee;">'.
     append wa_objtxt to t_objtxt.
     concatenate '<td>' wa_final-carrid '</td>' into wa_objtxt-line.
     append wa_objtxt to t_objtxt.
     concatenate '<td>' wa_final-connid '</td>' into wa_objtxt-line.
     append wa_objtxt to t_objtxt.
     concatenate '<td>' wa_final-fldate '</td>' into wa_objtxt-line.
     append wa_objtxt to t_objtxt.
     concatenate '<td>' wa_final-price '</td>' into wa_objtxt-line.
     append wa_objtxt to t_objtxt.
     concatenate '<td>' wa_final-currency '</td>' into wa_objtxt-line.
     append wa_objtxt to t_objtxt.
     concatenate '<td>' wa_final-planetype '</td></tr>' into wa_objtxt-line.
     append wa_objtxt to t_objtxt.
     clear wa_final.
   endloop.


*   table close
   wa_objtxt-line = '</tbody> </table>'.
   append wa_objtxt to t_objtxt.


*   Signature with background color
   wa_objtxt-line = '<br><br>'.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = '<p> Regards,</p>'.
   append wa_objtxt to t_objtxt.
   wa_objtxt-line = '<p style="background-color:#1E90FF;"><b> Your Name</b></p>'.
   append wa_objtxt to t_objtxt.


*   HTML close
   wa_objtxt-line = '</body> </html> '.
   append wa_objtxt to t_objtxt.

* Document data
   describe table t_objtxt      lines w_tab_lines.
   read     table t_objtxt      into wa_objtxt index w_tab_lines.
   wa_docdata-doc_size =
       ( w_tab_lines - 1 ) * 255 + strlen( wa_objtxt ).

* Packing data
   clear wa_objpack-transf_bin.
   wa_objpack-head_start = 1.
   wa_objpack-head_num   = 0.
   wa_objpack-body_start = 1.
   wa_objpack-body_num   = w_tab_lines.
*   we will pass the HTML, since we have created the message
*   body in the HTML
   wa_objpack-doc_type   = 'HTML'.
   append wa_objpack to t_objpack.

endform.                    " CREATE_TITLE_DESC_BODY

*&---------------------------------------------------------------------*
*&      Form  fill_receivers
*&---------------------------------------------------------------------*
*       Filling up the Receivers
*----------------------------------------------------------------------*
form fill_receivers .

   wa_reclist-receiver = 'ramesh@gmail.com'.
   wa_reclist-rec_type = 'U'.
   append wa_reclist to t_reclist.
   clear  wa_reclist.


endform.                    " fill_receivers
*&---------------------------------------------------------------------*
*&      Form  send_message
*&---------------------------------------------------------------------*
*       Sending Mail
*----------------------------------------------------------------------*
form send_message .

* Send Message to external Internet ID
   call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
     exporting
       document_data              = wa_docdata
       put_in_outbox              = 'X'
       commit_work                = 'X'     "used from rel.6.10
     tables
       packing_list               = t_objpack
       object_header              = t_objhead
       contents_txt               = t_objtxt
       receivers                  = t_reclist
     exceptions
       too_many_receivers         = 1
       document_not_sent          = 2
       document_type_not_exist    = 3
       operation_no_authorization = 4
       parameter_error            = 5
       x_error                    = 6
       enqueue_error              = 7
       others                     = 8.

   if sy-subrc ne 0.
     write: 'Sending Failed'.
   else.
     write: 'Sending Successful'.
   endif.
endform.                    " send_message

Re: Quota Cycle is from Hire Date

$
0
0

as I mentioned in 2nd example, you have to get Remaining Quota end of each period.

 

1: start & end date in Jan , but deduction period in Jan only

     Check if End of Jan => get remaining HRS=FR... (... is your Leave Quota), plz check more documents in T-code PDSY or my links sent to u)

     ADDDB9ABC => assign to 9ABC time type.

    

2: start & end date in Feb , but deduction period in Feb only

     same follow in 1st record in Jan. And accumulation into Time type 9ABC.

 

In next year (assuming your are using Time type 9H00 to generate your Leave Quota), plus time type (9ABC) to your time type 9H00.

Plz investigate carefully some useful documents I already mentioned.

 

 

Regards,

 

Woody

Re: How to Connect FTP server via internet proxy

Re: Logic to create Physical Inventory Document for multiple material using eCATT test script.

Re: Issue with Crystal Server 2011 Trial version

$
0
0

Hi Ramakrishna

 

Please try to restart SIA in CCM then check the behavior

 

Best Regards

Ines


Re: Universe Designer Failure Message "Not yet implemented"

$
0
0

Hello,

 

thanks for that information. It solves the problem!

 

Kind Regards,

Jule

Re: validation

$
0
0

Hi Kiran,

 

Yes...maintain the userid....for that particular user only will post the entries.

 

Thanks & Regards,

 

Aish

Re: Issue regarding Table Maintenance generator

$
0
0

Hi Venkata ,

 

The other way for your requirement is that Maintain a Time stamp field and make it as a primary key .

 

I hope this will work for your requirement.

 

When coming to Serial Number , if the user enters the value as below

 

     TOPNODE               CHECKNODE

 

1)  AJIT                          b

2)  AMAR                       a

3) ANATH               c

If the user deletes the  value and saved.

2)  AMAR       a

 

 

Again if the user reenter the same case as below and saved the entires .

 

 

2)  VISH         a

 

In this case  it will not meet your requirement .

 

It will be displayed as

 

1)  AJIT                          b

2)  VISH                        a

3) ANATH               c

 

Thanks ,

S.Rajendranath Raparthi.

Re: If necessary that delete index before upload a large amount of data to InfoCube?

$
0
0

Hi Harry,

 

As per the your data volume, without delete index also you can load data to target. if its one time activity.

 

Generally When we load huge data to target, during at that time delete/drop index more useful. it increase loading performance.

 

Index is purely related to Performance technique. If your not worrying about loading performance, you can go without deleting index.

 

Thanks

Re: Issue regarding Table Maintenance generator

$
0
0

While I agree with the other answers in principle, surely adding an inital key field with a time/date stamp is more simple?  With a counter number you will need to read the contents of the table to find the highest current number then increment it.  Just take the current date and time and the rest takes care of itself.  There's plenty of blogs out there explaining how to use TMG events for exactly this purpose.

 

Regards,

Nick

Re: smartform design?

$
0
0

Hi

 

when we are calling smartform with driver program and passing form interface parameters in function module genarated by smartform is it mandatory to declare internal table in bcz we already passing data data

 

      1.  Global settings :

           Form interface

           Variable name    Type assignment   Reference type

           ITAB               TYPE                  Table Structure

 

 

You should declar ITAB in Form interface ->Tables like this

 

    2. about looping is it mandatory at form level or we can do looping in driver program.

 

Yes like this

 

 

 

Please see this link for more about smartforms

 

http://www.****************/Tutorials/Smartforms/SFMain.htm

Re: PO Status In Follow On Document Details

$
0
0

Hello Jay,

 

Thanks for an update.

 

Well do we have any BADI or Exits by which this could be used.

 

Thanks,

Dhananjay


Re: GRC AC 10 SP13 - Cancelled Access Request Remains in Inbox

$
0
0

Hello,

 

seems new version has ben generated after request was raised.

 

cancel the request using search request.

 

Regards,

Prasnt

Re: How to create custom component via using sapui5

$
0
0

Thanks Andreas

 

I have access and follow the documentation.

 

Regards

Manoj

Re: Advance Analysis 1.4 with MS Office 2013 issue

$
0
0

Thank you Bharath.

 

Windows 7 & 32 bit OS.

 

Regards,

Sathishkumar.

Re: Problem in exit_sapmf02k_001

$
0
0

Hello Smruti,

I have written code according to you.

L_field type String.

and <fs> type j_1imovend.

 

when i debug it, it shows <fs> is not assigned.

 

 

Regards

Sabyasachi

Re: Webdynpro java - 500 Internal Server Error

$
0
0

Hi Pankaj,

 

The error seems to be related to state of the application; session, stateful etc.

 

Thanks

...

Viewing all 8798 articles
Browse latest View live




Latest Images