Batch returns from loop

I have a procedure which creates tickets to be printed. However I would like to amend this procedure so that the user can input the number of tickets s/he will be printing and then loop through my current procedure to generate them all at once.
I have been staring at this for 30 min and decided to post. It is probably glaringly obvious, but I am in need of help.
TIA
PROCEDURE create_inv (
MS_ID_IN IN mfg_stations.ms_id%TYPE,
ITEM_CODE_IN IN mfg_stations.item_code_dnmlz%TYPE,
UOM_CODE_IN IN mfg_stations.inv_uom_code_dnmlz%TYPE,
PROCESS_NAME_IN IN mfg_stations.process_name_dnmlz%TYPE,
ZONE_IN IN mfg_stations.zone_dnmlz%TYPE,
LOT_CODE_IN IN mfg_stations.lot_code_dnmlz%TYPE,
GRADE_CODE_IN IN mfg_stations.grade_code_dnmlz%TYPE,
CREATED_QTY_IN IN mfg_stations.created_qty_dnmlz%TYPE,
INV_STATUS_IN IN mfg_stations.inv_status_dnmlz%TYPE,
ret_val_out OUT ret_val_curtype) IS
-- Cursor Var...
new_iu_id inventory_units.iu_id%TYPE;
new_i_id items.i_id%TYPE;
new_im_id item_uoms.im_id%TYPE;
new_g_id grades.g_id%TYPE;
new_l_id locations.l_id%TYPE;
new_mfp_id mfg_processes.mfp_id%TYPE;
new_z_id zones.z_id%TYPE;
created_ts DATE;
mod_ts DATE;
BEGIN
select iu_seq.nextval
into new_iu_id
from dual;
select i_id
into new_i_id
from items
where item_code = item_code_in;
select im_id
into new_im_id
from item_uoms
where inv_uom_code = uom_code_in;
select g_id
into new_g_id
from grades
where grade_code = grade_code_in;
select l_id
into new_l_id
from mfg_stations
where ms_id = ms_id_in;
select mfp_id
into new_mfp_id
from mfg_processes
where l_id = new_l_id
and process_name = process_name_in;
select z_id
into new_z_id
from zones
where zone = zone_in;
select general_pkg.usertime(sysdate),
trunc(general_pkg.usertime(sysdate))
into created_ts,
mod_ts
from dual;
/* INSERT */
insert into inventory_units
IU_ID,
I_ID,
LOT_CODE,
INV_STATUS,
IM_ID,
G_ID,
MFP_ID,
MS_ID,
CREATED_QTY,
CURRENT_QTY,
Z_ID,
CREATED_TIMESTAMP,
MOD_TIMESTAMP,
CB_USER
values
new_iu_id,
new_i_id,
lot_code_in,
inv_status_in,
new_im_id,
new_g_id,
new_mfp_id,
ms_id_in,
created_qty_in,
created_qty_in, /* current gets same initial value as created */
new_z_id,
created_ts,
mod_ts,
user
COMMIT;
/* UPDATE */
UPDATE MFG_STATIONS
SET NEXT_SERIAL_CODE = NEXT_SERIAL_CODE,
LOT_CODE_DNMLZ = lot_code_in,
INV_STATUS_DNMLZ = inv_status_in,
CREATED_QTY_DNMLZ = created_qty_in,
PROCESS_NAME_DNMLZ = process_name_in,
PROCESS_TYPE_DNMLZ = process_type_dnmlz, /* From Database Trigger on insert */
ITEM_CODE_DNMLZ = item_code_in,
GRADE_CODE_DNMLZ = grade_code_in,
ZONE_DNMLZ = zone_in,
INV_UOM_CODE_DNMLZ = uom_code_in
WHERE MS_ID = ms_id_in;
COMMIT;
OPEN ret_val_out FOR
select new_iu_id
from dual;
END;
null

I have a procedure which creates tickets to be printed. However I would like to amend this procedure so that the user can input the number of tickets s/he will be printing and then loop through my current procedure to generate them all at once.
I have been staring at this for 30 min and decided to post. It is probably glaringly obvious, but I am in need of help.
TIA
PROCEDURE create_inv (
MS_ID_IN IN mfg_stations.ms_id%TYPE,
ITEM_CODE_IN IN mfg_stations.item_code_dnmlz%TYPE,
UOM_CODE_IN IN mfg_stations.inv_uom_code_dnmlz%TYPE,
PROCESS_NAME_IN IN mfg_stations.process_name_dnmlz%TYPE,
ZONE_IN IN mfg_stations.zone_dnmlz%TYPE,
LOT_CODE_IN IN mfg_stations.lot_code_dnmlz%TYPE,
GRADE_CODE_IN IN mfg_stations.grade_code_dnmlz%TYPE,
CREATED_QTY_IN IN mfg_stations.created_qty_dnmlz%TYPE,
INV_STATUS_IN IN mfg_stations.inv_status_dnmlz%TYPE,
ret_val_out OUT ret_val_curtype) IS
-- Cursor Var...
new_iu_id inventory_units.iu_id%TYPE;
new_i_id items.i_id%TYPE;
new_im_id item_uoms.im_id%TYPE;
new_g_id grades.g_id%TYPE;
new_l_id locations.l_id%TYPE;
new_mfp_id mfg_processes.mfp_id%TYPE;
new_z_id zones.z_id%TYPE;
created_ts DATE;
mod_ts DATE;
BEGIN
select iu_seq.nextval
into new_iu_id
from dual;
select i_id
into new_i_id
from items
where item_code = item_code_in;
select im_id
into new_im_id
from item_uoms
where inv_uom_code = uom_code_in;
select g_id
into new_g_id
from grades
where grade_code = grade_code_in;
select l_id
into new_l_id
from mfg_stations
where ms_id = ms_id_in;
select mfp_id
into new_mfp_id
from mfg_processes
where l_id = new_l_id
and process_name = process_name_in;
select z_id
into new_z_id
from zones
where zone = zone_in;
select general_pkg.usertime(sysdate),
trunc(general_pkg.usertime(sysdate))
into created_ts,
mod_ts
from dual;
/* INSERT */
insert into inventory_units
IU_ID,
I_ID,
LOT_CODE,
INV_STATUS,
IM_ID,
G_ID,
MFP_ID,
MS_ID,
CREATED_QTY,
CURRENT_QTY,
Z_ID,
CREATED_TIMESTAMP,
MOD_TIMESTAMP,
CB_USER
values
new_iu_id,
new_i_id,
lot_code_in,
inv_status_in,
new_im_id,
new_g_id,
new_mfp_id,
ms_id_in,
created_qty_in,
created_qty_in, /* current gets same initial value as created */
new_z_id,
created_ts,
mod_ts,
user
COMMIT;
/* UPDATE */
UPDATE MFG_STATIONS
SET NEXT_SERIAL_CODE = NEXT_SERIAL_CODE,
LOT_CODE_DNMLZ = lot_code_in,
INV_STATUS_DNMLZ = inv_status_in,
CREATED_QTY_DNMLZ = created_qty_in,
PROCESS_NAME_DNMLZ = process_name_in,
PROCESS_TYPE_DNMLZ = process_type_dnmlz, /* From Database Trigger on insert */
ITEM_CODE_DNMLZ = item_code_in,
GRADE_CODE_DNMLZ = grade_code_in,
ZONE_DNMLZ = zone_in,
INV_UOM_CODE_DNMLZ = uom_code_in
WHERE MS_ID = ms_id_in;
COMMIT;
OPEN ret_val_out FOR
select new_iu_id
from dual;
END;
null

Similar Messages

  • Oracle.retail.reim.batch.BatchRunner: FAILED_PROCESS (2) returned from batc

    Hi ,
    I am trying to reconfigure an existing web application (Oracle Retail Invoice matching ) in eclipse.
    While running the app its throwing an error as
    oracle.retail.reim.batch.BatchRunner: FAILED_PROCESS (2) returned from batch process.
    any help would be appriciated.
    If possible tell me the steps to set up the ReIM (oracle retail invoice matching) in eclipse using OC4J server.

    To answer your question you need to indicate what batch you are trying to run. The batch would indicate what is wrong (the reason for failure) on the console. FAILED_PROCESS is just a batch failure state. Also any ReIM batch doesn’t require OC4J to be running.

  • Batch insert from object variable

    Any way to do this excluding the foreach loop container?  I have millions of rows and if it goes through them 1 by 1 it will take hours maybe days.  How can you do a batch insert from an object variable without putting the sql task inside
    a foreach loop container?
    thanks,
    Mike
    Mike

    I know how to use the dataflow task but it will not work with what I am trying to do as far as I know.  The script I am running is against a netezza box that creates temp tables and then returns a data set that I store in an object variable. 
    I then want to take the data from that object variable and batch insert it into a table.  The only way I can see this being done is by looping through the record set in a foreach loop while mapping the fields to variables and inserting records one
    at a time like I am doing in the screenshot above.  This takes way to long to do.  I am trying to figure out a way to do a batch insert using the data in this object variable.  Is this possible?  I am using SSIS Version
    10.50.1600.1
    thanks,
    Mike
    Hi Mike,
    Provide more details why you cannot use the data flow task for the processing.
    Let me repeat . Loading millions of records in object variable will not work. 
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • Executing batch file from Java stored procedure hang

    Dears,
    I'm using the following code to execute batch file from Java Stored procedure, which is working fine from Java IDE JDeveloper 10.1.3.4.
    public static String runFile(String drive)
    String result = "";
    String content = "echo off\n" + "vol " + drive + ": | find /i \"Serial Number is\"";
    try {
    File directory = new File(drive + ":");
    File file = File.createTempFile("bb1", ".bat", directory);
    file.deleteOnExit();
    FileWriter fw = new java.io.FileWriter(file);
    fw.write(content);
    fw.close();
    // The next line is the command causing the problem
    Process p = Runtime.getRuntime().exec("cmd.exe /c " + file.getPath());
    BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line;
    while ((line = input.readLine()) != null)
    result += line;
    input.close();
    file.delete();
    result = result.substring( result.lastIndexOf( ' ' )).trim();
    } catch (Exception e) {
    e.printStackTrace();
    result = e.getClass().getName() + " : " + e.getMessage();
    return result;
    The above code is used in getting the volume of a drive on windows, something like "80EC-C230"
    I gave the SYSTEM schema the required privilege to execute the code.
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'java.io.FilePermission', '<<ALL FILES>>', 'read ,write, execute, delete');
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    GRANT JAVAUSERPRIV TO SYSTEM;
    I have used the following to load the class in Oracle 9ir2 DB:
    loadjava -u [system/******@orcl|mailto:system/******@orcl] -v -resolve C:\Server\src\net\dev\Util.java
    CREATE FUNCTION A1(drive IN VARCHAR2) RETURN VARCHAR2 AS LANGUAGE JAVA NAME 'net.dev.Util.a1(java.lang.String) return java.lang.String';
    variable serial1 varchar2(1000);
    call A1( 'C' ) into :serial1;
    The problem that it hangs when I execute the call to the function (I have indicated the line causing the problem in a comment in the code).
    I have seen similar problems on other forums, but no solution posted
    [http://oracle.ittoolbox.com/groups/technical-functional/oracle-jdeveloper-l/run-an-exe-file-using-oracle-database-trigger-1567662]
    I have posted this in JDeveloper forum ([t-853821]) but suggested to post for forum in DB.
    Can anyne help?

    Dear Peter,
    You are totally right, I got this as mistake copy paste. I'm just having a Java utility for running external files outside Oracle DB, this is the method runFile()
    I'm passing it the content of script and names of file to be created on the fly and executed then deleted, sorry for the mistake in creating caller function.
    The main point, how I claim that the line in code where creating external process is the problem. I have tried the code with commenting this line and it was working ok, I made this to make sure of the permission required that I need to give to the schema passing security permission problems.
    The function script is running perfect if I'm executing vbs script outside Oracle using something like "cscript //NoLogo aaa1.vbs", but when I use the command line the call just never returns to me "cmd.exe /c bb1.bat".
    where content of bb1.bat as follows:
    echo off
    vol C: | find /i "Serial Number is"
    The above batch file just get the serial number of hard drive assigned when windows formatted HD.
    Same code runs outside Oracle just fine, but inside Oracle doesn't return if I exectued the following:
    variable serial1 varchar2(1000);
    call A1( 'C' ) into :serial1;
    Never returns
    Thanks for tracing teh issue to that details ;) hope you coul help.

  • How to catch error codes returned from java

    Hi all,
    Is there anyway to capture the exit code that is returned by System.exit() from java. I know a batch file's ERRORLEVEL can do this. However, I want to use c/cpp (JNI) to get this functionality. Please help ..
    Thanks in advance,
    Soujanya.R

    how could you expect me to use JAVA command without compiling it with Javac??
    I complied the java code using javac and then called(executed ) it using the Java..
    I am using JNI_Create/JavaVM() to create a JVM from CPP file. that works fine. Now, my issue is that I want to capture a couple of exit codes that are returned from the System.exit() of the java code.
    now, guys.. is there any way to capture that exit codes returning by Ssytem.exit() in or using JNI ??
    if yes, please help me with the code snippets.
    Thanks,
    Soujanya.R

  • URGENT:- Running a batch file from java program

    Author: pkanury
    I am trying to execute a batch file from my java program using RunTime and Process . It can execute any dos command except for a batch file. Can anyone throw
    some light ?? My code looks like this .....
    cmd = "command.com /c X:\\grits\\scripts\\test.bat"; Runtime rt = Runtime.getRuntime(); Process p = rt.exec(cmd);
    The weird part is that p.waitFor() returns a status of 0 implying that the cmd has been executed successfully. But that is not the case. And my batch file is as simple as - type "ADADA" > junk.txt
    Any help would be appreciated.

    I think it should work when you use a String[] array
    instead of a single String:
    String[] cmd = { "command.com", "/C", "D:\\batch\\do.bat" };
    Note: If the batchfile creates any output (i.e. files),
    they will be stored in the directory of the application
    which calls the batch file, not in d:\batch\...

  • Return from a sub vi

    Hi,
    I am trying to return from my sub-vi to my main vi with no success.
    in the sub-vi i connect the STOP button to a STOP sign .
    i am attaching my vi .
    CTM-config - main vi.
    CTM-Main - sub vi
    Thanks
    Asaf
    Attachments:
    CTM-Main.vi ‏221 KB
    CTM-Config.vi ‏286 KB

    I don't understand why it can cause a problem ,the vi is waiting for events and if it gets the STOP - change value event  it needs to "do"
    the event  and to stop/close the vi (sub-vi).
    As long as there are other loops running, it can't finish (unless you use the STOP-function). So you have to select a file.
    can there be any other reason (maybe configuration of the LAB-VIEW or something else ?
    This might be a reason - I use LV7.0 full version (Developer Suite).
    I also just found the following: If I start CTM-Config.vi and just once select "PCI charactarisation mode" and then select another value, CTM-Main is opened twice.
    I attach the vi's I tested. Don't replace your original ones because I deleted some subvis.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    CTM-Config_test.vi ‏286 KB
    CTM-Main_test.vi ‏195 KB

  • Movements types of the Returns from Customer

    Hi Gurus,
    Currently the Return Process from Customer is done using the movement type 651 that the batch quantity is posted in the Return Status but the finance people cannot see the finance values from this return before the transfer of the status.
    Point 1:
    I was wondering if you could inform me when I execute the movement type 453 that  is transfer from Return status to Unrestricted Status they can see the finance values? Or to solve this point all returns must be done using the movement type 655 where the batch is posted in quality status and the finance people can see the finance values?
    Point 2:
    I am using the tcode MB1B for the movement type 453 to transfer the batch quantity from Return Status to Unrestricted Status but unfortunatelly the batch quantity is being posted for quality status.
    In advance I would like to thank you for your attention. I'd be pleasure if you could give some tips for this process.
    BR
    Valdevair

    Hi,
    Use following procedure:
    Create Return sales order(YERT), Post goods receipt(VL01N) and then post billing wrt sales order(VF01). Unless u create billing FI impact cannot be seen.
    Regds-SRB

  • Finding # rows to be returned from dbms_sql

    I need to know how many rows are going to be returned from my dbms_sql (without looping). Currently I am going thru a loop until no more rows are left.
    LOOP
    if dbms_sql.fetch_rows(cursor_handle) > 0 then null;
    END LOOP;

    Unless you have a count(*) in the query, Oracle won't know how many rows are returned by a query until it returns the last row. Why do you need to know the exact count ahead of time?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Best way to refresh page after returning from task flow?

    Hello -
    (Using jdev 11g release 1)
    What is the best way to refresh data in a page after navigating to and returning from a task flow with an isolated data control scope where that data is changed and commited to the database?
    I have 2 bounded task flows: list-records-tf and edit-record-tf
    Both use page fragments
    list-records-tf has a list.jsff fragment and a task flow call to edit-record-tf
    The list.jsff page has a table of records that a user can click on and a button which, when pressed, will pass control to the edit-record-tf call. (There are also set property listeners on the button to set values in the request that are used as parameters to edit-record-tf.)
    The edit-record-tf always begins a new transaction and does not share data controls with the calling task flow. It consists of an application module call to set up the model according to the parameters passed in (edit record X or create new record Y or...etc.), a page fragment with a form to allow users to edit the record, and 2 different task flow returns for saving/cancelling the transaction.
    Back to the question - when I change a record in the edit page, the changes do not show up on the list page until I requery the data set. What is the best way to get the list page to refresh itself automatically upon return from the edit-record-tf?
    (If I ran the edit task flow in a popup dialog I could just use the return listener on the command component that launched the popup. But I don't want to run this in a dialog.)
    Thank you for reading my question.

    What if you have the bean which has refresh method as TF param? Call that method after you save the data. or use contextual event.

  • My iphone 4S has problem in making and receiving the calls. While making the call , call fails and netwrok disappears. Like wise no voice is heard for incoming calls. This happened after return from the overseas travel.

    My iphone 4S has problem in making and receiving the calls. While making the call , call fails and netwrok disappears. Like wise no voice is heard for incoming calls. This happened after return from the overseas travel.

    Hello SamSax
    Check out the assist page below for troubleshooting call connectivity.
    Calls and connection issues
    http://www.apple.com/support/iphone/assistant/calls/
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Returning from a JSF flow with faces-redirect

    I'm using Glassfish 4.1 with JSF 2.2.9. I can't figure out how to return from a JSF flow with a redirect. I've tried this in the flow definition xml:
    <flow-return id="returnFromFlow">
        <from-outcome>/index.xhtml?faces-redirect=true</from-outcome>
    </flow-return>
    This does the redirect but results in navigation errors on the page, specifically the button that enters the flow again: "Unable to find matching navigation case from view ID '/index.xhtml' for outcome 'select-person'" (the flow is called select-person).
    I've also tried appending faces-redirect=true to the action of the commandButton that exits the flow. Now the flow does not exit, it reloads the current page within the flow and says "Unable to find matching navigation case with from-view-id '/select-person/select-person.xhtml' for action 'returnFromFlow?faces-redirect=true' with outcome 'returnFromFlow?faces-redirect=true'"
    Exiting the flow with h:link works, but I want to be able to call an action and submit form values with the button so that isn't a good workaround for me.
    What's kind of interesting is that navigating between views within the flow DOES work with faces-redirect=true. I can add a "step2" node, and a commandButton with action="step2?faces-redirect=true", and it works. It's just exiting the flow that does not work.
    Any ideas?

    Hi Frank,
    Thanks so much for your response.
    Yes, since the user can do a commit prior to exiting my edit task flow, option 1 will not work for me.
    Option 2 sounded feasible, but jdeveloper would not let me set the restore point to true, since my btf didn't require a transaction. Is there a step I'm missing here??
    The thing that is really getting me when return via the cancel button from this edit task flow, back to my parent task flow, the record pointer is always moving back to the beginning of the data set in my parent task flow. For example,if I have a data set
    rec1, rec2, rec3..
    On my parent taskflow call it browser task flow, I navigate (via the next button) to rec3, and I click edit. At this point, my edit task flow kicks off, and since both task flows share the same data control, the edit task flow rec pointer is the same as the browse one.
    Okay I decide I don't want to change anything in my rec3, so I click cancel.
    At this point, when I return back to the navigator task flow, it points me back to rec1 ..
    HOwever, the savepoint seems to fix this. When I set my cancel return from edit taskflow to savePoint = true, the rec pointer stays in the correct spot. However, I cannot always do this, because the user can make iterative saves in the edit task flow which (based on your previous email) stales out the savepoint id.
    Question, so in this case, how can I make the parent browser task flow call stay on the same record I was just editing, opposed to going back to the beginning of the data set(ie. rec1)??

  • How to Customize the Message "No Row Returned" from a Report

    Hi,
    I've been trying to customize the Message "No Row Returned" from a Report.
    First i followed the instructions in Note:183131.1 -
    How to Customize the Message "No Row Returned" from a Report
    But of course the OWA_UTIL.REDIRECT_URL in this solution did not work (in a portlet) and i found the metalink document 228620.1 which described how to fix it.
    So i followed the "fix" in the document above and now my output is,..
    "Portlet 38,70711 responded with content-type text/plain when the client was requesting content-type text/html"
    So i search in Metalink for the above and come up with,...
    Bug 3548276 PORTLET X,Y RESPONDED WITH CONTENT-TYPE TEXT/PLAIN INSTEAD OF TEXT/HTML
    And i've read it and read it and read it and read it and can't make heads or tails of what it's saying.
    Every "solution" seems to cause another problem that i have to fix. And all i want to do is customize the Message "No Row Returned" from a Report. Please,...does anyone know how to do this?

    My guess is that it only shows the number of rows it has retrieved. I believe the defailt is for it to only retrieve 50 rows and as you page through your report it retrieves more. So this would just tell you how many rows was retireved, but probably not how many rows the report would contain if you pages to the end. Oracle doesn't really have a notion of total number of rows until the whole result set has been materialized.

  • Reading User Profile Properties pragmatically in SharePoint 2010 Returns Null Values Although it has values returned from AD

    Reading User Profile Properties pragmatically in SharePoint 2010 Returns Null Values Although it has values returned from AD
    I configured the user profile service application and run Sync and user profiles and its properties returned from Active directory but when I want to read it pragmatically it returns null values.
    this is my code...
       void runQueryButton_Click(object sender, EventArgs e)
               // Get the My Sites site collection, ensuring proper disposal
                using (SPSite mySitesCollection = new SPSite("http://sp/my"))
                    //Get the user profile manager
                    SPServiceContext context = SPServiceContext.GetContext(mySitesCollection);
                    UserProfileManager profileManager = new UserProfileManager(context);
                    UserProfile profile = profileManager.GetUserProfile("Contoso\\user");
                    foreach (Property prop in profileManager.Properties)
                       // if (prop.Name == "Department")
                        resultsLabel.Text += prop.DisplayName + ":" + profile[prop.Name].Value + "<br />"; ;

     Hi,
    Please try with the following code
          PrincipalContext principalContext = new PrincipalContext(ContextType.Domain);
                                SPServiceContext context = SPServiceContext.GetContext(site);
                                UserProfileManager profileManager = new UserProfileManager(context);                        
      foreach (Property prop in profileManager.Properties)
                       // if (prop.Name == "Department")
                        resultsLabel.Text += prop.DisplayName
    + ":" + profile[prop.Name].Value + "<br />"; ;
    Thanks,
    Vivek
    Please vote or mark your question answered, if my reply helps you

  • I can't stop my song from looping back to the beginning

    I have created some backing tracks for a swing band that has lost its rhythm section and have to date played them back (via a big speaker) using Logic pro X on a macbook air.
    I want to use my ipad instead as it's smaller and handier when you have to juggle with ipad, an instrument, sheet music and mutes etc..
    I've succeeded in copying tracks exported from Logic into GarageBand iOS version using the "Export All Tracks as Audio Files" option.  I imported them as individual tracks into GB and they play back just fine.  However...
    I can't stop them from looping back and starting again, which in a rehearsal environment I DO NOT need!  I assume this is because I had to import them using the loop-loading tool - set to "audio" - in GB iOS.  Can anyone help me get round this please.  Or is there an iOS DAW that would do this job instead of GB?
    Many thanks in advance.

    Looks like playback for GB on iOS always loops the current section or the whole song. Export the songs to iTunes and you can play them as you want, probably putting each in its own playlist so it is easier to play once then stop, or by adding long silences between tracks that you can then skip when you are ready.
    tt2

Maybe you are looking for

  • Varibale Missing

    Hi, I am creating a query on a infoset which is based in FIGL ODS and Sales cube. I have to create a open item report where in i have to put restrictions on Clearing date. For which i was looking for variable 0P_KEYD3 and i didnt found as per other t

  • Error when scheduling a test

    Hello, I have been trying to schedule a certification test through Prometric since last Friday (04 sep.), but I keep getting an error page ("Page Cannot Be Displayed") right after confirming the billing information (credit card number, etc.). After t

  • Need advice/idea about Image gallery

    Hello to ALL!!! I'm trying to make an dynamic image gallery WITH!!! some active buttons above (for example: BUTTON1 with function "delete" and BUTTON2 with function "update") a picture and some "dataoutput" below (for example:Price). So, separate cel

  • After to upgrade IOS6 my password doesn't work.

    Hi ! I have a big problem. I upgrade de new version of IOS 6 and now I cannot open my Ipod because my password doesn't work. What can I do? Thanks

  • Oracle Apps 11i - MTL_SYSTEM_ITEMS - Unable to Update

    Hello Experts, In Oracle Apps11i , when i am trying to run this PL/SQL block it is not updating the table column. BEGIN     FOR cur     IN (SELECT     DISTINCT msi.inventory_item_id, clpt.item_no                                 ,clpt.list_value