SWC errors, while SWF works fine, why?

Edit: I have tried using pure theora libs (no ffmpeg) and the same result - I have created a simple app showing theora info. When launched as standalone,works (shows theora version). As  SWC, error "can't allocate encoder context". Anyone any idea why it's failing with allocations in SWC? This is really frustrating, seems I can't get anything video related to work. Is SWC able to support anything more than some simple C stuff?
Hi, I'm trying to make ffmpeg work through my custom SWC library which would encode multiple frames to MPEG1. I was "almost" finished now -  managed to put together a test app which upon exporting to SWF displays nice progress log(I'm test encoding 25 frames in MPEG1, so it shows encoding frame 1... X bytes, encoding frame 2...X bytes etc.), all is great up to this point.
The problem is, when I emit this to swc. When calling my magic encode test function in the SWC - first, I've got stack overflow error in "dsputil_static_init". This was already weird, but I figured out that I didn't need the static init for mpeg1 encoding after exploring ffmpeg a bit, so I tried to disable this call in ffmpeg source. Then recompiled ffmpeg, my lib, tested and SWF still appears to be working fine without it. But again, when exporting to SWC - it didn't stack overflow, but this time my library errors out with "can't find codec".
I have 3 variants of the code actually - SWF, SWC and one executable which produces a real .mpg file so I can have better proof than "encoding frame X". And it still produces a good mpeg when executd from cygwin's command line. The only problem is the SWC.
My basic confusion is - why if SWF/executable  with the same libs etc. working fine, and then the SWC is failing on me? I'd really need to fix this somehow, but I don't understand the reasons, I thought once it's working in SWF it will work as SWC.

Ok, this is what I did
1) I've got the globalplayer 11.5 from Adobe's archive, copied it to the corresponding folder(right next to 11.1 which was already included in my Flex).
2) mxmlc -static-link-runtime-shared-libraries -compiler.omit-trace-statements=false -library-path=decoding_encoding.swc -debug=false Document.as -o swcdemo.swf -target-player=11.5 -swf-version=18 
Where decoding_encoding.swc is my former c library, Document.as only calls one function(the encoding one). This got me the swf.
3) I run this swf in debug player, in IE (11.6), and error is popping up.
In flashlog.txt I found this:
Encode virtual file             <-- this is entry point of my C function (all is fine so far, proof that it has been called)
Could not open codec            <-- FAIL again, this fails also in theora at a similar function (register codec context..huh?)
[object Exit]
          at global/com.ffmpeg::F__exit()
          at global/com.ffmpeg::F_exit()
          at global/com.ffmpeg::F_ffmpeg_encode_mpeg1()
          at global/com.ffmpeg::encode_mpeg1()
          at Document()
4)  I then go to my presumably failing C library, and change this in main:
//  AS3_GoAsync();    <-- I commented this
    ffmpeg_encode_mpeg1(AV_CODEC_ID_MPEG1VIDEO);   <-- I uncommented this
I launch the swf just to see if it also fails, but it goes like:
Encode virtual file
[mpeg1video @ 0x601410] Warning: not compiled with thread support, using thread emulation
Entering loop
etc..  
All works! So I really don't understand, how can it work in the emitted SWF while in emitted SWC it already doesn't work? Is there a different way the swc is built, is it the way it manages memory at runtime, being restricted somehow by the main SWF, or is it just some stupid switch or setting. I'd need to see a little deeper into how the SWC is build I guess to fully understand this issue. Do you have any isnight into this ilookha, or someone else?  Or perhaps any other idea.
I'm now trying to see if I can try to trace out the exact point of the issue in theora lib, basically I included AS3.h in their source code and now placing inline AS3 "trace" commands into the register codec function.
I have traced in theora's lib inside th_encode_alloc function where it fails, and located the first obvious reason:
  enc=_ogg_malloc(sizeof(*enc));
  if(enc==NULL) {
            inline_as3("trace('enc is NULL!');\n");  <-- my trace
I'm getting "enc is NULL". Which results into codec not found, because the whole function returns NULL. So it seems _ogg_malloc is failing to allocate memory. I bet the same reason goes for ffmpeg.  _ogg_malloc is:
#define _ogg_malloc  malloc
Just a normal malloc. Why wouldn't this work?

Similar Messages

  • Error while creating Work Order

    Hello Experts,
    I am getting below error while creating work order via add-on named beas but the error seems to coming from SBO.
    Please advise.
    Thanks
    Deepak

    Hi,
    Plz check this thread:
    What does this error mean?

  • Jar doesn't work while java work fine

    I have a similar but not same case as "Please Help, jar file don't work" that is on 4/20. My program works fine by java class execution, but when I put them to jar it generates NullPointerException. The program get data from separate csv files. The error I get by executing jar is quite same as when I delete csv files and execute java. Only one jar file involves. csv files are in the same directory as class files.
    - My manifest file is;
    Manifest-Version: 1.0
    Class-Path: .
    Main-Class: MetricConverter
    Created-By: 1.4.2_07 (Sun Microsystems Inc.)
    I tried different Class-path possibility, but same result.
    java.lang.NullPointerException
    at MenueMaker.cahrtMaker(MetricConverter.java:71)
    at MenueMaker.<init>(MetricConverter.java:53)
    at MetricConverter.MetricConverter(MetricConverter.java:81)
    at MetricConverter$1.run(MetricConverter.java:33)
    at java.awt.event.InvocationEvent(EventQueue.java:178)
    at java.awt.EventQueue.dispatchEvent(Unknown Source:454)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source:151)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source:145)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source:137)
    at java.awt.EventDispatchThread.run(Unknown Source:100)
    Classes used in the program are;
    MetricConverter (Main) that has >$1
    MenueMaker that has > $1,$2,$3,$4,$5
    ReadCSV
    When I delete csv files from the directory and execute java, the following line is added to 1st line of above Exception message.
    at ReadCSV.readCSV(MertricConverter.java:272)
    The following is chartMaker method;
    public void chartMaker(){
    String[][] gotChart=null;
    chart=new String[4][][];
    int index=0;
    for(int i=0; i<4 ; i++){
    URL pickURL=getClass().getResource("csv"+i+".csv");
    ReadCSV file=new ReadCSV();
    try{
    gotChart=file.readCSV(pickURL,0);
    }catch(IOException e){}
    int a1=0;
    int a2=0;
    while(a1<gotChart.length){
    while(a2<gotChart[a1].length){
    a2++;
    a1++;
    index=i;
    chart[index]=new String[a1][a2];
    chart[index]=gotChart;
    I have looked every place I can imagine for a day, but found no answer. Since it works fine with java it should be with jar archiving.
    Any advice will be appreciated.
    Thanks.

    atmguy, thanks for sticking with this.
    I spend a half day again studying this.
    A new founding that is jar is getting csv files from outside of jar archive.
    My command to make jar is "jar cvfm MetricConverter.jar mym *.class si.au source"
    source folder has 4 csv files. and result is,
    added manifest
    adding: MenueMaker$1.class(in = 809) (out= 515)(deflated 36%)
    adding: MenueMaker$2.class(in = 699) (out= 472)(deflated 32%)
    adding: MenueMaker$3.class(in = 589) (out= 398)(deflated 32%)
    adding: MenueMaker$4.class(in = 1714) (out= 950)(deflated 44%)
    adding: MenueMaker$5.class(in = 667) (out= 436)(deflated 34%)
    adding: MenueMaker.class(in = 5168) (out= 2824)(deflated 45%)
    adding: MetricConverter$1.class(in = 349) (out= 247)(deflated 29%)
    adding: MetricConverter.class(in = 1068) (out= 677)(deflated 36%)
    adding: ReadCSV.class(in = 1459) (out= 913)(deflated 37%)
    adding: s1.au(in = 55708) (out= 44941)(deflated 19%)
    adding: source/(in = 0) (out= 0)(stored 0%)
    adding: source/csv0.csv(in = 543) (out= 254)(deflated 53%)
    adding: source/csv1.csv(in = 765) (out= 365)(deflated 52%)
    adding: source/csv2.csv(in = 340) (out= 191)(deflated 43%)
    adding: source/csv3.csv(in = 1004) (out= 497)(deflated 50%)
    Double Clicking MetricConverter.jar with the source folder in the same directory open the program even copying them to other directories. However, from desk top or my document doesn't work (seems to me space in the directory name?). Without source folder console shows NullPointerException at ReadCSV.. The program cannot find csv files.
    Another thing that is the program only works when manifest file has class-path : . and <cade> URL pickURL=getClass().getResource("./source/csv"+i+".csv");
    has ./.
    I tried making source.jar and putting index using "jar -i MetricConverter.jar" with "class-path: source.jar" in manifest, and use jnlp, but nothing works.
    You seems to me an experienced java programer. If you don't mind look this at www.mixvision.net/java/MetricConverter.jnlp, also I leave www.mixvision.net/java accessible for now.
    Thanks again.

  • Error but network works. Why?

    Goodmorning.
    During the boot of arch, an error occurs:
    my IP number: error fecthing interface information:device not found.
    Before, during the network module load, warning appears.
    But after boot finalizes, network works fine.
    Why occur the error message, if the network works?
    Thanks.
    ciao.
    Luca.
    8)

    they are:
    modprobe.conf
    # /etc/modprobe.conf (for v2.6 kernels)
    alias eth0 sis900
    rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # Localization
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: fount in /usr/share/kbd/consolefonts (only needed for non-us)
    # USECOLOR: use ANSI color sequences in startup messages
    HARDWARECLOCK="localtime"
    TIMEZONE=Europe/Rome
    KEYMAP=it
    CONSOLEFONT=
    USECOLOR="yes"
    # Networking
    HOSTNAME="Luca1"
    # Module to load at boot-up (in this order)
    #   (prefix a module with a ! to disable it)
    MODULES=(!usbserial !ide-scsi sis900 usb-storage sd_mod sr_mod)
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    #   (prefix an interface in INTERFACES with a ! to disable it)
    # Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
    lo="nnnnnnnnnn"   #lo="lo 127.0.0.1"
    eth0="eth0 nnnnnnnnn netmask 255.255.255.0 broadcast 192.168.0.255"
    INTERFACES=(lo eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    #   (prefix a route in ROUTES with a ! to disable it)
    gateway="default gw xxxxxxxxxxxxx"
    ROUTES=(gateway)
    # Daemons to start at boot-up (in this order)
    #   (prefix a daemon with a ! to disable it)
    DAEMONS=(syslogd klogd !pcmcia network netfs crond)
    # End of file

  • YVM302 error, everything else working fine

    Hi there, my fairly new HUMAX YouView box started playing up last night, we had no Freeview tv channels for about an hour with error message YVM302 being displayed.  I rebooted twice, and it suddenly sprung back into life again.   Tonight, I have rebooted, retuned, all to no avail, we have no Freeview channels at all.   Everything else is working fine, and the aerial cable works fine when plugged directly into the TV, so why is the YouView box telling me there is no signal from the aerial?
    Any help gratefully received!
    Chris

    Hi Rod,  the re-boot worked for me the previous night so thinking about it I'm not sure it was the update yesterday as the box started displaying the weak/no signal message the night before.   I left it switched off at the mains overnight last night, started it up again just now and it still hasn't found any channels.  Re-tuning speeds through and comes up with zero channels found.
    Guess it will be a calll to BT this morning.  At least the TV still works through the aerial, and we can still watch On Demand and BT Vision through the box, but really that isn't the point is it!
    Glad your box is working fine again though.
    Chris

  • Today my iPhone has had a message of No SIM then later it works fine why is this happening?

    Today my phone has shown a message of No SIM and does not work then later it works fine.  Why is this happening?

    Hi Carol...
    error message that my computer needs to be shut down. It is like a dark screen comes down
    That is referred to as a kernel panic.
    Help here >  Tutorial: Avoiding and eliminating Kernel panics | MacFixIt - CNETReviews

  • AHT finds logic board error, but computer working fine

    I ran the Apple Hardware Test to see the profile for my RAM, but 7 seconds into the test it stopped and reported a logic board error.
    1. But my computer is working fine. If anyone has experience with this, I'll gladly take your advice. Do I ignore this error at my own risk? Or should I get it looked at now in case it's an early warning of something that can get worse? For the real Apple tech experts, here's the error code: 2I2C/1/1: 0x00000092.
    Eleven months ago, I had to get a new power supply installed. It was covered under the extended warranty for power issues with iMac G5s. As I've indicated, it's been working fine since then.
    2. Once AHT finds an error, it won't continue testing the remaining components. Does anyone know of a way to "force" the AHT to skip the logic board test and go on to test the other hardware items?
    Thanks all.

    Michael, pray tell, where does one find the published list of codes you refer to? I searched the whole internet (or so it seemed like it) looking for a resource like that. Are you an AASP?
    Even my experienced Apple technician and his AASP contacts didn't realize that my error code relates to the European Union. (And, BTW, I'm in Canada and I purchased my iMac from a store in Canada.) You have solved a mystery!
    The strange thing is that when I phoned Apple Tech Support and asked to speak to a product specialist, even they told me that the code means "logic board needs replacement." When I asked to speak to a higher dept., I was connected to Customer Relations (very nice, professional fellow answered). When I explained that this G5 iMac has been problematic for me (failure after 7 mos. of ownership, power supply failure after 3 yrs, etc.) he offered me $100.00 off a new iMac ($125.00 in Canada), which I accepted.
    I did use TechTool Pro to check the computer. It found no problems. Four months later and it's still going strong. I don't know whether to be upset with Apple for not bothering to look up the code, or whether I should look at this as a blessing in disguise (how else would I have received $125.00 off a new iMac? And now, my father gets a G5 that I can confidently say is in good working order). And it's strange that my local tech's AASP friends weren't any wiser. Aren't AASPs privy to this error code info? A mystery indeed...

  • Error while executing work flow

    Hi all,
    I have created a workflow with user decision and send mail steps. But when I execute the workflow it is generating an error saying - " Task started under workitem ID 71036(current status: Error) ".
    When I see the workflow log--> list of technical details --> step history, the following errors I got
    exception occured                       Error when starting work item 000000071038
    Process node                               Error when processing node '0000000004' (ParForEach index 000000
    create                                           Error when creating a component of type 'Step'
    create_WIM_Handle                     Error when creating a work item
    create_via_wfm                           Error within method CL_SWF_RUN_WIM_FACTORY->CREATE_VIA_WFM
    get_witype                                   Unable to determine work item type for step at node 0000000004
    get_task_handle                           Error when loading task
    find_by_wfdwiz                          Task definition '' not found
    Executing workflow item              Work item 000000071038: Object FLOWITEM method EXECUTE cannot be executed
    Executing workflow item              Error when processing node '0000000004' (ParForEach index 000000)
    But when I create the same workflow in another client and excute, it is working fine.
    Can anybody look into this.
    thanks & regards
    Kris

    Hi Suresh,
    Thanks alot, problem solved to some extent. I need some other clarifications.
    1. whether SAP_ALL and SAP_NEW  profiles are mandatory for the user WF-BATCH or only SAP_ALL can solve our issue?
    2.
    Unless your workflows are not going to use Webflow functions, configuring "Maintain Web Server" is not required
    as you said, what are webflow functions?
    Please provide me information on these as Iam new to Workflows.
    Thanks & regards,
    Kris

  • Error while generating Work Order

    I have a problem while generating Work orders in SNC.
    I set the configuration as belows.
    <General setting for Work Order generation>
    1.Granularity -> Work Order per Purchase Order Item
    2.Create WOs with Report -> Check
    3.Publish Work Order Upon Creation and PO change -> check
    4.Send Work Order Information -> Upon Agreement and when a Phase Is Completed
    5.Send Production Progress Notification -> When a Phase Is Completed
    <Phase Structure>
    1.Comp. from SC Order -> Use SC Comp. as Input, Product and Co-Products as Output
    <Master Data Assignment>
    1.MD Used for WO -> Phase Structure
    2.Active -> Check
    When I use the program /SCA/WO_CREATE for generate Work Orders, Run time error occurs with below messages.
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Except.                CX_SY_REF_IS_INITIAL
    <Error analysis>
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in
    procedure "GET_PIO_LCTYPE" "(METHOD)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "LS_NODEREF-R_NODE").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    <Missing RAISING Clause in Interface>
    Program                                 /SCA/CL_WO_PHASE==============CP
    Include                                 /SCA/CL_WO_PHASE==============CM00V
    Row                                     1
    Module type                             (METHOD)
    Module Name                             GET_PIO_LCTYPE
    <Trigger Location of Exception>
    Program                                 /SCA/CL_WO_PHASE==============CP
    Include                                 /SCA/CL_WO_PHASE==============CM00V
    Row                                     45
    Module type                             (METHOD)
    Module Name                             GET_PIO_LCTYPE
    Please let me know what I have to do for this error.
    Thanks and Regards
    JT

    Hi JT
    Clearly the problem is with the method GET_PIO_LCTYPE of interface /SCA/CL_WO_PHASE
    Check whether note 1363834 should be implemented
    It could be because of some corrupted WO entries in database
    or some customizing entry it is expecting
    suggest you to debug the method and try to check what it is expecting
    Best Regards
    Vinod

  • Error while configuring work repository details in topology Manager

    Hi,
    Could anyone pls advice, is it possible creating more than one Master repository connection for the same instance.
    When i try to do so, am getting the below error while configuring the work repository details in topology manager.
    “A work repository already exists for this connection.
    Enter the repository password to declare it in your Master Repository”
    I tried with both the new master and work repository password. But no luck.
    Previous Master & work details:
    Master: PCS_MASTER
    Work:PCS_WORKREP
    New Details
    Master: PCS_MASTER_INT
    Work:PCS_WORKREP_INT
    Instance: PCBID
    Am trying to create new master repository for PCS_MASTER_INT.

    In the same oracle schema you can have only 1 master and 1 work repository. Usually they take 2 schema (1 for each).
    If you need 2 master repository you have to use 2 different jdbc path. I'm using a db with several master / work, each repo has got its schema..

  • My wife has just had a new iPad and while Wifi works fine with it at home, at work it will not connect to the Wifi despite the correct password being entered. The 'waiting wheel' simply goes round and round next to the Wifi network attempting connection.

    My wife has just had a new iPad and while the Wifi works fine at home, at work she is unable to connect after entering the correct password etc. The 'waiting wheel' simply spins next to the network attempting to connect. The iPad version is 5.1.1 and not the IOS 6 which seems to be problematic on the Wifi front. To add to the mystery my own iPad connects fine to my wife's place of work. Is it possible to take the manual settings from mine and connect that way? Or any other suggestions?

    When your device is trying to connect to the work Wi-Fi network, go to Settings > Wi-Fi > then tap on the name of the Netowrk that she is having trouble with. Then tap on forget this network. Let the device attempt to connect again and make absolutely sure she is trying to connect to the work network and not a nearby network, then make absolutely sure the password is entered correctly.

  • I have just installed the latest update ...IOS 7.0.4. Prior to this, my email worked fine. Now my AOL does not work; it gives an ID/password error. Everything works fine on my Windows computer. Any thoughts?

    I have just installed the latest update - IOS 7.0.4. Prior to this, my AOL email worked fine. Now it gives an ID/password error message. However, everything is fine on my Windows computer. Any thoughts?

    Hello there, Tim.
    The following Knowledge Base article provides some good troubleshooting steps for working on resolving your issue:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • Javascript Error in IE, works fine in FF

    I have this page :
    http://www.gamertags.com.br/jogos.html
    The filters and spry data works fine in Firefox, but when using IE the page won´t load and the browser gives these errors :
    Agente de Usuário: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0;  Embedded Web Browser from: http://bsalsa.com/; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; HPDTDF)
    Carimbo de data/hora: Thu, 11 Nov 2010 12:35:40 UTC
    Mensagem: Objeto esperado
    Linha: 101
    Caractere: 1
    Código: 0
    URI: http://www.gamertags.com.br/SpryAssets/SpryPagedView.js
    Mensagem: Objeto esperado
    Linha: 47
    Caractere: 1
    Código: 0
    URI: http://www.gamertags.com.br/SpryAssets/SpryNestedXMLDataSet.js
    Mensagem: Objeto esperado
    Linha: 77
    Caractere: 2
    Código: 0
    URI: http://www.gamertags.com.br/jogos.html
    Mensagem: 'Spry.Debug' é nulo ou não é um objeto
    Linha: 961
    Caractere: 41
    Código: 0
    URI: http://www.gamertags.com.br/SpryAssets/SpryData.js
    I,ve checked the forums for the most usual cause of this, but found nothing that could help me.
    Any help would be great.
    Thank you.

    Hi,
    I really appreciate the help. But that´s not it.
    The Timer function in that example is not necessary in my page (but just for the sake of it, I´ve tested it)
    In fact, I can remove the filters functions and the call the to the DataExtensions.js file and still the page won´t work in IE.
    The problem lies in the PageView. I can make it work without it, but as I mentioned earlier I need to be able break the data into pages. My XML is quite large (almost 2MB).
    Thanks again for the reply.

  • Error while creating work repository

    Hi all,
    I am facing problem while creating work repository in ODI.
    I have successfuly created master repository and also test connection comes out to be succesull for work repository.
    But while i click on OK it gives CREATION error stating
    No data found : \snps_login_security.xml(Access is Denied)
    Thanks and Regards,
    Priyanka

    Hi ,
    u r having Oracle DB......?
    You have the databases and ODI installed in the same machine.....?
    Have u chkd ur databse/schema rigts .....
    can u plz chk on this front .....as well as the user/pw ur using for ur connections.....
    Thanks
    Ananda

Maybe you are looking for

  • Application frame not working plus other issues Illustrator CC Mac

    Running Illustrator CC on a Mac. I'm missing the maximize, minimize, and close buttons in the top left corner. I have an "Ai" symbol in the top left, which I thought was only on the PC version? All my tools disappear when I turn on application frame.

  • OMG.  All people who get the message "use itunes to restore", click here!!!

    ok, this may not work for you, but it worked for me! by the way, i discovered this on my own, no thx to anyone else.:P ok, when it says that use itunes to restore"uitr, as ill call it", plug it into ur comp. ok, now, itll say to restor the ipod, blab

  • EAP-PEAP on N80 ?

    Hi, Are there ANYBODY, who has this working on N80 latest fw ? I simply can not get this to work. Its the same as with LEAP: I get user auth ok, but doesnt receive any IP, and static IP on phone doesnt work eighter. I would like to hear if you person

  • Hyperlink query through UDF

    Hi experts, I d like to know if it's posiible to hyperlink a Sap B1 query through a UDF ? an if it's possible, how ? I have already set up the UDF but I dont know which adress I have to put in, in order to make open my query. Thanks in adavance for y

  • Tax Procedure for Singapore

    Hi, We have a scenario for our company in Singapore for GST. We need to pay the tax value (GST) while purchasing any material from Vendor and finally take claim from the government and thus the tax value (GST) doesn't become part of landed cost of th