'태그를 입력해 주세요.'에 해당되는 글 5건

  1. 2013.09.23 영화 [일대종사] 2
  2. 2012.09.12 뮤지컬 [셜록 홈즈: 엔더슨가의 비밀]
  3. 2012.07.08 RSAP, Rook and ERP
  4. 2012.05.23 What's New in HANA Studio SPS04
  5. 2012.04.02 뮤지컬 [모비딕]
탐미/영화기록2013. 9. 23. 03:28



긴긴 연휴 내.

예약했다 취소하기를 반복하던 또한편의 영화. [일대종사].


실상. 내 마음에 가장 크게 들어왔던 장면은 저 장면도 아니고, 

어떤 포스터에도 나와있지 않았고,

구글 이미지 검색에도 나오지 않았기에. 아쉽지만. 

(이렇게 나중에라도 DVD를 살 핑계를 만들어두는.. #랩탑에_ODD도_없는주제에_ )


예전에.

처음으로 Live로 Jazz 공연을 봤을 때.

사람의 목소리가 멋진 악기가 됨을 느꼈었고.

오늘.

일대종사를 보며.

사람의 몸의 움직임이

최고의 악기라는 생각이 들었다면. 과찬일까. 잘못된 비유일까.


멋진 악기로.

멋진 캔버스로 분한

그들의 몸동작들은.

(누군가는 완벽한 발레를 보는 듯 하다 하기도 했지만.

 나는 본시 파인아트 따위와 안친하니까.)

아.름.다.웠.다. 



아아. 장쯔이.

그녀는.

아.름.다.웠.다. 




사실. 

영상이 아름다웠던 영화는 이전에도 많았다.

이를테면.

영화. [연인].(굳이 링크를 걸기 위해 Old Blog에 있던 글을 옮겨옴..) 

영상은 참으로 아름다웠지만.

밸런스가 무너져있던 영화.

나중에는 유덕화 얼굴만 봐도 낄낄 거리게 되었던 문제작. 


2004년의 연인에서와 같이.

장쯔이는 여전히 방부제 미모를 자랑하지만.

일대종사에서의 장쯔이는

아름답기 때문에 아름다운게 아닌

외롭기에 아름다웠고

그녀의 몸짓 하나 하나가 아름다웠다. 



플랫폼에서

뒤돌아 걸어가던 그녀의 뒷모습.

그 모습에서

처연한 아름다움이 보였던 나는.

내 머릿속이 잘못된걸까?


아니면 네가 보여서였을까.. 






'탐미 > 영화기록' 카테고리의 다른 글

영화 [주먹이 운다]  (0) 2013.10.14
영화 [부에노스 아이레스에서 사랑에 빠질 확률]  (0) 2013.09.27
영화 [우리 선희]  (0) 2013.09.18
영화 [뫼비우스]  (0) 2013.09.09
영화 [북촌방향]  (0) 2011.09.16
Posted by AgnesKim
탐미/공연기록2012. 9. 12. 11:47



어제. 공연메이트님의 은총으로 관람했던 뮤지컬. 

캐스팅은.. 사진과 다름. (어제가 첫공이어서인지 구글링해도 이미지가 안나오더라) 


첫공... 이어서이었을까. 


연강홀.. 에서 딱 중간정도의 자리에서 보는데

전반적으로 모든 배우들이 성량이 떨어지는 느낌.

그동안 내가 너무 파워풀한 공연들만 봐서일까.

전반적으로 소리가 작다. 

배우 소리가 작으니 다른 음향도 죽고.. 


연출. 독특하다. 

소품과 세트의 이용보다는 거의 조명을 많이 활용한 형태.

근데 그 조명과 이미지의 활용이 꽤 훌륭하다.


스토리. 

셜록인데. 당연한거 아닌가. 






근데.. 소리가 작아..

가운데서(B구역 7열) 보는데도 작게 느끼면 2층 관람객은 대략 안습.. 










'탐미 > 공연기록' 카테고리의 다른 글

연극 [인디아 블로그 시즌2]  (0) 2012.09.24
연극 [거기]  (0) 2012.09.17
연극 [아버지] - 부제 : 세일즈맨의 죽음  (0) 2012.09.10
뮤지컬 [맨 오브 라만차]  (0) 2012.09.03
연극 [유쾌한 하녀 마리사]  (0) 2012.09.03
Posted by AgnesKim
Technique/그외2012. 7. 8. 09:55

RSAP, Rook and ERP

Posted by Alvaro Tejada Galindo  in Scripting Languages on Jul 6, 2012 4:39:03 AM

As I wrote in my blog Analytics with SAP and R (Windows version) we can use RSAP to connect to our ERP system and play with the data.

 

This time I wanted of course, to keep exploring the capabilities of RSAP, but using something else. As everybody knows, I love micro-frameworks, so for R that not an exception...gladly, Rook came to the rescue...

 

Rook is a simple web server that will run locally and will allow us to do some really nice things...enough talk...let's go to the source code...

 

RSAP_Rook.R

library("RSAP")

require("Rook")

setwd("C:/Blag/R_Scripts")

 

conn = RSAPConnect("sap.yml")

parms <- list('DELIMITER' = ';',

              'FIELDS' = list(FIELDNAME = list('CARRID', 'CARRNAME')),

              'QUERY_TABLE' = 'SCARR')

res <- RSAPInvoke(conn, "RFC_READ_TABLE", parms)

#RSAPClose(conn)

scarr<-res$DATA

flds<-sub("\\s+$", "", res$FIELDS$FIELDNAME)

scarr<-data.frame(colsplit(scarr$WA,";", names=flds))

 

parms <- list('DELIMITER' = ';',

              'FIELDS' = list(FIELDNAME = list('CITYFROM')),

              'QUERY_TABLE' = 'SPFLI')

res <- RSAPInvoke(conn, "RFC_READ_TABLE", parms)

#RSAPClose(conn)

spfli<-res$DATA

flds<-sub("\\s+$", "", res$FIELDS$FIELDNAME)

spfli<-data.frame(colsplit(spfli$WA,";", names=flds))

spfli<-unique(spfli)

 

get_data<-function(p_carrid,p_cityfrom){

  parms<-list('DELIMITER' = ';',

              'FIELDS' = list(FIELDNAME = list('CITYTO','FLTIME')),

              'OPTIONS' = list(TEXT = list(p_carrid, p_cityfrom)),

              'QUERY_TABLE' = 'SPFLI')

  res<-RSAPInvoke(conn, "RFC_READ_TABLE", parms)

  RSAPClose(conn)

  spfli<-res$DATA

  flds<-sub("\\s+$", "", res$FIELDS$FIELDNAME)

  if(length(spfli$WA)>0){

  spfli<-data.frame(colsplit(spfli$WA,";", names=flds))

  return(spfli)

  }else{

   return(spfli)

  }

}

 

newapp<-function(env){

  req<-Rook::Request$new(env)

  res<-Rook::Response$new()

  res$write('<form method="POST">\n')

  res$write('<div align="center"><table><tr>') 

  res$write('<td>Select a carrier: <select name=CARRID>')

  for(i in 1:length(scarr$CARRID)) {

    res$write(sprintf('<OPTION VALUE=%s>%s</OPTION>',scarr$CARRID[i],scarr$CARRNAME[i]))

  }

  res$write('</select></td><td>')

  res$write('Select a city: <select name=CITYFROM>')

  for(i in 1:length(spfli$CITYFROM)) {

    res$write(sprintf('<OPTION VALUE=%s>%s</OPTION>',spfli$CITYFROM[i],spfli$CITYFROM[i]))

  }

  res$write('</select></td>')

  res$write('<td><input type="submit" name="Get Flights"></td>')

  res$write('</tr></table></div>')

  res$write('</form>')

 

  if (!is.null(req$POST())) {

    p_carrid = req$POST()[["CARRID"]]

    p_cityfrom = req$POST()[["CITYFROM"]]

    flights_from<-paste('Distance in Flights from ',p_cityfrom,sep='')

 

    p_carrid<-paste('CARRID = \'',p_carrid,'\'',sep='')

    p_cityfrom<-paste('AND CITYFROM =\'',p_cityfrom,'\'',sep='')

 

    spfli<-get_data(p_carrid,p_cityfrom)

 

    if(length(spfli$CITYTO) > 0){

    png("Flights.png",width=800,height=500)

    plot(spfli$FLTIME,type="n",axes=FALSE,ann=FALSE)

    lines(spfli$FLTIME,col="blue")

    points(spfli$FLTIME, pch=21, bg="lightcyan", cex=1.25)

    box()

    xy<-length(spfli$CITYTO)

    axis(2, col.axis="blue", las=1)

    axis(1, at=1:xy, lab=spfli$CITYTO, col.axis="purple")

    title(main=flights_from, col.main="red", font.main=4)

    dev.off()

    res$write("<div align='center'>")

    res$write(paste("<img src='", server$full_url("pic"), "/", "Flights.png'", "/>", sep = ""))

    res$write("</div>")

    }else{

      res$write("<p>No data to select...</p>")

    }

  }

  res$finish()

}

 

server = Rhttpd$new()

server$add(app = newapp, name = "Flights")

server$add(app = File$new("C:/Blag/R_Scripts"), name = "pic")

server$start()

server$browse("Flights")

 

This is the result...

 

RSAP_Rook_001.png

RSAP_Rook_002.png

RSAP_Rook_003.png

RSAP_Rook_004.png

 

As you can see, we're getting the data from SAP to fill both SELECT's and then call out the query. We generate a PNG graphic showing the distance from the City From to the City To and then call it from our Web Page to show it on the screen.

 

As you can see, RSAP give us a lot of opportunities that we can take advantage by simply putting some effort and imagination. Hope this boots your R interest 



http://scn.sap.com/community/scripting-languages/blog/2012/07/06/rsap-rook-and-erp?utm_source=twitterfeed&utm_medium=twitter

Posted by AgnesKim
Technique/SAP HANA2012. 5. 23. 17:38

Hello All,

 

As we are getting new versions of HANA,its required to know what are the changes are coming-in in the latest versions.

 

Here I have listed,the new & changed features in HANA Studio SPS04 version.You can get these details from SAP HANA Modeling Guide available in SMP as well.

 

Loading data from flat files (new)

You use this functionality to upload data from flat files, available at a client file system to SAP HANA database. The supported file types are .csv, .xls, and .xlsx.

This approach is very handy to upload your content into HANA Database.For more details,referhttp://scn.sap.com/docs/DOC-27960

 

Exporting objects using SAP Support Mode (new)

You use this functionality to export an object, along with other associated objects and data for SAP support purposes. This option should only be used when requested by SAP support.This would be helpful to debug from SAP side, in case of any issues reported for particular Views.

 

Input parameters (new)

Used to provide input for the parameters within stored procedures, which are evaluated when the procedure is executed. You use input parameters as placeholders during currency conversion and in formulas like calculated measures, and calculated attributes.

 

Import/export server and client (changed)

• Exporting objects using Delivery Units (earlier known as Server Export):

Function to export all packages that make up a delivery unit and the relevant objects contained therein, to the client or to the SAP HANA server filesystem.

 

• Exporting objects using Developer Mode (earlier known as Client Export):

Function to export individual objects to a directory on your client computer. This mode of export should only be used in exceptional cases, since this does not cover all aspects of an object, for example, translatable texts are not copied.

 

• Importing objects using Delivery Unit (earlier known as Server Import):

Function to import objects (grouped into a delivery unit) from the server or client location available in the form of .tgz file.

 

• Importing objects using Developer Mode (earlier known as Client Import):

Function to import objects from a client location to your SAP HANA modeling environment.


Variables (changed)

Variables can be assigned specifically to an attribute, which is used for filtering via the where clause. At runtime, you can provide different values to the variable to view corresponding set of attribute data. You can apply variables on attributes of analytic and calculation views.

 

Hierarchy enhancements (changed)

Now you can create a hierarchy between the attributes of a calculation view in addition to attribute views. The Hierarchy node is available in the Output pane of the Attribute and Calculation view.

 

Activating Objects (changed)

You activate objects available in your workspace to expose the objects for reporting and analysis.

Based on your requirement, you can perform the following actions on objects:

• Activate

• Redeploy

• Cascade Activate

• Revert to Active

 

Auto Documentation (changed)

Now the report also captures the cross references, data foundation joins, and logical view joins.

 

Calculation view (changed)

• Aggregation node: used to summarize data of a group of rows by calculating values in a column

• Multidimensional reporting: if this property is disabled you can create a calculation view without any measure, and the view is not available for reporting purposes

• Union node datatype: you can choose to add unmapped columns that just have constant mapping and a data type

• Column view now available as data source

• Filter expression: you can edit a filter applied on aggregation and projection view attributes using filter expressions from the output pane that offers more conditions to be used in the filter including AND, OR, and NOT

 

Autocomplete function in SQL Editor (changed)

The autocomplete function (Ctrl+Space) in the SQl Editor shows a list of available functions.

 

Hope this helps.

 

Rgds,

Murali

Posted by AgnesKim
탐미/공연기록2012. 4. 2. 17:23


지난 토요일. 오후 세시공연. 

뮤지컬 모비딕.

캐스팅은 이스마엘에 윤한. 퀴퀘그에 지현준.에이헙 황건.스타벅 유성재. 플라스크 유승철.스텁 황정규. 네레이드 이지영.


노래하고 춤추고 연기하며 연주하는 뮤지컬 모비딕.

그래서 캐스팅이 참 쉽지 않을 것 같은 생각이 들었고, 그래서 더 이 공연이 궁금해졌었다. 

공연메이트는 여배우가 나오지 않는 극을 싫어라 하지만

그런 마이너한 부분은 - 사실 나에겐 장점이므로.. 쿨럭 - 간단히 무시하고,

복지카드님의 은총으로 관람하게 되었던 뮤지컬 모비딕. 


음악도. 연주도. 연기도. 모두 꽤 만족스러웠다.

물론. 난 파인아트와 가깝지 못한 인물이므로, 

굉장히 수준급의 연주다 - 부터 시작해서 뭐 그런건 잘 모른다. 

하지만. 그들에게 주어진 것은 그저 역할과. 하나씩의 악기였을 뿐인데

처음에 극장에 들어설 땐 난파선 같기만 하던 세트는 

바다가 되고, 풍랑을 지나고, 고래와 싸운다. 



사진과는 많이 다른 윤한. 

피아니스트여서인지. 아무래도 성량은 조금 떨어지더라(다른 분들에 비해서).

근데, 공연하는 내내 참 행복해 보였다. 눈이 반짝반짝거리고 있더란. 

그리고. 참 이분은.. 연예인스러웠다. 기럭지며, 꽃미남과인것 하며. 그리고 객석에서의 "꺄아~~~~~~ >.< " 하는 반응에. 풉.

(어쩌면 윤한이 아닌 다른 사람이 나왔을 지 모르겠지만, 예매싸이트의 캐스팅보드에서는 윤한이라니깐 그런가보다 한다)


퀴퀘그 지현준.

공연보러 간다는 4sq를 찍고나서. 공연이 끝난 후에 아는 분의 댓글을 보았다. 

"지현준 배우를 주목해주세요"

그런데, 그분은 모르고 봐도 자꾸 눈이 가더라. 

퀴퀘그로 완전 빙의한 지현준. 

다른 퀴퀘그는 지현준의 퀴퀘그와는 많이 다를 것 같다. 

뭐. 캐스팅 보드 상의 사진에 나온 KoN에 대한 선입견일 수도 있겠으나. 

야성의 퀴퀘그가 그분에게서 나올지는 조금 의문. 

그리고 중반 이후부터 파상풍에 시달리며 신음만 하는 역할임에도, 그 부분에서조차도 존재감 작렬. 


네레이드.

난 사실 여배우가 있기에. 혹. 세이렌이 아닐까 했었다. 

은근. 세이렌에 의한 분열 또는 고난. 뭐 그런 장면을 기대했었나보다. 


독특함을 넘어 특별했던 공연.

그리고. 지현준이라는 다재다능한 배우의 발견. 


멋진 공연이었다. 








모비딕

장소
두산아트센터 연강홀
출연
유승철, 조성현, 이승현, 유성재, 황건
기간
2012.03.20(화) ~ 2012.04.29(일)
가격
R석 65,000원, S석 45,000원
가격비교예매



'탐미 > 공연기록' 카테고리의 다른 글

연극 [슬픈 대호]  (0) 2012.08.07
연극 [내 이름은 강]  (0) 2012.08.07
연극 [봄날]  (2) 2012.03.26
뮤지컬 [카페인]  (0) 2012.03.20
연극 [눈꽃 편지]  (0) 2012.03.04
Posted by AgnesKim