HCM Absence  types- need to display in different languages in the same country based on user language preference

Hi
We are implementing in Belgium where we need to have absence in both dutch and French for the different user sets. Is there anyway to set up one absence type but have the different translations for the different user groups.  There was a document ID 1619320.1 that referred to the fact that if the absences were created  by a seedfile then they would be translated. Has anyone come across this issue whereyou need to display the same absence type for more than one language in the same country and how did you do this or did you have to set up separate absence types in the different languages which I do not want to do
thanks

Hi Parker
If you are using Captivate 4 multi languages is a
posibility..
Set a User Variable to pass the language you want to a Flash
SWF whic is embeded (This can play and hold multiple audio tracks).
For example Captivate 4 will pass "french" to the embeded flash SWF
which will play the "french" track.
OR
you could just use branching ;)
Cheers.. Aquil0

Similar Messages

  • HOW CAN I CREATE A VIEW FROM SAME TABLE WHERE I NEED COLUMNS DETAILS FROM DIFFERENT ROWS IN THE SAME TABLE

    i have a table1 on the top, but i want to create a view from table 1 as  view mentioned beneath the table 2. Could any of you please help me.
    table1
    ID
    office
    employee
    activity
    1
    246
    -9999
    698
    2
    ##-99
    21480
    698
    3
    104
    -9999
    7025
    4
    ##-99
    88908
    7025
    5
    108
    -9999
    2415
    6
    ##-99
    17135
    2415
    7
    246
    -9999
    698
    8
    ##-99
    21480
    698
    9
    104
    -9999
    7025
    10
    ##-99
    88908
    7025
    11
    108
    -9999
    2415
    12
    ##-99
    17135
    2415
    view
    ID
    office
    ID1
    employee
    activity
    1
    246
    2
    21480
    698
    3
    104
    4
    88908
    7025
    5
    108
    6
    17135
    2415
    7
    246
    8
    21480
    698
    9
    104
    10
    88908
    7025
    11
    108
    12
    17135
    2415

    declare @forumsTable table (ID int, officeID int, employeeID INT, activityID int)
    insert into @forumsTable (ID, officeID, employeeID, activityID)
    values
    (1 ,246, -9999, 698 ),
    (2 ,-99, 21480, 698 ),
    (3 ,104, -9999, 7025),
    (4 ,-99, 88908, 7025),
    (5 ,108, -9999, 2415),
    (6 ,-99, 17135, 2415),
    (7 ,246, -9999, 698 ),
    (8 ,-99, 21480, 698 ),
    (9 ,104, -9999, 7025),
    (10 ,-99, 88908, 7025),
    (11 ,108, -9999, 2415),
    (12 ,-99, 17135, 2415)
    select f1.ID, f1.officeID, f2.ID as ID1, f1.employeeID, f1.activityID
    from @forumsTable f1
    inner join @forumsTable f2
    on f1.activityID = f2.activityID
    and f1.officeID > 0
    and f2.employeeID > 0
    and f1.id - f2.id = -1
    You really need to improve the relationship here.
    Perhaps you could make office and activity an exclusive pair.

  • Displaying different sums in the same row based on date ranges

    Say I had a table like this
    DECLARE @t1 TABLE (RowId INT PRIMARY KEY IDENTITY(1,1), BusinessType VARCHAR(100), SalesPerson VARCHAR(100), Category VARCHAR(100), OrderAmount DECIMAL(10,2), OrderDate DATETIME )
    Now I want to get a result that is grouped first by BusinessType, then SalesPerson and include derived columns that are sums based  on different date ranges.
    Month-to-date = from the start of the current month to today
    Month-to-date previous year = from the start of the current month to today 1 year ago
    DECLARE @today DATETIME
    DECLARE @today_prev_year DATETIME
    DECLARE @year_start DATETIME
    DECLARE @year_prev_start DATETIME
    DECLARE @month_start DATETIME
    DECLARE @month_prev_start DATETIME
    SET @today = GETDATE();
    SET @today_prev_year = DATEADD(YEAR,-1,@today)
    SET @year_start = CAST('01/01/' + CAST(DATEPART(YEAR,GETDATE()) AS VARCHAR(10)) AS DATETIME);
    SET @year_prev_start = DATEADD(YEAR,-1,@year_start)
    SET @month_start = DATEADD(month, DATEDIFF(month, 0, @today), 0); --gets the first of the current month
    SET @month_prev_start = DATEADD(YEAR,-1,@month_start); --gets the first of the current month
    SELECT t.BusinessType,t.SalesPerson,t.Category
    SUM(CASE WHEN o.OrderDate > @month_start AND ac.DocumentDate < @today THEN o.OrderAmount ELSE 0 END) AS MTDActualAmount
    SUM(CASE WHEN o.OrderDate > @month_prev_start AND ac.DocumentDate < @today_prev_year THEN o.OrderAmount ELSE 0 END) AS MTDPrevActualAmount
    FROM @t1 t
    Hope this is clear as to what Im trying to do.  Im ultimately going to pull this into an SSRS report, so im wondering if I can do this different SUM values in the report and handle the grouping there.
    Thoughts?

    Based on your example (with a group by added) it should work.
    However, if you incorperated a calendar table (http://social.technet.microsoft.com/wiki/contents/articles/29260.tsql-calendar-functions-and-tables.aspx)
    you could lose all those manually set parameters:
    DECLARE @t1 TABLE (RowId INT PRIMARY KEY IDENTITY(1,1), BusinessType VARCHAR(100), SalesPerson VARCHAR(100), Category VARCHAR(100), OrderAmount DECIMAL(10,2), OrderDate DATETIME, DocumentDate DATETIME)
    INSERT INTO @t1 (BusinessType, SalesPerson, Category, OrderAmount, OrderDate, DocumentDate) VALUES
    ('A','Joe','CatA',10,'2015-01-01','2015-01-01'),('A','Joe','CatB',10,'2015-01-02','2015-01-01'),('A','Joe','CatA',30,'2015-01-03','2015-01-04'),('A','Joe','CatB',40,'2015-01-04','2015-01-01'),('A','Joe','CatA',100,'2015-02-01','2015-02-01'),
    ('A','Joe','CatB',100,'2015-02-02','2015-02-01'),('A','Joe','CatA',300,'2015-02-03','2015-02-04'),('A','Joe','CatB',400,'2015-02-04','2015-02-01'),('A','Bob','CatA',1,'2015-01-01','2015-01-01'),('A','Bob','CatB',1,'2015-01-02','2015-01-01'),
    ('A','Bob','CatA',3,'2015-01-03','2015-01-04'),('A','Bob','CatB',4,'2015-01-04','2015-01-01'),('A','Bob','CatA',10,'2015-02-01','2015-02-01'),('A','Bob','CatB',10,'2015-02-02','2015-02-01'),('A','Bob','CatA',30,'2015-02-03','2015-02-04'),
    ('A','Bob','CatB',40,'2015-02-04','2015-02-01'),('B','Joe','CatA',10,'2015-01-01','2015-01-01'),('B','Joe','CatB',10,'2015-01-02','2015-01-01'),('B','Joe','CatB',40,'2015-01-04','2015-01-01'),
    ('B','Joe','CatA',100,'2015-02-01','2015-02-01'),('B','Joe','CatB',100,'2015-02-02','2015-02-01'),('B','Joe','CatA',300,'2015-02-03','2015-02-04')
    SELECT t.BusinessType,t.SalesPerson,t.Category,
    SUM(CASE WHEN OrderDate >= monthStart AND DocumentDate < today THEN OrderAmount ELSE 0 END) AS MTDActualAmount,
    SUM(CASE WHEN OrderDate BETWEEN prevMonthStart AND prevMonthENd AND DocumentDate >= yearStart THEN OrderAmount ELSE 0 END) AS MTDPrevActualAmount
    FROM @t1 t
    INNER JOIN calendar c
    ON today = CAST(CURRENT_TIMESTAMP AS DATE)
    Group by t.BusinessType,t.SalesPerson,t.Category

  • OHS not able to redirect to two different ports of the same managed server

    Hi
    I need to redirect to different ports of the same managed server (say M1, M2) based on the availability of the managed server. ie when managed server M1 is busy handling other requests i need to redirect my new request to M2. i already have this mechanism to find out which managed server is free.
    so now the problem is if M2 is free how would i tell ohs to redirect it to M2 server??
    M1,M2 both managed servers are hosted at host1.example.com.
    M1 port - 8001
    M2 port - 8003
    my context root is /YpsSupplyPlanningEngineService/supplyPlanningEngineService
    my mod_wl_ohs.conf is defined as:
    <Location /M1/YpsSupplyPlanningEngineService/supplyPlanningEngineService>
    SetHandler weblogic-handler
    PathTrim /M1
    WebLogicHost host1.example.com
    WebLogicPort 8001
    </Location>
    <Location /M2/YpsSupplyPlanningEngineService/supplyPlanningEngineService>
    SetHandler weblogic-handler
    PathTrim /M2
    WebLogicHost host1.example.com
    WebLogicPort 8003
    </Location>
    when i type the url in browser as "http://<ohs_server_url>:7777/M2/YpsSupplyPlanningEngineService/supplyPlanningEngineService"
    This is not working. Is there any way to do it?
    Please help me here.
    Thanks in advance.
    Edited by: 925137 on Jul 5, 2012 2:03 AM

    Hi Anon
    thanks for replying..
    Chnage from /M1 to M1 didnt work.
    then I set debug ALL and set WLLogFile to full path
    the log i received when i queried for request is:
    2012-07-05T17:04:18.5774+05:30 ================New Request: [GET /M1/YpsSupplyPlanningEngineService/supplyPlanningEngineService?WSDL HTTP/1.1] =================
    2012-07-05T17:04:18.5774+05:30 Using Uri /M1/YpsSupplyPlanningEngineService/supplyPlanningEngineService
    2012-07-05T17:04:18.5774+05:30 After trimming path: '/YpsSupplyPlanningEngineService/supplyPlanningEngineService'
    *2012-07-05T17:04:18.5774+05:30 The final request string is '/YpsSupplyPlanningEngineService/supplyPlanningEngineService?WSDL'*
    2012-07-05T17:04:18.5774+05:30 SEARCHING id=[host1.example.com:8001] from current ID=[host1.example.com.com:8001]
    2012-07-05T17:04:18.5775+05:30 The two ids matched
    2012-07-05T17:04:18.5775+05:30 @@@FOUND...id=[host1.example.com.com:8001], server_name=[host1.example.com.com], server_port=[7777]
    2012-07-05T17:04:18.5775+05:30 attempt #0 out of a max of 5
    2012-07-05T17:04:18.5775+05:30 keepAlive = 1, canRecycle = 1
    2012-07-05T17:04:18.5775+05:30 Trying a pooled connection for 'xxx.xxx.xxx.xxx/8001/8001'
    2012-07-05T17:04:18.5775+05:30 getPooledConn: found a host and port/securePort match
    2012-07-05T17:04:18.5775+05:30 getPooledConn: No more connections in the pool for Host[xxx.xxx.xxx.xxx] Port[8001] SecurePort[8001]
    2012-07-05T17:04:18.5775+05:30 general list: trying connect to 'xxx.xxx.xxx.xxx'/8001/8001 at line 2372 for '/YpsSupplyPlanningEngineService/supplyPlanningEngineService?WSDL'
    2012-07-05T17:04:18.5776+05:30 URL::Connect: Connected successfully
    2012-07-05T17:04:18.5776+05:30 SSL is not configured for this connection
    2012-07-05T17:04:18.5776+05:30 Local Port of the socket is 7812
    2012-07-05T17:04:18.5776+05:30 Remote Host xxx.xxx.xxx.xxx Remote Port 7812
    2012-07-05T17:04:18.5776+05:30 general list: created a new connection to 'xxx.xxx.xxx.xxx'/8001 for '/YpsSupplyPlanningEngineService/supplyPlanningEngineService?WSDL', Local port:7812
    2012-07-05T17:04:18.5776+05:30 Entering method BaseProxy::sendRequest
    2012-07-05T17:04:18.5776+05:30 Entering method BaseProxy::parse_headers
    2012-07-05T17:04:18.5776+05:30 No of headers =5
    2012-07-05T17:04:18.5776+05:30 Header from client:[User-Agent]=[Java/1.6.0_11]
    2012-07-05T17:04:18.5776+05:30 Header from client:[Host]=[host1.example.com:7777]
    2012-07-05T17:04:18.5776+05:30 Header from client:[Accept]=[text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2]
    2012-07-05T17:04:18.5776+05:30 Header from client:[Connection]=[keep-alive]
    2012-07-05T17:04:18.5776+05:30 Header from client:[ECID-Context]=[1.004l1E7Cv6mESOGLMy^Aye0007Kd00000E;kXjE1ZDLIPHUjDHCj9KSnJLTkGSRtGKRXUQRdURP5URPdUPPJLQSqPRO_VBSpGSSgPSKgHQRiPQRbLIRbPQR_JLPmMTQZLO]
    2012-07-05T17:04:18.5776+05:30 Exiting method BaseProxy::parse_headers
    2012-07-05T17:04:18.5776+05:30 parse_client_headers is done
    2012-07-05T17:04:18.5776+05:30 Method is GET
    2012-07-05T17:04:18.5777+05:30 URL::sendHeaders(): meth='GET' file='/YpsSupplyPlanningEngineService/supplyPlanningEngineService?WSDL' protocol='HTTP/1.1'
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [User-Agent]=[Java/1.6.0_11]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [Host]=[host1.example.com:7777]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [Accept]=[text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [ECID-Context]=[1.004l1E7Cv6mESOGLMy^Aye0007Kd00000E;kXjE1ZDLIPHUjDHCj9KSnJLTkGSRtGKRXUQRdURP5URPdUPPJLQSqPRO_VBSpGSSgPSKgHQRiPQRbLIRbPQR_JLPmMTQZLO]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [Connection]=[Keep-Alive]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [WL-Proxy-SSL]=[false]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [X-Forwarded-For]=[xxx.xxx.xxx.xxx]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [WL-PATH-TRIM]=[M1]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [WL-Proxy-Client-IP]=[xxx.xxx.xxx.xxx]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [Proxy-Client-IP]=[xxx.xxx.xxx.xxx]
    2012-07-05T17:04:18.5777+05:30 Header to WLS: [X-WebLogic-KeepAliveSecs]=[30]
    2012-07-05T17:04:18.5779+05:30 About to call parseHeaders
    2012-07-05T17:04:18.5779+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6366+05:30 Reader::fill(): sysRecv returned 1271
    2012-07-05T17:04:18.6366+05:30 URL::parseHeaders: CompleteStatusLine set to [HTTP/1.1 200 OK]
    2012-07-05T17:04:18.6366+05:30 URL::parseHeaders: StatusLine set to [200 OK]
    2012-07-05T17:04:18.6366+05:30 URL::parseHeaders: StatusLineWithoutStatusCode set to [OK]
    2012-07-05T17:04:18.6366+05:30 Header from WLS:[Date]=[Thu, 05 Jul 2012 11:34:18 GMT]
    2012-07-05T17:04:18.6367+05:30 Header from WLS:[Transfer-Encoding]=[chunked]
    2012-07-05T17:04:18.6367+05:30 Header from WLS:[Content-Type]=[text/xml]
    2012-07-05T17:04:18.6367+05:30 Header from WLS:[X-Powered-By]=[Servlet/2.5 JSP/2.1]
    2012-07-05T17:04:18.6367+05:30 parsed all headers OK
    2012-07-05T17:04:18.6367+05:30 Exiting method BaseProxy::sendRequest
    2012-07-05T17:04:18.6367+05:30 sendResponse() : r->status = '200'
    2012-07-05T17:04:18.6367+05:30 Hdrs to client (add):[Date]=[Thu, 05 Jul 2012 11:34:18 GMT]
    2012-07-05T17:04:18.6367+05:30 Hdrs to client (add):[X-Powered-By]=[Servlet/2.5 JSP/2.1]
    2012-07-05T17:04:18.6367+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6373+05:30 Reader::fill(): sysRecv returned 4096
    2012-07-05T17:04:18.6374+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6374+05:30 Reader::fill(): sysRecv returned 4096
    2012-07-05T17:04:18.6374+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6374+05:30 Reader::fill(): sysRecv returned 4048
    2012-07-05T17:04:18.6374+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6377+05:30 Reader::fill(): sysRecv returned 4096
    2012-07-05T17:04:18.6377+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6377+05:30 Reader::fill(): sysRecv returned 4096
    2012-07-05T17:04:18.6377+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6377+05:30 Reader::fill(): sysRecv returned 4048
    2012-07-05T17:04:18.6377+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6381+05:30 Reader::fill(): sysRecv returned 4096
    2012-07-05T17:04:18.6381+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6381+05:30 Reader::fill(): sysRecv returned 4096
    2012-07-05T17:04:18.6382+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6382+05:30 Reader::fill(): sysRecv returned 4096
    2012-07-05T17:04:18.6382+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6382+05:30 Reader::fill(): sysRecv returned 1340
    2012-07-05T17:04:18.6382+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6382+05:30 Reader::fill(): sysRecv returned 385
    2012-07-05T17:04:18.6382+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6382+05:30 Reader::fill(): sysRecv returned 331
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): sysRecv returned 305
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): sysRecv returned 255
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): sysRecv returned 225
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): sysRecv returned 179
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): sysRecv returned 307
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): sysRecv returned 103
    2012-07-05T17:04:18.6383+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): sysRecv returned 393
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): sysRecv returned 179
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): sysRecv returned 311
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): sysRecv returned 255
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): sysRecv returned 223
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): sysRecv returned 179
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6384+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): sysRecv returned 309
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): sysRecv returned 103
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): sysRecv returned 393
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): sysRecv returned 179
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): sysRecv returned 319
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6385+05:30 Reader::fill(): sysRecv returned 255
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): sysRecv returned 327
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): sysRecv returned 103
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): sysRecv returned 377
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): sysRecv returned 179
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): sysRecv returned 305
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): sysRecv returned 103
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6386+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): sysRecv returned 309
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): sysRecv returned 103
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): sysRecv returned 379
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): sysRecv returned 179
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): sysRecv returned 311
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): sysRecv returned 103
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6387+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): sysRecv returned 315
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): sysRecv returned 103
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): sysRecv returned 381
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): sysRecv returned 179
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): sysRecv returned 152
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): sysRecv returned 327
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6388+05:30 Reader::fill(): sysRecv returned 317
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): sysRecv returned 237
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): sysRecv returned 319
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): sysRecv returned 311
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): sysRecv returned 251
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): sysRecv returned 319
    2012-07-05T17:04:18.6389+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): sysRecv returned 233
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): sysRecv returned 325
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): sysRecv returned 261
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): sysRecv returned 315
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): sysRecv returned 239
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6390+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): sysRecv returned 325
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): sysRecv returned 235
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): sysRecv returned 323
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): sysRecv returned 243
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): sysRecv returned 321
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6391+05:30 Reader::fill(): sysRecv returned 321
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): sysRecv returned 239
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): sysRecv returned 329
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): sysRecv returned 329
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): sysRecv returned 103
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): sysRecv returned 415
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6392+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): sysRecv returned 286
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): sysRecv returned 231
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): sysRecv returned 267
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): sysRecv returned 333
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): sysRecv returned 253
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): sysRecv returned 335
    2012-07-05T17:04:18.6393+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): sysRecv returned 251
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): sysRecv returned 343
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): sysRecv returned 259
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): sysRecv returned 325
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): sysRecv returned 341
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6394+05:30 Reader::fill(): sysRecv returned 353
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): sysRecv returned 255
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): sysRecv returned 331
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): sysRecv returned 265
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): sysRecv returned 327
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): sysRecv returned 263
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6395+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): sysRecv returned 335
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): sysRecv returned 261
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): sysRecv returned 337
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): sysRecv returned 255
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): sysRecv returned 345
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): sysRecv returned 279
    2012-07-05T17:04:18.6396+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6397+05:30 Reader::fill(): sysRecv returned 76
    2012-07-05T17:04:18.6397+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6397+05:30 Reader::fill(): sysRecv returned 386
    2012-07-05T17:04:18.6397+05:30 Reader::fill(): first=0 last=0 toRead=4096
    2012-07-05T17:04:18.6397+05:30 Reader::fill(): sysRecv returned 77
    2012-07-05T17:04:18.6397+05:30 calling closeConn() with non-null URL* at 633
    2012-07-05T17:04:18.6398+05:30 canRecycle: conn=1 status=200 isKA=1 clen=-1 isCTE=1
    2012-07-05T17:04:18.6398+05:30 closeConn: pooling for 'xxx.xxx.xxx.xxx/8001'
    2012-07-05T17:04:18.6398+05:30 closeConn: pooling '0'
    2012-07-05T17:04:18.6398+05:30 request [YpsSupplyPlanningEngineService/supplyPlanningEngineService?WSDL] processed successfully..................
    2012-07-05T17:04:18.7859+05:30 BEFORE acquire_lock
    2012-07-05T17:04:18.7860+05:30 AFTER acquire_lock
    2012-07-05T17:04:18.7860+05:30 List size is 1
    2012-07-05T17:04:18.7860+05:30 Cleaning up the list node 'host1.example.com.com:8001'list Length '1'
    2012-07-05T17:04:18.7860+05:30 stale connections: KA = 20, delta = 0
    The final request string generated is correct.. but still this fails in my java code (where i send request).
    it gives me an error saying:
    Error: java.io.FileNotFoundException: http://host1.example.com.com:7777/YpsSupplyPlanningEngineService/supplyPlanningEngineService?WSDL=/META-INF/wsdl/ServiceException.wsdl
    javax.xml.ws.WebServiceException: java.io.FileNotFoundException: http://host1.example.com.com:7777/YpsSupplyPlanningEngineService/supplyPlanningEngineService?WSDL=/META-INF/wsdl/ServiceException.wsdl
    Edited by: 925137 on Jul 5, 2012 4:42 AM

  • Display discounts and surcharges  for the same vbeln in the same row

    hi experts
    i have to display one discount and surcharges for one vbeln, posnr and one material,
    i have used konv-kschl for condition type and konv-kwert for condition value.
    in my output the conditions what i have given for discounts and surcharges its matching and displaying in different lines for the same vbeln and posnr. usually i should get one line of outputfor one vbeln, but iam getting 3 times repeated
    (one without discounts, surcharges,
    second : same vblen, posnr with discounts,
    third : same vblen, posnr for surcharges )
      please modify the internal table and  conditions below what i have given in my object.
    DATA : BEGIN OF it_konv OCCURS 0,
    knumv LIKE konv-knumv, "Number of the document condition
    kschl LIKE konv-kschl, "Condition type
    kwert LIKE konv-kwert, "Condition value
    kbetr LIKE konv-kbetr,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF it_konv.
    LOOP AT it_konv INTO wa_konv.
    CASE wa_konv-kschl.
    WHEN 'ZD01' OR 'ZD02' OR 'ZD03'.
    wa_konv-discounts = wa_konv-kwert.
    WHEN 'ZEXP' OR 'ZEXW' OR 'ZCAF' OR 'ZCAP' OR 'ZCAQ'
    OR 'ZS01' OR 'ZS02' OR 'ZS03'.
    wa_konv-surcharges = wa_konv-kwert.
    WHEN OTHERS.
    DELETE it_konv WHERE kschl = wa_konv-kschl.
    ENDCASE.
    MODIFY it_konv FROM wa_konv TRANSPORTING discounts surcharges.
    CLEAR wa_konv.
    REFRESH wa_konv.
    ENDLOOP.
    As per one of the abap expert who responded to my query is the following.
    DATA : BEGIN OF it_konv OCCURS 0,
    knumv LIKE konv-knumv, "Number of the document condition
    kschl LIKE konv-kschl, "Condition type
    kwert LIKE konv-kwert, "Condition value
    kbetr LIKE konv-kbetr,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF it_konv.
    DATA : BEGIN OF wa_konv OCCURS 0,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF wa_konv.
    move '1' to it_konv-knumv.
    move 'ZD01' to it_konv-kschl.
    move '1200' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    move '2' to it_konv-knumv.
    move 'ZEXP' to it_konv-kschl.
    move '1300' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    move '3' to it_konv-knumv.
    move 'ZEXP' to it_konv-kschl.
    move '1400' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    LOOP AT it_konv.
    MOVE-CORRESPONDING it_konv to wa_konv.
    CASE IT_konv-kschl.
    WHEN 'ZD01' OR 'ZD02' OR 'ZD03'.
    wa_konv-discounts = IT_konv-kwert.
    WHEN 'ZEXP' OR 'ZEXW' OR 'ZCAF' OR 'ZCAP' OR 'ZCAQ'
    OR 'ZS01' OR 'ZS02' OR 'ZS03'.
    wa_konv-surcharges = IT_konv-kwert.
    ENDCASE.
    COLLECT WA_KONV.
    CLEAR wa_konv.
    ENDLOOP.
    But to try according to the above, i dont have the values for kwert, i know only the condition type (KSCHL). based on this how can i solve my problem
    please clarify
    thanks in advance

    Refer to the suggestion given by Naimesh here Can we modify a sub-total in ALV making use of function GET_GLOBALS_FROM_SLVC_FULLSCR and the method GET_SUBTOTALS. You can see the parameter ep_collect01 refered in case of subtotals. Can you please check ep_collect00 for grand total in your case.
    As said about EP_COLLECT00,here goes a classic example Modify grand total in ALV GRID
    BR
    Keshav
    Edited by: Keshav.T on Sep 21, 2011 9:39 AM

  • Map several records to different elements in the same xml node

    Hi,
    I am trying to map data from relational tables to elements as per my xml schema. One of my tables has several records that I need to map to different elements in the same xml node.
    For example:
    Customer_Id | Param_Id |Param_Name
    212 | 1 |State
    212 | 2 |Country
    212 | 3 |ZipCode
    I can not change the structure of this existing table and need to work with it.
    How do I map the different params for a specific customer to my Customer node in the schema?
    One option is to join on the parameters table several times, but there ought to be a better way!
    PLEASE HELP!!!
    Thanks,

    First I question the design that contains/allows 600 attributes on an element. They sound like they really should be elements in the XML.
    Regardless, the following (NOT TESTED) should work for you (assuming you want to write one SQL with 600 columns)
    CREATE OR REPLACE VIEW APPLICATION_XML
    OF XMLTYPE
    Element "LOAN_APPLICATION"
    with object ID
    substr(extractValue(object_value,'/LOAN_APPLICATION/APPLICATION_DATA/@CallID'),1,5)
    AS
    WITH parm_tb AS
    SELECT MAX(DECODE(prv_valu, 1, prv_value)) BusinessType,
           MAX(DECODE(param_id, 2, prv_value)) Product,
           MAX(DECODE(param_id, 3, prv_value)) SomethingElse
      FROM parameter_details
    WHERE prv_pmh_header_id = 1
    SELECT xmlElement
       ("APPLICATION_DATA",
         xmlAttributes
          p.prv_detail_id as "CallID",
          p.PRV_PRM_PARAM_ID as "RandomID",
          p.prv_value as AppInitDate
         xmlElement
         ("PRODUCER_DATA",
           xmlAttributes
            parm_tb.BusinessType as "BusinessType" ,
            parm_tb.Product as "Product"
      FROM parameters_table p
    WHERE p.PRV_PMH_HEADER_ID = 1

  • HT5622 Hi I have a Macbook air & iPhone 4. what do I need to do if I want to buy a book (ebook) or an application that is not available in the iTunes store in my area i.e. Africa (Egypt)? Do I need to open a different account in the iTunes store in the ot

    Hi
    I have a Macbook air & iPhone 4.
    what do I need to do if I want to buy a book (ebook) or an application that is not available in the iTunes store in my area i.e. Africa (Egypt)?
    Do I need to open a different account in the iTunes store in the other area i.e. USA ?
    Please advice
    Thank you

    You can only buy content from your own country's store i.e. the Egyptian store if you are in Egypt - you need to be in a country to use its store, so to use the US store you will need to be in the US and have a US billing address on your account. If there is an app or any other item that you would like to be buy that isn't currently available in the Egyptian store then you can try requesting that it be added, but unless the app's developer or rights-holder agrees to it then Apple won't be able to sell it there : http://www.apple.com/feedback/itunes.html

  • HT204053 i need to know how to separate different devices on the same itunes account

    I need to kow how to seperate different devices on the same itunes account

    Each of you should have their own iCloud account  which could be set up in "Settings > iCloud" (and if you asking me also for iMessage and FaceTime), but you could still use the same Apple ID for iTunes and App Store purchases which could be set up in "Settings > iTunes & App Stores" so that you only have to purchase each app or other media once.

  • WM-PP : Backflush a material from different bins in the same storage Type

    Hi Gurus,
    We have a business scenarion where we do manual staging for production , the staging area has different bins within the same storage type for the same material, I am wondering if there is a way to backflush the material from different storage bins upon prod. order confirmation (using a control cycle?)
    Thanks
    Kris T

    Look like it's not possible using the SAP standard.

  • Can I display different tables at the same time?

    Hello all,
    This is probably a newbie question but is it possible to display different tables at the same time? I'm using SQL Developer 1.5.5 and I seem to be unable to display more than one table at the same time, whenever i chose to open another table, the old table disappears. In other words, the table display just switches to your new choice in the table list navigator. Any ideas anyone?
    Regards,
    wf

    Menu item "Tools -> Preferences -> Database -> ObjectViewer Parameters"; make sure "Automatically Freeze Object Viewer Windows" is checked.
    HTH.
    Ed. H.

  • Need to run the same query on different databases with the same argument

    Hi folks,
    I've a script: obj, which has simple stuff, when I execute @obj
    this asked me for the object_name
    and in return gives me object/s if it exists in this (connected) db.
    Now to check in 2 other dbs, I've to disconnect from here and then connect to those dbs and run the same @obj there and give the same argument, e.g., EMP and it'll return the answer.
    What is desired ... if not very hard on you :-(
    Some thing like @objAll
    asked only once object_name ... e.g., I gave EMP
    now go to all the 3 dbs and give me the result in ONE spool file only.
    What do you think, is this tough, I did something, but it was not involved connecting to different dbs, within the same script, but here we cannot create db links and have to disconnect and connect to the db to get some information.
    Please do reply, if my question is not understandable or any ...
    Thanks in advance.
    Best regards.
    Edited by: user8604530 on Jun 27, 2012 1:51 PM

    As far as i understand from your question : you cannot create db links ? right..
    well another option is to create a shell script , something like this :
    vi check.sh
    export ORACLE_SID=db1
    sqlplus / as sysdba <<EOF
    select query comes here;
    exit;
    EOF
    export ORACLE_SID=db2
    sqlplus / as sysdba <<EOF
    select query comes here;
    exit;
    EOFchmod 777 check.sh
    This does the job for you.. I am unsure how to pass the parameters in sql while running through a sheel script.. but if thats possible you will be able to achieve what you want.
    Regards
    Kk
    Edited by: Kk on Jun 27, 2012 2:44 PM

  • Time Division Multiplexing and Processing Different Loops at the same time

            Hi, I am new in Labview so you may find my questions too silly, sorry about that
    I want to design an interface to control the test&measurement devices remotely. I have two desks and there are several devices on these desks. The real problem is to use two different devices at the same time. To do this I heard that I can use time division multiplexing. But I couldn't find enough information about it in Labview. Another advice I heard was to use a matrice and hold the on/off state of the devices in this matrice. 
    Where should I start the design to create such a system? Do you have any advices? Thank you in advance.
    My basic GUI is attached.
    Attachments:
    InterfaceAli.zip ‏42 KB

    As Mike pointed out you cannot communicate in parallel on the GPIB bus - unless you have separate buses for each instrument - and that defeats the purpose of a bus. I am not sure about LXI.
    With regard to your VI:
    1. Do not use global variables to pass your data around.
    2. You should use the Array data type, not the Matrix data type. The Matrix data type in LabVIEW should only be used for matrix mathematical operations (linear algebra) which cannot be easily performed on the array data type. You have many more tools in LV to work with arrays.
    3. The Event structure needs to be in a parallel loop. This is basic data flow. If you do not understand this concept, get some training, either though the online tutorials or through a class.
    4. Use Value Changed events and place the button terminals inside the event case for that control.
    5. The parallel loops need to have a Wait or some other function which causes a delay. Otherwise, the first one to start executing could consume all available processor resources. These are called "greedy loops." 
    6. Use integer data types for case structure selector inputs. Floating point values are coerced to integers at the inputs. If the values resulted from calculations, unexpected rounding effects may occur, resulting in the wrong case being selected. In some cases using type defed enums may be even better. The underlying data is integer and the enum item names show up in the case selector labels, helping to document what the case does or why it was selected.
    7. Remove the timeout case from the event structure since it never executes. Also avoid Use Default if Unwired on the terminal with your matrix (array) data. You never have a situation where an empty array is appropriate.
    Before going any further with the program questions, you need to carefully define your requirements.  How many instruments will you have? How many can be active at one time? What kinds of communication between the program and the instruments is required? This includes commands to the instrument, data returned from the instrument, error handling, and timing requirements. What will be done with the data? Display, save to file, use to automatically control another device? What safety requirements or constraints need to be met? Once you have a good requirements document, then you can begin to determine what kind of program architecture is best suited to meet the needs.
    I suspect that you may be making some things much more complicated than they need to be while ignoring other important issues.
    Lynn

  • Can we get a output in different languages for the same configuration

    Hi All,
    Can we get a output in different languages for the same configuration done in NACE. or it is language specific.
    They have symbols which have values both in german and english. But when we run the transaction we are getting the output only in german language.We want the out put in english
    language.
    Thanks in Advance.
    Rajesh

    A Smartform can be maintained in many languages other than the language that it is created. Translations for the texts have to be maintained for this purpose.
    To maintain the translations:
    Go to transaction SE63 in R/3.
    Go to menu Translation->R/3 Enterprise->Other Long Texts
    Select the object type in the pop up. Smartform(SSF) object type is found under Forms and Styles(FS).
    Enter the name of the Smart form and choose the source and target language. This would open a screen with the Smartform code in Source language on the top and an editor with the same code in the bottom.
    Find the text for which you need to maintain the translation and insert the translation in that place. As usual after required texts are maintained Save and Activate.
    To see the translated Smartform create an output type and assign the smartform and the driver program to this output type. In the transaction that sends output to this smartform, select the output type and select the language in which the smartform has to be displayed (translations have to be maintained in this lanuage).This will give the smartform in the required language.
    Madhavi

  • I am trying to store music for two different iPods on the same computer, against two different Apple IDs. When I try and download content from the Cloud I get an error message?

    I am trying to store music for two different iPods on the same Windows 8 computer, and when I try and download content from the Cloud I get an error message. Is it possible to have two different Apple IDs on the same computer?

    Unfortunately you've discovered too late how important it is to maintain an up-to-date backup of your iTunes library (and all other data of value).  You could, before wiping the drive, have considered making use of a commercial data recovery service that could (albeit at considerable cost) have extracted your library from the hard disk, even if virus infected.
    In the absence of that option, you will need to restore the content of your library from its original sources:
    Depending on your location, you may be able to re-download any iTunes Store purchases that are still available on the Store
    Likewise, most digital purchases from Amazon (including auto-rip copies of purchased CDs) should be available from the Amazon Cloud and via the Amazon Music application - the same may be true of other commercial sources for digital downloads
    Content imported from your CDs will have to imported again
    The specific situation that you describe regarding the music imported from your friend's external HDD suggests that either the source is badly organized and/or originates from a source other than iTunes (other media players may use alternative tags for information like artist, title, album, etc. that are not wholly consistent with how iTunes handle these).  Without details of the issues you're seeing it is difficult to suggest a remedy other than going through the media album-by-album, track-by-track, and correcting the inconsistencies.
    In the absence of a backup or access to the original library data there is no option other than painstakingly recreating your library as described above.  As you do so, you'll now realize how important creating and maintaining backups are - in my case I have at all times three separate duplicates of my library, in two different locations, where none is ever more than a week old compared to the content of my master library.

  • How can I make different catalogs from the same image

    How can I make different catalogs from the same image where that image has been changed in some way between the catalogs. For instance if I wanted to have a catalogs for cropped images and have 3 catalogs one for 4x6 , 5x7 and 8x10 cropping. When I tried this , if I changed a file in one catalog that same image in the other would change also.

    Do not confuse the creation of the crops and the display in collections per crop ratio.
    Of course one virtual copy (VC) per crop ratio is needed. If the same image should be cropped in all 3 mentioned ratios there would be 3 VCs.
    The OP asked how to have/see a set of same-crop-ratios.
    After having created the virtual copies for whatever crop ratio he wants, the way to display this result in the fashion asked for is via smart collections, provided they can be found. Without a plugin the naming of the VC with the crop ratio applied is a straight way to achieve that.
    IF the wish is to get new crops automatically added. (See my answers 2+3)
    IF the wish is to creat static collections per crop ratio for a certain set of images, I'd go as follows:
    1. Select all images you want to have cropped in that way,.
    2. With this selection click on the + to add another collection and fill the dialog box like this:
    Then navigate into this newly created selection and perform the 4x6 crop - according to taste individually or by synchronizing the first crop.
    Cornelia

Maybe you are looking for